@font-face {
    font-family: 'Geist';
    src: url('/static/mainpage/fonts/Geist-Regular.woff2') format('woff2'),
    url('/static/mainpage/fonts/Geist-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {

    --op-bg: #232637;
    --op-border: #3B4254;
    --op-bg-hover: #2a2e42;
    --op-text: #E6ECF5;
    --op-muted: #A6B1C2;
    --op-badge: #FFD292;

    --op-income: #7DFF9A;
    --op-expense: #FF7878;

    --op-ico-bg-plus: #183628;
    --op-ico-bg-minus: #6C839C;
    --op-ico-bg-withdraw: #3a3426;
    --op-ico-bg-dot: #2d3347;
}


html, body {
    height: 100%;
    margin: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.menu-section a {
    text-decoration: none;
}

.mobile-sell-section {
    display: none;
}

.site-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body {
    background: #1F2232;
    color: #ccc;
    height: 100%;
    font-family: "Geist", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(47, 51, 66, 0.8);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: rgba(47, 51, 66, 1);
}


.page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20vw;
    margin-top: 20px;
    margin-bottom: 0;
}

.top-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 22px;
}

.down-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 27px;
}

.banner {
    text-align: center;
    margin: 20px 0;
}

.banner img {
    padding-right: 20vw;
    padding-left: 20vw;
    max-width: 100%;
    height: auto;
    display: flex;
    margin: 0 auto;
}


.header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #262A3D;
    border-bottom: 1px solid #4D5768;
    display: flex;
    align-items: center;
    z-index: 5001;
}

.header__inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 20vw;
    padding-right: 20vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1440px) {
    .header__inner {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}

@media (max-width: 1200px) {
    .header__inner {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 1024px) {
    .header__inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 640px) {
    .header__inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.header__logo img {
    height: 26px;
    width: 138px;
}

.header__logo {
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.4vw, 20px);
    min-width: 0;
}

.header__nav a {
    color: #6C839C;
    text-decoration: none;
    font-size: 15px;
    line-height: 70px;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
}

.header__nav a:hover {
    color: #84BEFD;
}

.header__nav .dropdown {
    position: relative;
}

.header__nav .dropdown-toggle {
    cursor: pointer;
}

.header__nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 16px;
    background: #232637;
    padding: 12px 0;
    width: auto;
    z-index: 50;
    display: flex;
    flex-direction: column;


    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}


.header__nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.header__nav .dropdown-menu a {
    display: block;
    padding: 10px 22px;
    margin: 0;
    line-height: 1.2;
    color: #6C839C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.header__nav .dropdown-menu a:hover {
    color: #84BEFD;
    border-radius: 8px;
}

.header__nav .dropdown:hover .dropdown-menu {
    display: flex;
}

.header__right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(12px, 1.4vw, 20px);
}

.header__balance-box {
    background-color: #1F2232;
    padding: 8px 15px;
    border-radius: 16px;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

.header__balance {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFFFFF;
}

.header__notifications {
    position: relative;
}

.header__notifications svg {
    width: 36px;
    height: 36px;
}

.header__notif-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff5f5f;
    color: white;
    font-size: 11px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.header__cart svg {
    color: #6C839C;
}

.header__cart:hover svg {
    color: #84BEFD;
}

.header__profile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.header__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 10px;
}

.header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.header__profile.dropdown {
    position: relative;
}


.header__profile .dropdown-toggle {
    display: flex;
    height: 36px;
    align-items: center;
    cursor: pointer;
    padding: 4px 0 4px 10px;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
}


.header__profile .dropdown-menu {
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 100%;
    right: 0;
    background: #232637;
    border-radius: 16px;
    border: 1px solid #4D5768;
    padding: 8px 0;
    min-width: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;


    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;


    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}


.header__profile .dropdown-divider {
    height: 1px;
    background: #4D5768;
    margin: 2px 0;
}


.header__profile .dropdown-menu a {
    padding: 8px 16px;
    text-decoration: none;
    color: #6C839C;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}


.header__profile .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #84BEFD;
}

.dropdown-menu a {
    white-space: nowrap;
}

.header__profile.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.header__profile .dropdown-menu a.highlight-item {
    color: #FFD292;
}


.header__profile.dropdown:hover .dropdown-menu {
    display: flex;
}

.header__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 41px;
    height: 26px;
    margin-right: -12px;
}

.header__cart svg {
    width: 26px;
    height: 26px;
}


.header__cart .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 16px;
    background: #232637;
    padding: 8px 0;
    min-width: 260px;
    z-index: 50;
    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.header__cart.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.header__cart .dropdown-menu .dropdown-item {
    color: #6C839C;
    font-size: 14px;
    font-weight: 500;
    cursor: default; 
}


.cart-inline-count {
    color: #6C839C;
    font-weight: 600;
    margin-left: auto;
}

.header__cart .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #84BEFD;
    border-radius: 8px;
}

.header__cart-count {
    position: absolute;
    bottom: -8px;
    right: 0;
    background-color: #1F2232;
    color: white;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}


.header__cart-count.hidden {
    display: none;
}


.header__right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(12px, 1.4vw, 20px);
    position: relative;
}


.filters {
    background: #1F2232;
    border-radius: 16px;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px 20px;
    width: 100%;
    margin: 0 auto;
}

.filters-container--4-cols {
    grid-template-columns: repeat(4, 1fr) !important;
}

.filters-container--3-cols {
    grid-template-columns: repeat(3, 1fr) !important;
}

.filters-container--2-cols {
    grid-template-columns: repeat(2, 1fr) !important;
}

.filters-block {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filters-item {
    display: flex;
    background: #262A3D80;
    margin-bottom: 21px;
    border-radius: 16px;
}

.filters-item--sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 32px;
}

.filters-item--attributes {
    display: block;
    border-radius: 16px;
    padding: 18px 31px;
}

.filters-item--saved-lists {
    display: flex;
    border-radius: 16px;
    padding: 24px 31px;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #262A3D80;
    margin-bottom: 21px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.sort-left, .sort-right {
    display: flex;
    align-items: center;
    gap: 10px;
}


.sort-form select {
    width: auto;
    height: 34px;
    padding-left: 14px;
    padding-right: 34px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D url('/static/mainpage/img/filters/arrow-down-s-line.svg') no-repeat right 10px center;
    color: #6C839C;
    appearance: none;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}


.claims-filter-select {
    width: 199px;
    height: 34px;
    padding-left: 14px;
    padding-right: 34px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D url('/static/mainpage/img/filters/arrow-down-s-line.svg') no-repeat right 10px center;
    color: #6C839C;
    appearance: none;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}

.claims-filter-select:focus {
    outline: none;
    border-color: #4D5768;
    box-shadow: none;
}

.specialization-form select {
    width: 199px;
    height: 34px;
    padding-left: 14px;
    padding-right: 34px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D url('/static/mainpage/img/filters/arrow-down-s-line.svg') no-repeat right 10px center;
    color: #6C839C;
    appearance: none;
    cursor: pointer;
    text-align: left;
    text-align-last: left;
    -moz-text-align-last: left;
}

.sort-form.label-control-list {
    display: inline-block;
}

.sort-form.label-control-list select {
    width: auto;
}

.sort-form select:hover {
    border-color: #84BEFD;
}

.sort-form select:focus {
    outline: none;
    border-color: #4D5768;
    box-shadow: none;
}

.force-refresh {
    background: none;
    border: none;
    color: #6C839C;
    margin-left: 15px;
    cursor: pointer;
}

.force-refresh:hover {
    color: #84BEFD;
}

.filter-item {
    color: #6C839C;
}

.filter-item label {
    display: block;
    margin-bottom: 0.5rem;
}

.filters-reset-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 16px;
}

.filter-reset-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 168px;
    height: 38px;
    padding: 0 16px 0 12px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #1F2232;
    color: #D7DFEA;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.filter-reset-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 120, 120, 0.14);
    color: #FF7878;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.filter-reset-button:hover {
    border-color: #FF7878;
    background: rgba(255, 120, 120, 0.08);
    color: #FFFFFF;
}

.filter-reset-button:hover .filter-reset-button__icon {
    background: #FF7878;
    color: #1F2232;
}

.filters .list-choose select,
.filters .sort-form select,
.filters select {
    text-align: left;
    text-align-last: left;
    -moz-text-align-last: left;
}

.text-field input {
    width: 100%;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: none;
    color: #6C839C;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.text-field input:focus {
    outline: none;
    box-shadow: 0 0 3px #4a90e2;
}

.toggle-group {
    width: 100%;
    height: 34px;
    display: inline-flex;
    border: 1px solid #4D5768;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.toggle-group input {
    display: none;
}

.toggle-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    cursor: pointer;
    background: #262A3D;
    color: #6C839C;
    text-align: center;
    flex: 1;
    font-size: 16px;
    transition: 0.2s;
}

.toggle-group label:hover {
    background: #2D374B80;
    color: white;
}

.toggle-group label:not(:last-child) {
    border-right: 1px solid #555;
}

.toggle-group input:checked + label {
    background: #4a90e2;
    color: white;
}

.double-input {
    position: relative;
    width: 100%;
    height: 34px;
    line-height: 34px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    display: flex;
    box-sizing: border-box;
}

.double-input::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 50%;
    width: 1px;
    background: #555;
}

.double-input label {
    flex: 1;
    justify-content: center;
    align-items: center;
}

