/* Copy Animation */
.base-color {
    color: hsl(var(--base)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: hsl(var(--base));
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.cookies-card__desc {
    font-size: 0.875rem;
}

.cookies-card__desc a {
    color: hsl(var(--white));
    text-decoration: underline;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}

.cookies-card {
    width: 720px;
    padding: 24px;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all 0.5s;
    background: hsl(var(--white));
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookies-card-content {
    flex: 1;
}

.cookies-card__btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 120px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    border-radius: 50%;
    background-color: transparent;
    color: hsl(var(--white));
    font-size: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .cookies-card {
        flex-direction: column;
    }

    .cookies-card__btn {
        flex-direction: row;
        align-items: flex-end;
        width: 100%;
    }
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: "";
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: "";
    font-family: "Line Awesome Free";
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

@media (max-width: 767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow:
        0 3px 9px rgba(50, 50, 9, 0.05),
        6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
    padding: 10px 10px !important;
    border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: hsl(var(--border-color)) !important;
    padding: 10px 20px;
    border-radius: 4px !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
    padding: 12px 14px !important;
    border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
    text-align: center !important;
    padding: 12px 14px !important;
}

.select2-container--default
    .select2-results
    > .select2-results__options::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
}

.select2-container--default
    .select2-results
    > .select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.select2-container--default
    .select2-results
    > .select2-results__options::-webkit-scrollbar-thumb {
    background: #ddd;
}

.select2-container--default
    .select2-results
    > .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    display: none;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow:after {
    position: absolute;
    right: 10px;
    top: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: 0.3s;
}

.select2-container--default .select2-selection--single {
    border-color: #ced4da !important;
    border-width: 2px !important;
    border-radius: 0.375rem !important;
    padding: 0.375rem 0.75rem !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 28px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 10px !important;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

.select2-results__option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f1f1f1 !important;
    color: #000 !important;
}

.select2-container--default
    .select2-search--dropdown
    .select2-search__field:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

.select2-dropdown .country-flag {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.select2-dropdown .gateway-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
    font-size: 12px;
    margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
    border-color: hsl(var(--base)) !important;
}

/* PAYMENT CARD */
.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: hsl(var(--black) / 0.1);
}

.payment-system-list {
    --thumb-width: 80px;
    --thumb-height: 32px;
    --border-color: hsl(var(--black) / 0.1);
    background-color: hsl(var(--white));
    border-radius: 10px;
    padding-block: 24px;
    padding-inline: 16px;
    height: 100%;
}

.payment-system-list.border-style {
    border-left: 1px solid hsl(var(--black) / 0.1);
    border-radius: 0;
}

@media (max-width: 991px) {
    .payment-system-list.border-style {
        border-left: 0;
        border-top: 1px solid hsl(var(--black) / 0.1);
    }
}

hr {
    border-top: 1px solid hsl(var(--black) / 0.1);
    opacity: 1;
}

.payment-system-list.is-scrollable {
    max-height: min(600px, 70vh);
    overflow-x: auto;
}

.modal .payment-system-list.is-scrollable {
    max-height: min(452px, 70vh);
    overflow-x: auto;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black) / 0.2);
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all linear 0.3s;
    margin-bottom: 16px;
    padding: 10px;
    border: 1px solid hsl(var(--black) / 0.1);
    border-radius: 8px;
    cursor: pointer;
}

.payment-item:has(.payment-item__radio:checked) {
    border-color: hsl(var(--base) / 0.2);
    background-color: hsl(var(--base) / 0.07);
}

.payment-item:has(.payment-item__radio:checked) .payment-item__name {
    color: hsl(var(--base));
}

.payment-item:has(.payment-item__radio:checked) .check-type-icon {
    border-color: hsl(var(--success));
}

.payment-item:has(.payment-item__radio:checked) .check-circle {
    display: block;
    color: hsl(var(--success));
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width));
    gap: 10px;
}

.payment-item__check {
    width: 10px;
    height: 10px;
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;
}

.payment-item__name {
    transition: all 0.3s;
    text-align: end;
}

.payment-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.payment-item__thumb {
    padding: 3px 12px;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: hsl(var(--black) / 0.1);
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}

.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid hsl(var(--black) / 0.1);
    border-radius: 5px;
}

.deposit-info__input-group-text {
    align-self: center;
    padding-inline: 16px;
    border: 0;
    background: transparent;
}

.deposit-info__input-group:has(.form--control:disabled),
.deposit-info__input-group:has(.form--control:read-only) {
    background: hsl(var(--white) / 0.05);
}

