@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("/assets/fonts/fontawesome/css/all.min.css");

:root {
    --color-primary: #667eea;
    --color-primary-dark: #5a67d8;
    --color-secondary: #764ba2;
    --color-accent: #f093fb;
    --color-success: #48bb78;
    --color-success-hover: #348556;
    --color-warning: #ed8936;
    --color-error: #f56565;
    --color-white-smoke: #f0f0f0;
    --color-white: #fff;
    --color-solitude: #E2E8F0;

    --color-gray-100: #f1f5f9;
    --color-gray-300: #cbd5e1;
    --color-gray-500: #64748b;
    --color-gray-700: #334155;
    --color-gray-900: #0f172a;

    --font-h1: clamp(36px, 4vw + 8px, 48px);
    --font-h2: clamp(30px, 3.5vw + 6px, 40px);
    --font-h3: clamp(24px, 3vw + 4px, 32px);
    --font-h4: clamp(20px, 2.5vw + 3px, 28px);
    --font-h5: clamp(18px, 2vw + 2px, 24px);

    --font-md: clamp(16px, 1.5vw + 2px, 20px);
    --font-sm: clamp(14px, 1.2vw + 2px, 18px);
    --font-xs: clamp(12px, 1vw + 1px, 16px);
}

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    min-height: 100vh;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    /* overflow: hidden; */
}

body {
    position: relative;
}

img {
    max-width: 100%;
}

h1 {
    font-size: var(--font-h1);
    font-weight: bold;
    color: var(--color-primary-dark);
}

h2 {
    font-size: var(--font-h2);
    font-weight: bold;
}

h3 {
    font-size: var(--font-h3);
    font-weight: bold;
}

h4 {
    font-size: var(--font-h4);
    font-weight: bold;
}

h5 {
    font-size: var(--font-h5);
    font-weight: bold;
}

p {
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--color-gray-700);
}

button:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

html,
body {
    height: 100%;
    background-color: var(--color-white-smoke);
}


.page {
    background-color: var(--color-white-smoke);
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow-x: clip;
    background-attachment: fixed;
    /* фиксация фона предотвращает смещение */
    padding-bottom: env(safe-area-inset-bottom);
    /* адаптация к iPhone */
}

.page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 50;
}

.page.overlay-bg::before {
    opacity: 1;
    pointer-events: auto;
}

.header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 52;
    padding-top: calc(10px + env(safe-area-inset-top));
}

.header__content {
    margin: 0 20px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1200px;
    width: calc(100% - 90px);
    margin: 0 auto;
}

.hgi{
    font-size: 21px;
}

.logo {
    display: none;
}

.logo__link {}

.logo__img {}

.menu {}

.menu__btnWrap {}

.menu__btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: inherit;
    border: none;
    cursor: pointer;
    position: relative;
    transition: 500ms all;
    background: transparent;
}

.asc-form input {
    font-size: 16px!important;
}

/* 
.header.is-sticky .menu__btn {
    opacity: 0.7;
}

.header.is-sticky .menu__btn:hover {
    opacity: 1;
} */

/* .menu__btn::after {
    content: "";
    clear: both;
    position: absolute;
    top: -15px;
    left: -11px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0;
    transition: 500ms all;
    background-color: var(--color-white);
    box-shadow: 0px 0px 4px var(--color-gray-700);
}

.header.is-sticky .menu__btn::after {
    opacity: 1;
} */

.menu__btn:focus {
    outline: none;
}

.menu__btn span {
    width: 37px;
    height: 5px;
    background-image: -moz-linear-gradient(0deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    position: relative;
    z-index: 1;
}

.menu__btn span:nth-of-type(2) {
    width: 29px;
}

.menu__navWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 100px);
    height: 100vh;
    background-image: -moz-linear-gradient(90deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(118, 76, 164) 0%, rgb(102, 126, 233) 100%);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 51;
    transition: 500ms all;
    transform: translateX(-100%);
    padding: 30px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.overlay-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.menu__nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menuNav__li {}

.menuNav__link {
    color: var(--color-white);
    font-size: var(--font-h4);
    text-decoration: initial;
    font-weight: 400;
    text-shadow: 0px 2px 1px rgba(51, 65, 85, 0.5);
}