.double-input input {
    width: 100%;
    border: none;
    background: none;
    color: #aaa;
    display: flex;
    text-align: center;
    line-height: 34px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.double-input input::-webkit-outer-spin-button,
.double-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.double-input input[type=number] {
    -moz-appearance: textfield;
}


.filters input[type=number]::-webkit-outer-spin-button,
.filters input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filters input[type=number] {
    -moz-appearance: textfield; 
    appearance: textfield;      
}

.double-input:hover {
    filter: drop-shadow(0 0 3px #4a90e2);
}

.double-input input::placeholder {
    color: #6C839C;
    text-align: center;
}

.double-input input:focus::placeholder {
    color: transparent;
}


.list-choose select, .user-settings-block-content select {
    width: 100%;
    height: 34px;
    padding: 1px 14px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D url('/static/mainpage/img/filters/arrow-down-s-line.svg') no-repeat right 10px center;
    color: #6C839C;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    text-align: left;
    text-align-last: left;
}


.list-choose select option, .user-settings-block-content select option {
    text-align: left;
}

.list-choose select:focus {
    outline: none;
}

.list-choose select:hover, .user-settings-block-content select:hover {
    box-shadow: 0 0 3px #4a90e2;
}

.list-choose select::-webkit-scrollbar {
    display: none;
}

.list-choose select, .user-settings-block-content select:focus {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filters-item-button {
    background: none;
    border: none;
    color: #6C839C;
    font-size: 16px;
    padding-right: 18px;
}

.filters-item-button:hover {
    color: #84BEFD;
}

.saved-filter-edit-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.saved-filter-label {
    font-size: 16px;
    color: #FFF;
}

.saved-filter-button {
    background: none;
    border: none;
    font-size: 16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    color: #6C839C;
}

.withdraw-filters a {
    color: #6C839C;
    text-decoration: none;
    padding: 2px 6px;
    transition: color .15s ease-in-out;
}


.one-click-modal {
    
    padding: 12px;
}

.one-click-modal-content {
    max-width: 560px;              
    width: min(560px, 100%);       
    box-sizing: border-box;        
}

.one-click-modal-header {
    max-width: 100%;
    white-space: normal;           
    word-break: break-word;        
    overflow-wrap: anywhere;       
    line-height: 1.25;
}

.one-click-modal-body,
.one-click-modal-body * {
    max-width: 100%;
    box-sizing: border-box;
}

.one-click-modal-body p,
.one-click-modal-body .tg-recheck-progress-text,
.one-click-modal-body .tg-recheck-summary {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}


@media (max-width: 420px) {
    .one-click-modal-header {
        font-size: 18px;
    }
}

.withdraw-filters a:hover {
    color: #84BEFD;
}

.withdraw-filters a.active {
    color: #84BEFD;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.saved-filter-button:hover {
    color: #84BEFD;
    text-decoration-style: dashed;
}

.saved-filter-separator {
    color: #6C839C;
}

.edit-saved-filter-button {
    background: none;
    border: none;
    font-size: 16px;
    color: #6C839C;
}

.edit-saved-filter-button:hover {
    color: #84BEFD;
}

.filters-item--saved-lists .saved-filter-input {
    background: rgba(45, 55, 75, 0.75);
    color: #ffffff;
    border: 1px solid #84BEFD;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 14px;
    font-family: inherit;
    width: 100px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    outline: none;
}

.filters-item--saved-lists .saved-filter-input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 4px rgba(132, 190, 253, 0.5);
}

.filters-item--saved-lists .saved-filter-input::placeholder {
    color: #6C839C;
    opacity: 0.7;
}

.filters-item--saved-lists .saved-filter-input:hover {
    background: rgba(45, 55, 75, 0.9);
}

.filters-item--saved-lists .saved-filter-input {
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filters-item--saved-lists .saved-filter-input:-webkit-autofill,
.filters-item--saved-lists .saved-filter-input:-webkit-autofill:hover,
.filters-item--saved-lists .saved-filter-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    background: rgba(45, 55, 75, 0.75) !important;
    border: 1px solid #84BEFD !important;
    transition: background-color 5000s ease-in-out 0s;
}


.container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


.sidebar {
    background: transparent;
    padding: 0;
    width: auto;
    white-space: nowrap;
    font-family: "Geist", sans-serif;
    color: #6C839C;
    font-size: 14px;
}

aside ul {
    list-style: none;
}

.menu-section {
    padding: 10px 8px;
    background: #262A3D80;
    margin-bottom: 20px;
    border-radius: 16px;
}


.menu-button {
    width: 100%;
    background: none;
    border: none;
    color: #6C839C;
    font-size: 14px;
    padding: 5px 28px 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-label {
    width: 100%;
    background: none;
    border: none;
    color: #6C839C;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: default;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.menu-button:hover {
    background-color: #2D374B80;
    color: #84BEFD;
}

.menu-button.accent-item {
    color: #FFD292;
}


.auth_reg-button {
    background: #FFD292;
    color: #1F2232;
    cursor: pointer;
    display: flex;
    width: 100%;
    height: 34px;
    padding: 10px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #FFD292;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: transform 0.1s ease;
}

.switch-auth-action-button {
    background: #1F2232;
    color: #6C839C;
    cursor: pointer;
    display: flex;
    width: 100%;
    margin-top: 22px;
    border: none;
    height: 34px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: transform 0.1s ease;
}

.switch-auth-action-button:hover {
    filter: brightness(1.2);
}

.auth_reg-button:active {
    transform: scale(0.95);
    background: #FFC561;
    border-color: #FFC561;
}

.reg-button {
    background: #1F2232;
    color: #FFD292;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 184px;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #FFD292;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.reg-button:hover {
    background: #FFD292;
    color: #1F2232;
}

.reg-button:active {
    transform: scale(0.95);
    background: #FFD292CC;
    border-color: #FFD292CC;
}

.error-message {
    text-align: left;
    padding: 0 14px;
}

.saved-filter-block {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid #4D5768;
    background: #262A3D;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.auth_reg_block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5% auto;
    gap: 48px;
    padding: 43px 40px 43px 54px;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #232637;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.auth_reg_block-left {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth_reg_block-right {
    margin: 5% auto;
}

.auth-logo {
    width: 138px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 28px;
}

.modal-content {
    background-color: #232637;
    margin: 10% auto;
    padding: 29px 29px 40px;
    border-radius: 16px;
    gap: 23px;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    position: relative;
    border: 1px solid #4D5768;
    width: 352px;
    max-width: 90vw;
    box-sizing: border-box;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6C839C;
    font-family: Geist, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 23px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    display: none;
}

.terms-checkbox .checkbox-empty {
    width: 18px;
    height: 18px;
    border: 1px solid #4D5768;
    border-radius: 4px;
    display: block;
}

.terms-checkbox .checkbox-checked {
    width: 18px;
    height: 18px;
    background: #49FF7A;
    border-radius: 4px;
    display: none;
    position: relative;
}

.terms-checkbox .checkbox-checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #262A3D;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-checkbox input[type="checkbox"]:checked + .checkbox-empty {
    display: none;
}

.terms-checkbox input[type="checkbox"]:checked + .checkbox-empty + .checkbox-checked {
    display: block;
}

.terms-link {
    color: #FFD292;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.auth-title {
    color: #6C839C;
    width: 100%;
    font-family: Geist, sans-serif;
    font-size: 16px;

    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -5px;
    padding: 0;
    box-sizing: border-box;
}

.auth_reg-user-input {
    width: 100%;
    height: 34px;
    margin-bottom: 23px;
    display: flex;
    padding: 0 14px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #6C839C;
    font-family: Geist, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.action-button {
    width: 100%;
    background: #1F2232;
    color: #FFD292;
}

.action-button:hover {
    background: #FFD292;
    color: #1F2232;
}


.recent-container {
    display: flex;
    flex-direction: column;
}

.recently-item {
    list-style: none;
    margin-bottom: 20px;
}

.recently-block {
    width: 100%;
    height: 40px;
    color: #84BEFD;
    border-radius: 20px;
    font-size: 16px;
    background: #2D374B80;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.accounts-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accounts-sector {
    list-style: none;
    margin-bottom: 20px;
}

.accounts-header-sector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.my-accounts-header-sector {
    justify-content: flex-start;
    align-self: flex-start;
    font-size: 20px;
    color: #FFFFFF;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.total-accs-label {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.mass-buying-button {
    display: flex;
    width: 184px;
    height: 34px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: none;
    border-radius: 16px;
    border: 1px solid #FFD292;
    color: #FFD292;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.mass-buying-button:hover {
    background: #FFD292;
    color: #1F2232;
}


.zaglushka {
    display: flex;
    background: #262A3D;
    border-radius: 16px;
    border: 1px solid #4D5768;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    text-align: center;
    height: 80px;
    padding: 2px;
    margin-bottom: 20px;
}


.footer {
    width: 100%;
    background-color: #232637;
    border-top: 1px solid #4D5768;
    padding: 20px 0;
}

.footer__inner {

    margin: 0 auto;
    padding-left: 20vw;
    padding-right: 20vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__left {
    display: flex;
    max-width: 236px;
    flex-direction: column;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer__logo img {
    height: 26px;
    width: 138px;
}

.footer__logo-text {
    color: #6C839C;
    font-size: 14px;
    line-height: 1.2;
}

.footer__center {
    display: flex;
    justify-content: center;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    color: #6C839C;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease-in-out;
}

.footer__nav a:hover {
    color: #84BEFD;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__pay_icons img {
    width: 24px;
    height: 24px;
}

.footer__support-button {
    color: #6C839C;
    white-space: nowrap;
    display: flex;
    height: 34px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: 34px;
    border-radius: 16px;
    background: #1F2232;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer__support-button:hover {
    color: #84BEFD;
}

.footer__logo-text .highlight {
    color: #FFD292;
}


.rules-section {
}

.rules_header {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid #4D5768;
    background: #232637;
    color: #FFF;
    font-family: Geist, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.rules_grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
    padding-top: 38px;
    align-items: flex-start;

}

.rules_container {
    display: flex;
    max-width: 342px;
    min-width: 288px;
    height: auto;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    border-radius: 16px;
    background: #232637;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 288px;
}

.rule_image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rule_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

.rule_description {
    display: block;
    color: #6C839C;
    font-size: 14px;
    line-height: 1.4;
    max-height: 80px;
    overflow-y: auto;
    overflow-x: hidden;


    scrollbar-width: thin;
    scrollbar-color: #4D5768 #262A3D;
}

.rule_description::-webkit-scrollbar {
    width: 8px;
}

.rule_description::-webkit-scrollbar-track {
    background: #262A3D;
    border-radius: 8px;
}

.rule_description::-webkit-scrollbar-thumb {
    background: #4D5768;
    border-radius: 8px;
    border: 2px solid #262A3D;
}


.feedback_header_block {
    display: flex;
    color: #FFD292;
    height: 56px;
    padding: 0 32px;
    justify-content: left;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
}

.feedback_form_block {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
    margin-top: 21px;
    flex-shrink: 0;
    padding: 27px 32px;
    gap: 16px;
}


.feedback_form_header_text {
    display: flex;
    width: 100%;
    height: 34px;
    padding: 6px 14px;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;

    color: #FFFFFF;
    font-size: 16px;
    font-family: Geist, sans-serif;
    line-height: 1.2;
}

.feedback_form_content {
    display: flex;
    color: #FFFFFF;
    width: 100%;
    height: 247px;
    padding: 16px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    font-size: 16px;
    font-family: Geist, sans-serif;
    resize: vertical;
    white-space: pre-line;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feedback_form_content::-webkit-scrollbar {
    display: none;
}

.feedback_submit {
    display: flex;
    width: 234px;
    height: 34px;
    padding: 7px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    background: #FFD292;
    color: #000;
    font-size: 16px;
    font-weight: 520;
}

.account-list-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(38, 42, 61, 0.50);
    padding: 22px 31px;
    margin: 24px 0;
    overflow: visible;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.account-list-block:hover {
    background: rgba(38, 42, 61, 0.70);
    box-shadow: 0 0 4px 2px rgba(102, 153, 255, 0.3);
}

.account-list-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 29px;
}

.account-list-block-title {
    width: auto;
    font-size: 16px;
    color: #FFD292;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 43px;
    background: rgba(45, 55, 75, 0.50);
    padding: 10px 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    margin-right: 8px;
}

.billing-page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.account-list-block-price {
    font-size: 16px;
    color: #84BEFD;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    align-items: center;
    gap: 10px;
}

.account-list-block-price-pinned {
    border-radius: 16px;
    border: 1px solid #84BEFD;
    background: #282F41;
}

.pin-button {
    border: none;
    background: none;
    cursor: pointer;
}

.pin-button:hover {
    filter: brightness(1.2);
}

.account-list-block-footer {
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.account-list-block-footer-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.account-list-block-footer-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.favorite-icon .favorite-path {
    fill: none;
    stroke: #6C839C;
    stroke-width: 2.5;
    transition: all 0.2s ease;
}

.favorite-icon.favorite-filled .favorite-path {
    fill: #E28AD9;
    stroke: none;
}

.favorite-icon:hover .favorite-path {
    filter: brightness(1.2);
}

.bookmark-icon-block,
.archive-bookmark-icon-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bookmark-icon,
.archive-bookmark-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: scale(1.1);
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bookmark-icon:hover,
.archive-bookmark-icon:hover {
    transform: scale(1.1);

    filter: brightness(1.2);
}

.page-block-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bookmark-icon.bookmarked {
    color: #E28AD9;
}

.bookmark-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.bookmark-icon path {
    transition: fill 0.2s ease, stroke 0.2s ease;
}


.account-list-block-footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}


.bookmark-icon,
.favorite-btn-block {
    position: relative;
}


.account-list-block-tocart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    height: 34px;
    padding: 0 16px;
    border-radius: 16px;
    border: none;
    outline: none;
    background: #1F2232;
    color: #6C839C;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: background .2s, color .2s;
}

.account-list-block-tocart.in-cart {
    background: #6C839C;
    color: #1F2232;
    border: 1px solid #6C839C;
}


.account-list-block-tocart:hover {
    background: #2a2d42;
}

.account-list-block-tocart.in-cart:hover {
    background: #5a6f8c;
}


.account-list-block-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    height: 34px;
    padding: 0 16px;
    border-radius: 16px;
    border: none;
    background: #FFD292;
    color: #1F2232;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}

.account-list-block-buy:hover {
    filter: brightness(0.8);
}

.account-list-block-created-at {
    font-size: 16px;
    color: #6C839C
}

.account-list-block-link {
    color: #33FFAE !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
    text-decoration-color: #33FFAE !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: 2px;
    text-underline-position: from-font;
}

.account-list-block-link:hover {
    color: #00cc88 !important;
    text-decoration-color: #00cc88 !important;
    text-decoration-thickness: 2px;
}

.pagination-accounts {
    padding-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.pagination-accounts__left {
    padding: 7px 32px;
    height: 34px;
    background: rgba(45, 55, 75, 0.50);
    border-radius: 16px 0 0 16px;
    border: 1px solid #4D5768;
    border-right: none;
    color: #6C839C;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.pagination-accounts__text {
    padding: 7px 32px;
    height: 34px;
    background: rgba(45, 55, 75, 0.50);
    border-radius: 0;
    border: 1px solid #4D5768;
    border-left: none;
    border-right: none;
    color: #6C839C;
    display: flex;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    transition: background 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.pagination-accounts__right {
    padding: 7px 32px;
    height: 34px;
    background: rgba(45, 55, 75, 0.50);
    border-radius: 0 16px 16px 0;
    border: 1px solid #4D5768;
    border-left: none;
    color: #6C839C;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.pagination-accounts__left:hover,
.pagination-accounts__right:hover {
    background: rgba(45, 55, 75, 0.75);
    color: #A0B7CE;
}

.pagination-accounts__text:hover {
    background: rgba(45, 55, 75, 0.65);
}

.account-list-block-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
    font-size: 12px;
    line-height: 1.5;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 16px;
    background: #262A3D;
    font-weight: 500;
    text-align: center;

}

.tag--golden {
    border: 1px solid #FFD292;
    color: #FFD292;
    font-size: 16px;
}


.tag--red {
    color: #FF7878;
    font-size: 16px;
    border: 1px solid #FF7878;
}

.tag--green {
    color: #33FFAE;
    font-size: 16px;
    border: 1px solid #33FFAE;
}

.tag--simple {
    color: #6C839C;
    font-size: 16px;
    border: 1px solid #6C839C;
}

.tag--female {
    color: #E28AD9;
    font-size: 16px;
    border: 1px solid #E28AD9;
}

.tag--male {
    color: #8ADCE2;
    font-size: 16px;
    border: 1px solid #8ADCE2;
}

.sale-now {
    color: #84BEFD;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sale-now:hover {
    filter: brightness(1.2);
}

.account-list-block-owner {
    font-size: 16px;
}

.account-list-block-owner:hover {
    filter: brightness(1.2);
}


.user-status--newbie {
    color: #6C839C;
}

.user-status--basic_seller {
    color: #8ADCE2;
}

.user-status--verified_seller {
    color: #ABFFB1;
}

.user-status--basic_buyer {
    color: #B57EDC;
}

.user-status--verified_buyer {
    color: #FFB4FA;
}

.user-status--banned {
    text-decoration: line-through;
    color: #FF7878;
}

.user-status--admin {
    color: #FFD292;
}

.user-status--support {
    color: #84BEFD;
}

.account-list-block {
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.account-list-block:hover {
    background: rgba(38, 42, 61, 0.70);
    box-shadow: 0 0 4px 2px rgba(102, 153, 255, 0.3);
}

.account-bg-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    text-decoration: none;
}

.account-inner {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.account-inner a,
.account-inner button,
.account-inner svg {
    pointer-events: auto;
}

.account-data-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 8px 0 0 0;
}

.account-data-account-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.account-login-data-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.account-get-token-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #84BEFD;
    background: #84BEFD;
    color: #1F2232;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    height: 34px;
    padding: 0 14px;
    cursor: pointer;
    transition: filter 0.2s ease, border-color 0.2s ease;
}

.account-get-token-btn:hover {
    border-color: #84BEFD;
    filter: brightness(1.08);
}

.account-get-token-btn:disabled {
    opacity: 0.6;
    cursor: default;
}


.account-token-modal {
    z-index: 7000;
}

.account-token-modal__content {
    width: min(560px, calc(100% - 24px));
}

.account-token-modal__body {
    padding-bottom: 24px;
}

.account-token-modal__text {
    color: #FFD292;
    font-size: 15px;
    margin: 0;
    padding: 0 24px;
    text-align: center;
}

.account-token-modal__text--processing {
    animation: accountTokenStatusPulse 1.4s ease-in-out infinite;
}

@keyframes accountTokenStatusPulse {
    0% {
        opacity: 0.72;
        text-shadow: 0 0 0 rgba(255, 210, 146, 0);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 210, 146, 0.35);
    }
    100% {
        opacity: 0.72;
        text-shadow: 0 0 0 rgba(255, 210, 146, 0);
    }
}

.account-token-modal__hint {
    margin-bottom: 10px;
}

.account-token-modal__options {
    margin-top: 16px;
    padding: 0 24px;
}

.account-token-modal__label {
    display: block;
    margin-bottom: 6px;
    color: #D7E3F4;
    font-size: 14px;
}

.account-token-modal__select {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #FFFFFF;
    height: 34px;
    padding: 0 10px;
    box-sizing: border-box;
}

.account-token-modal__select:focus {
    outline: none;
    border-color: #6C839C;
}

.account-token-modal__checkbox {
    align-items: flex-start;
    margin-bottom: 0;
    color: #D9E1EA;
    cursor: pointer;
}

.account-token-modal__actions {
    justify-content: flex-end;
    gap: 10px;
    padding: 0 24px;
    margin-top: 20px;
}

.account-token-modal__actions button {
    width: auto;
    min-width: 120px;
    padding: 0 18px;
}

.account-data-info-item svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
    margin-left: 8px;
    cursor: pointer;
}

.account-data-info-item svg:hover {
    filter: brightness(1.2);
}

.account-data-info-value {
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

.send-review-button {
    display: flex;
    height: 34px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 16px;
    background: none;
    border: 1px solid #33FFAE;
    color: #33FFAE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 16px;
    cursor: pointer;
}

.tg-archive-detail-actions {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.tg-archive-detail-actions .account-header-actions-block-button,
.tg-archive-detail-actions .send-review-button {
    min-height: 34px;
    height: auto;
    margin-top: 0;
    padding: 0 18px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

.tg-archive-detail-actions .claim-action-button {
    min-width: 220px;
}

.tg-archive-detail-actions .send-review-button {
    min-width: 240px;
}

.send-review-button:hover {
    filter: brightness(1.2);
}

.send-review-button.disabled {
    color: #1F2232;
    pointer-events: none;
    user-select: none;
    background: #33FFAE;
}

.review-textarea {
    width: 100%;
    box-sizing: border-box;
    color: #6C839C;
    margin-top: -16px !important;
    margin-left: 16px;
    margin-right: 16px !important;
    padding: 5px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #4D5768;
    background: #262A3D;
    resize: none;
}

.review-textarea:focus {
    outline: none;
}

.send-review-text-container {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.send-review-text-container label {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.review-textarea input {
    color: #6C839C;
}

.rating-options {
    display: flex;
    gap: 10px;
}

.rating-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.rating-option input {
    display: none;
}

.rating-icon {
    margin-right: 0;
}

.send-feedback-modal-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 16px;
}

.send-feedback-modal-footer-left {
    gap: 6px;
}

.send-feedback-modal-footer-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 28px;
    gap: 10px;
}


.send-feedback-modal .one-click-modal-content {
    align-items: stretch;
}
.send-feedback-modal .one-click-modal-body {
    width: 100%;
    text-align: left; 
}
.send-feedback-modal .review-modal-confirm {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}
.send-feedback-modal .send-review-text-container,
.send-feedback-modal .send-review-text-container label,
.send-feedback-modal .send-feedback-modal-footer {
    width: 100%;
    box-sizing: border-box;
}

.send-feedback-modal .send-feedback-modal-footer {
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
}
.send-feedback-modal .send-feedback-modal-footer-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
    min-width: 0;
    max-width: 100%;
}

.send-feedback-modal .one-click-confirm-yes,
.send-feedback-modal .one-click-confirm-no {
    max-width: 100%;
    white-space: nowrap;
}
@media (max-width: 380px) {
    .send-feedback-modal .one-click-confirm-yes,
    .send-feedback-modal .one-click-confirm-no {
        padding: 6px 12px;
    }
}

.send-feedback-modal .review-textarea {
    width: 100%;
}

.scroll-block-reviews {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 31px;
    min-height: auto;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 8px;
    scrollbar-width: thin;
    scrollbar-color: #4D5768 #262A3D;

    &::-webkit-scrollbar {
        width: 12px;
        background: transparent;
    }

    &::-webkit-scrollbar-track {
        background: transparent;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #84BEFD;
        border-radius: 4px;
        background-clip: padding-box;
    }

}

.subscription-item-empty {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 68px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
}

.feedback-summary-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.feedback-summary-row-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.user-feedback-empty {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #4D5768;
    padding: 15px 0;
    gap: 4px;
    background: rgba(73, 95, 118, 0.20);
}

.user-feedback-empty-pseudo-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 34px;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.radio-review-filters {
    cursor: pointer;
    font-size: 14px;
    color: #6C839C;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.radio-review-filters input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
}

.radio-review-filters:has(input[type="radio"]:checked)::after {
    display: none;
}

.radio-review-filters:has(input[type="radio"]:checked) {
    color: #84BEFD;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #84BEFD;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.scroll-block-reviews-summary {
    max-height: fit-content;
}

.scroll-review-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 8px;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #4D5768;
}

.review-item-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 6px;
}

.review-item-top-left {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}

.review-item-top-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-item-top-block span {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.review-item-top-review-text p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.review-item-top-reviewer-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 6px;
}

.review-item-bottom {
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    border-radius: 43px;
    background: rgba(45, 55, 75, 0.50);
    padding: 4px 12px;
    margin-left: 42px;
    margin-top: 8px;
}

.outer-user-feedback-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #33FFAE;
    color: #33FFAE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 16px;
    margin-right: 32px;
}

.account-sale-history-action-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.account-sale-history-action-text a:hover {
    filter: brightness(1.2);
}

.account-sale-history-action-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #6C839C;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.account-sale-history-action-date {

}

.account-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.account-detail-content-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    background: #232637;
    padding: 25px 31px;
    margin-bottom: 16px;
}

.account-detail-content-block-FEEDBACK {
    padding-right: 0;
}

.info-account-title {
    display: flex;
    width: fit-content;
}

.account-detail-content-block-top-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-account-text {
    font-size: 14px;
    color: #6C839C;
}

.account-detail-content-block-top-side-main-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.account-detail-content-block-top-side-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    gap: 6px;
}

.account-detail-content-block-acc-info {
    display: flex;
    flex-direction: column;
}

.acc-info-link-container {
    padding: 6px 9px;
    border-radius: 16px;
    background: #1F2232;
    color: #6C839C;
    font-size: 12px;
    gap: 4px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 17px;
}

.icon_12x12 {
    width: 13px;
    height: 13px;
}

.icon_28x28 {
    width: 28px;
    height: 28px;
}

.acc-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    font-size: 13px;
    column-gap: 0;
    row-gap: 21px;
}

.acc-detail-item {
    display: flex;
    flex-direction: column;
    color: #aab4c2;
}

.acc-detail-item span {
    font-size: 12px;
    color: #6C839C;
}

