.help-button {
    background-color: var(--input-background-color);
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px;
    border: 1.7px solid var(--border-color);
    margin-right: 8px;

    display: flex;
    justify-content: center;
    align-items: center;
}


.wallet-header {
    flex: 1;
    min-width: 0;
    height: 48px;
    background: none;
    border: 1.5px solid rgba(52, 133, 255, 1);

    border-radius: 12px;

    padding: 0px 12px;

    box-shadow:
        0px 4.55px 9.09px -4.89px rgba(53, 116, 255, 0.16),
        0px 15.91px 20.45px -4.08px rgba(53, 116, 255, 0.16);
}

.wallet-header button {
    border: 0;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 133, 255, 1);
}

.wallet-header-coin {
    gap: 6px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;
    text-align: center;
    vertical-align: middle;
    color: var(--main-text-color);
}


.banner {
    opacity: 0;
    transform: translateX(100px); /* translate-middle-x */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner.active {
    opacity: 1;
    transform: translateX(0);
}

.banner.exit-left {
    opacity: 0;
    transform: translateX(-100px); /* translate-middle-x */
}


.footer-btn {
    background-color: transparent;
    width: 84px;
    height: 54px;
    color: rgba(144, 144, 144, 1);
    border: 0px;
    
    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.3s ease-in-out;
}

.active-footer-indicator {
    position: absolute;
    left: 4.3px;
    width: 84px;
    height: 54px;
    border-radius: 100px;

    background: var(--footer-indicator);
    border: 0;

    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);

    transform: translateX(0) translateY(0px);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.active-footer-indicator.active {
    transform: scale(1.18);
    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.1),
        0 0 10px rgba(255, 255, 255, 0.1);
}


.footer-text {
    font-size: 0.875rem;
    color: var(--main-text-color);

    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -1%;
    vertical-align: middle;

    transition: all 0.3s ease-in-out;
}

.footer-text.active {
    background: linear-gradient(180deg, rgba(51, 156, 255, 1), rgba(1, 123, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.connect-ton-btn-text {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;

    color: var(--main-text-color);
}

.input-heading-text {
    font-family: 'Onest', sans-serif;
    font-weight: 700; 
    font-style: normal;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0%;

    color: var(--main-text-color);
}


.custom-input {
    width: 100%;
    background-color: var(--input-background-color);
    height: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    box-sizing: border-box;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}


.custom-input-text {
    color: var(--main-text-color);
    font-family: 'SF Pro', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;

    margin-left: 16px;
}

.select-selected {
    color: var(--main-text-color);
    font-family: 'SF Pro', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;

    width: auto;
}


.custom-input:focus-within {
    border: 1px solid rgba(18, 134, 255, 1);
    box-shadow: 0 0 6px rgba(18, 134, 255, 0.4);
}

.input-error {
    border: 1px solid rgba(255, 87, 87, 1) !important;
    box-shadow: 0 0 6px rgba(196, 91, 91, 0.4) !important;
}


.username-input-field {
    flex-grow: 1;
    border: none;
    background: transparent;
    color: var(--main-text-color);
    font-family: 'SF Pro', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-left: 6px;
    margin-right: 15px;
    outline: none;
    width: 100%;

    caret-color: var(--main-text-color);
}


.username-input-field::placeholder {
    font-family: 'Onest', sans-serif; 
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;

    color: rgba(94, 95, 100, 1);
}

.username-input-field:-ms-input-placeholder {
    font-family: 'Onest', sans-serif; 
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;

    color: rgba(94, 95, 100, 1);
}

.username-input-field::-webkit-input-placeholder {
    font-family: 'Onest', sans-serif; 
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;

    color: rgba(94, 95, 100, 1);
}


.for-me-button {
    background-color: rgba(33, 144, 255, 1);
    color: rgba(255, 255, 255, 0.98);
    border: 0px;
    border-radius: 12px;
    width: auto;
    padding: 0 15px;
    height: 38px;
    margin-right: 6px;

    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    white-space: nowrap;
}


.card input[type="radio"] {
    display: none !important;
}

.card {
    flex: 0 0 calc((100% - 2 * 6px) / 3) !important;
    height: 140px !important;
    border-radius: 16px !important;
    background-color: var(--input-background-color) !important;
    border: 1px solid var(--border-color) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #2190ff;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.carousel-btn:hover {
    opacity: 1;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.card-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
}

.card:focus-within {
    border: 1px solid rgba(18, 134, 255, 1) !important;
    box-shadow: 0 0 6px rgba(18, 134, 255, 0.4) !important;
}

.card:has(input[type="radio"]:checked) {
    border: 1px solid rgba(18, 134, 255, 1) !important;
    box-shadow: 0 0 6px rgba(18, 134, 255, 0.4) !important;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(115, 116, 122, 1);
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
}

.radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.card input[type="radio"]:checked + .radio-circle .radio-inner {
    background-color: rgba(18, 134, 255, 1) !important;
}

.card input[type="radio"]:checked + .radio-circle {
    border: 2px solid rgba(18, 134, 255, 1) !important;
}

.card-content h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;

    color: rgba(141, 142, 144, 1);
}


.card-content h2 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.008em;

    color: var(--main-text-color);
}

.privacy-policy-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;

    margin: 0;

    color: rgba(141, 142, 144, 1);
}