.menuNav__link i {
    margin-right: 7px;
}

.main {
    min-height: calc(100vh - 50px);
}

.logoSection {
    margin-top: 20px;
}

.logoSection__wrap {
    margin: 0 20px;
}

.logoSection__link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoSection__img {}

.menu__top {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.menu__closeBtnWrap {
    display: flex;
    margin: 0 20px;
}

.menu__closeBtn {
    padding: 0;
    border: none;
    background: transparent;
    line-height: 60%;
    color: #fff;
    text-shadow: 0px 2px 1px rgba(51, 65, 85, 0.5);
    font-size: 30px;
    position: absolute;
    top: 0px;
    right: 10px;
}

.menu__titleWrap {
    margin: 0 20px;
}

.menu__title {
    color: var(--color-white);
    text-shadow: 0px 2px 1px rgba(51, 65, 85, 0.5);
}

.menu__middle {
    flex: 1;
    margin: 50px 0;
}

.menu__bottom {}

.menuMobile__btnWrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menuMobile__btn {
    color: var(--color-white);
    font-size: var(--font-h4);
    text-decoration: initial;
    font-weight: 400;
    text-shadow: 0px 2px 1px rgba(51, 65, 85, 0.5);
}

.menuMobile__btn i {
    margin-left: 7px;
}

.loginSection {
    margin-top: 100px;
}

.loginSection__wrap {}

.page__titleWrap {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.page__title {
    color: var(--color-gray-700);
    position: relative;
    line-height: 120%;
    text-align: center;
}

.page__title::after {
    content: "";
    clear: both;
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

.whiteCard {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 75px 50px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid var(--color-solitude);
    margin-top: 35px;
    box-shadow: 0px 2px 5.64px 0.36px rgba(0, 0, 0, 0.1);
}

.login__btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 0 10px;
    height: 45px;
    border-radius: 8px;
    border: initial;
    color: var(--color-white);
    font-size: var(--font-md);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms all;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 480px;
    width: 100%;
}

.btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-green {
    background-color: var(--color-success);
    color: var(--color-white);
}

.btn-green.btn:not(:disabled):hover {
    background-color: var(--color-success-hover);
}

.whiteCard__bgIcon {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer__link{
    color: var(--color-gray-700);
    font-size: 14px;
    /* transition: 500ms all; */
    /* overflow: hidden; */
    /* padding-bottom: 4px; */
}

.whiteCard__bgIcon-img {}

.link__btnWrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link__btn {
    position: relative;
    color: var(--color-gray-700);
    font-size: var(--font-h3);
    transition: 500ms all;
    overflow: hidden;
    padding-bottom: 4px;
}

.link__btn::after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-700);
    transition: 500ms all;
}

.link__btn:hover::after {
    transform: translateX(-100%);
}

.link__btn:hover {
    color: var(--color-primary);
}

.btn:disabled {
    filter: grayscale(1);
    cursor: no-drop;
}

.link__btn-sm {
    font-size: var(--font-md);
}

.link__btn-sm ::after {
    height: 1px;
}

.formBlock {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formBlock__row {}

.formBlock__input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    height: 48px;
    padding: 0 15px;
    color: var(--color-gray-900);
    transition: 500ms all;
    font-weight: 500;
    font-size: var(--font-sm);
}

.formBlock__input::placeholder {
    color: var(--color-gray-500);
}

.formBlock__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.formBlock__btnWrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.formBlock__btnWrap .btn {
    width: 100%;
}

.whiteCard-lg {
    padding: 20px;
}

.btn-md {
    padding: 0 50px;
}

.page__textWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.justify-center {}

.page__text {
    color: var(--color-gray-700);
    font-size: var(--font-sm);
}

.select2-container--default .select2-selection--single {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    height: 48px;
    padding: 0 15px;
    color: var(--color-gray-900);
    font-weight: 500;
    transition: 300ms all ease;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-gray-900);
    line-height: 48px;
    font-weight: 500;
    font-size: var(--font-sm);
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-gray-500);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Option ÑÑ‚Ð¸Ð»Ð¸ */
.select2-container--default .select2-results__option {
    padding: 10px 15px;
    font-weight: 500;
    transition: 0.2s ease;
    color: var(--color-gray-900);
    background: #fff;
    cursor: pointer;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
    color: #fff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--color-primary);
    color: #fff;
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ */
.select2-dropdown {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€Ð° */
.select2-container--default .select2-selection--single {
    appearance: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--color-success) transparent transparent transparent;
    border-width: 12px 8px 0 8px;
    margin-left: -7px;
    margin-top: -5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--color-success) transparent;
    border-width: 0 8px 12px 8px;
}