.acc-detail-item strong {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.acc-detail-item .red {
    color: #FF7878;
}

.acc-detail-item .male {
    color: #8ADCE2;
}

.acc-detail-item .female {
    color: #E28AD9;
}

.acc-detail-item .valid {
    color: #33FFAE;
}

.acc-detail-item .gold {
    color: #FFD292;
}

.acc-detail-item.acc-detail-wide {
    grid-column: span 4;
    margin-top: 12px;
}

.acc-detail-divider {
    border: none;
    border-top: 2px solid #4D5768;
    margin: 20px 0;
}

.acc-detail-groups {
    font-size: 14px;
}

.acc-detail-groups-title {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.acc-detail-group-row {
    border-top: 1px solid #32373F;
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #2A2A3D;
}

.acc-detail-group-name {
    color: #6C839C;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.acc-detail-group-count,
.acc-detail-group-role {
    width: 100px;
    text-align: right;
    color: #6C839C;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.recently-carousel-wrapper {
    display: flex;
    width: 100%;
    gap: 16px;
    box-sizing: border-box;
    margin-bottom: 21px;
    align-items: stretch;
    min-height: 80px;
}

.recently-carousel-container {
    display: flex;
    width: 100%;
    flex: 1;
    gap: 12px;
    align-items: stretch;
}

.empty-users-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 24px;
    gap: 29px;
}

.recently-card {
    flex: 1;
    min-width: 0;
    background: rgba(45, 55, 75, 0.50);
    border-radius: 12px;
    padding: 12px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: 67px;
}

.recently-card:hover {
    background: rgba(45, 55, 75, 0.80);
}

.recently-card-left {
    margin-right: 10px;
    flex-shrink: 0;
}

.recently-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.recently-title {
    color: #6C839C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recently-meta {
    color: #84BEFD;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
}

.recently-arrow {
    border-radius: 8px;
    background: rgba(45, 55, 75, 0.50);
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 31px;
    flex: none;
}

.recently-arrow.recently-arrow-achievements {
    height: 67px;
    background: rgba(73, 95, 118, 0.20);
    border: 1px solid #4D5768;
}

.recently-arrow:disabled svg path {
    opacity: 0.3;
}


#accounts-wrapper {
    transition: opacity 0.2s ease-in-out;
    min-height: 400px;
}


#accounts-wrapper.loading {
    opacity: 0.3;
}


#accounts-wrapper.loaded {
    opacity: 1;
}


.loader {
    text-align: center;
    font-size: 16px;
    color: #6C839C;
    padding: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}


@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}


.account-list-block {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease-out forwards;
}

.account-list-block.selected {
    border-color: #33FFAE;
}

.account-list-block-header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.bookmark-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 16px;
    background: #84BEFD;
    color: #1F2232;
    font-size: 16px;
    font-weight: 400;
}

.bookmark-mark--service-suspended {
    border: 1px solid #FFD292;
    background: #FFD292;
    color: #232637;
    box-shadow: 0 0 0 3px rgba(255, 210, 146, 0.12);
    white-space: nowrap;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.account-list-block:nth-child(1) {
    animation-delay: 0.05s;
}

.account-list-block:nth-child(2) {
    animation-delay: 0.1s;
}

.account-list-block:nth-child(3) {
    animation-delay: 0.15s;
}

.account-list-block:nth-child(4) {
    animation-delay: 0.2s;
}

.loader {
    text-align: center;
    font-size: 16px;
    color: #6C839C;
    padding: 20px;
    animation: pulse 1s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #6C839C;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 22px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.cart-content-header {
    display: flex;
    flex-direction: row;
    align-self: stretch;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    border-radius: 16px;
    padding: 25px 31px;
    background: rgba(38, 42, 61, 0.50);
}

.cart-content-header-block {
    display: flex;
    flex-direction: column;
}

.cart-content-header-right {
    display: flex;
    flex-direction: row;
}

.cart-content-header-header-btn-check {
    display: flex;
    height: 34px;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    font-size: 16px;
    font-weight: 520;
}

.cart-content-header-header-clean-cart {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid #4D5768;
    background: #262A3D;
    margin-left: 8px;
}

.cart-content-header-header-clean-cart svg {
    color: #4D5768;
}

.cart-content-header-header-clean-cart:hover svg {
    color: #FF7878;
}

.cart-content-header-header-clean-cart:hover {
    border: 1px solid #FF7878;
}

.cart-content-header-header-text-annotation {
    color: #6C839C;
    font-weight: 400;
    font-size: 14px;
}

.cart-content-header-header-text {
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
}

.textarea-proxies-container {
    position: relative;
    display: flex;
    align-items: stretch;
}

.debug-link {
    display: inline !important;
    visibility: visible !important;
    color: #FFF !important;
    text-decoration: underline !important;
}

.error-page-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.error-block-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.error-block-message-annotation {
    color: #6C839C;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
}

.error-block-to-home {
    margin-top: 24px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.error-block-btn-to-home {
    border-radius: 16px;
    border: 2px solid #FFD292;
    background: #262A3D;
    padding: 12px 20px;
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
}

.error-block-btn-to-home:hover {
    background: #262A3D80;
}

.error-number-container {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    color: #FFD292;
    font-size: 400px;
    font-weight: 900;
}

.error-number-middle {
    position: relative;
    display: inline-block;
}

.error-number-middle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 340px;
    height: 340px;
    object-fit: cover;

    border-radius: 50%;
}

.error-container p {
    font-size: 1.5rem;
    color: #666;
    margin-top: 1rem;
}

button#back-to-top.back-to-top-btn {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 200px;
    border: 1px solid #4D5768;
    background: rgba(45, 55, 75, 0.50);
}

.favorite-btn-block {
    display: inline-flex;
    align-items: center;

    padding: 4px 0;
    gap: 6px;
}

button.archive-bookmark-icon-block,
button.favorite-btn-block.js-tg-archive-favorite {
    border: 0;
    outline: 0;
    background: transparent;
    color: #6C839C;
    font: inherit;
    cursor: pointer;
    appearance: none;
}

button.archive-bookmark-icon-block.is-active,
button.archive-bookmark-icon-block.is-active .archive-bookmark-icon {
    color: #E28AD9;
}

button.favorite-btn-block.js-tg-archive-favorite:disabled {
    cursor: default;
    opacity: 0.8;
}

.tg-archive-access-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(132, 190, 253, 0.46);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(132, 190, 253, 0.14), rgba(51, 255, 174, 0.08)), #1F2232;
}

.tg-archive-access-card--locked {
    border-color: #4D5768;
    background: #1F2232;
}

.tg-archive-access-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.tg-archive-access-card__label {
    color: #8FA3BA;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.tg-archive-access-card__link {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.tg-archive-access-card__link:hover {
    color: #FFD292;
}

.tg-archive-access-card__locked {
    color: #D7DFEA;
    font-size: 15px;
}

.tg-archive-access-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: #FFD292;
    color: #232637;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.tg-archive-access-card__button--locked {
    background: #2B3044;
    color: #8FA3BA;
}

.cart-check-progress-bar {
    display: none;
    width: 100%;
    height: 34px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 16px;
    margin-bottom: 22px;
    border: 1px solid #4D5768;
}

.cart-check-progress-bar .progress-bar-check__fill {
    height: 100%;
    background: #49FF7A;
    border-radius: 16px;
    transition: width 0.3s ease;
}

.cart-account-download-format-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 30px 38px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #232637;
}

.cart-content-header.disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    user-select: none;
}

.cart-account-download-format-block-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    border: 1px solid #4D5768;
    background: #232637;
}

.cart-account-download-format-block.disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    user-select: none;
}

.stats-header.cart-check-stats-header {
    display: none;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(1) {
    color: #A8A8BE;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(1) span.stat-skipped {
    color: #A8A8BE;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(2) {
    color: #49FF7A;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(2) span.stat-remaining {
    color: #49FF7A;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(3) {
    color: #FF7878;
}

.stats-header.cart-check-stats-header .stat-item:nth-child(3) span.stat-success {
    color: #FF7878;
}


.cart-account-download-format-block-summary {
    display: flex;
    width: 100%;
    min-height: 34px;
    padding: 4px 14px;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    overflow: visible;
    white-space: pre-wrap;
    cursor: default;
    margin-bottom: 12px;
}

.cart-account-download-format-block-summary span {
    font-weight: 500;
    font-size: 16px;
    color: #6C839C;
    line-height: 1.5;
    display: block;
    word-break: break-all;
}


.cart-account-download-format-block-summary span {
    word-break: break-all;
}

.cart-account-download-format-button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.cart-account-download-format-tag-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #6C839C;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}


.cart-account-download-format-tag-button:hover {
    background: #262A3D;
    color: #FFD292;
    border: 1px solid #FFD292;
}

.cart-account-download-format-tag-button.active {
    border-radius: 16px;
    border: 1px solid #FFD292;
    color: #FFD292;
    font-size: 16px;
    font-weight: 400;
    background: #262A3D;
}

.cart-account-download-format-tag-button.active:hover {
    background: #2E3445;
}

.cart-account-download-format-block-bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 12px;

    justify-content: flex-end;


    align-items: flex-end;
}

.cart-account-download-format-block-bottom-button {
    height: 34px;
    padding: 10px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    appearance: none;
    cursor: pointer;
    border: none;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    font-size: 16px;
    font-weight: 500;
    align-self: flex-end;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.cart-account-download-format-block-bottom-button:hover {
    filter: brightness(1.1);
}

.cart-account-download-format-block-bottom-button.cart-account-download-format-block-bottom-button-clean {
    background: #1F2232;
    color: #6C839C;;
}

.account-list-block-check-status {
    display: inline-flex;
    height: 30px;
    padding: 0 12px;
    margin-bottom: 24px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid #6C839C;
}

.account-list-block-check-status-text {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cart-item-action-status {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 19px;
    background: #6C839C;
}

.cart-item-action-status.status-pending {
    background-color: #FFD292 !important;
    animation: spin 1s linear infinite !important;
}

.cart-item-action-status.status-failed {
    background-color: #FF7878 !important;
}

.cart-item-action-status.status-success {
    background-color: #33FFAE !important;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cart-account-list-block {
    overflow: hidden;
}

.feedback_block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-download {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-cart-download {
    background-color: #232637;
    margin: 10% auto;
    padding: 29px 29px 40px;
    border-radius: 16px;
    gap: 23px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #4D5768;
    width: 760px;
}

.cart-account-download-format-modal-summary {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cart-account-download-format-modal-summary-text {
    width: 100%;
}

.cart-account-download-format-block-summary.cart-account-download-format-block-summary-modal {
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 16px;
    background: #262A3D;
    border: 1px solid #4D5768;
    color: white;
    margin: 0;
    font-size: 14px;
}

.cart-account-download-bottom-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.modal-open,
html.modal-open {
    overflow: hidden;
    height: 100%;
}

.recently-viewed-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 6000;
    overflow: auto;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.recently-viewed-modal-container {
    position: relative;
    background: #262A3D;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    max-height: calc(100vh - 40px);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 7000;
}

.bulk-purchase-label-modal-container {
    position: relative;
    background: #262A3D;
    margin: 15% auto;
    padding: 0;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: fit-content;
}


#labelModalBulk {
    z-index: 7001;
}

#labelModalBulk .bulk-purchase-label-modal-container {
    z-index: 7002;
}

.gold-modal-header-block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 16px 16px 0 0;
    background: #FFD292;
}

.gold-modal-header {
    color: #1F2232;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.recently-viewed-modal-body {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding: 0 27px;
    gap: 18px;


    &::-webkit-scrollbar {
        width: 8px;
        background: transparent;
    }

    &::-webkit-scrollbar-track {
        background: transparent;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #84BEFD;
        border-radius: 4px;
        background-clip: padding-box;
    }


    scrollbar-width: thin;
    scrollbar-color: #84BEFD transparent;
}

.recently-viewed-modal-account {
    display: flex;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(45, 55, 75, 0.50);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.recently-viewed-modal-account:hover {
    background: rgba(45, 55, 75, 0.80);
}

.recently-viewed-modal-account-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.recently-viewed-modal-account-title {
    margin-left: 6px;
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.recently-viewed-modal-account-price {
    margin-left: 6px;
    color: #84BEFD;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.recently-viewed-modal-account-time {
    font-size: 12px;
    color: #666;
}

.recently-viewed-modal-empty {
    text-align: center;
    padding: 20px;
    color: #666;
}

#labelModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 7001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

#labelModal[style*="display: flex"] {
    opacity: 1;
}

.label-modal-content {
    margin: 20px;
}

#labelModal .recently-viewed-modal-container {
    background: #232637;
    margin: 10% auto;
    width: 90%;
    max-width: 578px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    position: relative;
    z-index: 7002;
}

#labelModal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #6C839C;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

#labelModal .close:hover {
    color: #84BEFD;
}

.label-manager {
    display: flex;
    margin: 20px;
    flex-direction: row;
    gap: 16px;
    padding-right: 24px;
    z-index: 7001;
}

