@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap");

@import url(auth-responsive.css);

/* Root: variables colors */
:root {
    --green-main-clr: #00a86b;
    --green-main-hover-clr: #09b979;
    --green-main-active-clr: #079762;
    --main-black-clr: #20272b;
    --green-main-clr-0-16: hsl(158deg 100% 33% / 16%);
    --dark-open-clr-hover: rgb(60 72 79);
    --green-dark-main-clr: #ffff;
    --black-clr: #111111;
    --grey-clr: #808080;
    --grey-dark-clr: #2a2a2a;
    --white-clr: #ffffff;
    --input-clr: #2b2b2b;
    --red-clr: #ff4040;
    --red-clr-0-16: #ff404016;
    --orange-clr: #e67e22;
    --orange-clr-0-16: #e67d2216;
    --model-light-clr: #f4f4f4;
    --model-light-shadow: #e7e7e7;
    --model-light-strok: #dcdcdc;
    --model-dark-clr: #161616;
    --paragraph-white-clr: #e2e2e2;
    --up-numbers-clr: rgb(22, 199, 132);
    --low-numbers-clr: #ea3943;
    --help-component-clr: #e7e7e7;
    --help-component-hover-clr: #e1e0e0;
    --infos-bg-stroke: #2b2b2b;
}

/* Root : variables sizes */
:root {
    --font-size-12: 12px;
    --font-size-10: 10px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-24: 24px;
    --font-size-26: 26px;
    --font-size-32: 32px;
    --font-size-48: 48px;
    --font-size-64: 64px;
}

/* Root : borders */

:root {
    --border-radius-30: 30px;
}

/* Root : variable font */
:root {
    --main-font: "Epilogue", sans-serif;
}

/* Root : transation */
:root {
    --transition: all 0.3s ease-in-out;
    --transition-in: transform 0.3s ease-in; /* For scaling in */
    --transition-out: transform 0.5s ease-out; /* For scaling out */
}

/* Thin */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Thin.ttf") format("ttf");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-ThinItalic.ttf") format("ttf");
    font-weight: 100;
    font-style: italic;
}

/* Extra Light */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-ExtraLight.ttf") format("ttf");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-ExtraLightItalic.ttf") format("ttf");
    font-weight: 200;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Light.ttf") format("ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-LightItalic.ttf") format("ttf");
    font-weight: 300;
    font-style: italic;
}

/* Regular */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Regular.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Italic.ttf") format("ttf");
    font-weight: 400;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Medium.ttf") format("ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-MediumItalic.ttf") format("ttf");
    font-weight: 500;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-SemiBold.ttf") format("ttf");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-SemiBoldItalic.ttf") format("ttf");
    font-weight: 600;
    font-style: italic;
}

/* Bold */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Bold.ttf") format("ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-BoldItalic.ttf") format("ttf");
    font-weight: 700;
    font-style: italic;
}

/* Extra Bold */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-ExtraBold.ttf") format("ttf");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-ExtraBoldItalic.ttf") format("ttf");
    font-weight: 800;
    font-style: italic;
}

/* Black */
@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-Black.ttf") format("ttf");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "epilogue";
    src: url("font/static/Epilogue-BlackItalic.ttf") format("ttf");
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Epilogue", sans-serif;
}