.close-action-button {
    background: none;
    border: 1px solid rgba(52, 133, 255, 1);

    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 16px;
    padding: 5px 18px;
    animation: shimmer 8s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.close-action-button:hover {
    box-shadow: 0 4px 12px rgba(33, 144, 255, 0.3);
    transform: translateY(-1px);
}

.close-action-button:active {
    box-shadow: 0 2px 6px rgba(33, 144, 255, 0.3);
    transform: translateY(0px);
}

.close-action-button h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;

    margin: 0;
    color: var(--main-text-color);
}

.buy-button {
    background: linear-gradient(90deg,
        rgba(33, 144, 255, 1),
        rgba(0, 198, 255, 1),
        rgba(33, 144, 255, 1));
    background-size: 200% 200%;
    width: 100%;
    height: 56px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    padding: 5px 18px;
    border: 0px;
    animation: shimmer 8s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.buy-button:hover {
    box-shadow: 0 4px 12px rgba(33, 144, 255, 0.3);
    transform: translateY(-1px);
}

.buy-button:active {
    box-shadow: 0 2px 6px rgba(33, 144, 255, 0.3);
    transform: translateY(0px);
}

.buy-button:disabled {
    animation: none;
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.buy-button h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;
    
    margin: 0;
    color: rgba(255, 255, 255, 1);
}

.contractual-button {
    background: linear-gradient(90deg,
        rgba(33, 144, 255, 1),
        rgba(0, 198, 255, 1),
        rgba(33, 144, 255, 1));
    background-size: 200% 200%;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 3px 5px;
    margin-bottom: 8px;
    border: 0px;
    animation: shimmer 8s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contractual-button h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;

    text-decoration: none;

    margin: 0;
    color: rgba(255, 255, 255, 1);
}

.footer-svg {
    color: var(--main-text-color);
    transition: all 0.3s ease-in-out;
}

.footer-svg.active {
    color: rgba(1, 123, 255, 1);
}

.discount-label {
    width: auto;
    height: 24px;
    padding: 4.5px 4px;
    border-radius: 6px;
    position: absolute;
    top: -3.61px;
    left: -3.61px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(33, 144, 255, 1);

    letter-spacing: 0;
}

.discount-label span {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1.1;

    color: rgba(255, 255, 255, 1);
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(173, 173, 173, 0.12);
    padding: 0 !important;
}

.profile-fullname-text {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.0083em;

    color: var(--main-text-color);
}

.profile-username-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;

    color: rgba(94, 95, 100, 1);
}

.star-count-sub-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;

    color: rgba(141, 142, 144, 1);
    margin-left: 16px;
}

.star-count-main-text {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.008em;
    vertical-align: middle;

    color: var(--main-text-color);
}

.ref-text {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 0;

    color: var(--main-text-color);
}