.labels-existing,
.label-create {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.labels-existing h3,
.label-create h3 {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.labels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.label-pill {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    padding: 6px 14px;
    border: 2px solid;
    border-radius: 20px;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.btn-edit,
.btn-delete {
    margin-left: 8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #FFD292;
    color: #1F2232;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.label-item-content {
    display: flex;
    flex-direction: row;
    align-self: flex-end;
}

.btn-edit:hover,
.btn-delete:hover {
    background: #FFC561;
}

.no-labels {
    color: #6C839C;
    font-size: 14px;
    text-align: center;
    margin-top: 50%;
}

.label-title-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    height: 34px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    font-size: 14px;

}

.label-name-annotation {
    color: #4D5768;
    font-size: 14px;
    margin-bottom: 8px;
}

.label-title-field input {
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #4D5768;
    font-size: 14px;
}

.label-color-field {
    color: #4D5768;
    font-size: 14px;
}

.color-options {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.color-circle.selected {
    border-color: #FFF;
}

.label-preview {
    margin: 12px 0;
    padding: 6px 14px;
    border: 2px solid;
    border-radius: 20px;
    font-size: 14px;
    color: #FFD292;
}

.btn-create {
    align-self: flex-end;
    padding: 10px 20px;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-create:hover {
    background: #FFC561;
}

.label-create.disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    user-select: none;
}

.label-item-content {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.btn-edit, .btn-delete {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.label-empty {
    border-color: #6C839C !important;
    color: #6C839C !important;
}

.label-button {
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 16px;
    background: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.label-button:hover {
    opacity: 0.8;
}

.system-label {
    cursor: pointer;
    border: 1px solid;
    padding: 6px 14px;
    margin-bottom: 10px;
}

.system-label:hover {
    opacity: 0.8;
}

.label-pill:hover {
    opacity: 0.8;
}

.ignore-list-body {
    gap: 16px;
}

.you-are-ignored {
    border-radius: 21px;
    border: 1px solid #4D5768;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 31px;
    background: #232637;
    padding: 36px;
}

.one-click-modal, .bulk-purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6000;
}

.one-click-modal-content, .bulk-purchase-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: min(560px, 100%);
    max-width: 560px;
    background-color: #262A3D;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    box-sizing: border-box;
    z-index: 6000;
}

.one-click-modal-close, .bulk-purchase-modal-close {
    position: absolute;
    color: #1e2233;
    top: 6px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.bulk-purchase-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 24px;
    gap: 16px;
}

.bulk-purchase-top-row-left, .bulk-purchase-top-row-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bulk-purchase-top-row-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 0;
}

.bulk-purchase-top-row-left, .bulk-purchase-top-row-right p {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.one-click-modal-header, .bulk-purchase-modal-header {
    width: 100%;
    padding: 12px;
    border-radius: 16px 16px 0 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.bulk-purchase-modal-header {
    display: block;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.one-click-modal-header-gold, .bulk-purchase-modal-header-gold {
    background: #FFD292;
}

.one-click-modal-header-gray {
    background: #6C839C;
}

.one-click-modal-header-green {
    background: #49FF7A;
}

.one-click-modal-header-red {
    background: #FF7878;
}

.bulk-purchase-info-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.bulk-purchase-info-progress {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 24px;
    color: #49FF7A;
}

.one-click-modal-body, .bulk-purchase-modal-body {
    
    padding: 0 20px 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.one-click-modal-body, h2 {
    color: #1F2232;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0;
}

.bulk-purchase-modal-body h2 {
    color: #1F2232;
    font-size: 16px;
}

.bulk-purchase-only-cookie-checkbox {
    width: fit-content;
    margin: 0;
}

.one-click-modal-body, .bulk-purchase-modal-body p {
    color: #FFF;
    margin-bottom: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    align-items: center;
}


.one-click-modal-body .tg-recheck-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}


.one-click-modal-body .tg-recheck-step .one-click-modal-header {
    width: 100%;
    box-sizing: border-box;
}


.one-click-modal-body .tg-recheck-confirm p {
    margin-left: 6px;
    margin-right: 6px;
}


.one-click-modal-body .tg-recheck-progress {
    padding-left: 10px;
    padding-right: 10px;
}


.one-click-modal-body .tg-recheck-progress > div:first-of-type {
    margin-left: 6px !important;
    margin-right: 6px !important;
}

.one-click-buy-label {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0 auto 8px;
    gap: 10px;
}


.one-click-buy-label p {
    margin: 0;
    color: #6C839C;
    font-size: 16px;
    font-weight: 400;
}

.one-click-buy-label .sell-account-name-field {
    width: auto !important;
}

.one-click-buy-label .label-button {
    padding: 8px 16px;
    border: 1px solid #6C839C;
    border-radius: 16px;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #6C839C;
}

.one-click-buy-label .label-button:hover {
    opacity: 0.8;
}

.one-click-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px 25px 32px;
    box-sizing: border-box;
    margin-top: 24px;
}

.one-click-confirm, .bulk-purchase-confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.one-click-modal-body .one-click-resell-body,
.one-click-modal-body .recheck-body,
.one-click-modal-body .delete-body,
.one-click-modal-body .transfer-body,
.one-click-modal-body .edit-body {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
    box-sizing: border-box;
}


.one-click-modal-body .one-click-buttons,
.one-click-modal-body .bulk-purchase-buttons {
    width: 100%;
    box-sizing: border-box;
}


.one-click-modal-body div[style*="align-items: center"] {
    align-items: stretch !important;
    width: 100%;
    box-sizing: border-box;
}

.bulk-purchase-prev-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 24px 24px 8px 24px;
}

.bulk-purchase-prev-info-block p {
    color: #6C839C;
}

.price-input::-webkit-inner-spin-button,
.price-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.price-input::-webkit-outer-spin-button,
input.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bulk-purchase-buttons {
    display: flex;
    justify-content: flex-end;
    padding: 0 24px 24px 0;
}

.bulk-purchase-start-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.one-click-confirm-yes, .one-click-go-to-account, .resell-yes {
    background-color: #FFD292;
    color: #1F2232;
    width: 164px;
    height: 34px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.one-click-confirm-no, .one-click-close {
    background-color: #1F2232;
    color: #6C839C;
    width: 164px;
    height: 34px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;

}

.one-click-error {
    padding-bottom: 21px;
}

.one-click-confirm-yes:hover,
.one-click-go-to-account:hover,
.one-click-confirm-no:hover,
.one-click-close:hover {
    filter: brightness(1.1);
}

.one-click-resell-body {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 25px 32px;
}

.one-click-resell-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
}

.one-click-resell-left-price {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.resell-title-field-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}


.resell-field-label {
    display: block;
    color: #6C839C;
    font-size: 16px;
    font-family: "Geist", sans-serif;
    font-weight: 500;
}

.resell-title-input-field {
    width: 100%;
}

.resell-title-input-label {
    display: block;
    width: 100%;
}

.resell-title-input {
    width: 100%;
    height: 34px;
    padding: 0 14px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #6C839C;
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.resell-title-input::placeholder {
    color: #6C839C;
    font-weight: 500;
}

.resell-title-input:focus {
    outline: none;
    border-color: #84BEFD;
}

.resell-title-input:hover {
    border-color: #84BEFD;
}

.price-input-wrapper {
    position: relative;
    width: 199px;
}

.account-list-block-title-and-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.account-detail-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.notifications-empty-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

#bump-all:disabled,
#bump-all.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

#bump-all:disabled:hover,
#bump-all.disabled:hover {
    background-color: initial;
    color: initial;
}


.claim-file-input {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.claim-file-input input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.claim-file-input .file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #E6ECF5;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.claim-file-input .file-button:hover {
    border-color: #84BEFD;
}

.claim-file-input .file-name {
    color: #6C839C;
    font-size: 14px;
    max-width: 60ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.notifications-empty-block p {
    font-size: 16px;
}

.price-input-wrapper::after {
    content: "₽";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6C839C;
    font-size: 16px;
    pointer-events: none;
}

.price-input-wrapper.no-currency::after {
    content: none !important;
}


.price-input {
    width: 199px;
    height: 34px;
    padding: 0 15px !important;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #6C839C !important;
    font-size: 16px;
    font-family: Geist, sans-serif;
    box-sizing: border-box;
    outline: none;
    -webkit-text-fill-color: #6C839C !important;
}

.bulk-purchase-start-buy:disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    user-select: none;
}


.price-input:placeholder-shown {
    color: #6C839C;
}


.price-input:not(:placeholder-shown) {
    padding-right: 30px;
}


.price-input::placeholder {
    color: #6C839C;
}

.one-click-buy-label.resell-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    padding-left: 0;
}

.one-click-resell-left-price span {
    color: #6C839C;
}

.one-click-resell-left-price input {
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    height: 34px;
}

.resell-yes {
    align-self: flex-start;
}

.account-list-block-buy.js-one-click-buy {
    pointer-events: auto !important;
    z-index: 2;
    position: relative;
}

.account-bg-link {
    z-index: 0;
    pointer-events: auto;
}


.settings-content {
}

.sell-settings-header-block {
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
    display: flex;
    width: 100%;
    height: 56px;
    padding-left: 32px;
    margin-bottom: 21px;
    justify-content: left;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sell-settings-block {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
    padding: 27px 27px 21px 31px;
}

.settings-header {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 6px;
}

.sell-account-name-field {
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    display: flex;
    width: 100%;
    height: 34px;
    padding: 0;
    align-items: center;
    gap: 10px;

    box-sizing: border-box;
}

.sell-account-name-field-label {
    width: 100%;
}


.sell-account-name-field > label {
    display: block;
    width: 100%;
    height: 100%;
}

.sell-account-name-field input {
    color: #FFFFFF !important;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 6px 14px;
    font-size: 16px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sell-account-name-field input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.sell-account-name-field input[type="number"]::-webkit-inner-spin-button,
.sell-account-name-field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sell-annotation {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.settings-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.settings-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(45, 55, 75, 0.50);
}

.radio-buttons {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
}


.radio-buttons input[type="radio"] {
    display: none;
}

.radio-buttons label {
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.5);
    color: #6C839C;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    flex: 1;
    text-align: center;
    height: 34px;
    line-height: 34px;
}

.radio-buttons input[type="radio"]:checked + label {
    background: #FFD292;
    color: #000;
}

.radio-buttons label:hover {
    background: rgba(45, 55, 75, 0.8);
}

.radio-buttons.no-stretch {
    width: auto;
}

.radio-buttons.no-stretch label {
    flex: none;
    padding: 0 20px;
}

.sale-annotation {
    color: #FFD292;
    font-size: 14px;
}

.sell-warning-annotation-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 12px 0 8px;
    text-align: center;
}

.sell-warning-annotation-block .sale-annotation {
    display: inline-flex;
    justify-content: center;
    text-align: center;
}

.seller-guarantee-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6C839C;
    font-family: Geist, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    cursor: pointer;
}

.seller-guarantee-checkbox input[type="checkbox"] {
    display: none;
}

.seller-guarantee-checkbox .checkbox-empty {
    width: 18px;
    height: 18px;
    border: 1px solid #4D5768;
    border-radius: 4px;
    display: block;
}

.seller-guarantee-checkbox .checkbox-checked {
    width: 18px;
    height: 18px;
    background: #49FF7A;
    border-radius: 4px;
    display: none;
    position: relative;
}

.seller-guarantee-checkbox .checkbox-checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #262A3D;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.seller-guarantee-checkbox input[type="checkbox"]:checked + .checkbox-empty {
    display: none;
}

.seller-guarantee-checkbox input[type="checkbox"]:checked + .checkbox-empty + .checkbox-checked {
    display: block;
}

.guarantee-hours-field input::placeholder {
    color: #6C839C;
    font-family: Geist, sans-serif;
    font-size: 16px;
}

.guarantee-text {
    color: #FFF;
    font-size: 16px;
}

.textfield-sale {
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    width: 100%;
    height: 247px;
    padding: 6px 14px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    display: block;
    margin-bottom: 20px;
}

.textfield-sale textarea {
    color: #6C839C;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: Geist, sans-serif;
    resize: none;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: block;

    scrollbar-width: thin;
    scrollbar-color: #4D5768 #262A3D;
}

.textfield-sale textarea::-webkit-scrollbar {
    width: 8px;
}

.textfield-sale textarea::-webkit-scrollbar-track {
    background: #262A3D;
    border-radius: 16px;
}

.textfield-sale textarea::-webkit-scrollbar-thumb {
    background: #4D5768;
    border-radius: 16px;
    border: 2px solid #262A3D;
}

.textfield-sale textarea::-webkit-scrollbar-thumb:hover {
    background: #6C839C;
}

.proxy-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    align-items: flex-start !important;
}

.proxy-count,
.last-update {
    font-size: 14px;
    font-family: Geist, sans-serif;
    font-weight: 400;
    line-height: normal;
}

.last-update {
    margin-bottom: 16px;
}

.proxy-label {
    color: #6C839C;
}

.proxy-value {
    color: #FFD292;
}

.settings-header.proxy-choose-settings-header {
    margin-bottom: 0;
}

.proxy-radio-buttons {
    height: 34px;
    display: inline-flex;
    border: 1px solid #4D5768;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.proxy-radio-buttons title {
    background: #262A3D;

}

.proxy-radio-buttons input {
    display: none;
}

.proxy-radio-buttons label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0 12px;
    cursor: pointer;
    background: #262A3D;
    color: #6C839C;
    text-align: center;
    width: max-content;
    font-size: 16px;
    font-weight: 550;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.proxy-radio-buttons label:hover {
    background: #2D374B80;
    color: white;
}

.proxy-radio-buttons label:not(:last-child) {
    border-right: 1px solid #555;
}

.proxy-radio-buttons input:checked + label {
    background: #FFD292;
    color: #1F2232;
}

.proxy-radio-buttons input:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
    background: #262A3D;
    color: #6C839C;
}

.proxy-text {
    color: #FFFFFF;
    font-size: 14px;
    font-family: Geist, sans-serif;
    font-weight: 400;
    line-height: normal;
}

.proxy-list-block {
    display: none;
}

.proxy-save {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-bottom: 16px;
}

.proxy-save input[type="checkbox"] {
    display: none;
}

.proxy-save .checkmark-empty {
    width: 18px;
    height: 18px;
    border: 1px solid #4D5768;
    border-radius: 4px;
    display: block;
}

.proxy-save .checkmark-checked {
    width: 18px;
    height: 18px;
    background: #49FF7A;
    border-radius: 4px;
    display: none;
    position: relative;
}

.proxy-save .checkmark-checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #262A3D;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.proxy-save input[type="checkbox"]:checked + .checkmark-empty {
    display: none;
}

.proxy-save input[type="checkbox"]:checked + .checkmark-empty + .checkmark-checked {
    display: block;
}

.final-annotation {
    margin-top: 16px;
    display: block;
}