a {
    text-decoration: none;
    width: fit-content !important;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

p {
    font-size: var(--font-size-16);
    font-weight: 400; /* Regular */
    margin-bottom: 0;
    line-height: 20px;
}

.underline:hover {
    text-decoration: underline;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.black {
    background-color: var(--black-clr);
}

.section-title {
    color: var(--black-clr);
    font-size: var(--font-size-32);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title.t-white {
    color: var(--white-clr);
    font-size: var(--font-size-32);
    font-weight: bold;
    text-align: center;
}

.section-title p {
    color: var(--grey-clr);
}

.w-75 {
    width: 75%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

/* Components buttons */
.err-danger {
    font-size: var(--font-size-14) !important;
    color: var(--red-clr) !important;
    font-weight: 500 !important;
}

.bg-pending {
    background-color: var(--orange-clr) !important;
}

.bg-rejected {
    background-color: var(--red-clr) !important;
}

button.main-btn {
    position: relative;
    border: none !important;
}

.secondary-btn,
.main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--green-main-clr);
    color: var(--black-clr);
    width: fit-content;
    width: 15rem;
    height: 3rem;
    border-radius: 50px;
    font-size: var(--font-size-16);
    font-weight: 600;
    line-height: 0 !important;
    cursor: pointer;
}

.main-btn span {
    color: var(--white-clr);
}

.main-btn:hover {
    background-color: var(--green-main-hover-clr);
}

.secondary-btn {
    background-color: var(--bs-gray-600);
    color: var(--white-clr);
}

.dark-btn {
    background-color: var(--grey-dark-clr) !important;
    color: var(--white-clr) !important;
}

.secondary-btn:active,
.main-btn:active {
    background-color: var(--green-main-active-clr);
}

/* Loader button animation */
.btn-loader {
    position: absolute;
    top: 24%;
    left: 3%;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--white-clr);
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
    0% {
        clip-path: polygon(
            50% 50%,
            0 0,
            50% 0%,
            50% 0%,
            50% 0%,
            50% 0%,
            50% 0%
        );
    }
    12.5% {
        clip-path: polygon(
            50% 50%,
            0 0,
            50% 0%,
            100% 0%,
            100% 0%,
            100% 0%,
            100% 0%
        );
    }
    25% {
        clip-path: polygon(
            50% 50%,
            0 0,
            50% 0%,
            100% 0%,
            100% 100%,
            100% 100%,
            100% 100%
        );
    }
    50% {
        clip-path: polygon(
            50% 50%,
            0 0,
            50% 0%,
            100% 0%,
            100% 100%,
            50% 100%,
            0% 100%
        );
    }
    62.5% {
        clip-path: polygon(
            50% 50%,
            100% 0,
            100% 0%,
            100% 0%,
            100% 100%,
            50% 100%,
            0% 100%
        );
    }
    75% {
        clip-path: polygon(
            50% 50%,
            100% 100%,
            100% 100%,
            100% 100%,
            100% 100%,
            50% 100%,
            0% 100%
        );
    }
    100% {
        clip-path: polygon(
            50% 50%,
            50% 100%,
            50% 100%,
            50% 100%,
            50% 100%,
            50% 100%,
            0% 100%
        );
    }
}
@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
    }
    49.99% {
        transform: scaleY(1) rotate(135deg);
    }
    50% {
        transform: scaleY(-1) rotate(0deg);
    }
    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

/* Authentication styles */
/* .auth-container {
    height: 100vh;
}

.auth-show {
    background-color: var(--black-clr);
}

.auth-container header {
    background-color: transparent;
    padding-top: 18px;
    padding-bottom: 18px;
}

.bg-show-black {
    position: absolute;
    background-color: var(--black-clr);
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.auth-forms {
    height: 100%;
    width: 50%;
}
.auth-show {
    height: 100%;
    width: 50%;
}

.auth-body {
    width: fit-content;
}

header .auth-logo {
    color: var(--black-clr);
    font-family: var(--main-font);
    font-weight: 800;
    font-size: var(--font-size-32);
    height: 50px;
    width: fit-content;
    overflow: hidden;
}

header .auth-logo img {
    height: 100%;
}

.auth-close-btn-black {
    display: none;
}

.auth-close-btn-black,
.auth-close-btn {
    height: 20px;
    width: fit-content;
    cursor: pointer;
}

.auth-body .auth-heading {
    color: var(--black-clr);
    font-size: var(--font-size-24);
    font-weight: 700;
}

.auth-body .auth-paragraph p {
    font-size: var(--font-size-14);
    line-height: 16px;
}

.auth-body .form-group {
    width: 354px;
}

.auth-body .form-group input::placeholder {
    color: var(--grey-clr);
    font-size: var(--font-size-14);
    padding-top: 5px;
} */

/* .auth-body .form-group input:focus {
    border-color: var(--green-light-main-clr);
    box-shadow: 0 0 0 0.1rem var(--green-main-clr-0-16);
} */