.what-is-ref-btn {
    background-color: rgba(33, 144, 255, 1);
    height: 32px;
    width: auto;
    padding: 0 8px;
    border: 0;
    border-radius: 8px;

    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 24px; 
    letter-spacing: 0;

    color: rgba(255, 255, 255, 0.98);
}

.invite-btn {
    width: 100%;
    height: 56px;
    margin-right: 8px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 18px;
    border: 0px
}

.invite-btn h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;

    
    margin: 0;
    color: rgba(255, 255, 255, 1);
}

.copy-btn {
    background-color: rgba(33, 144, 255, 1);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 18px;

    border: 0px;
}

.ref-box {
    width: 163px;
    height: 98px;
    border-radius: 16px;
    background-color: var(--input-background-color);
    border: 1.51px solid var(--border-color);
    padding: 16px;

    flex: 0 0 calc(50% - 4px);
}

.ref-box span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;

    display: inline-block;

    color: rgba(141, 142, 144, 1);
}

.ref-box h1 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.8px;

    color: var(--main-text-color);
}

.ref-box div {
    margin-top: 17px;

    gap: 6px;
}


.faq-title {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0;

    color: var(--main-text-color);
}


.faq-question {
    width: 100%;
    background-color: var(--input-background-color);
    height: 66px;
    gap: 8px;
    border-radius: 16px;
    border: 1.51px solid var(--border-color);

    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--main-text-color);
    margin-top: 12px;

    padding-right: 8px;

    vertical-align: middle;
    text-align: left;

    justify-content: space-between;

    padding: 16px;

    cursor: pointer;
    position: relative;
    z-index: 2;

    transition: all 0.3s ease;
}

.faq-question .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: var(--main-text-color);
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-question.active {
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    background-color: var(--input-background-color);
    padding: 15px 16px;
    border-radius: 0 0 16px 16px;
    border: 1.51px solid var(--border-color);
    margin-top: -33px;

    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
    vertical-align: middle;
    text-align: left;
    color: var(--faq-text-color);
    opacity: 0;
}

.faq-answer.open {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    opacity: 1;
    height: auto;
}

.terms-button {
    background-color: rgba(33, 144, 255, 1);
    width: 100%;
    height: 38px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 18px;
    border: 0px;

    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(255, 255, 255, 1);
}

.terms-section-title {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: rgba(33, 144, 255, 1);
    margin-top: 20px;
    margin-bottom: 8px;
}

.terms-point {
    display: inline;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: var(--faq-text-color);
    margin-bottom: 6px;
}

.terms-point-number {
    color: rgba(33, 144, 255, 1);
    margin-right: 4px;
    font-weight: 600;
}


.wait-pay {
    width: 100%;
    height: 452px;
    background-color: var(--wait-pay-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 36px 36px 0 0;
    position: fixed;
    z-index: 1001;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.wait-pay.show {
    transform: translateY(0);
}

.star-box-svg {
    width: 320px;
    height: 320px;
}

.duck-wait-pay-animation {
    width: 237px;
    height: 237px;
}

.history-label-text {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--main-text-color);
    font-style: normal;
}

.history-price-text {
    font-size: 14px;
    width: auto;
    background-color: rgba(31, 31, 31, 0.6);
    color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    padding: 4px 6px;
}

.history-amount-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    letter-spacing: -0.01em;
    color: rgba(141, 142, 144, 1);
}

.history-date-text {
    font-size: 12px;
}

.level-img {
    width: 150px;
    height: 129px;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: var(--progress-bar-color);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 3px;
    box-shadow:
        inset 0 0 25px rgba(18, 134, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: rgba(52, 133, 255, 1);
    transition: width 0.3s ease;
}

.level-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 110%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-style: normal;

    position: absolute;
}

.progress-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    letter-spacing: -0.01em;
    text-align: center;
    vertical-align: middle;
    color: var(--main-text-color);
}

.progress-text.level {
    color: var(--main-text-color);
}