.publish_account_button {
    color: #000000;
    font-size: 16px;
    border-radius: 16px;
    background: #FFD292;
    display: flex;
    width: 100%;
    height: 34px;
    padding: 7px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 21px;
    margin-bottom: 60px;
    transition: background-color 0.3s ease, color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.publish_account_button[disabled],
.publish_account_button:disabled {
    background: #2a2e42;
    color: #6C839C;
    cursor: not-allowed;
    filter: grayscale(100%);
    opacity: 0.9;
}

.publish_account_button.loading {
    background-color: #999;
    cursor: not-allowed;
    background-image: linear-gradient(
            45deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 70%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}


@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.sell-error-container {
    color: #FF7878;
    margin-bottom: 10px;
    display: none;
    max-width: 100%;

    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
    transition: opacity 0.3s ease;
}

.sell-error-container *,
.sell-error-list li {
    max-width: 100%;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
}


.check-results-content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.check-results-content > * {
    min-width: 0;
}

.check-results-content *,
.check-results-content *::before,
.check-results-content *::after {
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}


.stats-header {
    border-radius: 16px;
    padding: 10px 0;
    background: rgba(45, 55, 75, 0.50);
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.stats-header .stat-item {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.stats-header .stat-item span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
    color: #fff;
}

.stats-header .stat-item:nth-child(1) {
    color: #FFD292;
}

.stats-header .stat-item:nth-child(1) span.stat-total {
    color: #FFD292;
}

.stats-header .stat-item:nth-child(2) {
    color: #6C839C;
}

.stats-header .stat-item:nth-child(2) span.stat-remaining {
    color: #6C839C;
}

.stats-header .stat-item:nth-child(3) {
    color: #49FF7A;
}

.stats-header .stat-item:nth-child(3) span.stat-success {
    color: #49FF7A;
}

.stats-header .stat-item:nth-child(4) {
    color: #FF7878;
}

.stats-header .stat-item:nth-child(4) span.stat-error {
    color: #FF7878;
}

.stats-header .stat-item:nth-child(5) {
    color: #A8A8BE;
}

.stats-header .stat-item:nth-child(5) span.stat-skipped {
    color: #A8A8BE;
}

.check-results-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.progress-wrapper-check {
    width: 100%;
    padding: 0;
}

.progress-wrapper-check-bulk-purchase {
    padding: 8px 24px;
}


.progress-bar-check {
    display: flex;
    width: 100%;
    height: 16px;
    background: #2a2a3d;
    border-radius: 6px;
    margin: 16px 0;
    box-sizing: border-box;
}

.progress-bar-check-bulk {
    background-color: #2a2a3d;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #4D5768;
}

.progress-bar-check__fill {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #00d084, #00ffca);
    transition: width 0.4s ease;
}

.progress-bar-check-bulk__fill {
    border-radius: 16px;
}

.bulk-purchase-success-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 25px;
}

.bulk-purchase-success-button {
    display: flex;
    align-items: center;
    height: 34px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    padding: 0 24px;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    border: none;
}

.bulk-purchase-close-after-success {
    background: #1F2232;
    color: #6C839C;
}


.settings-header {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #cfcfe1;
}

.publish-final-button {
    display: block;
    text-wrap: nowrap;
    width: auto;
    margin: 0 auto 24px;
    padding: 12px;
    background: #ffb648;
    color: #1e1e2f;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.publish-final-button:hover:not(:disabled) {
    background: #ffd06b;
}

.publish-final-button:disabled {
    background: #6C839C;
    cursor: not-allowed;
}


.results-list {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
    padding: 16px;
    min-height: 100px;
}


.result-item {
    display: flex;
    align-items: center;
    padding: 14px;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.2s ease;
}


.divider-line {
    width: 100%;
    height: 2px;
    margin: 0;
}

.divider-svg {
    display: block;
    width: 100%;
    height: 2px;
}


.result-account,
.result-info {
    flex: 0 0 50%;
    min-width: 0;
}


.result-account {
    word-break: break-all;
    font-size: 10px;
    color: #6C839C;
    opacity: 0.8;
}


.result-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: right;
}


.result-info .account-link {
    font-size: 14px;
    color: #49FF7A;
    text-decoration: underline;
    word-break: break-all;
}

.result-info .copy-icon {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.result-info .copy-icon:hover {
    opacity: 0.8;
}


.result-info span {
    font-size: 14px;
    color: #e0e0e0;
}


.result-status {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-item.success .result-status {
    color: #49FF7A;
}

.result-item.failed .result-status {
    color: #FF7878;
}

.result-item.pending .result-status {
    color: #FFD292;
}


.result-service-id,
.result-title {
    font-size: 14px;
    color: #a8a8be;
    font-weight: 500;
}


.result-status .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.result-info .account-link-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-info .account-link {
    color: #6C839C;
    text-decoration: underline;
    white-space: nowrap;
}

.result-item.failed .result-info .copy-icon svg path {
    fill: #6C839C;
}

.result-item.skipped .result-status {
    color: #6C839C;
}

.result-item.skipped .result-info .account-link {
    color: #6C839C;
    text-decoration: underline;
}


.result-item.success .result-info .account-link,
.result-item .result-info .account-link {
    color: #49FF7A;
    text-decoration: underline;
}


.result-item.skipped .result-info .copy-icon svg path {
    fill: #6C839C;
}


.result-item.success .result-info .copy-icon svg path,
.result-item .result-info .copy-icon svg path {
    fill: #49FF7A;
}

.divider-line {
    width: 100%;
    height: 1px;
    margin: 0;
}

.result-info {
    text-align: left;
    display: block;
}

.result-status {
    display: block;
    text-align: left;
}

.sell-error-list {
    list-style: none;
}

.upgrade-container {
    width: 100%;
    display: flex;
    padding: 0;
}

.upgrades-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.upgrades-list h1 {
    margin-bottom: 16px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.upgrades-item {
    display: block;
    border-radius: 16px;
    margin-bottom: 18px;
    background: rgba(38, 42, 61, 0.50);
    padding: 17px 27px 31px 31px;
}

.upgrade-header {
    display: inline-block;
    padding: 10px 38px;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
    color: #FFF;
    font-size: 24px;
    white-space: nowrap;
}

.features-header {
    display: block;
    color: #FFF;
    font-size: 14px;
    margin: 20px 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.features-list {
    padding-left: 30px;
    margin: 0;
    color: #6C839C;
    font-size: 14px;
    flex: 1;
}

.features-list li {
    margin-bottom: 8px;
}

.preview-block {
    width: 250px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-annotation-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #6C839C;
    margin-top: 6px;
    gap: 8px;
    font-size: 14px;
    align-self: flex-end;
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.preview-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preview-username {
    font-size: 16px;
    font-weight: 500;
}

.preview-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #1F2232;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 179px;
    height: 34px;
    border-radius: 16px;
    text-align: center;
}

.action-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.buy-button, .activate-button {
    height: 34px;
    padding: 0 30px;
    border-radius: 16px;
    background: #FFD292;
    font-size: 16px;
    color: #1F2232;
    font-weight: 520;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activate-button.disabled, .activate-button:disabled, .buy-button.disabled, .buy-button:disabled {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
    user-select: none;
}

.buy-button:hover, .activate-button:hover {
    filter: brightness(1.1);
}

.price-block {
    height: 34px;
    padding: 0 20px;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
    display: flex;
    align-items: center;
}

.price-amount {
    color: #FFD292;
    font-size: 14px;
}

.price-period {
    color: #6C839C;
    font-size: 14px;
}

.free-block {
    height: 34px;
    padding: 0 20px;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
    color: #FFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
}

.free-block .tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    background: #262A3D;
    color: #6C839C;
    font-size: 12px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    z-index: 1;
    width: max-content;
    max-width: 400px;
}

.free-block .tooltip ul {
    list-style-position: inside;
    padding-left: 10px;
    margin: 0;
}

.free-block:hover .tooltip {
    display: block;
}

.upgrade-header:focus {
    outline: none;
    background: rgba(45, 55, 75, 0.75);
}


.stats-and-search {
    display: flex;
    flex-direction: row;
    gap: 38px;
}


.frame {
    background: #232637;
    border: none;
    border-radius: 16px;
    padding: 29px 37px;
    margin-top: 38px;
    flex: 1;
}


.stats-frame ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-statistic-block {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.market-statistic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-statistic-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.market-statistic-image {
    width: 139px;
    height: 139px;
    flex-shrink: 0;
}

.market-statistic-image svg {
    width: 139px;
    height: 139px;
}

.statistic-header {
    color: #6C839C;
    font-size: 14px;
    line-height: 139.952%;
}

.statistic-value {
    color: #FFFFFF;
    font-size: 14px;
}

.find-user-block {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.find-user-block-find-block {
    display: flex;
    flex-direction: row;
}

.find-user-input {
    width: 100%;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #6C839C;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.find-user-input:focus {
    outline: none;
}


.search-button {
    width: min-content;
    padding: 0 16px;
    height: 34px;
    background: #FFD292;
    color: #1F2232;
    border: 1px solid #FFD292;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.search-button:hover {
    background: #FFC561;
    border-color: #FFC561;
}

.new-users {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.new-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.new-user-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
}

.new-user-avatar {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.new-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.new-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.new-user-header {
    width: 100%;
    min-width: 0;
}

.new-user-name {
    font-size: 14px;
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-user-name:hover {
    filter: brightness(1.2);
}

.new-user-time {
    color: #6C839C;
    font-size: 12px;
}


.window_header {
    color: #FFD292;
    font-size: 16px;
}


.sidebar-wrapper {
    position: relative;
    display: flex;
    width: min-content;
    flex-direction: column;
}

.sidebar-top-block {
    border-radius: 16px;
    background: #232637;
    padding: 16px;
    margin-bottom: 16px;
    color: #6C839C;
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    font-size: 14px;
}

.user-avatar-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}


.avatar-block {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
}

.user-avatar-content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.user-status {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    height: 34px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #1F2232;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
}

.user-edit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    background: #1F2232;
    height: 34px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #6C839C;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

.user-edit-button:hover {
    filter: brightness(1.1);
}

.status-newbie {
    background-color: #1F2232;
    color: #6C839C;
}

.status-basic_seller {
    background-color: #8ADCE2;
    color: #1F2232;
}

.status-verified_seller {
    background-color: #ABFFB1;
    color: #1F2232;
}

.status-basic_buyer {
    background-color: #B57EDC;
    color: #1F2232;
}

.status-verified_buyer {
    background-color: #FFB4FA;
    color: #1F2232;
}

.status-banned {
    background-color: #FF7878;
    color: #1F2232;
}

.status-admin {
    background-color: #FFD292;
    color: #1F2232;
}

.status-support {
    background-color: #84BEFD;
    color: #1F2232;
}

.username-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.avatar-block-username {
    font-size: 18px;
    font-weight: 500;
    background: none;
}


.avatar-block-username.status-newbie {
    color: #6C839C;
}

.avatar-block-username.status-basic_seller {
    color: #8ADCE2;
}

.avatar-block-username.status-verified_seller {
    color: #ABFFB1;
}

.avatar-block-username.status-basic_buyer {
    color: #B57EDC;
}

.avatar-block-username.status-verified_buyer {
    color: #FFB4FA;
}

.avatar-block-username.status-banned {
    text-decoration: line-through;
    color: #FF7878;
}

.avatar-block-username.status-admin {
    color: #FFD292;
}

.avatar-block-username.status-support {
    color: #84BEFD;
}

.online-indicator {
    width: 6px;
    height: 6px;
    border-radius: 13px;
    background: #49FF7A;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
}

.online-indicator.offline {
    background: #6C839C;
}


.account-owner-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.account-owner-header .online-indicator { vertical-align: middle; }

.subscriptions-block, .subscribers-block {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.block-title {
    font-size: 16px;
    font-weight: 600;
    color: #6C839C;
    margin-bottom: 12px;
}

.subscriptions-list, .subscribers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscription-item, .subscriber-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.subscription-item.empty, .subscriber-item.empty {
    color: #666;
    font-style: italic;
}

.subscription-avatar, .subscriber-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.subscription-info, .subscriber-info {
    display: flex;
    flex-direction: column;
}

.subscription-username, .subscriber-username {
    font-size: 14px !important;
    color: #b0b0b0;
}

.subscription-status, .subscriber-status {
    font-size: 12px;
    color: #666;
}

.summary-user-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.summary-user-block {
    align-self: start;
    height: auto;
    width: 100%;
    max-width: 100%;
    background: #232637;
    padding: 33px 31px;
    border-radius: 16px;
    color: #6C839C;
    box-sizing: border-box;
}

.summary-user-block-header-and-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.summary-user-block-header-and-date label {
    width: 100%;
}

.avatar-block-username {
    font-size: 18px;
    font-weight: bold;

}

.user-speciality {
    margin-top: 10px;
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.user-achievements-block {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
}

.user_achievements {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    margin: 14px 0;
    align-content: flex-start;
}

.achievement-empty-block {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 10px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
    gap: 12px;
}

.achievement img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.achievement img:hover {
    transform: scale(1.5);
}

.user-summary-data {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #4D5768;
    padding-top: 27px;
}

.stat-item {
    text-align: center;
}

a {
    text-decoration: none;
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #FFD292;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6C839C;
}

.user-summary-data {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #4D5768;
    padding-top: 27px;
}

.stat-item {
    position: relative;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #FFD292;
    position: relative;
}

.tooltip {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 100%;
    left: 50%;
    gap: 4px;
    transform: translateX(-50%);
    background: rgba(35, 38, 55, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFD292;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    white-space: nowrap;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0 4px;
    border-style: solid;
    border-color: rgba(35, 38, 55, 0.8) transparent transparent transparent;
}

.stat-value:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.user-list-stats-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.positive {
    color: #33FFAE;
}

.negative {
    color: #FF7878;
}

.neutral {
    color: #FFFFFF;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6C839C;
}


.user-feedback-summary-and-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-right: 31px;
}

.reviews-left-side,
.reviews-right-side {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #6C839C;
}

.rules-button-user-feedback {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 43px;
    background: rgba(45, 55, 75, 0.50);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    height: auto;
    width: auto;
    gap: 5px;
}

.search-input {
    display: flex;
    width: 100%;
    padding: 10px 14px;
    height: 44px;
    border-radius: 22px;
    border: 1px solid #4D5768;
    background: #262A3D;
    font-size: 16px;
    color: #6C839C;
    outline: none;
    box-shadow: none;
}

.search-input::placeholder {
    color: #6C839C;
}

.account-status-filter {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 10px 10px;
    border-radius: 16px;
    background: #232637;
    gap: 0;
    overflow: hidden;
}

.account-status-filter-selector {
    position: relative;
    flex: 1;
    padding: 8px 12px;
    color: #6C839C;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
    border: none;
    outline: none;
}


.account-status-filter-selector:hover {
    color: #84BEFD;
}


.account-status-filter-selector:focus,
.account-status-filter-selector:active {
    color: #84BEFD;
    background-color: transparent;
    outline: none;
    box-shadow: none;
}


.account-status-filter-selector:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #4D5768;
}

.achievements-main-block {
    display: flex;

    align-self: stretch;
    width: 100%;
    padding: 15px 32px 28px 31px;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
}

.achievement-block {
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 12px;
    padding: 16px;
    gap: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin: 16px 0;
}

.achievement-block img.achievent-block-img {
    width: 195px;
    height: 195px;
    border-radius: 8px;
    flex-shrink: 0;
}

.date-received {
    color: #FFD292;
    font-size: 14px;
}

.achivement-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #CED6E0;
}

.achiement-header {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.2;
}

.achievent-description {
    font-size: 14px;
    line-height: 1.4;
    color: #6C839C;
}


.achievement-progress {
    margin: 8px 0;
}

.progress-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 28px;
    border-radius: 16px;
    background: #2A3244;
    overflow: hidden;
    border: 1px solid #4D5768;
}


.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #33FFAE80;
    transition: width 0.3s ease;
    z-index: 1;
}


.progress-text {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 2;
}


.achievent-status {
    display: flex;
    width: 131px;
    height: 29px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
}


.status-simple {
    background-color: #2A3244;
    color: #84BEFD;
}

.status-uncommon {
    background-color: #374B2A;
    color: #B6E97C;
}

.status-rare {
    background-color: #3E2A4B;
    color: #D98EFF;
}

.status-elite {
    background-color: #3C2E1A;
    color: #FFD278;
}

.status-legendary {
    background-color: #432121;
    color: #FF8989;
}

.status-mythic {
    background: linear-gradient(
            90deg,
            #232342 0%,
            #3C693A 34.66%,
            #4C4B23 72.46%,
            #431927 100%
    );
}


.status-mythic .status-text {

    color: transparent;

    background-image: linear-gradient(
            90deg,
            #9488FF 0%,
            #B4FA88 33.94%,
            #EBFF72 65.09%,
            #EEED7D 69.34%,
            #FF67CD 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    display: inline-block;
}


.achievement-description {
    font-size: 14px;
    color: #6C839C;
}

#subscription-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 16px;
    height: 34px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}


.btn-subscribe {
    background: #FFD292;
    color: #1F2232;
}


.btn-unsubscribe {
    background: #1F2232;
    color: #6C839C;
}


.btn-subscribe:hover {
    filter: brightness(1.1);
}

.btn-unsubscribe:hover {
    filter: brightness(1.1);
}

.avatar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.avatar-modal-body {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
}

.avatar-modal-content {
    background-color: #262A3D;
    color: #6C839C;
    margin: 15% auto;
    padding: 20px;

    max-width: 650px;
    border-radius: 16px;
    position: relative;
}


.avatar-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-modal-title {
    color: #FFD292;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.avatar-close-modal {
    cursor: pointer;
    font-size: 24px;
}


.avatar-modal-btn {
    padding: 0 20px;
    height: 34px;
    border: none;
    color: #6C839C;
    border-radius: 16px;
    background: #1F2232;
    cursor: pointer;
    font-size: 16px;
}

.avatar-zoom-button {
    width: 34px;
    height: 34px;
    padding: 0;
    margin: 10px;
    border-radius: 6px;
}


.avatar-modal-text {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.avatar-modal-btn:hover {
    filter: brightness(1.1);
}

.avatar-modal-btn.delete-btn {
    background: #1F2232;
}

.avatar-modal-btn.delete-btn:hover {
    filter: brightness(1.1);
}

#cropperCanvas {
    max-width: 100%;
    max-height: 300px;
    border-radius: 16px;
}

.avatar-zoom-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.cropper-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 227px;
    min-height: 211px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #363A4E;
}

#cropperControls {
    margin-top: 10px;
}

.upload-section-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 12px;
    gap: 16px;
}

.avatar-save-delete-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.upload-section-right-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#avatarInput::file-selector-button {
    border-radius: 16px;
    padding: 0 20px;
    height: 34px;
    background: #FFD292;
    color: #1F2232;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#avatarInput::file-selector-button:hover {
    filter: brightness(1.1);
}

.modal-footer-buttons button {
    padding: 0 20px;
    margin: 0 8px 0 8px;
    height: 34px;
    border-radius: 16px;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.confirm-btn {
    background: #FFD292;
    color: #1F2232;
}

.cancel-btn {
    background: #1F2232;
    color: #6C839C;
}

.user-settings-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.user-settings-block-content {
    display: flex;
    flex-direction: column;
}

.user-settings-block-content p {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.user-settings-button {
    display: flex;
    justify-content: center;
    width: fit-content;
    align-items: center;
    padding: 0 28px;
    height: 34px;
    border-radius: 16px;
    background: #FFD292;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
}

.twofa-enable-btn:hover {
    filter: brightness(1.1);
}

.user-settings-block-content h1 {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user-settings-block-content-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.user-settings-block-content-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.user-settings-header {
    margin-left: 31px;
    color: #FFD292;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user-settings-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 22px 31px;
    border-radius: 16px;
    background: #232637;
}

.user-settings-block-header {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.user-settings-change-password-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 33px;
}

.user-settings-change-password-input-block {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.twofa-step {
    padding: 8px 15px;
}

.twofa-step h3 {
    color: #FFD292;
    margin-bottom: 10px;
    font-size: 16px;
}

.twofa-code-input {
    text-align: center;
    margin: 15px 0;
}

.qr-code-container {
    background: none;
    display: inline-block;
}

#twofaField {
    transition: all 0.3s ease;
}

#twofaField input {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    border: 2px solid #FFD292;
}

#twofaField input:focus {
    border-color: #49FF7A;
    box-shadow: 0 0 10px rgba(73, 255, 122, 0.3);
}

.conditions-tooltip {
    position: relative;
    padding: 5px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #FFD292;
    height: 34px;
    border-radius: 16px;
    border: 1px solid #4D5768;
}

.conditions-tooltip .tooltip-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    min-width: 200px;
}

.conditions-tooltip:hover .tooltip-content {
    display: block;
}

.tooltip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-content li {
    padding: 5px 0;
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tooltip-content li.met {
    color: #33FFAE;
}


.users-filters-container-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #32373F;
}

.users-filter-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #6C839C;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    user-select: none;
}


.users-filter-label input[type="radio"],
.users-filter-label input[type="checkbox"] {
    display: none;
}


.users-filter-label input[type="radio"]:checked + .users-filter-label-text {
    font-weight: 550;
    color: #84BEFD;
}

.users-filter-label input[type="radio"]:checked + .users-filter-label-text::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #84BEFD;
}


.users-filter-label input[type="checkbox"]:checked + .users-filter-label-text {
    font-weight: 550;
    color: inherit;
}

.users-filter-label input[type="checkbox"]:checked + .users-filter-label-text::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
}

.user-list-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid #32373F;
}

.user-list-item-left {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.user-list-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.user-item-main-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
}


.user-item-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.user-item-header .online-indicator {
    vertical-align: middle;
}

.user-item-main-block a:hover {
    filter: brightness(1.2);
}

.user-list-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 23px;
}

.user-list-stats-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.user-list-stats-item span {
    color: #84BEFD;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sort-value {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #FFD292;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: flex-start;
    margin-top: 6px;
}

.user-list-stats-item:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

.bump-button {
    background: none;
    border: none;
    color: #6C839C;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.bump-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

.bump-button:hover:not(:disabled) {
    color: #84BEFD;
}


.bump-button:disabled {
    color: #A0A8B8;
    opacity: 0.6;
    pointer-events: none;
}

.notifications-main-block {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 22px;
}

.notifications-block {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
}

.notifications-block-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #4D5768;
    gap: 8px;
}

.notifications-block-tooltip-container {
    position: relative;
    display: inline-block;
}

.notifications-block-summary {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 12px;
    padding: 16px 24px;
}

.notifications-block-summary-container {
    border-radius: 10px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    flex: 1;
}

.notifications-block-summary-container-value {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.notifications-block-summary-container-annotation {
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.notifications-block-filters {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 23px;
}

.notifications-dropdown-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
}

.notifications-dropdown-button {
    border: none;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 34px;
    cursor: pointer;
    padding: 0 14px;
    gap: 52px;
}

.notifications-dropdown-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}


.notifications-dropdown-content span {
    color: #6C839C;
    font-size: 14px;
}

.notifications-dropdown-content label {
    wrap-option: nowrap;
}


.notifications-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}

.notifications-block-filters span {
    color: #6C839C;
}

.notification-item-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.notification-icon-container {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    background: #262C3E;
}

.notification-item {
    display: flex;
    flex-direction: row;
    align-items: center;

    justify-content: space-between;
}

.notification-message {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
    color: #6C839C;
}

.notification-message-text {
    display: flex;
    line-height: 1;
    gap: 6px;
    flex-direction: row;
    flex-wrap: wrap;
}

.notification-message-and-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.notification-message span {
    color: #6C839C;
}

.notification__unread-indicator {
    width: 8px;
    height: 8px;
    background-color: #ff5f5f;
    border-radius: 50%;
    align-self: flex-start;
}

.notification-link {
    color: #FFD292;
}

.ban-page-content {
    display: flex;
    width: 100%;
    gap: 21px;
    flex-direction: column;
    margin-bottom: 21px;
}

.no-filtered-accounts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 16px;
}

.ban-page-block {
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 27px 32px;
}

.ban-page-block span {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 8px;
}

.ban-page-block a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #1F2232;
    color: #6C839C;
    width: 257px;
    height: 34px;
    margin-bottom: 16px;
}

.ban-page-block a:hover {
    filter: brightness(1.25);
}

.notifications-block-tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    padding: 8px 31px;
}

.notification-item-right {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.notification-item-right span {
    color: #E28AD9;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.notifications-block-list {
    margin-top: 0;
    padding: 14px 0;
    border-radius: 0 0 16px 16px;
}

.notifications-block-summary-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    padding-left: 31px;
    padding-top: 25px;
    padding-right: 31px;
}

.notifications-block-list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.notifications-income-money-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notifications-income-money-block span {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    align-self: flex-end;
}

.account-header-actions-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 10px;


}

.sidebar-negative-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
}


.user-summary-sidebar-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.outer-user-sidebar-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 100%;
    padding: 0 14px;
    border-radius: 16px;
    background: #FF7878;
    color: #1F2232;
    border: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
}

.outer-user-sidebar-button:hover {
    filter: brightness(1.15);
}

.account-header-actions-block-buy-block {
    border-bottom: 1px solid #4D5768;
}