/* .auth-body .form-group label {
    color: var(--black-clr);
    font-weight: 600;
    font-size: var(--font-size-16);
}

.auth-body .form-group input {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--grey-clr);
    border-radius: 6px;
    padding: 8px 20px;
    width: 354px;
    margin-top: 10px;
    font-size: var(--font-size-14);
}

.auth-body .form-group .forgot-password p {
    color: var(--grey-clr);
    font-size: var(--font-size-14);
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
}

.auth-body .main-btn {
    width: 354px;
}

.auth-body .google-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--input-clr);
    width: fit-content;
    width: 354px;
    height: 3rem;
    border-radius: 50px;
    font-size: var(--font-size-16);
    font-weight: 600;
    line-height: 0 !important;
    cursor: pointer;
}

.auth-body .or {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 354px;
}

.auth-body .or::before {
    content: "";
    position: absolute;
    height: 0.2px;
    width: 37%;
    top: 50%;
    left: 21px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.185);
}

.auth-body .or::after {
    content: "";
    position: absolute;
    height: 0.2px;
    width: 37%;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.185);
}

.auth-body .google-btn-wrapper span {
    color: var(--white-clr);
}

.show-media span {
    color: var(--white-clr);
    font-size: var(--font-size-16);
}

.auth-footer p {
    cursor: pointer;
    font-size: var(--font-size-12);
}

.auth-footer p:hover {
    text-decoration: underline;
} */

/* Auth show swiper */
/* .my-swiper-show {
    width: 100%;
    height: 100%;
}

.swiper-slide-show {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-show img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sign-up-link a:hover {
    text-decoration: underline;
}

.show-footer .auth-trustpilot .auth-trust-logo {
    width: 100px;
    height: 30px;
}

.show-footer .auth-trustpilot p {
    font-size: var(--font-size-14);
    color: var(--white-clr);
} */

/* Countries select options */
/* .country-select-wrapper {
    position: relative;
}

.country-select-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-select-input img {
    width: 20px;
    height: 15px;
}

.country-select-dropdown {
    position: absolute;
    width: 100%;
    height: 250px;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.country-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#countrySearch {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.country-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.country-item:hover {
    background: #f8f8f8;
}

.country-item img {
    width: 20px;
    height: 15px;
    flex-shrink: 0;
}

.country-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-search input {
    outline: none;
}

.country-select-dropdown::-webkit-scrollbar {
    width: 5px;
    background-color: var(--white-clr);
}

.country-select-dropdown::-webkit-scrollbar-thumb {
    background-color: var(--black-clr);
    border-radius: 10px;
}

.auth-check-radios {
    width: 70%;
}

.auth-check-radios label {
    font-size: var(--font-size-14);
    color: var(--grey-clr);
    cursor: pointer;
}

.auth-check-radios label span {
    text-decoration: underline;
}

.auth-check-radios .form-check-input:focus {
    border-color: var(--green-main-clr);
    box-shadow: 0 0 0 0.1rem var(--green-main-clr-0-16);
}

.auth-check-radios .form-check-input:checked {
    background-color: var(--green-main-clr);
    border-color: var(--green-main-clr);
}

.auth-check-radios .form-check .samsub-alert span {
    color: var(--black-clr);
    font-weight: 600;
} */

/* Swiper show slide */
/* .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100% !important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 275px;
    object-fit: contain;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -6px;
}

.swiper-pagination-bullet {
    border: 1px solid var(--green-light-main-clr);
}

.swiper-pagination-bullet-active {
    background-color: var(--green-light-main-clr);
}

.swiper-slid-content .swiper-slide-title {
    color: var(--white-clr);
    font-weight: 600;
}

.swiper-slid-content p {
    color: var(--grey-clr);
    font-weight: 300;
    font-size: var(--font-size-14);
    width: 80%;
} */

/* Verification progress */
/* .auth-heading span {
    color: var(--orange-clr);
}

.thanks {
    font-size: var(--font-size-16);
    font-weight: 600;
}

.loading-dots {
    display: flex;
    gap: 5px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background-color: var(--orange-clr);
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%,
    80%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    40% {
        transform: scale(1.1);
        opacity: 1;
    }
} */