.telegramCard {
    padding: 20px;
}

.telegramCard__bg {
    position: absolute;
    top: 0;
    left: 20px;
}

.telegramCard__titleWrap {
    margin-left: 70px;
    margin-bottom: 20px;
}

.telegramCard__title {
    color: var(--color-gray-700);
    line-height: 120%;
}

.telegramCard__content {
    display: flex;
    background-color: var(--color-white-smoke);
    border-radius: 8px;
    padding: 20px 10px 20px 20px;
    gap: 10px;
    align-items: center;
}

.telegramCard__textWrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.telegramCard__text {
    line-height: 140%;
    font-size: var(--font-sm);
}

.telegramCard__iconWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    line-height: 70%;
    color: var(--color-warning);
    filter: drop-shadow(0px 2px 1px rgba(51, 65, 85, 0.5));
}

.telegramCard__iconWrap i {}

.fa-solid {}

.fa-circle-plus {}

.btn-telegram i {
    font-size: 26px;
}

.btn-gray {
    background-color: var(--color-gray-500);
}

.btn-gray:hover {
    background-color: var(--color-gray-700);
}

.text-center {
    text-align: center;
}

.page__title-red {
    color: var(--color-error);
}

.telegramCard__titleWrap2 {
    margin-left: initial;
}

.logo2 {
    display: block;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 130px;
    width: 100%;
}

.logo2 .logo__link {
    display: flex;
}

.pageSection {
    padding-top: 70px;
}

.fee__tilteBlock {
    display: flex;
    margin: 0 20px;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.fee__tilteWrap {
    position: relative;
    padding-bottom: 4px;
}

.fee__tilteWrap::after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.fee__tilte {
    color: var(--color-gray-700);
    line-height: 120%;
    font-weight: 500;
}

.feeCard {
    margin-top: 20px;
}

.fee__info {
    padding: 20px;
    background-color: var(--color-white-smoke);
    border-radius: 8px;
}

.feePnfo__text {
    color: var(--color-gray-700);
    line-height: 130%;
}

.feeTilteBlock__imgWrap {}

.feeTilteBlock__img {}

.fee__methods {
    margin: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feeMethod__block {}

.feeMethods__labelWrap {}

.feeMethods__label {
    color: var(--color-gray-700);
    font-size: var(--font-md);
}

.feeMethod__content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio__container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: var(--font-md);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-solitude);
    border-radius: 8px;
    color: var(--color-gray-700);
    font-weight: 500;
    border: 1px solid var(--color-gray-300);
}

.radio__container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio__checkmark {
    position: absolute;
    top: 50%;
    left: 13px;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-300);
    transform: translateY(-50%);
}

.radio__container:hover input~.radio__checkmark {
    /* background-color: #ccc; */
}

.radio__container input:checked~.radio__checkmark {
    background-color: var(--color-success);
    border-color: var(--color-white);
}

.radio__checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio__container input:checked~.radio__checkmark:after {
    display: block;
}

.radio__container .radio__checkmark:after {
    top: 3px;
    left: 8px;
    width: 4px;
    height: 12px;
    border-bottom: 3px solid var(--color-gray-700);
    border-right: 3px solid var(--color-gray-700);
    rotate: 45deg;
}

.radio__container:has(input:checked) {
    background-color: var(--color-warning);
    color: var(--color-white);
}

.deskptopMenu__bottom {}

.yourWallet {
    padding: 20px;
    border-radius: 8px;
    background-color: var(--color-gray-300);
    border: 1px solid var(--color-white-smoke);
}