.account-header-actions-block-button {
    border-radius: 16px;
    background: #1F2232;
    height: 34px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    border: none;
    padding: 0 18px;
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.account-header-actions-block-button:hover {
    filter: brightness(1.25);
}

.users-list-partial {
    margin-bottom: 16px;
}

.ignore-list-block {
    display: flex;
    flex-direction: column;
    padding: 22px 31px;
    border-radius: 16px;
    background: #232637;
    width: 100%;
    height: fit-content;
    gap: 29px;
}

.ignore-list-inside-block {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ignore-item-left {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.ignore-item-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ignore-item-user-info span {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.ignore-list-block h2 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.user-ignore-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user-ignore-row img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.ignore-item-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.user-ignore-row button {
    display: flex;
    padding: 6px;
    align-items: center;
    border-radius: 5px;
    background: #FF7878;
    border: none;
    cursor: pointer;
}

.user-labels-edit-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 22px;
}

.user-labels-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 25px 31px;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
}

.user-labels-block h2 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 19px;
}

.system-label-view {
    display: flex;
    width: 100%;
    border-radius: 16px;
    padding: 16px 0;
    height: 34px;
    align-items: center;
    justify-content: center;
}

.user-labels-block-custom-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.user-labels-block-system, .user-labels-block-custom {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 29px;
}

.label-delete-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}

.label-edit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0 14px;
    border-radius: 16px;
    background: #FFD292;
    height: 34px;
    cursor: pointer;
}

.user-labels-block-create-custom {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.user-labels-block-create-custom span {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}

.bulk-purchases-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.bulk-purchases-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
    background: rgba(38, 42, 61, 0.50);
    padding: 20px 31px;
    gap: 16px;
    min-width: 0;
}

.bulk-purchases-header p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-width: 0;
}

.bulk-purchases-header span {
    display: flex;
    align-items: center;
    height: 34px;
    padding: 0 22px;
    color: #6C839C;
    border-radius: 16px;
    background: #1F2232;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    flex: 0 0 auto;
}

.bulk-purchases-table {
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
    min-width: 0;
}

.bulk-purchases-col-id {
    width: 58px;
}

.bulk-purchases-col-date {
    width: 106px;
}

.bulk-purchases-col-category {
    width: 142px;
}

.bulk-purchases-col-spent {
    width: 102px;
}

.bulk-purchases-col-count {
    width: 70px;
}

.bulk-purchases-col-price {
    width: 168px;
}

.bulk-purchases-col-type {
    width: 112px;
}

.bulk-purchases-col-action {
    width: 52px;
}

.bulk-purchases-table-header th {
    background-color: #1F2232;
    color: #ffffff;
    font-weight: 400;
    height: 49px;
    padding: 13px 10px;
    font-size: 15px;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bulk-purchase-item td {
    background-color: #262A3D80;
    color: #6C839C;
    padding: 13px 10px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 1.25;
    font-size: 16px;
}

.bulk-purchases-table th, .bulk-purchases-table td {
    box-sizing: border-box;
}

.bulk-purchases-table th:last-child,
.bulk-purchases-table td:last-child {
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
}

.bulk-purchase-category,
.bulk-purchase-type,
.bulk-purchase-money,
.bulk-purchase-price-stack {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-width: 0;
}

.bulk-purchase-category,
.bulk-purchase-type {
    line-height: 1.2;
}

.bulk-purchase-money,
.bulk-purchase-price-stack {
    white-space: nowrap;
}

.bulk-purchase-price-stack {
    gap: 4px;
    font-variant-numeric: tabular-nums;
}

.bulk-purchase-price-separator,
.bulk-purchase-price-currency {
    color: #6C839C;
}

.bulk-purchase-count-cell {
    color: #33FFAE !important;
    font-weight: 700;
}

.bulk-purchase-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(73, 95, 118, 0.2);
    flex: 0 0 auto;
}

.bulk-purchase-detail-link:hover {
    background: rgba(255, 210, 146, 0.14);
}


.bulk-purchases-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.bulk-purchases-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.ignoring-list-empty {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 22px 0;
    border-radius: 10px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
    gap: 6px;
}

.my-account-list-block-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 16px;
}

.my-account-list-block-header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.my-account-list-block-header-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.account-action-dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.account-action-toggle:hover {
    filter: brightness(1.15);
}

.account-action-toggle {
    display: flex;
    flex-direction: row;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 4px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.account-action-menu {
    display: none;
    position: absolute;
    top: -50%;
    right: 150%;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #6C839C;
    padding: 12px 7px;
}


.account-action-item {
    display: flex;
    flex-direction: row;
    color: #6C839C;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    gap: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 6px 14px;
}

.account-action-item-delete {
    color: #FF7878;
}


.account-action-menu.open {
    display: block;
}

.account-action-menu span {
    display: block;
    white-space: nowrap;
    padding: 8px 12px;
    color: #FFD292;
}


.account-action-item:hover {
    filter: brightness(1.5);
}

.account-list-block:has(.account-action-menu.open) {
    z-index: 2001;
}


.account-choose {
    border-radius: 16px;
    background: #1F2232;
    color: #6C839C;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 24px;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.account-choose:hover {
    filter: brightness(1.25);
}

.account-choose.selected {
    background: #33FFAE;
    color: #1F2232;
}

#selected-count,
#selected-tg-archives-count {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

#selected-count.active,
#selected-tg-archives-count.active {
    color: #FFD292;
}


#select-all,
#select-all-tg-archives {
    background: #262A3D;
    color: #FFFFFF;
    font-size: 16px;
    height: 34px;
    border: 1px solid #4D5768;
    padding: 0 24px;
    cursor: pointer;
    border-radius: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#select-all:hover,
#select-all-tg-archives:hover {
    background: #FFD292;
    color: #262A3D;
    border-color: #FFD292;
}

#select-all.active,
#select-all-tg-archives.active {
    background: #FFD292;
    color: #262A3D;
    border-color: #FFD292;
}

.sentinel {
    height: 10px;
}

#bump-all,
#bump-tg-archives {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 16px;
    background: none;
    color: #6C839C;
    padding: 0 24px;
    border: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

#bump-all:hover,
#bump-tg-archives:hover {
    filter: brightness(1.25);
}

#bump-tg-archives:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.all-account-action-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 16px;
    background: none;
    color: #FFD292;
    padding: 0 24px;
    border: 1px solid #FFD292;
}

.account-action-dropdown-all {
    top: 100%;
    right: 0;
}

.accounts-header-sector-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.account-action-dropdown-button {
    margin: 0;
    padding: 0;
}

.find-user-container {
    position: relative;
}

.user-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #232637;
    border-radius: 16px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.user-suggestion {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #3a3f4b;
    transition: background-color 0.2s ease;
}

.user-suggestion:hover {
    background-color: #1F2232;
}

.user-suggestion:last-child {
    border-bottom: none;
}

.suggestion-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.suggestion-username {
    font-weight: 500;
}

.account-status-filter-selector {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    text-decoration: none !important;
    color: #6C839C;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.account-status-filter-selector input[type="radio"] {
    display: none;
}

.account-status-filter-selector span {
    font-size: 16px;
    transition: color 0.2s ease;
}

.account-status-filter-selector:hover {
    background-color: rgba(255, 210, 146, 0.1);
    color: #84BEFD;
}

.account-status-filter-selector:hover span {
    color: #84BEFD;
}


.account-status-filter-selector input[type="radio"]:checked + span {
    color: #FFD292;
}

.account-status-filter-selector:has(input[type="radio"]:checked) {
    background-color: rgba(255, 210, 146, 0.15);
    color: #FFD292;
}

.account-status-filter-selector:has(input[type="radio"]:checked):hover {
    background-color: rgba(255, 210, 146, 0.2);
}


.account-status-filter-selector.selected {
    background-color: rgba(255, 210, 146, 0.15);
    color: #FFD292;
}

.account-status-filter-selector.selected:hover {
    background-color: rgba(255, 210, 146, 0.2);
}

.account-status-filter-selector.selected span {
    color: #FFD292;
}

.my-account-list-block-title-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

#changePriceModal .modal-content {
    width: 450px;
    max-width: 90vw;
}

.percent-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.percent-input-wrapper input {
    flex: 1;
    padding: 10px 40px 10px 15px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #FFFFFF;
    font-size: 16px;
}

.percent-input-wrapper input:focus {
    outline: none;
    border-color: #84BEFD;
}

.percent-input-wrapper .percent-sign {
    position: absolute;
    right: 15px;
    color: #6C839C;
    font-size: 16px;
    pointer-events: none;
}

.form-explanation {
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(108, 131, 156, 0.1);
    border-radius: 12px;
    border-left: 3px solid #6C839C;
}

.form-explanation p {
    margin: 0;
    color: #6C839C;
    font-size: 14px;
    line-height: 1.4;
}


.percent-input-wrapper input::-webkit-outer-spin-button,
.percent-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.percent-input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.my-bulk-purchases-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 16px;
    background: none;
    color: #8ADCE2;
    padding: 0 24px;
    border: 1px solid #8ADCE2;
}

.my-bulk-purchases-button:hover {
    filter: brightness(1.25);
}

.bump-bulk-arrows {
    display: flex;
    width: 242px;
    gap: 16px;
    height: 36px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #4D5768;
}

.upgraded-item-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.upgraded-item-right-down {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px 35px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
}

.upgraded-item-right-down span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 22px;
    color: #1F2232;
    border-radius: 16px;
    background: #33FFAE;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.date-filter-container label {
    display: block;
    color: #6C839C;
    font-size: 14px;
    margin-bottom: 8px;
}

.date-filter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


.date-filter-select {
    min-width: 180px;
    height: 34px;
    padding: 1px 14px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D url('/static/mainpage/img/filters/arrow-down-s-line.svg') no-repeat right 10px center;
    color: #6C839C;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.date-filter-select:hover {
    border-color: #84BEFD;
}

.date-filter-select:focus {
    outline: none;
    border-color: #84BEFD;
    box-shadow: 0 0 3px rgba(132, 190, 253, 0.3);
}

.custom-date-range {
    display: none;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-date-range.show {
    opacity: 1;
    transform: translateY(0);
}

.date-input {
    width: 120px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #6C839C;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.date-input:hover {
    border-color: #84BEFD;
}

.date-input:focus {
    outline: none;
    border-color: #84BEFD;
    box-shadow: 0 0 3px rgba(132, 190, 253, 0.3);
}

.date-input::placeholder {
    color: #6C839C;
    opacity: 0.7;
}

.date-separator {
    color: #6C839C;
    font-size: 16px;
    font-weight: 500;
}

.apply-date-button {
    height: 34px;
    padding: 0 16px;
    border: 1px solid #84BEFD;
    border-radius: 16px;
    background: rgba(132, 190, 253, 0.1);
    color: #84BEFD;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.apply-date-button:hover {
    background: rgba(132, 190, 253, 0.2);
    border-color: #6BA8F5;
    color: #6BA8F5;
}

.apply-date-button:active {
    transform: scale(0.95);
    background: rgba(132, 190, 253, 0.3);
}

.apply-date-button:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(132, 190, 253, 0.4);
}

.resume-check-button {
    background: #232637;
    border: 1px solid #FFD292;
    color: #FFD292;
    border-radius: 16px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    margin: 16px 0;
    transition: all 0.3s ease;
}

.resume-check-button:hover:not(:disabled) {
    background: #FFD292;
    color: #232637;
}

.resume-check-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-timer {
    font-size: 14px;
}

.paused-status {
    color: #FFD292 !important;
}

.result-item.paused {
    border-left: 3px solid #FFD292;
}

.radio-buttons.radio-buttons--gold label {
    border: 1px solid #FFD292;
    color: #FFD292;
}

.radio-buttons.radio-buttons--gold input:checked + label {
    background: #FFD292;
    color: #1F2232;
}

.radio-buttons.radio-buttons--gold label:hover {
    filter: brightness(1.1);
}

.billing-page-block {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 25px 31px;
    border-radius: 16px;
    background: #232637;
}

.billing-page-block h1 {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.billing-page-block p {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}

.billing-page-block-header {
    margin-bottom: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.deposit-annotation {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #33FFAE;
    color: #1F2232;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px;
    margin-bottom: 12px;
}

.pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.pay-method {
    display: inline-block;
}

.pay-method input {
    display: none;
}

.pay-method__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(38, 42, 61, 0.50);
    color: #6C839C;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease, filter .2s ease, box-shadow .2s ease;
}


.pay-method__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    fill: currentColor;
}

.pay-method__btn .pay-method__icon * {
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0.3;
    vector-effect: non-scaling-stroke;
}


.pay-method__btn:hover {
    filter: brightness(1.06);
}


.pay-method__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(132, 190, 253, 0.25);
}


.pay-method input:checked + .pay-method__btn {
    color: #FFD292;
    border-color: #FFD292;
    background: rgba(45, 55, 75, 0.50);
}

.pay-method--disabled .pay-method__btn {
    opacity: .5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.pay-method__btn--gold {
    border-color: #FFD292;
}

.crypto-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
}

.crypto-methods[hidden] {
    display: none !important;
}

.currency-option input {
    display: none;
}

.currency-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 34px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(38, 42, 61, 0.50);
    color: #6C839C;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
}

.currency-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.currency-option {
    display: inline-block;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 16px;
    cursor: pointer;
    background: none;
    color: #fff;
}

.price-input-wrapper.no-currency::after {
    content: none !important;
}


.price-input-wrapper.no-currency .price-input {
    padding-right: 12px;
    background-image: none !important;
}


#wallet-field .price-input,
#otp-or-warning .price-input {
    width: 100%;
    box-sizing: border-box;
}

.currency-btn img.currency-icon {
    width: 20px;
    height: 20px;
}

.currency-btn span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.currency-btn small {
    font-size: 12px;
    opacity: 0.8;
}

.currency-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.to-withdraw-review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 16px;
    background: none;
    color: #33FFAE;
    padding: 0 24px;
    border: 1px solid #33FFAE;
}

.currency-btn:hover {
    filter: brightness(1.06);
}

.currency-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;

}


.currency-option input:checked + .currency-btn {
    color: #FFD292;
    border-color: #FFD292;
    background: rgba(45, 55, 75, 0.50);
}

.deposit-block-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.deposit-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.deposit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 16px;
    background: #FFD292;
    color: #1F2232;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: filter .2s ease, opacity .2s ease;
}

.deposit-button:hover:not(:disabled) {
    filter: brightness(1.05);
}

.deposit-button:disabled {
    opacity: .6;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.deposit-warning {
    color: #FF7878;
    font-size: 14px;
    line-height: 1.2;
}

.deposit-summary {
    color: #6C839C;
    font-size: 16px;
    line-height: 1.2;
}

.billing-filters-block {
    padding: 25px 31px;
    border-radius: 14px;
    background: #1F2433;
    border: 1px solid #2F374C;
}

.billing-filters-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.billing-filters-title {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 16px;
    background: rgba(45, 55, 75, 0.50);
    color: #FFD292;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.billing-filters-totals {
    display: flex;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
}

.billing-filters-totals .incomes {
    color: #33FFAE;
}

.billing-filters-totals .expenses {
    color: #FF7878;
}

.billing-filters-row {
    display: flex;
    margin-top: 8px;
    flex-wrap: wrap;
}

.bf-date-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #252B3C;
    border: 1px solid #3A445C;
    color: #A6B1C2;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    cursor: pointer;
}

.bf-input {
    flex: 1 1 180px;
    min-width: 160px;
    height: 34px;
    background: #252B3C;
    border: 1px solid #3A445C;
    color: #D8DFEA;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    border-radius: 16px;
    padding: 0 12px;
    outline: none;
}

.bf-input::placeholder {
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.billing-filters-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
}

.billing-page-block-header-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.billing-page-block-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.billing-filters-tabs .bf-tab {
    background: transparent;
    border: none;
    color: #6C839C;
    border-radius: 0;
    padding: 6px 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
    border-bottom: 2px solid transparent;
}

.billing-filters-tabs .bf-tab.is-active {
    color: #84BEFD;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.billing-filters-tabs .bf-tab:focus-visible {
    outline: none;
    border-bottom-color: #84BEFD55;
}


