@font-face {font-family: Roboto;src: url("../font/Roboto/Roboto-Regular.ttf")}
@font-face {font-family: Roboto-Light;src: url("../font/Roboto/Roboto-Light.ttf")}

html {
    scrollbar-color: #888 #f1f1f1;
    scrollbar-width: thin;
    height: 100vh;
    width: 100vw;
	padding: 0px;
	margin: 0px;
}
* {
	font-family: 'Roboto';
	user-select: none;
}
div {
    box-sizing: border-box;
}
h1 {
    color: rgb(var(--txt-primary));
    margin: 0px 0px 20px 0px;
    letter-spacing: 0.7px;
    font-family: 'Roboto';
    position: relative;
    font-weight: 500;
    width: inherit;
}
p {
    font-family: 'Roboto-Light';
    margin: 0px 0px 20px 0px;
    line-height: 1.6em;
}
body {
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
}
header {
    position: sticky;
    z-index: 1001;
    top: 0;
}
header > div:first-of-type {
    justify-content: center;
    background: #ffffff;
    align-items: center;
    position: relative;
    display: inherit;
    display: flex;
    height: 125px;
}
header > div:nth-of-type(2) {
    background: linear-gradient(0deg, transparent, #ffffff);
    height: 50px;
}
header > div:first-of-type > svg {
    width: 590px;
    max-width: 590px;
}
section-progress {
    width: inherit;
}
rc-icon {
    position: relative;
}
progress {
    background-color: rgb(var(--bg-secondary));
    border: 1px solid rgb(var(--border-primary));
    margin: 6px 0px 0px 0px;
    border-radius: 6px;
    width: 100%;
    height: 6px;
}
/* Styling the unfilled portion (track) */
/* Chrome, Safari, Opera */
progress::-webkit-progress-bar {
    background-color: rgb(var(--bg-secondary));
    border-radius: 6px;
}
/* Styling the filled portion (value) */
progress::-webkit-progress-value,
progress::-moz-progress-bar {
    background-color: rgb(var(--bg-blue));
    border-radius: 6px;
}
::-webkit-scrollbar {
    width: 10px; /* Sets vertical scrollbar width */
    height: 10px; /* Sets horizontal scrollbar width */
}
/* Optional: Style the scrollbar track and thumb for consistency */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
}
::-webkit-scrollbar-thumb {
    background: #888; /* Thumb color */
    border-radius: 5px; /* Rounded corners for thumb */
}
textarea-input,
checkbox-input,
dropdown-input,
phone-input,
text-input,
date-input {
    position: relative;
    cursor: pointer;
}
.btns {
    padding: 80px 0px 80px 0px;
    display: flex!important;
    justify-content: center;
    flex-direction: row;
    width: inherit;
    gap: 30px;
}
.btn {
    -webkit-tap-highlight-color: transparent;
    color: rgb(var(--txt-primary));
    touch-action: manipulation;
    -webkit-user-select: none;
    justify-content: center;
    letter-spacing: -0.3px;
    -moz-user-select: none;
    background: #dddddd;
    -ms-user-select: none;
    justify-self: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    position: relative;
    user-select: none;
    line-height: 50px;
    user-select: none;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    width: 280px;
}
.btn * {
    -webkit-user-select: none;
    pointer-events: none;
    user-select: none;
}
.btn > rc-icon {
    position: absolute;
    transition: 0.3s;
    left: 40px;
}
.gb {
    background: #C3B59B;
}

.btn.loading {
    background: #1D8846!important;
    color: #FFFFFF!important;
}
.btn.loading {
    pointer-events: none!important;
}
.btn:active {
    transform: scale(0.98);
    transition: 0.3s;
}
.btn:not(.gold, .gb):active {
    background: #1D8846;
    color: #FFFFFF;
}
.btn.gold:active,
.gb:active {
    background: #D8CCA2;
    color: #333333;
}
.rc-toast {
    transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0px 9px 7px 3px rgb(var(--box-shadow) / 20%);
    border-bottom: 1px solid rgb(var(--bg-orange));
    border-right: 1px solid rgb(var(--bg-orange));
    border-top: 1px solid rgb(var(--bg-orange));
    padding: 0px 40px 0px 50px;
    background: #fbfbfb;
    text-decoration: none;
    border-radius: 8px;
    min-height: 50px;
    position: fixed;
    z-index: 1000;
    width: 280px;
    height: auto;
    opacity: 0;
}
.rc-toast *:not(rc-icon) {
    pointer-events: none;
}
.rc-toast.on {
    opacity: 1;
}
.rc-toast-close {
	top: 12px;
	right: 16px;
    cursor: pointer;
    position: absolute;
}
.rc-toast-icon {
    top: 11px;
	left: 14px;
	position: absolute;
}
.rc-toast-text {
    padding: 10px 0px 12px 0px;
}
.rc-toast-text > div:first-of-type {
    margin: 0px 0px 3px 0px;
    font-size: 16px;
}
.rc-toast-text > div:nth-of-type(2) {
    color: rgb(var(--icon-primary));
    font-family: 'Roboto-Light';
    white-space: normal;
    line-height: 18px;
    overflow: hidden;
    font-size: 14px;
}
.rc-toast-right {
    right: 22px;
}
.rc-toast-bottom {
    bottom: -150px;
}
@media (max-width: 768px) {
    .rc-toast {
        padding: 0px 32px 0px 42px;
        min-height: 48px!important;
        width: 250px;
    }
    .rc-toast-text {
        padding: 14px 0px 13px 0px;
    }
    .rc-toast-text > div:first-of-type {
        display: none;
    }
    .rc-toast-icon {
        left: 11px;
        top: 13px;
    }
    .rc-toast-close {
        top: 15px;
    }
}
@media (hover: hover) {
    .btn:hover {
        background: #1D8846!important;
        color: #FFFFFF!important;
    }
    .btn.gold:hover,
    .gb:hover {
        background: #D8CCA2!important;
        color: #333333!important;
    }
}