.yourWallet__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.yourWallet__labelWrap {}

.yourWallet__label {
    font-size: var(--font-sm);
    color: var(--color-gray-500);
    font-weight: 500;
}

.yourWallet__value {
    font-size: 11px;
    color: var(--color-gray-700);
}


/* .page__left {
    position: fixed;
    top: 0;
    left: -310px;
    width: 310px;
    height: 100%;
    background-color: #003b6b;
    z-index: 51;
    box-sizing: border-box;
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
} */


.page__left {
    position: fixed;
    top: 0;
    left: -310px;
    width: 310px;
    height: calc(var(--real-vh, 1vh) * 100);
    background-color: #003b6b;
    z-index: 51;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    transition: left 0.4s ease;
}

.page__left.active {
    left: 0;
    /* выезжает */
}


.deskptop__menu {
    position: sticky;
    top: 20px;
    left: 0;
    height: calc(100vh - 40px);
    height: calc(100dvh - 80px);
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    padding-right: 4px;
}

.deskptop__menu::-webkit-scrollbar {
    display: none;
}

.deskptop__menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.deskptop__menu .menu__nav {
    flex-direction: column;
    padding: 0;
    border-radius: initial;
    gap: 0;
    background: transparent;
}

.page2 .header.header.is-sticky {
    box-shadow: 2px 2px 2px rgba(51, 65, 85, 0.5);
    background-color: var(--color-gray-100);
}

.menuNav__link {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    color: var(--color-gray-700);
    gap: 7px;
    background-color: var(--color-white-smoke);
    border-radius: 8px;
    font-size: var(--font-md);
    transition: 500ms all;
    text-shadow: 0px 1px 1px rgba(51, 65, 85, 0.5);
}

.menuNav__link:hover,
.menuNav__link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.menuNav__link.menuNav__link-admin {
    background-color: rgba(123, 92, 199, 0.12);
    border: 1px solid rgba(123, 92, 199, 0.2);
    color: #6749b1;
    text-shadow: none;
}

.menuNav__link.menuNav__link-admin:hover,
.menuNav__link.menuNav__link-admin.active {
    background-color: #7b5cc7;
    border-color: #7b5cc7;
    color: #fff;
}

.deskptop__menu .menuNav__link {
    justify-content: flex-start;
    border-radius: initial;
    background-color: transparent;
    color: var(--color-gray-300);
    padding: 0 20px;
    font-size: 18px;
}

.deskptop__logo {
    display: flex;
    /* justify-content: center; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header2.header.is-sticky {
    border-bottom-left-radius: 0;
}

.deskptopMenu__top {
    /* flex: 1; */
}

.yourWallet__copy {
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 0;
    border: none;
    background: initial;
    cursor: pointer;
    font-size: 17px;
    color: var(--color-gray-700);
    transition: 500ms all;
}

.yourWallet__copy:hover {
    color: var(--color-gray-500);
}

.deskptop__logo path {
    fill: var(--color-white);
}

.cryptoCard {
    background: conic-gradient(from 210deg, rgb(197, 187, 184) 0deg, rgb(197, 187, 184) 24deg, rgb(184, 181, 184) 24deg, rgb(184, 181, 184) 48deg, rgb(169, 175, 183) 48deg, rgb(169, 175, 183) 72deg, rgb(154, 168, 181) 72deg, rgb(154, 168, 181) 96deg, rgb(139, 161, 179) 96deg, rgb(139, 161, 179) 120deg, rgb(125, 152, 175) 120deg, rgb(125, 152, 175) 144deg, rgb(112, 144, 171) 144deg, rgb(112, 144, 171) 168deg, rgb(101, 135, 166) 168deg, rgb(101, 135, 166) 192deg, rgb(92, 126, 161) 192deg, rgb(92, 126, 161) 216deg, rgb(85, 117, 155) 216deg, rgb(85, 117, 155) 240deg, rgb(81, 108, 148) 240deg, rgb(81, 108, 148) 264deg, rgb(79, 99, 141) 264deg, rgb(79, 99, 141) 288deg, rgb(80, 90, 133) 288deg, rgb(80, 90, 133) 312deg, rgb(84, 83, 125) 312deg, rgb(84, 83, 125) 336deg, rgb(91, 75, 116) 336deg, rgb(91, 75, 116) 360deg);
    border-radius: 16px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 20px 30px;
}

