:root{
	/* ------ Colors ------ */
	--primary: #0075ff;
	--secondary: #ff9933;

	--info: #39C0ED;
	--success: #00B74A;
	--warning: #FFA900;
	--danger: #F93154;

	--text-dark: #202020;
	--text-light-dark: #6B7280;
	--text-white: #FFFFFF;
	--disabled: #eaf0f8;
	--divider: #E5E7EB;

	--primary-hover: #0069e6;
	--primary-active: #005ecc;
	--primary-lite: #e6f1ff;
	--primary-lite-hover: #d9eaff;
	--primary-lite-active: #b0d4ff;
	--primary-dark: #0058bf;
	--primary-dark-hover: #004699;
	--primary-dark-active: #003573;
	--primary-darker: #002959;

	--secondary-hover: #e68a2e;
	--secondary-active: #cc7a29;
	--secondary-lite: #fff5eb;
	--secondary-lite-hover: #fff0e0;
	--secondary-lite-active: #ffdfc0;
	--secondary-dark: #bf7326;
	--secondary-dark-hover: #995c1f;
	--secondary-dark-active: #734517;
	--secondary-darker: #593612;

	--info-hover: #33add5;
	--info-active: #2e9abe;
	--info-lite: #ebf9fd;
	--info-lite-hover: #e1f6fc;
	--info-lite-active: #c2ebf9;

	--success-hover: #00a543;
	--success-active: #00923b;
	--success-lite: #e6f8ed;
	--success-lite-hover: #d9f4e4;
	--success-lite-active: #b0e9c7;

	--warning-hover: #e69800;
	--warning-active: #cc8700;
	--warning-lite: #fff6e6;
	--warning-lite-hover: #fff2d9;
	--warning-lite-active: #ffe4b0;

	--danger-hover: #e02c4c;
	--danger-active: #c72743;
	--danger-lite: #feeaee;
	--danger-lite-hover: #fee0e5;
	--danger-lite-active: #fdbfca;

	--light: #fff;
	--light-hover: #e9e9e9;

	/* ------ Utility ------ */
	--focus-font: 'Roboto', sans-serif;
	--body-font: 'Open Sans', sans-serif;
	--disabled-opacity: 0.6;
	--font-medium: 500;
	--gap: 1rem;
	--background-color: #fff;
	--outline: var(--primary, #202020);
	--border-radius: 0.375rem;
	--border-color: #E5E5E5;
	--background-color-hover: #f2f2f2;

	--modal-zindex: 10;
	--toast-zindex: 11;
	--tooltip-zindex: 12;
	--select-dropdown-zindex: 10;
}
 
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap'); */

/*
 * CSS Reset And Common css
 */

/* Box sizing rules */
*,
*::before,
*::after{
    box-sizing: border-box;
    position: relative;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
    margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html{
	min-height: 100% !important;
	height: 100%;
	width: 100%;
}

/* Set core body defaults */
body{
	margin: 0;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.3;
    min-height: 100%;
	font-size: 1rem;
	color: var(--text-dark);
	text-align: start;
	background-color: var(--background-color);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
	margin: 1rem 0;
	color: inherit;
	background-color: currentColor;
	border: 0;
}

hr:not([size]) {
	height: 1px
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: var(--focus-font);
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2
}

h1, .h1 {
	font-size: calc(1.375rem + 1.5vw);
}
h2, .h2 {
	font-size: calc(1.325rem + 0.9vw);
}
h3, .h3 {
	font-size: calc(1.3rem + 0.6vw);
}
h4, .h4 {
	font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
	h1, .h1 {
		font-size: 2.5rem;
	}
	h2, .h2 {
		font-size: 2rem;
	}
	h3, .h3 {
		font-size: 1.75rem;
	}
	h4, .h4 {
		font-size: 1.5rem;
	}
}

h5, .h5 {
	font-size: 1.25rem;
}

h6, .h6 {
	font-size: 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
select,
optgroup,
textarea {
	margin: 0;
    font-family: var(--focus-font);
	font-size: 1rem;
	line-height: 1.3;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

b,
strong {
	font-weight: bolder
}

small,
.small {
	font-size: .8125em
}

a:not(.btn) {
	color: var(--primary, #0075ff);
	text-decoration: underline
}

a:not(.btn):hover, a:not(.btn):focus {
	color: var(--primary-hover, #0069e6);
}

a:focus {
	outline: dotted
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none
}

figure {
	margin: 0 0 1rem
}

img,
svg {
	vertical-align: middle
}

table {
	caption-side: bottom;
	border-collapse: collapse
}

caption {
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: var(--text-light-dark, #6c757d);
	text-align: left
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-color: inherit;
	border-style: solid;
	border-width: 0
}

label {
	display: inline-block
}

button:focus:not(:focus-visible) {
	outline: 0
}

button,
select {
	text-transform: none
}

select {
	word-wrap: normal
}

select:disabled {
	opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
	display: none
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
[role="button"],
a {
	cursor: pointer
}

button:focus,
[type="button"]:focus,
[type="reset"]:focus,
[type="submit"]:focus,
[role="button"]:focus,
a:focus, *:not(input):not(textarea):not(select):focus{
    outline: 0;
	border-radius: var(--border-radius, 6px);
    box-shadow: 0 0 0 0.125rem var(--background-color), 0 0 0 0.25rem var(--outline);
}

.no-outline{
	outline: 0 !important;
	border-radius: initial;
    box-shadow: none !important;
}

::-moz-focus-inner {
	padding: 0;
	border-style: none
}

textarea {
	resize: vertical
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
	padding: 0
}

::-webkit-inner-spin-button {
	height: auto
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: textfield
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
	padding: 0
}

::file-selector-button {
	font: inherit
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

[hidden], .hidden {
	display: none !important
}

/* START:: ScrollBar */
body{
	scrollbar-width: thin;
    scrollbar-color: #a8a8a8 #f1f1f1;
}

::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}


::-webkit-scrollbar-track {
	background-color: #f1f1f1;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
	background-color: #a8a8a8;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
}
/* END:: ScrollBar */

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 0.5rem;
    height: 2.375rem;
    width: auto;
    background-color: transparent;
    color: currentColor;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    font-size: 0.9375rem;
    line-height: 1;
    font-weight: var(--font-medium);
    border: 0.0625rem solid var(--light);
    border-radius: var(--border-radius, 6px);
    padding: 0 1rem;
    user-select: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    overflow: hidden;
}
.btn img, .btn svg{
    pointer-events: none;
}

.btn-reset{
    border: 0;
    height: auto;
    background-color: transparent;
    padding: 0;
}

.btn:not(.no-outline):focus{
    outline: 0;
    box-shadow: 0 0 0 0.125rem var(--background-color), 0 0 0 0.25rem var(--outline);
}

.btn:disabled{
    pointer-events: none;
    opacity: var(--disabled-opacity);
}

.btn.btn-block{
    width: 100%;
}

/*----- START::Image && Icon Button -----*/
.btn img, .btn svg{
    display: inline-block;
}

.btn img:not([height]):not([width]), .btn svg:not([height]):not([width]){
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
}

.btn-sm img:not([height]):not([width]), .btn-sm svg:not([height]):not([width]){
    width: 1.25rem;
    height: 1.25rem;
}

.btn-icon{
    width: 2.37500rem;
    padding: 0;
}
/*----- END::Image && Icon Button -----*/


/*----- START::Small Buttons -----*/
.btn-sm{
    height: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.125;
}
.btn-icon.btn-sm{
    width: 1.875rem;
    padding: 0;
}
/*----- END::Small Buttons -----*/
 
.btn-primary{
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover:not(:disabled), .btn-primary:focus{
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

/*-- Outline --*/
.btn-primary-outline{
    border-color: var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-primary-outline:hover:not(:disabled), .btn-primary-outline:focus{
    background: var(--primary-lite-hover);
}

/*-- Ghost --*/
.btn-primary-ghost{
    border-color: transparent;
    background: transparent;
    color: var(--primary);
}

.btn-primary-ghost:hover:not(:disabled), .btn-primary-ghost:focus{
    border-color: transparent;
    background: var(--primary-lite-hover);
}

.btn-primary:focus, .btn-primary-outline:focus, .btn-primary-ghost:focus{
    --outline: var(--primary);
}

.toastContainer{
    position: fixed;
    margin: 10px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: var(--toast-zindex, 11);
}
.toastContainer[data-position^="top-"]{
    top: 0;
}
.toastContainer[data-position^="bottom-"]{
    bottom: 0;
}
.toastContainer[data-position$="-right"]{
    right: 0;
    align-items: flex-end;
}
.toastContainer[data-position$="-left"]{
    left: 0;
    align-items: flex-start;
}
.toastContainer[data-position$="-center"]{
    align-items: flex-start;
    left: 50%;
    transform: translateX(-50%);
}

.toast{
    transition: all 250ms ease;
    opacity: 0;
}
.toast.shown{
    opacity: 1;
}

.toastContainer[data-position$="-right"] .toast{
    transform: translateX(100%);
}
.toastContainer[data-position$="-right"] .toast.shown{
    transform: translateX(0);
}

.toastContainer[data-position$="-left"] .toast{
    transform: translateX(-100%);
}
.toastContainer[data-position$="-left"] .toast.shown{
    transform: translateX(0);
}

.toastContainer[data-position="top-center"] .toast{
    transform: translateY(-100%);
}
.toastContainer[data-position="top-center"] .toast.shown{
    transform: translateY(0);
}

.toastContainer[data-position="bottom-center"] .toast{
    transform: translateY(100%);
}
.toastContainer[data-position="bottom-center"] .toast.shown{
    transform: translateY(0);
}

.toast{
    display: flex;
    align-items: center;
    width: auto;
    padding: 0.75rem;
    background-color: var(--background-color);
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: var(--border-radius);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    overflow: hidden;
}

.toast .toastContent{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.toastContent .icon{
    height: 28px;
    width: 28px;
}

.toastContent .textContent{
    display: flex;
    flex-direction: column;
    margin: 0 0.75rem;
}

.toastContent .title{
    font-size: 1rem;
    font-weight: 600;
}

.toast.hasTitle .message{
    font-size: 0.875rem;
    font-weight: 400;
}

.toastContent .message{
    font-size: 1rem;
}

.toastActions{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: initial;
}

.toast button{
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 5px;
    font-size: 15px;
    font-weight: 500;
}

.toast .close{
    padding: 5px;
    line-height: 0;
}

.toast.hasTitle.hasMessage:not(.hasAction) .close{
    position: absolute;
    top: 0.3125rem;
    right: 0.3125rem;
}

.toast.hasTitle.hasMessage:not(.hasAction) .toastActions{
    padding: 0.4rem;
}

@media only screen and (max-width: 480px) {
    .toastContainer{
        margin: 10px 5px;
        width: calc(100% - 10px);
    }
    .toastContainer[data-mobile-position="top"]{
        top: 0;
        bottom: unset;
    }
    .toastContainer[data-mobile-position="bottom"]{
        top: unset !important;
        bottom: 0;
    }
}

/* ------------------- */
/* Utility classes     */
/* ------------------- */

.grid {
    display: grid;
    gap: var(--gap, 1rem);
}

/*
 * Screen reader only
 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* START:: Text */
.text-center {
    text-align: center !important;
}

.text-clear{
    text-decoration: none !important;
    color: currentColor !important;
}

.text-dark{
    color: var(--text-dark) !important;
}

.text-light-dark{
    color: var(--text-light-dark) !important;
}

.text-white{
    color: var(--text-white) !important;
}

.text-primary{
    color: var(--primary) !important;
}

.text-hover-primary:hover{
    color: var(--primary-hover) !important;
}

.fw-bold{
    font-weight: bold !important;
}

.fw-400{
    font-weight: 400 !important;
}

.fw-500{
    font-weight: 500 !important;
}

.fw-600{
    font-weight: 600 !important;
}

.fw-700{
    font-weight: 700 !important;
}
/* END:: Text */

/* START:: Flex */
.flex {
    display: flex;
    gap: var(--gap, 1rem);
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}