.deposit-info__input-group:has(.form--control:disabled) .form--control,
.deposit-info__input-group:has(.form--control:read-only) .form--control {
    background: transparent;
    border: 0 !important;
}

.deposit-info__input-group .form--control {
    padding: 5px;
    border: 0;
    height: 45px;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;
    color: hsl(var(--black));
}

.note-text {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-item__btn-text,
.payment-item__btn__icon {
    color: hsl(var(--success));
    font-size: 14px;
    font-weight: 600;
}

/* END GATEWAY */

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.select2-container--default .select2-selection--single {
    border-color: hsl(var(--black) / 0.1);
    border-width: 1px !important;
    border-radius: 4px !important;
    padding: 7px 16px !important;
    height: 100% !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px !important;
}
.select2-container--default .select2-selection--single {
    border-color: hsl(var(--black) / 0.1) !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    margin-top: 10px !important;
}

.select2-container .selection {
    width: 100%;
    display: inline-block;
}

.select2-container--default .select2-selection--multiple,
.select2-selection--multiple {
    border-color: #cacaca73 !important;
    height: unset !important;
    min-height: 45px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid hsl(var(--black) / 0.1);
}

.bg--primary {
    color: #fff !important;
}

.select2-container {
    width: 100% !important;
    min-width: 120px;
}

.select2-parent:has(.select2) {
    min-width: 200px;
}

span.select2-selection.select2-selection--single:focus-visible {
    border: 1px solid hsl(var(--base));
    outline: none !important;
}

.dropdown-list__item.langSel .text:hover {
    color: hsl(var(--white)) !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active {
    background-color: hsl(var(--base)) !important;
}

/* Native list styles for nicEdit and profile body */
.nicEdit-main ul,
.nicEdit-main ol,
.profile-wrapper__body
    ul:not(.rating-list):not(.proficiency-list):not(.review-rating-list):not(
        .skill-list
    ):not(.text-list),
.profile-wrapper__body ol,
.body-content__desc ul,
.body-content__desc ol {
    padding-left: 1.5em;
    margin: 0.5em 0;
}

.nicEdit-main ul,
.profile-wrapper__body
    ul:not(.rating-list):not(.proficiency-list):not(.review-rating-list):not(
        .skill-list
    ):not(.text-list),
.body-content__desc ul {
    list-style-type: disc;
}

.nicEdit-main ol,
.profile-wrapper__body ol,
.body-content__desc ol {
    list-style-type: decimal;
}

.nicEdit-main li,
.profile-wrapper__body li,
.body-content__desc li {
    display: list-item;
    margin: 0.25em 0;
}

.nicEdit-main ul ul,
.profile-wrapper__body ul ul,
.body-content__desc ul ul {
    list-style-type: circle;
}

.nicEdit-main ul ul ul,
.profile-wrapper__body ul ul ul,
.body-content__desc ul ul ul {
    list-style-type: square;
}

/* Auth Modal Styles */
#authModal .modal-dialog {
    max-width: 1100px;
    margin: 1.75rem auto;
}

#authModal .auth-modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#authModal .auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1060;
}

#authModal .auth-modal-body {
    position: relative;
    min-height: 600px;
    background: hsl(var(--white));
}

#authModal .auth-modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

#authModal #authModalIframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

#authModal.loaded .auth-modal-loader {
    display: none;
}

@media (max-width: 1199px) {
    #authModal .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }

    #authModal #authModalIframe {
        height: 80vh;
    }
}

@media (max-width: 767px) {
    #authModal .auth-modal-body {
        min-height: 500px;
    }

    #authModal #authModalIframe {
        height: 85vh;
    }
}

@media (max-width: 479px) {
    #authModal .modal-dialog {
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    #authModal .auth-modal-content {
        height: 100%;
        border-radius: 0;
    }

    #authModal .auth-modal-body {
        height: 100%;
        min-height: 100%;
    }

    #authModal #authModalIframe {
        height: 100%;
    }

    #authModal .auth-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Modal view optimizations for auth pages */
body.modal-view .account {
    min-height: auto;
}

body.modal-view .account-inner {
    min-height: auto;
}

body.modal-view .account-form__logo {
    display: none;
}

body.modal-view .preloader {
    display: none !important;
}

body.modal-view .scroll-top,
body.modal-view .cookies-card,
body.modal-view .body-overlay,
body.modal-view .sidebar-overlay {
    display: none !important;
}