.cryptoCard-2 {
    background: conic-gradient(from 45deg, rgb(119, 171, 220) 0deg, rgb(119, 171, 220) 27.692deg, rgb(99, 187, 220) 27.692deg, rgb(99, 187, 220) 55.385deg, rgb(88, 204, 210) 55.385deg, rgb(88, 204, 210) 83.077deg, rgb(89, 219, 193) 83.077deg, rgb(89, 219, 193) 110.769deg, rgb(101, 228, 172) 110.769deg, rgb(101, 228, 172) 138.462deg, rgb(122, 230, 149) 138.462deg, rgb(122, 230, 149) 166.154deg, rgb(149, 224, 129) 166.154deg, rgb(149, 224, 129) 193.846deg, rgb(177, 212, 116) 193.846deg, rgb(177, 212, 116) 221.538deg, rgb(202, 195, 111) 221.538deg, rgb(202, 195, 111) 249.231deg, rgb(219, 178, 115) 249.231deg, rgb(219, 178, 115) 276.923deg, rgb(225, 165, 129) 276.923deg, rgb(225, 165, 129) 304.615deg, rgb(220, 156, 148) 304.615deg, rgb(220, 156, 148) 332.308deg, rgb(205, 156, 171) 332.308deg, rgb(205, 156, 171) 360deg);
}

.cryptoCard::after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003b6b;
    opacity: 0.4;
    border-radius: 16px;
}

.cryptoCard__top {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cryptoCardTop__label {
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 1px 1px 0px #000;
}

.cryptoCardTop__walletWrap {
    display: flex;
    position: relative;
}

.cryptoCardTop__wallet {
    color: var(--color-gray-300);
    font-size: 13px;
    text-shadow: 1px 1px 0px #000;
}

.cryptoCard__middle {
    position: relative;
    z-index: 1;
}

.cryptoCard__value {
    color: #fff;
    font-size: 23px;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000;
}

.cryptoCard__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cryptoCard__value2 {
    color: var(--color-gray-300);
    font-size: 13px;
    text-shadow: 1px 1px 0px #000;
}

.cryptoCardBottom__left {}

.cryptoCardBottom__right {}

.cryptoCardBottom__btns {
    display: flex;
    gap: 10px;
}

.cryptoCardBottom__btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
    background-color: rgb(0 0 0 / 20%);
    color: #fff;
    cursor: pointer;
    transition: 500ms all;
}

.cryptoCardBottom__btn:hover {
    background-color: rgb(0 0 0 / 40%);
}

.deskptop__menu .menuNav__link:hover,
.deskptop__menu .menuNav__link.active {
    background-color: var(--color-gray-500);
    color: #fff;
}

.deskptop__menu .menuNav__link.menuNav__link-admin {
    margin: 0 12px;
    padding: 0 16px;
    border-radius: 10px;
    background-color: rgba(123, 92, 199, 0.18);
    border: 1px solid rgba(123, 92, 199, 0.28);
    color: #e7dcff;
}

.deskptop__menu .menuNav__link.menuNav__link-admin:hover,
.deskptop__menu .menuNav__link.menuNav__link-admin.active {
    background-color: #7b5cc7;
    border-color: #7b5cc7;
    color: #fff;
}

.menu__line {
    height: 1px;
    background-color: var(--color-gray-500);
    margin: 20px 20px;
    box-sizing: border-box;
}

.desktopMenu__blocks {
    flex: 1;
    overflow-y: auto;
    /* overflow-y: scroll; */
}

.desktopMenu__blocks::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.desktopMenu__blocks::-webkit-scrollbar-track {
    background: var(--color-gray-300);
    border-radius: 4px;
}

.desktopMenu__blocks::-webkit-scrollbar-thumb {
    background: #705dbb;
    border-radius: 4px;
}

.desktopMenu__blocks::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.menuNav__link-dropdown {
    position: relative;
}

.menuLanguageSwitcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    position: relative;
    z-index: 2;
}

.menuLanguageSwitcher__inner {
    position: relative;
}

.menuLanguageSwitcher__trigger {
    justify-content: center;
    padding: 0 40px 0 12px;
    min-width: 64px;
    border-radius: 12px;
    background-color: rgba(123, 92, 199, 0.18);
    color: var(--color-gray-700);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.menuLanguageSwitcher__trigger:hover,
.menuLanguageSwitcher__trigger.active {
    background-color: var(--color-white);
    color: var(--color-gray-700);
}

.menuLanguageSwitcher__trigger .menuNavLinkDropdown__arrow {
    right: 14px;
}

.menuLanguageSwitcher__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.menuLanguageSwitcher__flag svg {
    width: 22px;
    height: 22px;
    display: block;
}

.menuLanguageSwitcher__content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 176px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.menuLanguageSwitcher__label {
    white-space: nowrap;
}

.menuNavLinkDropdown__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.menuNavLinkDropdown__content {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    background-color: #014b87;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.menuNavDropdown__link {
    justify-content: flex-start;
    border-radius: initial;
    background-color: transparent;
    color: var(--color-gray-300);
    padding: 9px 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 500ms all;
    height: 47px;
}

.menuNavDropdown__link svg {
    width: 17px;
    height: 17px;
}

.menuNavDropdown__link:hover {
    background-color: #022d51;
    color: var(--color-white);
}

.menuNav__link-dropdown .menuNavLinkDropdown__arrow {
    transition: transform 0.3s ease;
}

.menuNav__link-dropdown.active .menuNavLinkDropdown__arrow {
    transform: rotate(180deg) translateY(7px);
}

.menuLanguageSwitcher__content {
    margin: 0;
    background-color: var(--color-white);
    padding: 0;
    z-index: 1000;
    pointer-events: none;
}

.menuLanguageSwitcher__content.active {
    padding: 8px 0;
    pointer-events: auto;
}

.menuLanguageSwitcher__content .menuNavDropdown__link {
    color: var(--color-gray-700);
    gap: 12px;
    padding: 10px 20px;
    font-size: 14px;
    height: auto;
}

.menuLanguageSwitcher__content .menuNavDropdown__link svg {
    width: 18px;
    height: 18px;
}

.menuLanguageSwitcher__content .menuNavDropdown__link:hover,
.menuLanguageSwitcher__content .menuNavDropdown__link.active {
    background-color: var(--color-solitude);
    color: var(--color-primary);
}

.tippy-box[data-theme~='custom'] {
    background-color: var(--color-gray-300);
    color: var(--color-gray-700);
    font-size: 11px;
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: bold;
}

.tippy-box[data-theme~='custom'][data-placement^='top']>.tippy-arrow::before {
    border-top-color: var(--color-gray-300);
}

.tippy-box[data-theme~='custom'][data-placement^='bottom']>.tippy-arrow::before {
    border-bottom-color: var(--color-gray-300);
}

.tippy-box[data-theme~='custom'][data-placement^='left']>.tippy-arrow::before {
    border-left-color: var(--color-gray-300);
}

.tippy-box[data-theme~='custom'][data-placement^='right']>.tippy-arrow::before {
    border-right-color: var(--color-gray-300);
}

.logo2 {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    /* max-width: 200px; */
}

.deskptop__logo .logo__link {
    display: flex;
    max-width: 200px;
    width: 100%;
}

.page__right {
    position: relative;
    z-index: 1;
}
.simpleMenu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1500px;
	width: calc(100% - 20px);
}

.btn-orange {
    background-color: var(--color-warning);
    color: var(--color-white);
}

.btn-orange:hover {
    background-color: #e96a00;
}

.whiteCardFull {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid var(--color-solitude);
    box-shadow: 0px 2px 5.64px 0.36px rgba(0, 0, 0, 0.1);
}

.whiteCard__title {
    color: var(--color-gray-700);
    line-height: 120%;
}

.logo2 .logo__link svg {
    width: 130px;
    height: 54px;
}