.billing-results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.billing-results-summary .brs-left {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.billing-results-summary .brs-right {
    display: flex;
    gap: 12px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.billing-results-summary .incomes {
    color: #33FFAE;
}

.billing-results-summary .expenses {
    color: #FF7878;
}

.op-list-wrap {
    width: 100%;
}

.op-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}


.op-card {
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: #262A3D80;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 23px 31px 21.2px 32px;
    transition: background .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.op-card:hover {
    background: var(--op-bg-hover);
    box-shadow: 0 0 0 1px rgba(132, 190, 253, 0.15);
}


.op-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


.op-card__left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}


.op-card__icon {
    inline-size: 24px;
    block-size: 24px;
    border-radius: 999px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}


.op-icon--plus {
    border: 1px solid #33FFAE;
}

.op-icon--minus {
    border: 1px solid #6C839C;
}

.op-icon--withdraw {
    border: 1px solid #FFD292;
}

.op-icon--dot {
    border: 1px solid var(--op-ico-bg-dot);
}


.op-icon--plus::before,
.op-icon--plus::after,
.op-icon--minus::before {
    content: "";
    position: absolute;
    background: var(--op-income);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.op-icon--plus::before {
    width: 12px;
    height: 2px;
}

.op-icon--plus::after {
    width: 2px;
    height: 12px;
}


.op-icon--minus::before {
    width: 12px;
    height: 2px;
    background: #6C839C;
}

.op-icon--paid-service {
    border: 1px solid #6C839C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.op-icon--withdraw::before,
.op-icon--withdraw::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.op-icon--withdraw::before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: .9;
}

.op-icon--withdraw::after {
    width: 8px;
    height: 2px;
    background: var(--op-badge);
}


.op-card__title {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    word-break: break-word;
}

.op-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 12px;
    color: var(--op-badge);
    border-radius: 999px;
    background: rgba(255, 210, 146, 0.08);
}

.op-card__note {
    color: var(--op-muted);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


.op-card__amount {
    font-weight: 600;
    white-space: nowrap;
}

.op-amount--income {
    color: #33FFAE;
}

.op-amount--expense {
    color: var(--op-expense);
}


.op-card__meta {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 17px;
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


.op-card.op-income {
    border: 1px solid #4D5768;
}

.op-card.op-expense {
    border: 1px solid #4D5768;
}


.claims-filter-block {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 25px 31px;
    border-radius: 16px;
    background: #262A3D80;
}

.claims-filter-title {
    color: #6C839C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.claims-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.claim-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #4D5768;
    padding: 30px 31px;
    margin-bottom: 16px;
    color: #6C839C;
    gap: 42px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;;
    background: rgba(38, 42, 61, 0.50);
}

.claim-row__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.claim-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.claim-detail-title {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.claim-row__top-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.claim-row__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.claim-row__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.claim-row__status {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.claim-status--on_review {
    color: #FFD292;
}

.claim-status--accepted {
    color: #33FFAE;
}

.claim-status--rejected {
    color: #FF7878;
}

.claim-status--arbitration {
    color: #84BEFD;
}

.claim-detail-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.claim-detail-block {
    display: flex;
    flex-direction: column;
    padding: 30px 32px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(38, 42, 61, 0.50);
}

.claim-detail-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 31px;
}

.claim-detail-block-header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.claim-detail-block-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #6C839C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.claim-chat {
    gap: 16px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

.chat-message {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.chat-message.own {
    align-items: flex-end;
}

.chat-meta {
    display: flex;
    gap: 8px;
    color: #6C839C;
    font-size: 12px;
}

.chat-author {
    color: #FFD292;
    font-weight: 500;
}

.chat-bubble {
    max-width: min(680px, 100%);
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(45, 55, 75, 0.5);
    color: #FFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.chat-message.own .chat-bubble {
    background: rgba(132, 190, 253, 0.18);
    border: 1px solid #84BEFD55;
}

.chat-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.chat-attach-thumb {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #4D5768;
    background: #2a2e42;
}

.chat-attach-thumb img {
    display: block;
    width: 160px;
    height: 120px;
    object-fit: cover;
}

.chat-attach-link {
    color: #84BEFD;
    text-decoration: underline;
}

.chat-empty {
    color: #6C839C;
    text-align: center;
    padding: 12px 0;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-form-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.chat-input {
    flex: 1;
    min-height: 36px;
    max-height: 200px;
    resize: vertical;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #FFF;
    font-size: 14px;
}

.chat-attach-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #4D5768;
    background: #232637;
    cursor: pointer;
}

.chat-attach-btn input {
    display: none;
}

.chat-send-btn {
    height: 42px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    background: #FFD292;
    color: #1F2232;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.chat-send-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.chat-attach-preview {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #4D5768;
    background: #262A3D;
    border-radius: 12px;
    padding: 6px;
    width: fit-content;
}


.chat-attach-preview[hidden] {
    display: none !important;
}


.chat-attach-preview img[src=""],
.chat-attach-preview img:not([src]) {
    display: none !important;
}

.chat-attach-preview img {
    width: 100px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}


.chat-attach-remove {
    border: none;
    background: #FF7878;
    color: #1F2232;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
}

.chat-hint {
    color: #6C839C;
    font-size: 12px;
}

.claim-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}

.claim-action-btn {
    appearance: none;
    border: 1px solid #4D5768;
    background: #2B2F43;
    color: #E7ECF3;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, opacity .15s ease;
    font-weight: 600;
    font-size: 14px;
}

.claim-action-btn:hover {
    background: #343A55;
    border-color: #5A6880;
}

.claim-action-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.claim-action-btn--accept {
    border-color: #49B37E;
    background: #244236;
}

.claim-action-btn--accept:hover {
    background: #2B5645;
}

.claim-action-btn--decline {
    border-color: #E58080;
    background: #432A2A;
}

.claim-action-btn--decline:hover {
    background: #5A3333;
}

.claim-action-btn--arbitrate {
    border-color: #84BEFD;
    background: #243248;
}

.claim-action-btn--arbitrate:hover {
    background: #2B3E5A;
}

.claim-detail-block {
    display: flex;
    flex-direction: column;
    padding: 30px 32px;
    border-radius: 16px;
    border: 1px solid #4D5768;
    background: rgba(38, 42, 61, 0.50);
}

.claim-chat {
    gap: 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #262A3D;
    border-radius: 8px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #4D5768;
    border-radius: 8px;
    border: 2px solid #262A3D;
}


.arb-admin-block {
    border-color: #84BEFD;
    background: rgba(36, 50, 72, 0.6);
    gap: 12px;
}

.arb-admin-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arb-admin-label {
    color: #FFFFFF;
    font-size: 14px;
}

.arb-admin-textarea {
    width: 100%;
    min-height: 80px;
    max-height: 220px;
    resize: vertical;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #FFF;
    font-size: 14px;
}

.arb-admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.arb-admin-actions-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arb-admin-btn {
    height: 36px;
    padding: 0 14px;
    border: 1px solid #4D5768;
    border-radius: 12px;
    background: #2B2F43;
    color: #E7ECF3;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}

.arb-admin-btn:hover {
    background: #343A55;
    border-color: #5A6880;
}

.arb-admin-btn--send {
    border-color: #84BEFD;
    background: #243248;
}

.arb-admin-btn--send:hover {
    background: #2B3E5A;
}

.arb-admin-btn--accept {
    border-color: #49B37E;
    background: #244236;
}

.arb-admin-btn--accept:hover {
    background: #2B5645;
}

.arb-admin-btn--reject {
    border-color: #E58080;
    background: #432A2A;
}

.arb-admin-btn--reject:hover {
    background: #5A3333;
}

.arb-admin-hint {
    color: #6C839C;
    font-size: 12px;
}

.transactions-empty-subtitle {
    display: flex;
    flex-direction: row;
    height: 66px;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
    border-radius: 10px;
    border: 1px solid #4D5768;
    background: rgba(73, 95, 118, 0.20);
    color: #FFFFFF;
    margin-bottom: 16px;
}


.chat-container {
    border: 1px solid #2b2f36;
    border-radius: 12px;
    background: rgba(38, 42, 61, 0.5);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 60vh;
    overflow-y: auto;
}

.chat-message {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #3B4254;
    background: #0e1217;
}

.chat-message .message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: .8;
}

.chat-message .message-sender {
    font-weight: 600;
    opacity: 1;
}

.chat-message .message-content {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-top: 6px;
}

.chat-message.user-message {
    align-self: flex-start;
    background: #0f1520;
    border-color: #2b2f36;
}

.chat-message.admin-message {
    align-self: flex-end;
    background: #15212e;
    border-color: #3B4254;
}

.no-messages {
    opacity: .7;
    padding: 8px;
}

.chat-input-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    align-items: flex-end;
}

.chat-input-row textarea {
    width: 100%;
    min-height: 36px;
    max-height: 180px;
    border-radius: 12px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #FFFFFF;
    font-family: Geist, sans-serif;
    font-size: 14px;
    padding: 10px 12px;
    resize: vertical;
}

.chat-send-btn, .chat-send-btn-support {
    padding: 10px 16px;
    border-radius: 12px;
    background: #FFD292;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.chat-send-btn:hover, .chat-send-btn-support:hover {
    background: #FFC561;
}


.main-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}


.section-header > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.section-header .page-title,
.section-header .text-muted,
.section-header .ticket-item__meta {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section-header .ticket-actions {
    flex: 0 0 auto;
    align-items: flex-end;
}

.page-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}

.text-muted {
    opacity: 0.8;
}

.form-error {
    color: #FF7878;
    margin-bottom: 12px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    color: #E6ECF5;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.btn--outline {
    background: #262A3D;
    border-color: #2D374B80;
    color: #E6ECF5;
}

.btn--accent {
    border-color: #FFD292;
    color: #232637;
    background: #FFD292;
}

.btn--outline.btn--accent {
    color: #FFD292;
    background: #262A3D;
}

.btn:hover {
    transform: translateY(-1px);
}


.tickets-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-item {
    background: rgba(38, 42, 61, 0.5);
    border: 1px solid #2D374B80;
    border-radius: 12px;
    padding: 12px;
}

.ticket-item__title {
    font-weight: 600;
}

.ticket-item__meta {
    opacity: 0.7;
    font-size: 12px;
}


.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
}

.status-badge--closed {
    color: #7BD88F;
    background: rgba(125, 255, 154, 0.08);
    border-color: rgba(125, 255, 154, 0.2);
}

.status-badge--in-work {
    color: #84BEFD;
    background: rgba(132, 190, 253, 0.08);
    border-color: rgba(132, 190, 253, 0.2);
}

.status-badge--new {
    color: #FFC36A;
    background: rgba(255, 195, 106, 0.08);
    border-color: rgba(255, 195, 106, 0.2);
}


.chat-container {
    max-width: 900px;
    width: 100%;
    background: #232637;
    border: 1px solid #2D374B80;
    border-radius: 12px;
    padding: 12px;
    height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    background: #1F2232;
    border: 1px solid #2D374B80;
    border-radius: 10px;
    padding: 10px;
}

.user-message {
    border-left: 3px solid #84BEFD;
}

.admin-message {
    border-left: 3px solid #FFD292;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 6px;
}

.message-sender {
    font-weight: 600;
    color: #E6ECF5;
}

.message-timestamp {
    color: #A6B1C2;
}

.message-content {
    white-space: pre-wrap;
}

.no-messages {
    opacity: .8;
    font-style: italic;
}

.chat-input-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 900px;
    width: 100%;
}

.chat-input-row textarea {
    width: 100%;
    background: #262A3D;
    color: #E6ECF5;
    border: 1px solid #3B4254;
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
    resize: vertical;
    min-height: 96px;
}

.chat-send-btn {
    min-width: 140px;
}


.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 720px;
}

.feedback_form_header_text,
.feedback_form_content {
    width: 100%;
    background: #262A3D;
    color: #E6ECF5;
    border: 1px solid #3B4254;
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
}

.feedback_form_content {
    min-height: 180px;
    resize: vertical;
}


.ticket-item__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
}

.ticket-item__row > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.ticket-item__title {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ticket-item__row .ticket-actions {
    flex: 0 0 auto;
    align-items: flex-end;
}

.ticket-actions {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}


.btn-row {
    display: flex;
    gap: 8px;
    align-items: center;
}


.support-filters-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.support-filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.support-filter-input {
    height: 34px;
    padding: 1px 12px;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #262A3D;
    color: #E6ECF5;
}

.support-filter-input::placeholder {
    color: #6C839C;
}

.support_number__id {
    color: #FFD292;
}

.support_number__label {
    color: #FFFFFF;
}


html, body {
    overflow-x: hidden;
}


.sort-form select,
.claims-filter-select,
.specialization-form select,
.list-choose select,
.user-settings-block-content select {
    width: 100%;
    max-width: 100%;
}

.chat-input {
    width: 100%;
    min-height: 96px;
    padding: 10px 12px;
    border: 1px solid #3B4254;
    border-radius: 12px;
    background: #262A3D;
    color: #E6ECF5;
    outline: none;
    resize: vertical;
}

.faq-section {
}

.faq_header {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid #4D5768;
    background: #232637;
    color: #FFF;
    font-family: Geist, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.faq-masonry {
    width: 100%;
    box-sizing: border-box;
    padding-top: 32px;
    column-count: 2;
    column-gap: 28px;

    max-width: 100%;
}


.faq-card {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    min-width: 0;
    margin: 0 0 28px 0;
    border-radius: 16px;
    background: #232637;
    border: 1px solid #2C3346;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
}

.faq-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #6C839C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, color .25s ease;
}

.faq-card.open .faq-icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.faq-content {
    padding: 0 18px 16px;
    color: #6C839C;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease;
}

.faq-content p, .faq-content ul {
    margin-top: 12px;
    margin-bottom: 0;
}

.faq-content ul {
    padding-left: 18px;
}


.faq-content img, .faq-content svg, .faq-content video {
    max-width: 100%;
    height: auto;
    display: block;
}

.faq-title, .faq-content {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.faq-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6C839C;
    background: #1F2232;
    border: 1px solid #2C3346;
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 12px;
}

.faq-header:focus {
    outline: none;
}

.faq-header:focus-visible {
    outline: 2px solid #84BEFD;
    outline-offset: 2px;
    border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}


html {

    scrollbar-color: #3B4254 #1F2232;
    scrollbar-width: thin;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background: transparent;
}


::-webkit-scrollbar-track {
    background: #1F2232;
    border-radius: 8px;
}


::-webkit-scrollbar-thumb {
    background-color: #3B4254;
    border-radius: 8px;
    border: 3px solid #1F2232;
}


::-webkit-scrollbar-thumb:hover {
    background-color: #4E5A73;
}

::-webkit-scrollbar-thumb:active {
    background-color: #6C839C;
}


::-webkit-scrollbar-corner {
    background: #1F2232;
}


* {
    scrollbar-color: #3B4254 #1F2232;
    scrollbar-width: thin;
}

.subscriptions-modal-list {
    list-style: none;

    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto
}

.subscriptions-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #2F3447
}

.subscriptions-modal-item:last-child {
    border-bottom: none
}

.subscriptions-modal-user {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: 100%
}

.subscriptions-modal-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #4D5768;
    background: #232637
}

.subscriptions-modal-username {
    font-weight: 500;
    color: inherit
}

.subscriptions-modal-username.user-status--newbie {
    color: #6C839C
}

.subscriptions-modal-username.user-status--basic_seller {
    color: #8ADCE2
}

.subscriptions-modal-username.user-status--verified_seller {
    color: #ABFFB1
}

.subscriptions-modal-username.user-status--basic_buyer {
    color: #B57EDC
}

.subscriptions-modal-username.user-status--verified_buyer {
    color: #FFB4FA
}

.subscriptions-modal-username.user-status--banned {
    color: #FF7878;
    text-decoration: line-through
}

.subscriptions-modal-username.user-status--admin {
    color: #FFD292
}

.subscriptions-modal-username.user-status--support {
    color: #84BEFD
}

.subscriptions-modal-role {
    color: #6C839C;
    font-size: 14px
}

.subs-modal-remove {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #4D5768;
    background: #262A3D;
    color: #6C839C;
    cursor: pointer;
    line-height: 24px;
    text-align: center
}

.subs-modal-remove:hover {
    border-color: #FF7878;
    color: #FF7878
}

.one-click-resell-body.subs-loading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #6C839C;
    padding: 24px
}

.subscriptions-modal-empty {
    padding: 18px 16px;
    color: #6C839C;
    text-align: center
}

.one-click-modal-content #subsModalTitle {
    background: #FFD292;
    color: #1F2232
}

.one-click-modal-body {
    padding: 0 0 16px 0
}


.one-click-modal-content {
    max-height: 80vh
}

.one-click-modal-body {
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden
}

.one-click-confirm {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-height: 0
}


.one-click-checking,
.one-click-success,
.one-click-error,
.resell-confirm,
.resell-checking,
.resell-success,
.resell-error {
    width: 100%;
    box-sizing: border-box;
}


.recheck-confirm,
.recheck-processing,
.recheck-success,
.recheck-partial,
.recheck-error {
    width: 100%;
    box-sizing: border-box;
}


.transfer-form,
.transfer-processing,
.transfer-success,
.transfer-error {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    min-height: 0;
}

#subsModalContent.one-click-resell-body {
    padding: 0 16px 16px;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow: auto
}

.subscriptions-modal-list {
    max-height: none
}


.admin-banner {
    border: 2px solid #FF7878;
    
    color: #FFFFFF;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.admin-banner__title {
    font-weight: 700;
    color: #FF7878;
    margin-bottom: 6px;
}

.admin-banner__body {
    white-space: pre-wrap;
}

.empty-content-block {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 68px;
    width: 100%;
    border-radius: 10px;
border: 0.5px solid #4D5768;
background: rgba(73, 95, 118, 0.20);
}



.account-inner .online-indicator {
    pointer-events: auto;
}


.online-indicator {
    position: relative;
}
.online-indicator::before {
    content: "";
    position: absolute;
    
    top: -4px;
    bottom: -4px;
    left: -2px;
    right: -2px;
}




.currency-option--disabled .currency-btn {
    color: #6C839C; 
    opacity: .5;
    cursor: not-allowed;
    filter: grayscale(100%);
}



.unread-badge {
    display: inline-block;
    min-width: 18px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #FF4D4F; 
    color: #fff;
    font-size: 12px;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    margin-left: 8px;
}


.unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF4D4F; 
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

#refresh-account-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 16px;
    background: #49FF7A;
    color: #1F2232;
    border: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 14px;
}


#refresh-account-btn:disabled,
#refresh-account-btn[disabled] {
    background: #6C839C;
    color: #1F2232;
    cursor: not-allowed;
    opacity: 1;
    filter: none;
}




.claim-row__single-line {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}


.claims-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.claim-row {
    display: block;
    padding: 10px 12px 10px 18px; 
    border: 1px solid #3B4254;
    background: #232637;
    border-radius: 10px;
    color: #E6ECF5;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.claim-row:hover {
    background: #2a2e42;
    border-color: #4D5768;
}