/* KYC verification style */
/* .kyc-wrapper {
    border: 1px solid var(--model-light-strok);
    border-radius: var(--border-radius-30);
    overflow: hidden;
    padding: 20px;
    width: 354px;
}

#selectType {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--grey-clr);
    border-radius: 6px;
    padding: 10px 20px;
    font-size: var(--font-size-14);
    height: 39px;
    margin-bottom: 4px;
}

.typo {
    width: 29% !important;
}

.v-label {
    font-size: var(--font-size-14) !important;
    font-weight: 500 !important;
    color: var(--main-black-clr) !important;
}

.QR-disktop-scanner {
    height: 150px;
}

.auth-body .QR-link-wrapper p {
    font-size: var(--font-size-12);
    color: var(--main-black-clr);
}

.auth-body .QR-link-wrapper .QR-link-input input {
    border: 1px solid var(--grey-clr);
    border-radius: 10px;
    padding: 10px;
    width: 50%;
}

.auth-body .QR-link-wrapper .QR-link-input .QR-link-btn {
    color: var(--white-clr);
    background-color: var(--green-main-clr);
    font-size: var(--font-size-14);
    font-weight: 500;
    padding: 11px;
    border-radius: 10px;
    border: 1px solid var(--white-clr);
    cursor: pointer;
    position: relative;
}

.auth-body .QR-link-wrapper .QR-link-input .QR-link-btn:hover {
    background-color: var(--green-main-hover-clr);
}

.auth-body .QR-link-btn::before {
    position: absolute;
    content: "Copied!";
    font-size: var(--font-size-12);
    color: var(--white-clr);
    top: 50%;
    left: -59px;
    transform: translateY(-50%);
    background-color: var(--green-main-clr);
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-body .QR-link-btn.w-copied::before {
    opacity: 1;
    visibility: visible;
}

.auth-body a .get-help span {
    color: var(--green-main-clr);
} */

/* New styles */
.auth-header {
    border-bottom: 1px solid var(--model-light-strok);
    height: 100px;
}

.auth-header .auth-back {
    background-color: transparent;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.auth-header .auth-back img {
    width: 15px;
    height: 15px;
}

.auth-header .auth-back:hover {
    background-color: #e2e2e2;
}

.auth-header .auth-header-left {
    align-content: center !important;
}

.auth-header .auth-logo {
    height: 50px;
}

.auth-header .auth-logo-mobile {
    height: 40px;
}

.auth-header .request-submit-btn,
.auth-header .complaint-submit-btn,
.auth-header .support-btn {
    background-color: var(--green-main-clr-0-16);
    color: var(--green-main-clr);
    padding: 8px 30px;
    font-size: var(--font-size-14);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
}

.auth-header .complaint-submit-btn {
    background-color: var(--orange-clr-0-16);
    color: var(--orange-clr);
}

.auth-header .request-submit-btn {
    background-color: var(--red-clr-0-16);
    color: var(--red-clr);
}

/* Language style */
.auth-header .languages img:hover {
    opacity: 0.8;
    cursor: pointer;
}

.auth-header .languages {
    position: relative;
}

.auth-header .languages img {
    height: 20px;
    width: 20px;
    border-radius: 50px;
}

.auth-header .languages::after {
    position: absolute;
    content: attr(data-tooltip);
    top: 25px;
    left: 22px;
    color: var(--grey-clr);
    font-size: var(--font-size-14);
    font-weight: 500;
    background: var(--model-light-clr);
    padding: 2px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 7px #11111117;
    display: none;
    z-index: 1000;
}

.auth-header .languages .langs-link-dropped {
    position: absolute;
    background-color: var(--model-light-clr);
    width: 200px;
    top: 2.5rem;
    right: -9px;
    transform: translateY(-20px); /* Start above */
    border-radius: 10px;
    box-shadow: 0 5px 66px 0 rgba(34, 48, 73, 0.2);
    opacity: 0;
    pointer-events: none; /* Prevent mouse events when hidden */
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 999;
}

.auth-header .languages .langs-link-dropped.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0); /* Move to normal position */
}

.auth-header .languages .langs-link-dropped::before {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent var(--model-light-clr) transparent;
    top: -8px;
    right: 8px;
    box-shadow: 0 20px 66px 0 rgba(34, 48, 73, 0.2);
}

.auth-header .languages .langs-link-dropped .langs-drop-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px 20px;
    row-gap: 10px;
}

.auth-header .languages .langs-link-dropped ._lang-li {
    font-size: var(--font-size-14);
    width: 100% !important;
    padding: 5px 0 5px 10px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--black-clr);
    cursor: default;
    filter: grayscale(1);
}

.auth-header .languages .langs-link-dropped ._lang-li:hover {
    background-color: var(--white-clr);
}

.auth-header .languages .langs-link-dropped ._lang-li.active {
    filter: grayscale(0);
    cursor: pointer;
}

/* Languages style end */

.auth-body {
    height: calc(100vh - 100px);
    padding-top: 50px;
    padding-bottom: 100px;
}

.auth-body .auth-title .title {
    font-size: var(--font-size-26);
    font-weight: 600;
}