.header-bg {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.informer {
    background-color: var(--color-gray-100);
    padding: 20px;
    border-radius: 10px;
}

.informer__titleWrap {
    text-align: center;
}

.informer__title {
    color: var(--color-gray-700);
    line-height: 120%;
}

.informer__textWrap {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.informer__text {
    color: var(--color-gray-500);
    line-height: 140%;
}

.informer__btnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.informer__btn {}

.mt-50 {
    margin-top: 30px;
}


.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination__ul {
    display: flex;
    gap: 10px;
}

.pagination__li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination__link {
    color: var(--color-light-grey);
    font-size: 16px;
    font-weight: 500;
    transition: 500ms all;
}

.pagination__link-prev {
    width: 5px;
    height: 5px;
    display: flex;
    border-left: 1px solid var(--color-light-grey);
    border-bottom: 1px solid var(--color-light-grey);
    transform: rotate(45deg);
}

.pagination__link-active {
    color: var(--color-sunglow);
}

.pagination__link-next {
    width: 5px;
    height: 5px;
    display: flex;
    border-right: 1px solid var(--color-light-grey);
    border-bottom: 1px solid var(--color-light-grey);
    transform: rotate(-45deg);
}

.pagination__link:hover {
    color: var(--color-sunglow);
}

.pagination__link-next:hover,
.pagination__link-prev:hover {
    border-color: var(--color-sunglow);
}

.page-simle .page__right {
    margin-left: 0;
}

.pageSection-tsx {
    background: url(/assets/images/nft-gallery/tsx-bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
}

.skafandr {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-weight: bold;
    gap: 10px;
}

.skafandr i {
    font-size: 30px;
}
.skafandr__img {
}

b, strong{
    font-weight: bold;
}

.vue-app .offcanvas {
    height: calc(100vh - 20px)!important;
}

.vue-app .offcanvas__additionalParamsContent {
    line-height: 1.4!important;
}

.infoBlock{
    padding: 8px 12px;
    /* background: var(--color-gray-500); */
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 20;
}

.infoBlock__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.infoBlock__language{
    flex-shrink: 0;
    position: relative;
    align-self: center;
    z-index: 30;
}

.infoBlock__language .menuLanguageSwitcher__trigger{
    min-width: 56px;
    height: 36px;
    padding: 0 34px 0 10px;
}

.infoBlock__language .menuLanguageSwitcher__trigger .menuNavLinkDropdown__arrow{
    right: 4px;
    color: #FFF;
    transition: 500ms all;
}

.infoRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.infoRow i {
    font-size: 20px;
}

.infoRow__block{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.infoRow__hint{
    font-size: 10px;
    color: var(--color-solitude);
}

.infoRow__value{
    font-size: 12px;
}

.currentLang {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: 500ms all;
}

.menuLanguageSwitcher__trigger:hover .currentLang, .menuLanguageSwitcher__trigger.active .currentLang {
    color: #003b6b;
}

.menuLanguageSwitcher__trigger:hover .menuNavLinkDropdown__arrow, .menuLanguageSwitcher__trigger.active .menuNavLinkDropdown__arrow {
    color: #003b6b;
}

.simpleMenu__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.infoBlock__language2 .menuLanguageSwitcher__trigger {
    background-color: var(--color-gray-300);
}

.infoBlock__language2 .currentLang {
    color: var(--color-gray-500);
}

.infoBlock__language2 .menuLanguageSwitcher__trigger .menuNavLinkDropdown__arrow {
    color: var(--color-gray-500);
}

@media(min-width: 576px) {
    .whiteCard {
        max-width: 480px;
        margin: 35px auto 0;
    }

    .fee__tilte br {
        display: none;
    }

    .feeCard {
        max-width: initial;
    }

    .feeCard__main {
        max-width: 518px;
        width: 100%;
        margin: 0 auto;
    }

    .menu__navWrap {
        max-width: 450px;
    }

    .page__left {
        max-width: 350px;
        width: 100%;
        left: -350px;
    }

    .mt-50 {
        margin-top: 50px;
    }

    .whiteCardFull {
        padding: 30px;
    }
}

@media(min-width: 768px) {
    .whiteCard {
        max-width: 760px;
    }

    .fee__tilteBlock {
        flex-direction: column-reverse;
        align-items: center;
    }

    .feeCard {
        max-width: initial;
        padding: 50px;
    }

    .informer {
        padding: 30px;
    }
}

@media(min-width: 1024px) {
    .menu__btnWrap {
        display: none;
    }

    .logo {
        display: flex;
        max-width: 150px;
        width: 100%;
    }

    .logo__link {
        display: flex;
        max-width: 150px;
        width: 100%;
    }

    .menu {
        flex: 1;
    }

    .header__content {
        display: flex;
        gap: 70px;
        align-items: center;
    }

    .menu__navWrap {
        max-width: initial;
        position: initial;
        top: initial;
        left: initial;
        width: 100%;
        height: initial;
        background-image: initial;
        background: initial;
        border-radius: initial;
        transform: initial;
        padding: initial;
        flex-direction: row;
        align-items: center;
        gap: 70px;
        justify-content: flex-end;
    }

    .menu__top {
        display: none;
    }

    .menu__middle {
        margin: 0;
        flex: initial;
    }

    .menu__nav {
        flex-direction: row;
        background-color: var(--color-white);
        border-radius: 12px;
        padding: 12px;
        gap: 11px;
    }

    .menuMobile__btnWrap {
        flex-direction: row;
    }

    .menuMobile__btn {
        color: var(--color-gray-700);
        font-size: var(--font-md);
        text-shadow: 0px 1px 1px rgba(51, 65, 85, 0.5);
        transition: 500ms all;
    }

    .logoSection {
        margin-top: 70px;
    }

    .menuMobile__btn:hover {
        color: var(--color-primary);
    }

    .logoSection__wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuNav__link i {
        margin-right: initial;
    }

    .header {
        transition: 500ms all;
        padding: 20px 0;
    }

    .header.header.is-sticky {
        background-color: var(--color-solitude);
        padding: 20px 0;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 0px 2px 2px rgba(51, 65, 85, 0.5);
    }

    .header__content {
        margin: 0;
    }

    .whiteCard-lg {
        padding: 50px;
    }

    .formBlock__btnWrap {
        margin-top: 30px;
    }

    .btn {
        width: initial;
    }

    .formBlock__btnWrap {
        flex-direction: row;
    }

    .header2 .menu__middle {
        display: none;
    }

    .logo2 {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
    }

    .page2 {
        display: flex;
    }

    .page__right {
        flex: 1;
        margin-left: 350px;
    }

    .page__left {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 51;
        transition: 500ms all;
        transform: initial;
        height: 100vh;

    }

    .page-simle .page__left {
        opacity: 0;
        pointer-events: none;
    }


    .header2 {
        display: none;
    }

    .menu__closeBtn {
        display: none;
    }

    .deskptop__logo {
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
}

@media(min-width: 1200px) {
    .logo {
        max-width: 200px;
    }

    .logo__link {
        max-width: 200px;
    }

    .menuNav__link {
        gap: 15px;
    }

    .formBlock__btnWrap {
        margin-top: 50px;
    }

    .whiteCardFull {
        padding: 50px;
    }
}

@media(max-width: 1024px) {
    
    .vue-app .offcanvas__additionalParamsContent {
        font-size: 14px!important;
    }
}

@media(max-width: 576px) {
    .pageSection {
        padding-top: 50px;
    }

    .formBlock__input {
        font-size: 16px;
    }

    html, body {
        background-color: var(--color-white);
        overscroll-behavior: none;
    }

    .header__content {
        margin: 0 auto;
    }

    .skafandr__img {
        max-width: 160px;
    }

    .skafandr i {
        font-size: 20px;
    }

    .container {
        width: calc(100% - 20px);
    }

    .vue-app .offcanvas {
        box-sizing: border-box!important;
        width: calc(100vw - 40px) !important;
        height: calc(100vh - 150px)!important;
        top: 50%!important;
        transform: translateY(-50%)!important;
    }

    body {
        background-color: var(--color-white-smoke);
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
        margin-top: 30px;
        border-top: 1px solid var(--color-gray-300);
    }
}