.account-list-block .seller-rating {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.account-list-block .scam-mark {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.sell-archive-block {
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 16px;
    background: #282F41;
    padding: 14px 14px;
    margin-top: 25px;
}

#vk-archive-extra-gb::-webkit-outer-spin-button,
#vk-archive-extra-gb::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#vk-archive-extra-gb {
    -moz-appearance: textfield;
}
.vk-stepper button:hover {
    background: #2a2e42;
}

.vk-archives-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    margin-top: 8px;
}
.vk-archives-controls .features-header {
    display: inline-flex;
    margin: 0;
}
.vk-archives-controls .terms-checkbox {
    margin: 0;
}
.vk-stepper input#vk-archive-extra-gb {
    height: 32px;
    line-height: 32px;
}
.vk-stepper button {
    height: 32px;
    width: 32px;
}

.vk-storage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    margin-bottom: 8px;
}
.vk-storage-progress {
    position: relative;
    width: 100%;
    height: 36px;
    border: 1px solid #4D5768;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
}
.vk-storage-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(var(--free, 0) * 1%);
    background: #33FFAE;
}
.vk-storage-progress-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1F2232;
    font-weight: 600;
}



.vk-archives-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap:12px;
}
.vk-archive-card{
    position:relative;
    border:1px solid #4D5768;
    border-radius:16px;
    background: rgba(38, 42, 61, 0.5);
    padding:12px;
    min-height:92px;
    
    overflow: visible;
    
    z-index: 1;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.vk-archive-card:hover { z-index: 1000; }
.vk-archive-card .vk-archive-icon{
    width:48px; height:48px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    border:1px solid #4D5768;
    background: transparent; 
    margin-bottom:8px;
}

.vk-archive-card .vk-archive-glyph{
    width:28px; height:28px; display:block;
    background-color:#6C839C; 
    -webkit-mask: url('/static/mainpage/img/icons/archive_upload.svg') no-repeat center / contain;
    mask: url('/static/mainpage/img/icons/archive_upload.svg') no-repeat center / contain;
}
.vk-archive-card .vk-archive-name{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color:#DCDCDC;
    font-weight:500;
    margin-bottom:6px;
}
.vk-archive-card .vk-archive-size{
    color:#6C839C;
    font-size:12px;
}

.vk-archive-card.wait{ border-color:#FFD292; box-shadow:0 0 0 1px rgba(255,210,146,0.08) inset; }
.vk-archive-card.wait .vk-archive-icon{ border-color:#FFD292; }
.vk-archive-card.wait .vk-archive-glyph{ background-color:#FFD292; }


.vk-archive-card.ok{ border-color:#33FFAE; box-shadow:0 0 0 1px rgba(51,255,174,0.1) inset; }
.vk-archive-card.ok .vk-archive-icon{ border-color:#33FFAE; }
.vk-archive-card.ok .vk-archive-glyph{ background-color:#33FFAE; }


.vk-archive-card.bad{ border-color:#FF7878; box-shadow:0 0 0 1px rgba(255,120,120,0.08) inset; }
.vk-archive-card.bad .vk-archive-icon{ border-color:#FF7878; }
.vk-archive-card.bad .vk-archive-glyph{ background-color:#FF7878; }


.vk-archive-delete{ position:absolute; top:6px; right:8px; width:22px; height:22px; border-radius:50%; border:1px solid #4D5768; background:#262A3D; color:#FF7878; line-height:20px; text-align:center; cursor:pointer; font-size:16px; padding:0; z-index:1102; }
.vk-archive-delete:hover{ background:#2a2e42; }

.disabled-menu-link{
    color:#6C839C !important;
    cursor: help;
}
.disabled-menu-link:hover{
    color:#8A9AB5 !important;
}
.vk-archive-card .vk-archive-tip{
    position:absolute;
    left:0; right:0;
    top: calc(100% + 8px);
    background:#262A3D;
    border:1px solid #4D5768;
    border-radius:12px;
    padding:10px 12px;
    color:#6C839C;
    font-size:12px;
    opacity:0; pointer-events:none;
    transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease;
    z-index:1001;
}
.vk-archive-card:hover .vk-archive-tip, .vk-archive-card .vk-archive-tip:hover{ opacity:1; pointer-events:auto; transform: translateY(0); }
.vk-archive-tip-list{ list-style:none; margin:0; padding:0; }
.vk-archive-tip-list li{ display:flex; justify-content:space-between; gap:12px; padding:2px 0; }
.vk-archive-tip-list li span{ color:#A6B1C2; }

.category-choose-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(38, 42, 61, 0.50);
    border: 1px solid transparent;
    transition: border-color .2s ease;
}
.category-choose-button.active {
    border-color: #33FFAE;
}


.account-list-block { position: relative; }
.account-list-block .account-bg-link {
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

.account-list-block .account-list-block-header-left img[title],
.account-list-block .account-list-block-tags .tag,
.account-list-block .account-list-block-footer a,
.account-list-block .account-list-block-footer button,
.account-list-block .account-list-block-link,
.account-list-block .account-list-block-link_unauth,
.account-list-block .seller-rating,
.account-list-block .scam-mark,
.account-list-block .online-indicator {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}



.notification-msg-extra {
  white-space: normal;            
  word-break: keep-all;           
  overflow-wrap: anywhere;        
}


.notification-item .notification-icon-container {
  flex: 0 0 28px;                 
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-item .notification-icon-container img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;                 
}


.account-list-block.account-list-block--compact {
    padding: 14px 18px;
    margin: 14px 0;
    border-radius: 14px;
}
.account-list-block.account-list-block--compact .account-list-block-header {
    margin-bottom: 14px;
}
.account-list-block.account-list-block--compact .account-list-block-title {
    font-size: 14px;
    padding: 6px 12px;
}
.account-list-block.account-list-block--compact .account-list-block-price {
    height: 28px;
    padding: 0 10px;
    font-size: 14px;
}
.account-list-block.account-list-block--compact .account-list-block-tags {
    gap: 6px;
}
.account-list-block.account-list-block--compact .account-list-block-tags .tag,
.account-list-block.account-list-block--compact .account-list-block-tags .tag.tag--simple,
.account-list-block.account-list-block--compact .account-list-block-tags .tag.tag--golden {
    padding: 4px 8px;
    font-size: 12px;
}
.account-list-block.account-list-block--compact .account-list-block-footer {
    margin-top: 16px;
}
.account-list-block.account-list-block--compact .account-list-block-footer-right .account-list-block-buy {
    height: 28px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 12px;
}
.account-list-block.account-list-block--compact .account-list-block-footer-right .account-list-block-link {
    height: 28px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 12px;
}

.account-list-block.account-list-block--compact .vk-archive-timer {
    color: #6C839C;
    font-size: 12px;
}

.vk-archive-download-btn.disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: default;
}

.btn-chip{display:inline-flex;align-items:center;justify-content:center;height:30px;min-width:0;padding:0 12px;border-radius:16px;border:1px solid #4D5768;background:#1F2232;color:#D7DFEA;font-size:14px;line-height:30px;cursor:pointer;user-select:none;transition:background-color .15s ease,border-color .15s ease,color .15s ease}
.btn-chip:hover{background:#232637;border-color:#6C839C}
.btn-chip:disabled,.btn-chip[aria-disabled="true"]{opacity:.7;color:#6C839C;border-color:#4D5768;cursor:not-allowed}
.btn-chip--sm{height:28px;line-height:28px;padding:0 10px;border-radius:14px;font-size:13px}
.btn-chip--positive{--chip-accent:#FFD292}
.btn-chip--negative{--chip-accent:#FF8E8E}
.btn-chip--active{background:var(--chip-accent,#FFD292);color:#1F2232;border-color:var(--chip-accent,#FFD292)}
.btn-chip:focus{outline:none;box-shadow:0 0 0 2px rgba(132,190,253,0.25)}
.percent-preset-row{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}


.articles-container {
    padding-top: 20px;
    padding-bottom: 40px;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-preview {
    background: #2D3043;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    position: relative;
    transition: transform 0.2s ease, background 0.2s ease;
}

.article-preview:hover {
    background: #35394f;
    transform: translateY(-2px);
}

.article-preview-image {
    width: 350px;
    min-width: 350px;
    height: auto;
    min-height: 200px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-preview-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.article-detail {
    background: #2D3043;
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
}

.article-form {
    background: #2D3043;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.ql-toolbar.ql-snow {
    background: #eee;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.ql-container.ql-snow {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 16px;
}
.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #FFD292;
}

.article-detail a {
    color: #FFD292;
    transition: color 0.2s;
}

.article-detail a:hover {
    color: #ffca7b;
}

.article-text a {
    color: #FFD292;
    text-decoration: underline;
}

.article-text img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    border-radius: 8px;
    display: block;
    margin: 10px 0;
}

.article-image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    cursor: zoom-out;
}

.article-image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.article-image-modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.category-choose-button.gray {
    
    opacity: .6;
}
.category-choose-button.gray img {
    filter: grayscale(100%);
    opacity: .7;
}


#tg-source-mode .tg-source-option {
    
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid transparent; 
    border-radius: 10px;
    background: transparent;
    color: inherit;
    line-height: 1.2;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
#tg-source-mode .tg-source-option:hover {
    
    background: rgba(255, 210, 146, 0.06);
    border-color: rgba(255, 210, 146, 0.35);
}
#tg-source-mode .tg-source-option.active {
    
    background: #FFD292;
    border-color: #FFD292;
    color: #1F2232;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
#tg-source-mode .tg-source-option.active span {
    color: #1F2232;
}
#tg-source-mode .tg-source-option > input[type="radio"] {
    accent-color: #FFD292; 
}

#tg-source-mode .tg-source-option > input[type="radio"] {
    flex: 0 0 auto;
}
#tg-source-mode .tg-source-option > span,
#tg-source-mode .tg-source-option > label {
    line-height: 1.2;
}


#api-docs pre {
    background: transparent;
    border: none;
}

#api-docs .code-block {
    margin: 12px 0 18px;
    background: #232637; 
    border: 1px solid #3B4254;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

#api-docs .code-block__toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid #3B4254;
}

#api-docs .code-block__scroll {
    overflow: auto;
}

#api-docs .code-block__pre {
    margin: 0;
    padding: 14px 16px;
    color: #E6ECF5;
    background: transparent;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 13.5px;
    line-height: 1.55;
}

#api-docs .code-block__btn {
    appearance: none;
    -webkit-appearance: none;
    background: #2a2e42;
    border: 1px solid #3B4254;
    color: #E6ECF5;
    font-size: 12px;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .05s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#api-docs .code-block__btn:hover {
    background: #333a53;
    border-color: #4a5369;
}
#api-docs .code-block__btn:active {
    transform: translateY(1px);
}
#api-docs .code-block__btn.is-copied {
    background: #1f6f3b;
    border-color: #2a8a4d;
}


#api-docs .http-method {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .02em;
    vertical-align: middle;
    margin-right: 8px;
}
#api-docs .http-method--post {
    background: rgba(125, 255, 154, 0.12);
    color: #7DFF9A;
    border: 1px solid rgba(125, 255, 154, 0.32);
}

#api-docs .endpoint {
    display: inline-block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #3B4254;
    color: #E6ECF5;
    padding: 3px 10px;
    border-radius: 10px;
}

#api-docs .muted-text {
    color: #A6B1C2;
}


#api-docs a.link-accent {
    color: #FFD292;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 210, 146, 0.35);
    transition: color .15s ease, border-color .15s ease;
}
#api-docs a.link-accent:hover,
#api-docs a.link-accent:focus {
    color: #FFE1AD; 
    border-bottom-color: rgba(255, 210, 146, 0.6);
}
#api-docs a.link-accent:active {
    color: #FFC46B; 
}

.tg-archive-sell-form .sell-settings-block {
    gap: 12px;
}

.tg-archive-blocks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-archive-form-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid #384157;
    border-radius: 8px;
    background: #232637;
}

.tg-archive-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tg-archive-sell-form .settings-row {
    gap: 10px;
    margin-bottom: 0;
}

.tg-archive-sell-form .settings-block {
    gap: 6px;
    margin-bottom: 0;
}

.tg-archive-sell-form .settings-header {
    font-size: 15px;
    line-height: 1.2;
}

.sell-required-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sell-required-label::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF7878;
    box-shadow: 0 0 0 3px rgba(255, 120, 120, 0.12);
    flex: 0 0 auto;
}

.tg-archive-sell-form .sell-account-name-field {
    min-height: 38px;
}

.tg-archive-sell-form .sell-account-name-field input {
    min-height: 38px;
    height: 38px;
    padding: 0 12px;
}

.tg-archive-sell-form .sell-account-name-field select {
    width: 100%;
    min-height: 38px;
    height: 38px;
    padding: 0 34px 0 12px;
    border: 1px solid #4D5768;
    border-radius: 10px;
    background: #24283B;
    color: #FFFFFF;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.tg-archive-sell-form .sell-account-name-field select:focus {
    border-color: #FFD292;
    box-shadow: 0 0 0 2px rgba(255, 210, 146, 0.16);
}

.tg-archive-sell-form .sell-account-name-field select option {
    background: #24283B;
    color: #FFFFFF;
}

.tg-archive-price-field {
    position: relative;
}

.tg-archive-price-field input {
    padding-right: 34px !important;
}

.tg-archive-price-currency {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #DCDCDC;
    font-size: 15px;
    font-weight: 700;
    pointer-events: none;
}

.claim-action-button.claim-action-available,
.account-header-actions-block-button.claim-action-available {
    background: #FFD292 !important;
    border-color: #FFD292 !important;
    color: #161927 !important;
    cursor: pointer;
}

.claim-action-button.claim-action-disabled,
.account-header-actions-block-button.claim-action-disabled {
    background: #2B3045 !important;
    border-color: #3C4559 !important;
    color: #7F90A8 !important;
    cursor: default;
    opacity: 1;
}

.claim-countdown-timer {
    display: none;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #3C4559;
    border-radius: 12px;
    background: #202438;
    color: #9AAEC8;
    font-size: 13px;
    line-height: 1.2;
}

.tg-archive-sell-form .radio-buttons {
    min-height: 38px;
    gap: 6px;
}

.tg-archive-sell-form .radio-buttons label {
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
}

.tg-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 10px;
}

.tg-archive-grid .settings-block {
    min-width: 0;
}

.tg-archive-sell-form .textfield-sale {
    height: 82px;
    min-height: 82px;
    margin-bottom: 0;
    padding: 0;
}

.tg-archive-sell-form .textfield-sale label {
    display: block;
    width: 100%;
    height: 100%;
}

.tg-archive-sell-form .textfield-sale textarea {
    min-height: 82px;
    height: 82px;
    padding: 10px 12px;
    resize: vertical;
    box-sizing: border-box;
}

.filters-form {
    width: 100%;
    margin: 0 0 18px;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    align-items: end;
    width: 100%;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #8FA3BA;
    font-size: 14px;
    font-weight: 600;
    min-width: 0;
}

.filter-field input,
.filter-field select {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid #4D5768;
    background: #232637;
    color: #FFFFFF;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: #84BEFD;
    box-shadow: 0 0 0 2px rgba(132, 190, 253, 0.16);
}

.filters-submit {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    background: #FFD292;
    color: #232637;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.tg-archive-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid #FF7878;
    border-radius: 8px;
    background: rgba(255, 120, 120, 0.14);
    color: #FF7878;
    font-size: 14px;
    cursor: pointer;
}

.tg-archive-remove:hover {
    background: rgba(255, 120, 120, 0.22);
}

.tg-archive-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0 0;
}

.tg-archive-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid #84BEFD;
    border-radius: 8px;
    background: rgba(132, 190, 253, 0.12);
    color: #84BEFD;
    font-size: 15px;
    cursor: pointer;
}

.tg-archive-add-button:hover {
    background: rgba(132, 190, 253, 0.2);
}

.tg-archive-add-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .tg-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .tg-archive-access-card {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-archive-access-card__button {
        width: 100%;
    }

    .tg-archive-form-card {
        padding: 12px;
        gap: 9px;
    }

    .tg-archive-grid {
        grid-template-columns: 1fr;
    }

    .tg-archive-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tg-archive-add-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .filters-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .filters-submit {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .filters-row {
        grid-template-columns: 1fr;
    }
}
.tg-archive-bulk-info-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(720px, 100%);
    margin: 0 auto;
    padding-bottom: 18px;
}

.tg-archive-bulk-info-note {
    grid-column: 1 / -1;
    color: #6C839C;
    font-size: 14px;
}

.tg-archive-bulk-info-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #DCDCDC;
    font-size: 14px;
}

.tg-archive-bulk-info-form input,
.tg-archive-bulk-info-form select,
.tg-archive-bulk-info-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #4D5768;
    border-radius: 16px;
    background: #1F2232;
    color: #FFFFFF;
    padding: 8px 12px;
    outline: none;
}

.tg-archive-bulk-info-form textarea {
    min-height: 86px;
    resize: vertical;
}

.tg-archive-bulk-info-form label:nth-last-of-type(1),
.tg-archive-bulk-info-form label:nth-last-of-type(2) {
    grid-column: 1 / -1;
}

.tg-archive-bulk-info-error {
    grid-column: 1 / -1;
    min-height: 18px;
    color: #FF7878;
    text-align: center;
    font-size: 14px;
}

.tg-archive-bulk-info-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tg-archive-bulk-info-actions button {
    height: 34px;
    border-radius: 16px;
    padding: 0 22px;
    cursor: pointer;
}

#tgArchiveBulkInfoCancel {
    border: 1px solid #6C839C;
    background: #1F2232;
    color: #6C839C;
}

#tgArchiveBulkInfoSave {
    border: 1px solid #FFD292;
    background: #FFD292;
    color: #1F2232;
}