.auth-body .auth-title p {
    font-size: var(--font-size-14);
    color: var(--grey-clr);
    width: 75%;
}

.auth-body .auth-title p span {
    color: var(--green-main-clr);
}

.auth-body .auth-title p span.signup {
    text-decoration: underline;
    font-weight: 600;
}

.auth-body .sign-up-account {
    border: 1px solid var(--model-light-strok);
    border-radius: var(--font-size-10);
    width: 350px;
    padding: 20px;
    cursor: pointer;
}

.auth-body .sign-up-account:hover {
    background-color: var(--model-light-clr);
}

.auth-body .sign-up-account img {
    width: 25px;
    height: 25px;
}

.auth-body .sign-up-account .s-title {
    font-size: var(--font-size-18);
    font-weight: 600;
}

.auth-body .sign-up-account p {
    font-size: var(--font-size-14);
    color: var(--grey-clr);
}

/* Countries select options */
.country-select-wrapper {
    position: relative;
}

.country-select-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-select-input img {
    width: 20px;
    height: 15px;
}

.country-select-dropdown {
    position: absolute;
    width: 100%;
    height: fit-content;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.country-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#countrySearch {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.country-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.country-item:hover {
    background: #f8f8f8;
}

.country-item img {
    width: 20px;
    height: 15px;
    flex-shrink: 0;
}

.country-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-search input {
    outline: none;
}

.country-select-dropdown::-webkit-scrollbar {
    width: 5px;
    background-color: var(--white-clr);
}

.country-select-dropdown::-webkit-scrollbar-thumb {
    background-color: var(--black-clr);
    border-radius: 10px;
}

/* Select countries end */
.auth-body .form-control {
    padding: 10px 20px;
}

.v-label {
    font-size: var(--font-size-14) !important;
    font-weight: 600 !important;
    color: rgb(109, 109, 109) !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem var(--green-main-clr-0-16) !important;
    transition: all 0.5s ease-in-out;
}

.form-control:hover {
    box-shadow: 0 0 0 0.03rem var(--green-main-clr);
    transition: all 0.5s ease-in-out;
}

.form-control::placeholder {
    opacity: 0.7;
}

.v-label span {
    color: var(--red-clr);
}

.auth-pass .btn {
    border-bottom-color: rgb(222, 226, 230);
    box-shadow: rgba(0, 168, 107, 0) 0px 0px 0px 1.20939e-8px;
    border-left-color: rgb(222, 226, 230);
    border-right-color: rgb(222, 226, 230);
    border-top-color: rgb(222, 226, 230);
}

.auth-pass .btn:hover {
    background-color: var(--green-main-clr-0-16);
}

.auth-pass .btn:active {
    border-color: rgb(222, 226, 230) !important;
}

.check-block .form-check,
.check-block .form-check label {
    cursor: pointer;
}

.check-block .form-check label {
    color: var(--grey-dark-clr);
    font-size: var(--font-size-14);
    font-weight: 500;
}

.check-block .form-check label a {
    color: var(--green-main-clr);
    text-decoration: underline;
}

.check-block .form-check-input:checked {
    background-color: var(--green-main-clr);
    border-color: var(--green-main-clr);
}

.check-block .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem var(--green-main-clr-0-16);
}

.auth-body .auth-form .code-input-wrapper .otp-input {
    width: 50px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--model-light-strok);
    background-color: var(--model-light-clr);
    padding: 10px 10px;
    color: var(--green-main-clr);
    font-size: var(--font-size-16);
    font-weight: 600;
}

.auth-body .auth-form .code-input-wrapper .otp-input:focus-visible {
    outline: 0 !important;
}

/* OTP code verification */

.otp-wrapper .real-otp-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.otp-wrapper .fake-otp-inputs {
    cursor: text;
}

.otp-wrapper .otp-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--grey-dark-clr);
    width: 48px;
    height: 40px;
    margin-bottom: 0;
    background-color: var(--white-clr);
    text-align: center;
    border: 1px solid var(--model-light-strok);
    border-radius: 10px;
    animation: shake 0.3s ease-in-out;
    outline: 0px solid var(--green-main-clr-0-16) !important;
    transition: all 0.3s ease-in-out;
}

.otp-wrapper .otp-box:focus-visible {
    border-color: var(--green-main-clr) !important;
    box-shadow: 0 0 0 0.25rem var(--green-main-clr-0-16) !important;
    transition: all 0.3s ease-in-out;
}