.disabled-card {
    opacity: 1.0 !important;
    box-shadow:
        0px 4.55px 9.09px -4.89px rgba(53, 116, 255, 0.16),
        0px 15.91px 20.45px -4.08px rgba(53, 116, 255, 0.16) !important;
    cursor: pointer !important; /* что кликабельно */
}

.disabled-card.active-border {
    border: 1px solid rgba(18, 134, 255, 1) !important;
}

.disabled-card input {
    pointer-events: none !important; /* не срабатывал выбор radio */
}

.level-info {
    width: 100%;
    height: auto;
    background-color: var(--background-color);
    border-radius: 32px 32px 0 0;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    overflow-y: auto;

    padding-top: 8px;
    padding-bottom: 21px;
    padding-left: 20px;
    padding-right: 20px;

    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.level-info.show {
    transform: translateY(0);
}

.modal-level-top {
    background-color: rgba(94, 95, 100, 1);
    width: 60px !important;
    height: 4px !important;
    border-radius: 24px;
    display: block !important;
    min-height: 4px !important;
}

.level-info h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    color: var(--main-text-color);
}

.modal-sub-title {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    font-style: normal;
    color: var(--main-text-color);
    padding: 8px 42px 0px 42px;
}

.modal-text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    font-style: normal;
    color: var(--main-text-color);
}

.level-plus-info {
    margin-left: 8px;
}

.level-plus-info h3 {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--main-text-color);
    font-style: normal;
    margin: 0;
}

.level-plus-info span {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;
    vertical-align: middle;
    color: var(--main-text-color);
    font-style: normal;
}

@media screen and (max-width: 390px) {
  .level-plus-info h3 {
    font-size: 14px;
  }

  .level-plus-info span {
    font-size: 12px;
  }
}

.level-plus-info span.plus {
    background-color: rgba(52, 133, 255, 1);
    border-radius: 4px;
    padding: 2px 4px;
}

.level-plus-img {
    height: 32px;
    width: 32px;
}

.lang-choose {
    width: 76px;
    height: 40px;
    background-color: var(--input-background-color);
    border: 1.5px solid var(--border-color);
    border-radius: 100px;
    padding: 8px;
}

.lang-flag {
    opacity: 0.48;
    transition: opacity 0.3s ease;
}

.lang-flag.active {
    opacity: 1;
}

.cross-svg {
    width: 24px;
    height: 24px;
    padding: 4px;
    margin-right: 16px;
}

.gift-modal-img {
    height: 220px;
    width: 220px;
}


.wallet-title {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;
    z-index: 2;

    color: var(--main-text-color);
}

.wallet-indicator {
    flex: 1;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}


.wallet-indicator-slider {
    position: absolute;
    top: 5;
    left: 0;
    width: 50%;
    height: 40px;
    background: rgba(52, 133, 255, 1);
    border-radius: 12px;
    z-index: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    padding: 4px;
    margin: 4px;
}

.wallet-indicator-slider.active {
    transform: scale(1.18);
    box-shadow:
        0 0 5px rgba(53, 116, 255, 0.32),
        0 0 15px rgba(53, 116, 255, 0.2),
        0 0 25px rgba(53, 116, 255, 0.16);
}

.text-with-bullet {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;
    vertical-align: middle;
    color: rgba(141, 142, 144, 1);

    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.text-with-bullet::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(141, 142, 144, 1);
    font-size: 16px;
}

.wallet-qr {
    background: rgb(255, 255, 255);
    height: 217px;
    width: 217px;
    padding: 13px;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
}

.wallet-qr img {
    width: 100%;
    height: 100%;
}

.copy-wallet-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 9px;
    padding-right: 9px;

    background-color: var(--input-background-color);
    height: 50px;
    width: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.memo-warn {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0;
    color: #ffffff;
    background: rgba(179, 42, 42, 1);
    border: 0px;
    border-radius: 4px;
    padding: 4px 6px;

    margin-bottom: .5rem;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    color: var(--main-text-color);
    font-family: 'SF Pro', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;
    height: 50px;
}

.dropdown-header {
    background: var(--dropdown-color);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    color: var(--main-text-color);
}

.dropdown-header .arrow {
    transition: transform 0.2s ease;
}

