* {
    font-family: Arial;
}
* {
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

::-webkit-scrollbar {
    width: 0px;
    height: 10px;
}

/* Ползунок скроллбара */
::-webkit-scrollbar-thumb {
    padding-left: 5px;
    background-color: #232333; /* Цвет ползунка */
    border-radius: 10px; /* Закругление краев */
}

/* Задний фон скроллбара */
::-webkit-scrollbar-track {
    background-color: transparent; /* Цвет фона трека */
    border-radius: 10px; /* Закругление краев */
}

:root {
    /* DARK THEME COLORS */
    --main-dark-bg: #1a2238; /* Slightly lighter for better contrast */
    --main-dark-bg-secondary: #162032; /* Adjusted for a more balanced look */
    --main-dark-bg-tertiary: #1e2a40; /* Harmonized with the primary background */
    --main-dark-text: #f4f9ff; /* Kept as is for readability */
    --main-dark-text-secondary: #6b7280; /* Lightened for a softer appearance */
    --main-dark-accent: #3a7ff2; /* Brighter blue for a more vibrant accent */
    --main-dark-accent-hover: #2e5bb5; /* Adjusted hover color for consistency */
    --main-dark-accent-yellow: #3a7ff2; /* Matched with the accent color */
    --main-dark-danger: #5a9df8; /* Softer blue for danger indication */
    --main-dark-danger-hover: #2e4a8a; /* Adjusted hover color for danger */
    --main-dark-border: #2a3a5a; /* Slightly lighter for better visibility */
    --main-dark-placeholder: #5c6c8a; /* Softer placeholder color */
    --main-dark-input-bg: #1e2a40; /* Harmonized with tertiary background */
    --main-dark-input-disabled: #4a5a7b; /* Adjusted for a more neutral tone */
    --main-dark-table-header: #a0c4e0; /* Matched with secondary text */
    --main-dark-table-row: #1a2238; /* Kept consistent with primary background */
    --main-dark-table-row-hover: #1e2a40; /* Harmonized with tertiary background */
    --main-dark-modal-bg: #1c2840; /* Slightly lighter for better contrast */
    --main-dark-scrollbar-thumb: #2a3a5a; /* Adjusted for a more balanced look */
    --main-dark-scrollbar-track: transparent;
    /* ...добавляй по мере необходимости */
    /* LIGHT THEME COLORS (оставляем как есть) */
    --main-light-text-color: #1c1e21;
    --main-light-background-color: #f7f9fc;
    --main-light-header-color: #ebebeb;
    --main-light-accent-color: #4F46E5;
    --main-light-secondary-color: #06b6d4;
    --main-light-border-color: #e2e8f0;
    --main-light-muted-color: #6b7280;
    --main-light-hover-bg: #eef2ff;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: #fff
}

.light-theme button {
    color: var(--main-light-text-color)
}
.mdi {
    display: flex;
    align-items: center;
    justify-content: center;
}
body {
    background-color: black;
    margin: 0 auto; /* Центрирование страницы */
    max-width: 100vw;
    color: #fff;
}
body.light-theme {
    background-color: var(--main-light-backgrount-color);
    color: black
}
body.overflow-none {
    overflow-y: hidden !important;
    touch-action: none !important;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.light-theme a {
    color: var(--main-light-text-color)
}

header {
    display: flex;
    background-color: var(--main-dark-bg-secondary);
    padding: 18px 30px;
    justify-content: space-between;
    font-size: 15px;
    font-weight: bold;
    gap: 108px;
    box-shadow: #000000;
}
.light-theme header {
    background-color: var(--main-light-header-color);
}

header .menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
header .menu a, .burger-modal .menu a {
    color: #fff;
    transition: color 0.2s;
}
.light-theme .burger-modal .menu a, .light-theme header .menu a{
    color: var(--main-light-text-color);
}
header .menu a.active, .burger-modal .menu a.active {
    color: var(--main-dark-accent);
    transition: color 0.2s;
}
.text-center {
    text-align: center;
}
header .menu a:hover, .burger-modal .menu a:hover {
    color: var(--main-dark-accent);
    transition: color 0.2s;
}

header .menu a + a {
    margin-left: 20px; /* Задайте необходимое значение для минимального промежутка */
}

header .user {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.user-modal {
    position: absolute;
    right: -250px; /* Начальное положение за пределами экрана */
    background-color: var(--main-dark-bg-secondary);
    border: 1px solid var(--main-dark-text-secondary);
    font-size: 14px;
    display: flex;
    border-radius: 15px;
    flex-direction: column;
    font-weight: normal;
    width: 250px;
    gap: 10px;
    z-index: 99999;
    transition: right 0.2s ease-in-out; /* Плавный переход */
}

.user-modal a {
    display: flex;
    gap: 10px;
    height: 40px;
    padding-left: 10px;
    align-items: center;
    transition: background-color 0.1s ease;
}

.user-modal a:hover {
    background-color: #3b3d59;
}

body.light-theme .user-modal a:hover {
    background-color: var(--main-light-header-color);
}


.user-modal a:nth-child(1) {
    margin-bottom: 10px;
}

.content {
    margin-top: 20px;
    padding-left: 288px;
    padding-right: 288px;
}


.container {
    background-color: var(--main-dark-bg-secondary);
    padding: 40px 40px;
    margin-bottom: 41px;
    border-radius: 20px;
}

.d-flex {
    display: flex;
}
.form-group input:disabled {
    color: #8f8f8f
}
.justify-between {
    justify-content: space-between;
}

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

.justify-end {
    justify-content: flex-end !important;
}

.container-type .container-type-item {
    color: #848E9C;
    cursor: pointer;
}

.container-type .container-type-item:hover {
    color: #fff;
    transition: color 0.3s;
}

.container-type .container-type-item.active {
    color: #fff;
    position: relative;
}

.container-type .container-type-item.active:before {
    position: absolute;
    content: "";
    height: 1px;
    background-color: var(--main-dark-accent);
    width: 100%;
    bottom: -5px;
}

.cursor-pointer {
    cursor: pointer;
}

.gap-10 {
    gap: 10px;
}

.f-1 {
    flex: 1;
}

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


.container-body {
    margin-top: 20px;
    overflow-x: hidden;
}

.container .container-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
}

.container-body {
    max-height: 400px;
    overflow-y: auto;
}

.container .container-header span {
    font-size: 24px;
    font-weight: bold;
}

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

.f-w-regular {
    font-weight: 500 !important;
}

.h-80vh {
    height: 80vh;
}

.content.h-100vh {
    margin-top: 0;
}

.color-red {
    color: #F6465D !important;
}


.color-green {
    color: #77DD77 !important;
}

.input-error {
    border: 1px solid #F6465D !important;
}


.select {
    padding: 5px 10px;
}
.select .select-items {
    /* padding: 20px 20px; */
    position: absolute;
    /* width: 100px; */
    right: 34px;
    margin-top: 5px;
    text-align: right;
    background-color: #232333;
    padding-left: 20px;
    padding-right: 20px;
}

.button {
    background-color: var(--main-dark-accent);
    border: none;
    color: var(--main-dark-bg);
    font-size: 15px;
    font-weight: bold;
    padding: 10px 11px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.action-color {
    color: var(--main-dark-accent) !important;
    transition: color 0.2s ease;
}
.action-color-border:hover {
    border: 1px solid var(--main-dark-accent) !important;
    transition: border 0.2s ease;
}
.action-color:disabled {
    color: #cb9c07
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
    margin: 0;
}

.button.secondary {
    background-color: #232333;
    color: #fff
}

.button.secondary:hover {
    background-color: #191925;
}

.button.success {
    background-color: #0ECB81;
}

.custom-table img {
    max-width: 30px;
}

.button.danger {
    background-color: #F6465D;
}

.button.danger:hover {
    background-color: #bf3d4f;
}

.button:hover {
    background-color: var(--main-dark-accent-hover);
    transition: 0.3s;
}

.button.success:hover {
    background-color: #0bac6f;
}

.align-bottom {
    align-items: end;
}

.gap-5 {
    gap: 5px !important;
}

.f-size-15 {
    font-size: 15px !important;
}

.f-size-18 {
    font-size: 18px;
}

.color-grey {
    color: #848E9C !important;
    transition: color 0.2s ease;
}

.f-wrap {
    flex-wrap: wrap;
}

.container .container-body span {
    font-size: 30px;
    font-weight: bold;
}

.container .container-body small {
    font-size: 18px;
    font-weight: bold;
}

.small-error {
    font-size: 12px !important;
    font-weight: normal;
}

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

.custom-table {
    border-spacing: 0 30px;
}

.input-button {
    display: flex;
    justify-content: right;
    margin-top: -16px;
}

.input-button button {
    color: #03C3EC;
}

.custom-table th {
    text-align: center;
    font-size: 15px;
    color: #848E9C;
    font-weight: 500;
}

.custom-table td {
    text-align: center;
}

.custom-table th:first-child {
    text-align: left;
}

.custom-table td:first-child {
    text-align: left;
}


.custom-table th:last-child {
    text-align: right;
}

.custom-table td:last-child {
    text-align: right;
}

.custom-table .table-list .up {
    font-size: 18px;
}

.custom-table .table-list .down {
    font-size: 13px;
    color: #848E9C
}

.custom-table td .table-list {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

input[type=text], input[type=email], input[type=password], input[type=date], input[type=number]  {
    color: #fff;
    background-color: #232333;
    border: 1px solid transparent; /* Set initial border to maintain input size */
    transition: border 0.3s;
    border-radius: 5px;
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 5px;
    font-size: 13px;
    font-weight: normal;
    display: inline-block;
    width: auto;
    height: auto;

}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=number]:focus {
    outline: none;
    border: 1px solid var(--main-dark-text-secondary)
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder {
    color: #4D4E66;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder {
    color: #4D4E66;
}

input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]:placeholder, input[type=number]::placeholder {
    color: #4D4E66;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important; /* Цвет фона внутри полей ввода */
    -webkit-text-fill-color: #fff !important; /* Цвет текста внутри полей ввода */
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

.link {
    color: var(--main-dark-accent);
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.w-100 {
    width: 100% !important;
}

.w-50 {
    width: 50% !important;
}

footer {
    border-top: 1px solid var(--main-dark-bg-secondary);
    padding: 20px 288px;
}

.footer-fixed {
    position: fixed; /* Fixed position */
    bottom: 0; /* Align to the bottom */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
}

footer span {
    font-size: 12px;
    font-weight: bold;
    color: #848E9C
}

footer .footer-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .burger {
    display: none;
}

.small-error {
    color: #F6465D
}

.burger-modal {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-dark-bg-secondary);
    z-index: 9999;

}

.burger-modal .header {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 18px;
}

.d-column {
    flex-direction: column;
}

.modal {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -20%);
    background-color: var(--main-dark-bg-secondary);
}

.no-elements {
    text-align: center;
    color: #848E9C;
    font-size: 22px;
    padding: 50px;
}

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

.gap-20 {
    gap: 20px
}

.gap-40 {
    gap: 40px;
}

.justify-right {
    justify-content: right !important;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.modal .modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.modal .modal-content .modal-header {
    padding-left: 10px;
    padding-right: 10px;
    color: #A6ADB6;
}

.modal .modal-content .modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 34px;
    padding-right: 34px;
}

.modal-body label {
    font-size: 14px;
    font-weight: normal;
    color: #848E9C;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px
}
.form-group input {
    padding-right: 20px;
}

.modal .modal-content .modal-body .form-group input {
    padding-left: 0;
    padding-right: 20px;
    background-color: #232333;
    font-size: 15px;
    font-weight: bold;
}

.modal .modal-content .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 34px;
    padding-right: 34px;
    gap: 15px
}

.modal .modal-content .modal-footer small {
    color: #848E9C;
    font-size: 10px;
    font-weight: normal;
}

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

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #232333;
    z-index: 2;
}

body.light-theme .loader {
    background-color: var(--main-light-background-color);
}

.spinner {
    border: 8px solid var(--main-dark-bg-secondary);
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
body.light-theme .spinner {
    border: 8px solid var(--main-light-header-color);
    border-top: 8px solid #3498db;
}
.login {
    width: 600px;
    opacity: 0;
    transition: opacity 1s ease;
}
.mx-icon-calendar, .mx-icon-clear {
    color: #fff !important;
    display: none !important;
}
body.light-theme .mx-icon-calendar,
body.light-theme .mx-icon-clear {
    color: var(--main-light-text-color) !important;
}
.mx-datepicker-main {
    background-color: var(--main-dark-bg-secondary) !important;
    border: 1px solid var(--main-dark-bg-secondary) !important;
}

/* Светлая тема */
body.light-theme .mx-datepicker-main {
    background-color: var(--main-light-background-color) !important;
    border: 1px solid var(--main-light-border-color) !important;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1542px) {
    .content, footer {
        padding-left: 140px;
        padding-right: 140px;
    }

    header {
        gap: 44px
    }
}

@media screen and (max-width: 1069px) {
    .content, footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1080px) {
    header .menu {
        display: none;
    }
    header .burger {
        display: block;
    }
}

@media screen and (max-width: 895px) {
    .login {
        width: 500px;
    }
}

@media screen and (max-width: 728px) {
    .footer-fixed {
        padding-bottom: 70px;
    }
    .containers {
        flex-direction: column;
    }

    .container {
        padding: 20px 20px;
    }

    .login {
        width: 400px;
    }

    .container .container-header span {
        font-size: 18px
    }

    .custom-table tr {
        max-width: 346px;
    }

    .custom-table .table-list .up {
        font-size: 14px;
    }

    .custom-table .table-list .down {
        font-size: 11px;
    }

    .custom-table th {
        font-size: 13px;
    }

    .custom-table .link {
        font-size: 13px;
    }

    .button {
        font-size: 12px;
    }

    .chart-image {
        width: 100%;
    }

    .form-group {
        gap: 40px
    }

    .content, footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container-body {
        margin-top: auto;
    }

    .w-50 {
        width: 75%;
    }
}

@media screen and (max-width: 520px) {
    .login {
        width: 300px;
    }
}

.light-theme body {
    background-color: var(--main-light-background-color);
    color: var(--main-light-text-color);
}

.light-theme header {
    background-color: var(--main-light-header-color);
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05); /* легкая тень */
}

.light-theme .container {
    background-color: #ffffff;
    border: 1px solid var(--main-light-border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.light-theme a {
    color: var(--main-light-accent-color);
    font-weight: 500;
}

.light-theme a:hover:not(.button) {
    color: #4338ca;
}


.light-theme .link {
    color: var(--main-light-accent-color);
}

.light-theme .user-modal, .light-theme .burger-modal {
    background-color: #ffffff;
    border: 1px solid var(--main-light-border-color);
}

.light-theme footer {
    background-color: #ffffff;
    border-top: 1px solid var(--main-light-border-color);
}

.light-theme .container-type .container-type-item {
    color: var(--main-light-muted-color);
}

.light-theme .container-type .container-type-item.active,
.light-theme .container-type .container-type-item:hover {
    color: var(--main-light-accent-color);
    font-weight: bold;
}

.light-theme .no-elements {
    color: var(--main-light-muted-color);
}
.light-theme .button {
    background-color: var(--main-light-accent-color);
    color: #ffffff;
    border: none;
}

.light-theme .button.secondary {
    background-color: var(--main-light-secondary-color);
    color: #ffffff;
}

.light-theme .button:hover {
    background-color: #4338ca; /* темнее основной */
}

.light-theme .button.secondary:hover {
    background-color: #0891b2;
}



.light-theme input[type=text],
.light-theme input[type=email],
.light-theme input[type=password],
.light-theme input[type=date],
.light-theme input[type=number] {
    background-color: var(--main-light-background-color);
    border: 1px solid var(--main-light-border-color);
    color: var(--main-light-text-color);
    padding: 10px 10px;
}

.light-theme input[type=text]:focus,
.light-theme input[type=email]:focus,
.light-theme input[type=password]:focus,
.light-theme input[type=number]:focus {
    border: 1px solid var(--main-light-accent-color);
}

.light-theme .custom-table {
    width: 100%;
    border-collapse: collapse;
}

.light-theme .custom-table th {
    background-color: #f1f5f9;
    color: var(--main-light-text-color);
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-bottom: 1px solid var(--main-light-border-color);
}

.light-theme .custom-table tr, .light-theme .custom-table td {
    background-color: #ffffff;
    color: var(--main-light-text-color);
    font-size: 14px;
    padding: 10px 12px;
}

.light-theme .custom-table tr:hover td {
    background-color: var(--main-light-hover-bg);
    transition: background-color 0.3s;
}

.mx-datepicker {
    width: 100% !important;
}
.mx-input {
    width: 100% !important;
}

.verification-limits-list {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}
.verification-limits-list .limit-card {
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 260px;
    flex: 1 1 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px dashed #848E9C;
    max-width: 100%;
    box-sizing: border-box;
}
.limit-card .limit-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.limit-card .limit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.limit-dot.yellow {
    background: var(--main-dark-accent-yellow);
}
.limit-dot.green {
    background: #4caf50;
}
.limit-card .limit-info {
    font-size: 14px;
    color: #b9b6b6;
    margin-bottom: 4px;
}
.limit-card .limit-tax-id {
    font-size: 13px;
    color: #888;
}

.my-limits-block {
    margin-top: 40px;
    padding: 25px 30px;
    background: var(--main-dark-bg);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 32px;
}
.my-limits-block h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 18px;
}
.color-yellow {
    color: var(--main-dark-accent-yellow) !important;
}

.mt-0 {
    margin-top: 0;
}

.auth-btn {
    padding: 7px 18px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    background: transparent;
    border: 2px solid var(--main-dark-accent);
    color: var(--main-dark-accent);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    line-height: 1.1;
}

.auth-btn.login-btn.passive-btn {
    border-color: #444a57;
    color: #848E9C;
    background: transparent;
}



.auth-btn.login-btn.passive-btn:hover {

    color: #fff;
    border-color: #fff;
}
.auth-btn.register-btn {
    border-color: var(--main-dark-accent);
    color: #fff;
    background: var(--main-dark-accent);
    font-weight: bold;
    box-sizing: border-box;
}
.auth-btn.register-btn:hover {
    border-color: var(--main-dark-accent-hover);
}

.home-table {
    gap: 24px
}

.home-tables {
    background-color: var(--main-dark-bg-secondary);
    padding: 24px 24px;
    border-radius: 20px;
    box-sizing: border-box;
}

.table-tab {
    margin: 0;
    padding-bottom: 16px;
    color: var(--main-dark-text-secondary);
}

.table-tab.is-active {
    border-bottom: 1px solid var(--main-dark-accent-yellow);
    color: var(--main-dark-text);
}

.table-tab:hover {
    color: var(--main-dark-text);
}

.home-link {
    padding-bottom: 16px;
}

.home-tables .custom-table td:last-child {
    text-align: left;
}
.home-header {
    width: 50%;
}

.home-content {
    gap: 80px
}

.home-content .home-container .home-tables .container-body {
    max-height: 300px;
}

.preview-platform .container-body{
    max-height: unset;
}

.kyc h2 {
    font-size: 35px;
    text-transform: uppercase;
}

.kyc ul {
    list-style: none;
    padding-left: 0;
}
.kyc ul li {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.kyc ul li:last-child {
    margin-bottom: 0;
}
.kyc ul li strong {
    margin-bottom: 5px;
}
@media screen and (max-width: 1280px) {
    .content, footer {
        padding-left: 70px;
        padding-right: 70px;
    }
    .home-content {
        gap: 40px
    }
}

@media screen and (max-width: 991px){
    .home-content {
        flex-direction: column;
    }
    .home-container, .home-header {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .verification-limits-list {
        flex-direction: column;
        gap: 18px;
    }
    .verification-limits-list .limit-card {
        min-width: unset;
        width: 100%;
        flex: unset;
    }
}

@media screen and (max-width: 767px) {
    .content, footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .preview-platform h2 {
        font-size: 25px;
    }
    .home-tables {
        padding: 12px;
    }

    .kyc h2 {
        font-size: 20px;
    }
}