.otp-wrapper .otp-box.full {
    outline: 1px solid var(--green-main-clr-0-16) !important;
}

.otp-wrapper .otp-error input {
    border-color: var(--red-clr) !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-5px);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(-5px);
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

/* otp valid effect color */
.code-input-wrapper .otp-input.otp-valid {
    border-color: var(--green-main-clr) !important;
}

/* Resend button */
.re-send {
    font-size: var(--font-size-14);
    color: var(--black-clr);
    font-weight: 500;
}

.re-send span {
    color: var(--green-main-clr);
    cursor: pointer;
}

/* otp error effect animation */

.code-input-wrapper.input-err .otp-input {
    border-color: var(--red-clr) !important;
    animation: shake 0.3s ease-in-out;
    color: var(--red-clr) !important;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-5px);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(-5px);
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.input-err:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.16) !important;
    transition: all 0.5s ease-in-out;
}

.input-err:hover {
    box-shadow: 0 0 0 0.03rem var(--red-clr);
    transition: all 0.5s ease-in-out;
}

.auth-body .sign-up-account .access {
    font-size: var(--font-size-12);
    background-color: var(--model-light-clr);
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--grey-clr);
    font-weight: 500;
}

.auth-body .sign-up-account .access.disponible {
    color: var(--green-main-clr) !important;
    background-color: var(--green-main-clr-0-16);
}

.auth-body .sign-up-account.soon {
    background-color: var(--model-light-clr);
    opacity: 0.5;
    cursor: default;
}

#ifSpain {
    cursor: not-allowed;
}

.login-issue {
    font-size: var(--font-size-14);
    font-weight: 600;
    color: var(--green-main-clr);
    text-decoration: underline;
}

.auth-body .helps {
    font-size: var(--font-size-14);
    color: var(--grey-clr);
}

.auth-body .helps span {
    color: var(--green-main-clr);
    font-weight: 600;
    text-decoration: underline;
}

.auth-body .auth-key {
    height: 150px;
}

.auth-body .auth-verification {
    height: 50px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: var(--white-clr);
    cursor: pointer;
    user-select: none;
}

.dropdown-selected {
    padding: 10px 12px;
}

.dropdown-options {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: top 0.2s ease, opacity 0.2s ease;
}

/* When dropdown is active */
.dropdown-options.show {
    top: 45px;
    opacity: 1;
    pointer-events: auto;
}

.option {
    padding: 10px 12px;
}

.option:hover {
    background-color: var(--green-main-clr-0-16);
}

.auth-header .auth-lang {
    position: relative;
}

.auth-header .auth-lang img:hover {
    opacity: 0.8;
    cursor: pointer;
}

.auth-header .auth-lang::after {
    position: absolute;
    content: attr(data-tooltip);
    top: 25px;
    left: 22px;
    color: var(--grey-clr);
    font-size: var(--font-size-14);
    font-weight: 500;
    background: var(--model-light-clr);
    padding: 2px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 7px #11111117;
    display: none;
}

.auth-header .auth-lang:hover::after {
    display: block;
}

/* KYC Verification p2p */
.verify-component {
    width: 100%;
    height: 100%;
    padding: 24px 18px 28px;
    border-radius: 20px;
    border: 1px solid var(--model-light-strok);
}

.verify-component .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--model-light-clr);
    width: 35px;
    height: 35px;
    border-radius: 50px;
}

.verify-component .icon-circle img {
    width: 20px;
    height: 20px;
}

.verify-component .verify-header .verify-title {
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--black-clr);
}

.verify-component .verify-header .verify-time {
    font-size: var(--font-size-14);
    font-weight: 500;
    color: var(--grey-clr);
}

/* Canceled account style */
.canceled-img-wrapper {
    overflow: hidden;
    height: fit-content;
    width: 300px;
}

.canceled-title p {
    width: 450px;
}

/* request alert */
.request-alert {
    font-size: var(--font-size-14);
    color: var(--grey-dark-clr);
    padding: 10px 40px;
    width: fit-content;
    border-radius: var(--border-radius-10);
    border: 1px solid #ff5a65;
}

.request-alert.green {
    background-color: #def2e6;
    border: 1px solid #7fdca4;
}

.request-alert img {
    height: 15px;
}

.request-alert span {
    padding-top: 2px;
    text-align: start;
}