.custom-dropdown.open .dropdown-header .arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: var(--dropdown-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    z-index: 10;
    overflow: hidden;
}

.dropdown-options .option {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-options .check {
    display: none;
}

.dropdown-options .selected-option .check {
    display: inline-block;
}

.dropdown-options .option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-dropdown.open .dropdown-options {
    display: block;
}

.payment-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: var(--input-background-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow:
        inset 0 0 6px var(--payment-shadow-color);
    flex: 1 1 0;
    min-width: 109px;
    transition: all 0.3s ease;
}

.payment-card .top-right-text {
    position: absolute;
    top: 6px;
    right: 6px;

    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: -0.01em;

    border: 0;
    border-radius: 5px;
    text-decoration: none;
    padding: 2px 4px;
    background: rgba(33, 144, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.payment-card .top-left-text {
    position: absolute;
    top: 6px;
    left: 6px;

    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: -0.01em;

    border: 0;
    border-radius: 5px;
    text-decoration: none;
    padding: 2px 4px;
    background: rgba(33, 144, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.payment-card .bottom-left-avatar {
    position: absolute;
    bottom: 6px;
    left: 6px;

    width: 16px;
    height: 16px;

    border-radius: 50%;
    object-fit: cover;
}

.payment-card .top-left-rotate-text {
    position: absolute;
    top: 49%;
    left: 6px;

    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: -0.01em;

    border: 0;
    border-radius: 5px;
    text-decoration: none;
    padding: 2px 4px;
    background: rgba(33, 144, 255, 1);
    color: rgba(255, 255, 255, 1);

    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
}

.payment-card.active {
    border: 1px solid rgba(18, 134, 255, 1);
    box-shadow:
        0 0 3px rgba(18, 134, 255, 0.4),
        inset 0 0 10px rgba(18, 134, 255, 0.4);
}

.memo-timer {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    line-height: 110%;
    letter-spacing: 0;
    color: #ffffff;
    background: rgba(55, 55, 55, 0.6);
    border: 0px;
    border-radius: 4px;
    padding: 4px 6px;

    margin-bottom: .5rem;
}

.notification {
    position: fixed;
    background-color: var(--notification-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 16px;
    border: 1px solid rgba(52, 133, 255, 1);
    height: 54px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 8px 16px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(0px);

    gap: 12px;
    z-index: 1001;
    transition: transform 0.6s cubic-bezier(0.25, 1.5, 0.5, 1),
            opacity 0.5s ease;
}

.notification .d-flex {
    flex: 1;
    min-width: 0;
}

.notification img {
    height: 24px;
    width: 24px;
}

.notification .text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -1%;
    vertical-align: middle;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    margin: 0;

    color: rgba(141, 142, 144, 1);
}

.notification .title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: var(--main-text-color);
}

.notification .title.red {
    color: rgba(179, 42, 42, 1);
}

.notification .title.green {
    color: rgba(42, 179, 63, 1);
}

.fake-price {
    display: inline-block;
    position: relative;
    background-color: rgba(127, 127, 127, 0.25);
    backdrop-filter: blur(10px) brightness(1.2);
    -webkit-backdrop-filter: blur(10px) brightness(1.2);
    border-radius: 8px;
    padding: 4px 12px;
    color: transparent;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.cryptomus-icon {
    height: 64px;
    width: 64px;
    background-image: var(--cryptomus-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.sbp-icon {
    height: 64px;
    width: 64px;
    background-image: var(--sbp-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.person-img {
    height: 28px;
    width: 28px;
    color: var(--main-text-color);
}

.portf-svg {
    color: var(--main-text-color);
}

.copy-wallet-svg {
    height: 24px;
    width: 24x;
    color: var(--copy-wallet-svg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.update-history-btn {
    background-color: rgba(33, 144, 255, 1);
    height: auto;
    width: auto;
    padding: 2 8px;
    border: 0;
    border-radius: 5px;

    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 24px; 
    letter-spacing: 0;

    color: rgba(255, 255, 255, 0.98);

    margin-bottom: .5rem;
}
