@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

* {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.flex {
    display: flex;
}

.flex.jc-center {
    justify-content: center;
}

.flex.jc-between {
    justify-content: space-between;
}

.flex.dir-col {
    flex-direction: column;
}

.flex.dir-row {
    flex-direction: row;
}

.gap-8 {
    gap: 8px;
}

body {
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.link {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #66647A;
    transition: color ease 0.3s;
}

.link:hover {
    color: #0A0916;
}

.btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    transition: all ease 0.5s;
    text-align: center;
    border: 0;
}

.btn-medium {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}

.btn-small {
    padding: 8px 8px;
    font-size: 12px;
    font-weight: 600;
}

.btn-big {
    padding: 24px 32px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.btn-icon {
    width: 280px;
    justify-content: space-between;
}

.btn-icon svg {
    margin-left: 16px;
}

.btn-main {
    background-color: #0A0916;
}

.btn-main:hover {
    background-color: #3d3d51;
}

.btn-main button {
    cursor: pointer;
    border: 0;
    background: none;
    color: white;
}

.btn-main button[disabled] {
    opacity: 0.4;
    cursor: wait !important;
}

.btn-gray {
    color: #0A0916;
    background-color: #ECECEC;
}

.btn-gray:hover {
    background-color: #dfdfdf;
}

.btn-gray button {
    cursor: pointer;
    border: 0;
    background: none;
    color: white;
}

.btn-gray button[disabled] {
    opacity: 0.4;
    cursor: wait !important;
}

@keyframes onHover {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100%;
    }
}

.drop-down {
    position: relative;
}

.drop-down:hover .nav-menu__drop {
    animation: linear 0.3s onHover forwards;
    display: block;
}

.drop-down .nav-menu__drop {
    display: none;
    position: absolute;
    width: 180px;
    top: 56px;
}

.drop-down .nav-menu__drop-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
}

.drop-down .nav-menu__drop-item {
    width: 100%;
    position: relative;
}

.drop-down .nav-menu__drop-item a {
    display: flex;
    padding: 12px 16px;
    height: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #66647A;
    transition: background ease 0.3s, color ease 0.3s;
}

.drop-down .nav-menu__drop-item:first-child > a {
    border-radius: 12px 12px 0 0;
}

.drop-down .nav-menu__drop-item:last-child > a {
    border-radius: 0 0 12px 12px;
}

.drop-down .nav-menu__drop-item:hover > a {
    color: #0A0916;
    background: #ECECEC;
}

.drop-down .nav-menu__drop-item:has(> .nav-menu__drop-item-child)::after {
    width: 8px;
    height: 8px;
    content: " ";
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin: -4px 0 0 0;
    background: url(/static/img/icons/arrow-dropdown.svg) no-repeat center;
    background-size: 100% 100%;
    transform: rotate(-90deg);
}

.drop-down .nav-menu__drop-item-child {
    display: none;
    width: 180px;
    position: absolute;
    z-index: 7;
    left: 100%;
    top: 0;
    margin: 0 0 0 -10px;
    background: #FFFFFF;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    overflow: hidden;
}

.drop-down .nav-menu__drop-item-child a:hover {
    color: #0A0916;
    background: #ECECEC;
}

.drop-down .nav-menu__drop-item:hover > .nav-menu__drop-item-child {
    animation: linear 0.3s onHover forwards;
    display: block;
}

.card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    min-width: 320px;
}

.card-seo * {
    color: #66647A;
    line-height: 150%;
}

.card-seo ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 16px;
    list-style: circle;
}

.card-seo ul li {
    color: #66647A;
    line-height: 150%;
}

.card-order {
    width: 100%;
    max-width: 672px;
}

.card-order__total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 0px;
    gap: 8px;
    width: 100%;
}

.card-order__total-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 16px;
    width: 100%;
}

.card-order__total-item h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
}

.card-order__total-item p {
    font-weight: 900;
    font-size: 18px;
    line-height: 16px;
    text-align: right;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #0A0916;
}

.card-order__total-item-value {
    color: #000;
}

.card-order__balance {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 24px;
    gap: 16px;
    background: rgba(51, 190, 107, 0.2);
    border: 1px solid rgba(51, 190, 107, 0.2);
    border-radius: 8px;
    width: 100%;
}

@media screen and (max-width: 672px) {
    .card-order__balance {
        flex-direction: column;
        padding: 12px;
    }
}

.card-order__balance h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
}

.card-order__balance-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-order__balance-info p {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
}

.card-order__balance-info a {
    padding: 8px 16px;
    text-transform: uppercase;
}

@media screen and (max-width: 672px) {
    .card-order__balance-info {
        width: 100%;
        flex-direction: column;
    }

    .card-order__balance-info p {
        font-size: 24px;
        font-weight: 800;
        line-height: 24px;
    }

    .card-order__balance-info a {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 24px;
    }
}

.card-order__service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    width: 100%;
}

.card-order__service h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.card-order__service-desc {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #66647A;
}

.card-order__service-amount {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 672px) {
    .card-order__service-amount {
        flex-direction: column;
    }
}

.card-order__service-amount-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    gap: 32px;
    background: rgba(10, 9, 22, 0.05);
    border: 1px solid rgba(10, 9, 22, 0.05);
    border-radius: 4px;
    width: 100%;
}

.card-order__service-amount-item p, .card-order__service-amount-item span {
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.card-header.between {
    justify-content: space-between;
}

.card-header h4 {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #0A0916;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group__wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
}

.form-group__wrapper.half .form-group {
    max-width: calc(50% - 8px);
}

@media screen and (max-width: 1024px) {
    .form-group__wrapper {
        flex-wrap: wrap;
    }
}

.form-group.checkbox {
    flex-direction: row;
}

.form-group.checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(10, 9, 22, 0.05);
}

.form-group.checkbox label {
    color: #66647A;
}

.form-group label {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.form-group select[disabled] + button {
    opacity: 0.5;
    pointer-events: none;
}

.form-group input, .form-group textarea {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 24px;
    gap: 8px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    transition: border-color 0.3s ease;
    border-radius: 8px;
    outline: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #0A0916;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    opacity: 0.5;
}

.form-group input:focus, .form-group input:focus-visible, .form-group textarea:focus, .form-group textarea:focus-visible {
    border: 2px solid rgba(10, 9, 22, 0.25);
}

/*.select,*/
.input__select-title {
    width: 100%;
    cursor: pointer;
    flex: 1 1 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 8px;
    background: unset;
    text-align: left;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    outline: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #0A0916;
}

.select.init-style {
    display: none !important;
}

.input__select {
    position: relative;
    display: flex;
    flex: 1 1 0;
}

.input__select select {
    display: none;
}

.input__select .input__select-drop {
    width: 100%;
    position: absolute;
    top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    background: #FFFFFF;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    overflow: hidden;
    z-index: 9;
}

.input__select .input__select-drop div {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 16px;
    gap: 16px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #66647A;
    transition: background ease 0.3s, color ease 0.3s;
}

.input__select .input__select-drop div:hover {
    background: #ECECEC;
}

.input__select .input__select-drop div.current {
    color: #0A0916;
    background: #ECECEC;
}

.input__select .input__select-title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input__select .input__select-title:after {
    content: "";
    background: url(/static/img/icons/arrow-dropdown.svg) no-repeat center/contain;
    width: 16px;
    height: 16px;
}

.input__select .input__select-title.current:after {
    rotate: 180deg;
}

.input__select .input__select-title::before {
    width: 16px;
    height: 16px;
    content: " ";
    display: block;
    position: absolute;
    right: 22px;
    top: 50%;
    margin: -11px 0 0 0;
    border: 4px solid transparent;
    border-top-color: #000;
    background: #fff;
    z-index: 3;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotateInputSelectLoader 1s linear infinite;
}

.input__select .loading + .input__select-title::before {
    opacity: 1;
}

/* Dropdown list loader rotation animation */
@keyframes rotateInputSelectLoader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.table-wrap-lk {
    width: 100%;
}

.table-style-lk {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .table-style-lk tbody td[data-label]:before {
        content: attr(data-label) ": ";
    }
}

.table-style-lk {
    width: 100%;
    /*margin-bottom: 1rem;*/
    background-color: transparent;
}

.table-style-lk tbody a, .table-style-lk tbody button {
    white-space: nowrap;
}

.table-style-lk tbody td {
    white-space: normal;
}

.table-style-lk > tbody > tr {
    font-size: 16px;
    font-weight: 600;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #908ea8;
    height: 48px;
}

.table-style-lk > tbody .item {
    background-color: #fff;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #aeacc1;
}

.table-style-lk > tbody .item__sr {
    background-color: #fff;
}

.table-style-lk > tbody .item .fa-check {
    color: #d2d0df;
}

.table-style-lk .block-all {
    font-family: Montserrat-Bold, sans-serif;
    color: #6d6b7b;
    text-align: left;
}

.table-style-lk tbody tr:nth-of-type(2n+1) {
    background-color: rgba(10, 9, 22, 0.05);
    padding: 16px;
}

body .table-style-lk table,
body .table-style-lk tbody,
body .table-style-lk tr,
body .table-style-lk th,
body .table-style-lk td {
    padding: 0;
    margin: 0;
    border: 1px solid #eaeaea;
    line-height: 24px !important;
    color: #212529;
    vertical-align: top;
}

body .table-style-lk tr {
    padding: 16px;
    border: 1px solid #F2F2F3;
    border-radius: 5px;
}

body .table-style-lk td {
    overflow: hidden;
    padding: 14px 14px !important;
}

body .table-style-lk thead th {
    font-weight: 700;
    vertical-align: middle;
    padding: 8px 16px;
}

@media screen and (max-width: 1024px) {
    body .table-style-lk thead th {
        white-space: nowrap;
    }

    body .table-style-lk thead th.action-column {
        display: none;
    }
}

body .table-style-lk thead th a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}

body .table-style-lk thead th a:hover {
    color: #000;
}

body .table-style-lk thead th a.asc:after {
    content: "↑";
    rotate: 180deg;
    line-height: 16px;
}

body .table-style-lk thead th a.desc:after {
    content: "↑";
    line-height: 16px;
}

@media all and (min-width: 992px) {
    .history-table table th,
    .history-table table td {
        padding: 8px !important;
        font-size: 14px;
    }

    .history-table td {
        word-break: break-word;
    }

    .history-table td[data-label=ID] {
        word-break: normal;
    }

    .history-table td .btn {
        white-space: nowrap;
    }

    .history-table td.history-table-col_link {
        max-width: 240px;
        word-break: break-word;
    }

    .history-table td.history-table-col_price {
        white-space: nowrap;
    }

    .history-table td.history-table-col_date {
        white-space: nowrap;
    }
}

@media screen and (max-width: 1024px) {
    body .table-style-lk thead tr {
        margin-bottom: 16px;
    }

    body .table-style-lk {
        width: 100%;
        display: block;
    }

    body .table-style-lk table, body .table-style-lk tfoot, body .table-style-lk thead, body .table-style-lk tbody, body .table-style-lk tr, body .table-style-lk th, body .table-style-lk td {
        width: 100%;
        height: auto;
        display: block;
        padding: 0;
        margin: 0;
        border: 0;
        line-height: 24px !important;
        color: #212529;
    }

    .table-style-lk tbody tr:nth-of-type(2n+1) {
        background-color: #f3f2f3;
        padding: 16px;
    }

    body .table-style-lk tr {
        padding: 16px;
        border: 1px solid #eaeaea;
        border-radius: 5px;
    }

    body .table-style-lk tr + tr {
        margin-top: 16px;
    }

    body .table-style-lk td[data-label]::before {
        content: attr(data-label) ":";
        margin: 0 8px 0 0;
        font-weight: bold;
        color: #212529;
    }

    body .table-style-lk td[data-label].serv-desc::before {
        display: block !important;
        width: 100% !important;
    }

    body .table-style-lk thead th:nth-child(2),
    body .table-style-lk thead th:nth-child(3),
    body .table-style-lk thead th:nth-child(8),
    body .table-style-lk thead th:nth-child(4) {
        display: none;
    }

    body .table-style-lk td[data-label]::before {
        content: attr(data-label) ":";
        margin: 0 8px 0 0;
        font-weight: bold;
        color: #212529;
    }

    body .table-style-lk td {
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
        word-break: break-word !important;
        white-space: normal !important;
    }

    body .table-style-lk td {
        padding: 8px 0 8px 0 !important;
    }

    body .table-style-lk td:first-child {
        padding: 0 0 8px 0 !important;
    }

    body .table-style-lk td:last-child {
        padding: 8px 0 0 0 !important;
    }

    body .table-style-lk td + td {
        border-top: 1px solid #dee2e6 !important;
    }

    body .table-style-lk .block-all {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .table-service thead tr th:nth-child(2), .table-service thead tr th:nth-child(3), .table-service thead tr th:nth-child(4), .table-service thead tr th:nth-child(5) {
        display: none;
    }
}

.table-style-api {
    width: 100%;
    max-width: 100%;
    border: 1px solid #dddddd;
    font-size: inherit;
}

.table-style-api .table-style-api {
    background-color: #ffffff;
}

.table-style-api > tfoot > tr > td,
.table-style-api > thead > tr > th,
.table-style-api > thead > tr > td,
.table-style-api > tbody > tr > th,
.table-style-api > tbody > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    font-size: inherit;
    vertical-align: top;
    color: #212529;
    border: 1px solid #eaeaea;
}

.table-style-api > thead > tr > th,
.table-style-api > thead > tr > td {
    border-bottom-width: 2px;
}

@media screen and (max-width: 772px) {
    .table-style-mobile {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }
}

table .limited {
    max-width: 100px !important;
    word-wrap: break-word !important;
}

.alert {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.alert-icon {
    justify-content: space-between;
}

.alert-danger {
    color: #653030;
    background: rgba(190, 51, 51, 0.2);
    border: 1px solid rgba(190, 51, 51, 0.2);
    border-radius: 8px;
}

.alert-success {
    color: #3d6530;
    background: rgba(51, 190, 74, 0.2);
    border: 1px solid rgba(56, 190, 51, 0.2);
    border-radius: 8px;
}

.alert-warn {
    color: #655930;
    background: rgba(190, 160, 51, 0.2);
    border: 1px solid rgba(190, 160, 51, 0.2);
    border-radius: 8px;
}

.alert-info {
    color: #305265;
    background: rgba(51, 148, 190, 0.2);
    border: 1px solid rgba(51, 137, 190, 0.2);
    border-radius: 8px;
}

/* Alert scroll */
.custom-alert {
    padding: 10px;
    margin-bottom: 30px;
}

.custom-alert__inner {
    max-height: 400px;
    padding: 8px;
    overflow-y: auto;
}

.badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    white-space: nowrap;
}

.badge-success {
    color: #42835C;
    background: rgba(51, 190, 107, 0.2);
    border: 1px solid rgba(51, 190, 107, 0.2);
}

.badge-secondary {
    color: #BE8F33;
    background: rgba(190, 143, 51, 0.2);
    border: 1px solid rgba(190, 143, 51, 0.2);
}

.badge-primary {
    color: #3394BE;
    background: rgba(51, 148, 190, 0.2);
    border: 1px solid rgba(51, 148, 190, 0.2);
}

.badge-danger {
    color: #834242;
    background: rgba(190, 51, 51, 0.2);
    border: 1px solid rgba(190, 51, 51, 0.2);
}

.badge-info {
    color: #BB33BE;
    background: rgba(187, 51, 190, 0.2);
    border: 1px solid rgba(187, 51, 190, 0.2);
}

.badge-warning {
    color: #5733BE;
    background: rgba(87, 51, 190, 0.2);
    border: 1px solid rgba(87, 51, 190, 0.2);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.75);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
}

.mobile-menu__close:before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("/static/img/icons/close.svg") no-repeat center/cover;
}

.mobile-menu__inner {
    width: 280px;
    background: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu__inner .logo {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mobile-menu__inner .logo:before {
    content: "";
    width: 156px;
    height: 34px;
    background: url("/static/img/logo-full.svg") no-repeat center/cover;
}

.mobile-menu__inner nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu__inner nav a {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    text-align: left;
    padding: 12px 16px;
    color: #888888;
}

header {
    z-index: 99;
}

header:not(.landing) {
    background: white;
}

header .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

header .header .logo {
    flex: none;
    width: 156px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    header .header .logo {
        width: 32px;
        height: 24px;
    }
}

header .header .logo:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("/static/img/logo-full.svg") no-repeat center/cover;
}

@media screen and (max-width: 1024px) {
    header .header .logo:before {
        background: url("/static/img/logo-small.svg") no-repeat center/cover;
    }
}

header .header nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    header .header nav {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    header .header nav {
        gap: 16px;
    }
}

header .header nav .nav-item {
    display: flex;
    align-items: center;
    height: 64px;
}

header .header nav a {
    color: #888888;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    transition: color ease 0.3s;
}

@media screen and (max-width: 1280px) {
    header .header nav a {
        font-size: 14px;
    }
}

header .header nav a:hover {
    color: #0A0916;
}

header .header .buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

header .header .buttons .language-switch__list {
    height: 16px;
}

header .header .buttons .btn-notification {
    position: relative;
    padding: 16px;
}

header .header .buttons .btn-notification__counter {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f35353;
    color: white;
    font-size: 8px;
    line-height: 8px;
    border-radius: 50% 50%;
}

header .header .buttons .language-switch__list {
    height: 16px;
}

header .header .buttons .language-switch__list a {
    display: flex;
}

header .header .buttons .nav-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

header .header .buttons .nav-profile .btn-deposit {
    padding: 16px 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

header .header .buttons .nav-profile .profile-switch__list {
    position: relative;
}

header .header .buttons .nav-profile .prof-link {
    gap: 16px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}

header .header .buttons .nav-profile .profile-switch__drop {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    overflow: hidden;
}

header .header .buttons .nav-profile .profile-switch__drop li {
    display: flex;
    align-items: center;
    width: 100%;
}

header .header .buttons .nav-profile .profile-switch__drop li:not(:last-child) a {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

header .header .buttons .nav-profile .profile-switch__drop li a {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #66647A;
    text-align: center;
    white-space: nowrap;
    transition: background ease 0.3s, color ease 0.3s;
}

header .header .buttons .nav-profile .profile-switch__drop li a:hover {
    background: #ECECEC;
    color: #0A0916;
}

header .header .buttons .nav-profile .profile-switch__drop.active {
    display: flex !important;
}

header .header .buttons .nav-profile .profile-switch__drop:not(.active) {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    header .header .buttons .nav-profile {
        display: none;
    }
}

header .header .buttons .mobile-menu-button {
    display: none;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    header .header .buttons .mobile-menu-button {
        display: flex;
    }
}

header .header .buttons .mobile-menu-button:before {
    content: "";
    width: 24px;
    height: 18px;
    background: url("/static/img/icons/burger-menu.svg") no-repeat center/cover;
}

header .header .buttons-lang {
    padding: 16px;
}

header .header .buttons-lang img {
    height: 16px;
    width: 24px;
}

@media screen and (max-width: 1024px) {
    header .header .buttons {
        gap: 8px;
    }

    header .header .buttons .btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    header .header .buttons .menu-mobile {
        display: block;
    }
}

@media screen and (max-width: 454px) {
    header .header .buttons {
        gap: 8px;
    }

    header .header .buttons .btn {
        min-width: 37px;
        padding: 12px 10px;
        font-size: 13px !important;
    }

    header .header .buttons .menu-mobile {
        display: block;
    }
}

.profile-balance {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    background: #0A0916;
    border-radius: 8px;
}

.profile-balance_wrapper {
    display: flex;
    text-align: left;
    padding: 12px 16px;
    width: 100%;
}

.profile-balance_wrapper .profile-balance {
    width: 100%;
    color: #fff;
}

section#services {
    position: relative;
    z-index: 1;
    background: #F2F5F6;
    padding: 104px 0 208px 0;
}

@media screen and (max-width: 1024px) {
    section#services {
        padding: 64px 0 104px;
    }
}

section#services:before {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 427px;
    content: "";
    background-image: url("/static/main/img/index/services.svg");
    background-repeat: repeat-x;
    background-position: center center;
    background-size: auto 100%;
    z-index: -1;
    pointer-events: none;
}

@media screen and (max-width: 1124px) {
    section#services:before {
        height: 217px;
        top: -70px;
    }
}

section#services:after {
    position: absolute;
    bottom: -280px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 427px;
    content: "";
    background-image: url("/static/main/img/index/services-end.svg");
    background-repeat: repeat-x;
    background-position: center center;
    z-index: 0;
}

section#features {
    z-index: 1;
    padding-top: 104px;
}

@media screen and (max-width: 1024px) {
    section#features {
        padding-top: 64px;
    }
}

section#faq {
    padding: 104px 0;
}

@media screen and (max-width: 1024px) {
    section#faq {
        padding: 64px 0;
    }
}

.landing-faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.landing-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-faq__list-item {
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 24px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 16px;
}

.landing-faq__list-item.active .landing-faq__list-item-content {
    display: flex;
}

.landing-faq__list-item.active .landing-faq__list-item-title svg {
    rotate: 180deg;
}

.landing-faq__list-item-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.landing-faq__list-item-title h5 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
}

.landing-faq__list-item-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #494857;
}

.landing-faq__list-item-title svg {
    transition: rotate ease 0.3s;
}

.landing-faq__list-item-content {
    display: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #494857;
}

.landing-faq__title h1,
.landing-faq__title h2 {
    font-weight: 900;
    font-size: 64px;
    line-height: 80px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .landing-faq__title h1,
    .landing-faq__title h2 {
        font-size: 32px;
        line-height: 150%;
    }
}

.landing-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.landing-features__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, auto));
}

@media screen and (max-width: 1024px) {
    .landing-features__list {
        grid-template-columns: repeat(1, minmax(320px, auto));
    }
}

.landing-features__list-item {
    display: flex;
    flex-direction: row;
    padding: 16px;
    gap: 32px;
    align-items: center;
}

.landing-features__list-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.landing-features__list-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-features__list-item-info h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
}

.landing-features__list-item-info p {
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    color: #494857;
}

.landing-features__title h1,
.landing-features__title h2 {
    font-weight: 900;
    font-size: 54px;
    line-height: 65px;
    text-align: center;
}

.landing-features__title p {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #494857;
}

@media screen and (max-width: 1024px) {
    .landing-features__title h1,
    .landing-features__title h2 {
        font-size: 32px;
        line-height: 150%;
    }
}

.landing-services {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.landing-services__items {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.landing-services__items-category {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-services__items-category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-services__items-category-title-show {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #0A0916;
}

.landing-services__items-category-title h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #0A0916;
}

.landing-services__items-category-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(330px, auto));
}

.landing-services__items-category-list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 9, 22, 0.15);
    border-radius: 16px;
}

@media screen and (max-width: 1024px) {
    .landing-services__items-category-list-item {
        padding: 16px;
    }
}

.landing-services__items-category-list-item .btn {
    width: 100%;
    box-sizing: border-box;
}

.landing-services__items-category-list-item-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-services__items-category-list-item__title h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #0A0916;
}

.landing-services__items-category-list-item__title p {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #888888;
}

.landing-services__items-category-list-item__price {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.landing-services__features {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.landing-services__features-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}

.landing-services__features-item .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 32px;
    height: 32px;
    background: rgba(10, 9, 22, 0.05);
    border-radius: 8px;
}

.landing-services__features-item .icon svg {
    fill: #0A0916;
}

.landing-services__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.landing-services__title h1,
.landing-services__title h2 {
    font-weight: 900;
    font-size: 64px;
    line-height: 80px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .landing-services__title h1,
    .landing-services__title h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

.landing-services__list {
    width: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0;
    row-gap: 0;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .landing-services__list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        grid-gap: 8px;
        border-radius: unset;
    }

    .landing-services__list-item {
        border-radius: 8px;
    }
}

.landing-services__list-item {
    cursor: pointer;
    border: none;
    outline: none;
    color: #0A0916;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    background: #FFFFFF;
    transition: color ease 0.3s, background ease 0.3s;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.landing-services__list-item:not(:first-child) {
    border-left: solid 2px rgba(10, 9, 22, 0.05);
}

.landing-services__list-item:hover {
    background: #0A0916;
    color: #fff;
}

.landing-services__list-item:hover img {
    filter: grayscale(1) brightness(30);
}

.landing-services__list-item.active {
    background: #0A0916;
    color: #fff;
}

.landing-services__list-item.active img {
    filter: grayscale(1) brightness(30);
}

.landing-start {
    position: relative;
    z-index: initial;
}

.landing-start__inner {
    width: 100%;
    padding: 0;
    position: relative;
}

@media screen and (min-width: 772.5px) {
    .landing-start__inner {
        padding: 50% 0 0 0;
    }
}

@media screen and (min-width: 772.5px) {
    .landing-start__inset {
        width: auto;
        height: auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 1376px) {
    .landing-start__inset {
        padding: 32px 0;
    }
}

@media screen and (max-width: 1124px) {
    .landing-start__inset {
        padding: 32px 0 82px 0;
    }
}

.landing-start__block {
    width: 620px;
    max-width: 100%;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1376px) {
    .landing-start__block {
        width: 580px;
    }
}

@media screen and (max-width: 976px) {
    .landing-start__block {
        width: 480px;
    }
}

@media screen and (max-width: 772px) {
    .landing-start__block {
        width: 410px;
    }
}

@media screen and (max-width: 694px) {
    .landing-start__block {
        width: 100%;
    }
}

.landing-start__block .btn-main {
    display: inline-flex;
    vertical-align: top;
    margin-top: 32px;
}

.landing-start__title {
    font-weight: 900;
    font-size: 64px;
    line-height: 1.34;
    color: #0A0916;
}

@media screen and (max-width: 1376px) {
    .landing-start__title {
        font-size: 54px;
    }
}

@media screen and (max-width: 1200px) {
    .landing-start__title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .landing-start__title {
        font-size: 46px;
    }
}

@media screen and (max-width: 900px) {
    .landing-start__title {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .landing-start__title {
        font-size: 38px;
    }
}

@media screen and (max-width: 672px) {
    .landing-start__title {
        font-size: 32px;
    }
}

.landing-start__subtitle {
    margin: 16px 0 0 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #494857;
}

.landing-start__bgs {
    width: auto;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -139px;
    background-size: 100% 100%;
    pointer-events: none;
}

.landing-start__bgs .container {
    position: relative;
}

.landing-start__bgs-img {
    width: 1116px;
    max-width: 80%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    right: -360px;
    top: 0;
    bottom: 0;
    background: no-repeat 0 center url("/static/main/img/index/start-space.png");
    background-size: contain;
}

@media screen and (max-width: 1376px) {
    .landing-start__bgs-img {
        right: -300px;
    }
}

@media screen and (max-width: 1124px) {
    .landing-start__bgs-img {
        right: -260px;
    }
}

@media screen and (max-width: 824px) {
    .landing-start__bgs-img {
        right: -214px;
    }
}

@media screen and (max-width: 694px) {
    .landing-start__bgs-img {
        max-width: 60%;
        right: -114px;
        top: 60px;
        bottom: -60px;
    }
}

@media screen and (max-width: 454px) {
    .landing-start__bgs-img {
        max-width: 70%;
        right: -74px;
        top: 60px;
        bottom: -60px;
    }
}

.landing-start__bgs-img img {
    display: none;
    width: auto;
    height: auto;
    max-width: 68%;
    max-height: 80%;
    vertical-align: top;
}

.popup-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 56px 0 0;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    z-index: 10000;
    overflow: hidden;
    overflow-y: auto;
}

.popup-menu .popup-body__lk {
    height: 100%;
}

.popup-menu .popup-menu__profile {
    padding-bottom: 16px;
    border-bottom: 1px solid #eaf0f1;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links {
    margin-top: 16px;
    gap: 4px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li {
    width: 100%;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li a {
    width: 100%;
    text-align: left;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__links li:not(:last-child) {
    height: 24px;
    margin-bottom: 8px;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs {
    margin: 0;
    padding-bottom: 16px;
    justify-content: space-between;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .profile-notifyes {
    margin: 0;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .prof-link {
    height: 32px;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .prof-link .prof-link__name {
    font-family: Montserrat-Bold, sans-serif;
    color: #0A0916;
    font-size: 12px;
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 400px) {
    .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit {
        width: 32px;
        height: 32px;
        font-family: Montserrat-Bold, sans-serif;
        color: #0A0916;
        font-size: 16px;
    }

    .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit span {
        display: none;
    }

    .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .popup-menu__deposit:after {
        content: "+";
    }
}

.popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .nav-menu__moblk-profile_balance {
    height: 32px;
    font-size: 12px;
    background-color: #17b063;
    color: #fff;
    padding: 8px 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-right: 8px;
    font-family: Montserrat-Bold, sans-serif;
}

@media screen and (max-width: 400px) {
    .popup-menu .popup-menu__profile .nav-menu__moblk-profile__accs .popup-menu__userinfo .nav-menu__moblk-profile_balance {
        font-size: 10px;
    }
}

.popup-menu .nav-menu {
    align-items: flex-start;
    margin-top: 16px;
}

.popup-menu .nav-menu li {
    width: 100%;
    height: 24px;
    margin-top: 0 !important;
}

.popup-menu .nav-menu li:not(:last-child) {
    margin-bottom: 16px !important;
}

.popup-menu .nav-menu li a {
    text-align: left;
    width: 100%;
}

.popup-menu .popup__close {
    position: fixed;
    padding: 8px;
    border-radius: 6px;
    background-color: #ffffff;
    width: 32px;
    height: 32px;
    right: 12px;
    top: 24px;
}

.popup-menu .popup__close svg {
    width: 16px;
    font-size: 16px;
}

.popup-menu::-webkit-scrollbar {
    width: 0;
}

.popup-menu.open {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-menu.open .popup__body {
    padding: 0;
}

.popup-menu.open .popup__content {
    opacity: 1 !important;
    -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
    transform: perspective(600px) translate(0, 0) rotateX(0);
    border-radius: 0;
    min-height: 100vh;
}

.popup-menu.open .popup__content__lk {
    min-height: 100vh;
}

@media screen and (max-height: 630px) {
    .popup-menu.open .popup__content {
        height: auto;
    }
}

.popup-menu .popup__content {
    min-height: 100vh;
    position: relative;
    background-color: #fff;
    padding: 16px 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    opacity: 0;
    -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
    transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.ta-center {
    text-align: center !important;
}

.popup-contest {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    z-index: 10000;
    overflow: hidden;
    overflow-y: auto;
}

.popup-contest .popup__body {
    height: auto;
}

.popup-contest .popup-contest__illustration {
    width: 75%;
}

.popup-contest .popup-contest__gide {
    margin-top: 24px;
}

.popup-contest .popup-contest__gide .popup-contest__gide-token {
    display: block;
}

.popup-contest .popup-contest__gide .popup-contest__gide-token button:before {
    content: "Скопировано";
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    margin-bottom: 104px;
    background: white;
    padding: 12px 16px;
    border-radius: 20px;
    color: black;
    display: none;
}

.popup-contest .popup-contest__gide .popup-contest__gide-token button:after {
    content: "";
    position: absolute;
    margin-bottom: 68px;
    width: 10px;
    height: 10px;
    background: white;
    transform: rotate(45deg);
    display: none;
}

.popup-contest .popup-contest__gide .popup-contest__gide-token button.active:before, .popup-contest .popup-contest__gide .popup-contest__gide-token button.active:after {
    display: block;
}

.popup-contest .popup-contest__gide li {
    justify-content: center;
    border-radius: 10px;
    border: 2px dashed #F0EFF6;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.popup-contest .popup-contest__gide li:not(:last-child) {
    margin-bottom: 8px;
}

.popup-contest .popup-contest__gide li a {
    text-decoration: none;
}

.popup-contest .popup-contest__title {
    font-family: Montserrat-Bold, sans-serif;
    font-size: 24px;
    margin: 0;
}

.popup-contest .popup-contest__info p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.popup-contest.popup__close .fa-angle-left, .popup-contest.popup__close .fa-times {
    font-size: 26px;
    color: red;
}

.popup-contest.open {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-contest.open .popup__content {
    opacity: 1 !important;
    -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
    transform: perspective(600px) translate(0, 0) rotateX(0);
}

.popup-contest .popup__close {
    position: absolute;
    right: 16px;
    top: 16px;
}

.popup-contest.popup__body {
    min-height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.popup-contest .popup__content {
    text-align: center;
    width: 600px;
    height: 100%;
    position: relative;
    background-color: #fff;
    padding: 32px 32px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    opacity: 0;
    -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
    transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.popup-contest .popup__content:before {
    content: none;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    z-index: 10000;
    overflow: hidden;
    overflow-y: auto;
}

.popup__body {
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.popup__content {
    width: 600px;
    padding: 32px;
    height: 100%;
    position: relative;
    background-color: #fff;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    opacity: 0;
    -webkit-transform: perspective(600px) translate(0, -100%) rotateX(45deg);
    transform: perspective(600px) translate(0, -100%) rotateX(45deg);
}

.popup__close {
    position: absolute;
    right: 16px;
    top: 16px;
}

.popup__close .fa-angle-left, .popup__close .fa-times {
    font-size: 26px;
    color: red;
}

.popup.open {
    opacity: 1 !important;
    visibility: visible !important;
}

.popup.open .popup__content {
    opacity: 1 !important;
    -webkit-transform: perspective(600px) translate(0, 0) rotateX(0);
    transform: perspective(600px) translate(0, 0) rotateX(0);
}

body.lock {
    overflow: hidden;
}

.popup-bg1 {
    position: absolute;
    bottom: 19px;
    right: -86px;
}

.popup-bg2 {
    position: absolute;
    top: 93px;
    right: 107px;
}

.popup__description {
    max-height: 180px;
    padding: 16px;
    overflow: hidden;
    overflow-y: auto;
    border: 2px solid #eee;
    background: rgba(238, 238, 238, 0.44);
    margin: 0 0 20px 0;
}

.popup__header {
    padding: 0 32px 16px;
    margin: -16px -32px 16px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.34;
    color: #0A0916;
}

.popup__body-buy_bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 0 0;
}

.popup__body-buy_total {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.popup__body-buy_total-label {
    flex: 1 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
}

.popup__body-buy_total-value {
    flex: none;
    font-weight: 900;
    font-size: 18px;
    line-height: 16px;
    text-align: right;
    text-transform: uppercase;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #0A0916;
}

footer {
    background: #0A0916;
    color: #fff;
    padding: 32px 0;
}

.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media screen and (max-width: 1024px) {
    .footer {
        flex-direction: column;
    }
}

.footer-right {
    flex: 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px 32px;
    flex-wrap: wrap;
}

@media screen and (max-width: 772px) {
    .footer-right {
        flex-direction: column;
    }
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 16px;
}

.footer-nav a {
    opacity: 0.5;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    transition: opacity ease 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copyright {
    display: flex;
    gap: 16px;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .footer-copyright {
        flex-direction: column;
    }
}

.footer-copyright__f {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    font-feature-settings: "pnum" on, "lnum" on;
}

.footer__copy {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer__copy:hover .footer__copy-text {
    opacity: 1;
}

.footer__copy:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

.footer__copy img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: opacity ease 0.3s, filter ease 0.3s;
}

.footer__copy-text {
    display: flex;
    flex-direction: column;
    opacity: 0.75;
    transition: opacity ease 0.3s;
}

.footer__copy-text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #ECECEC;
    margin: 0;
}

.footer__copy-name {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #ECECEC;
    margin: 0;
}

.sign-wrapper {
    flex: 1;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.sign-wrapper h2 {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
}

.sign-wrapper button {
    width: 100%;
}

.sign-wrapper .auth-clients {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sign-wrapper .auth-clients li {
    margin: 0;
}

.breadcrumbs {
    width: 100%;
    margin-bottom: 32px;
}

.breadcrumb {
    display: block;
    font-size: 14px;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb li::before {
    content: " > ";
    display: inline-block;
    margin: 0 5px;
}

.breadcrumb li:first-child::before {
    display: none;
}

.breadcrumb a {
    text-decoration: none;
    color: #9493a0;
}

.group-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px 0;
}

.group-header-title {
    font-weight: 900;
    font-size: 54px;
    line-height: 65px;
    color: #0A0916;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .group-header-title {
        font-size: 32px;
        line-height: 150%;
    }
}

.group-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0 0;
}

.services__items-group-list {
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media screen and (max-width: 972px) {
    .services__items-group-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 772px) {
    .services__items-group-list {
        grid-template-columns: 1fr;
    }
}

.services__items-group-list .empty {
    width: 100%;
    grid-column: span 3;
    text-align: center;
}

.services__items-group-list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 9, 22, 0.15);
    border-radius: 16px;
}

@media screen and (max-width: 1024px) {
    .services__items-group-list-item {
        padding: 16px;
    }
}

.services__items-group-list-item .btn {
    width: 100%;
    box-sizing: border-box;
}

.services__items-group-list-item-info {
    flex: 1 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__items-group-list-item__title {
    width: 100%;
    text-align: center;
}

.services__items-group-list-item__title h3 {
    width: 100%;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #0A0916;
}

@media screen and (max-width: 1024px) {
    .services__items-group-list-item__title h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.services__items-group-list-item__list {
    line-height: 1.34;
}

.services__items-group-list-item__list li + li {
    margin-top: 3px;
}

.services__items-group-list-item__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services__items-group-list-item__price {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.services__items-group-list-item__price-value {
    font-weight: bold;
}

.title-input {
    text-align: left !important;
    font-weight: bold;
    font-size: 16px;
    color: #070218;
}

/*
List
 */
.alternative-articles {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media all and (max-width: 772px) {
    .alternative-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width: 572px) {
    .alternative-articles {
        grid-template-columns: repeat(1, 1fr);
    }
}

.alternative-articles .pagination__list {
    grid-column: 1/-1;
    justify-content: center;
}

.alternative-article {
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border-radius: 10px;
}

.alternative-article__image {
    padding: 54.188% 0 0 0;
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 10px;
}

.alternative-article__image::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.alternative-article__image:hover::after {
    opacity: 1;
}

.alternative-article__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.alternative-article__content {
    margin: 14px 0 0 0;
}

.alternative-article__desc {
    margin: 10px 0 0 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.34;
}

.alternative-article__title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.34;
    color: #0A0916;
    word-break: break-word;
}

.alternative-article__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alternative-article__title a::after {
    width: auto;
    height: auto;
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alternative-article__title a:hover::after {
    opacity: 1;
}

.alternative-article__title a:hover {
    color: #0c0b18;
}

/*
View
 */
.page-article {
    width: 100%;
}

.page-article__title {
    margin: 0 0 20px 0;
    word-break: break-word;
}

.page-article__desc {
    word-break: break-word;
}

.page-article__img {
    padding: 40.949% 0 0 0;
    position: relative;
    margin: 0 0 32px 0;
}

.page-article__img-src {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    vertical-align: top;
    object-fit: cover;
    border-radius: 10px;
}

.container-article {
    width: 100%;
    display: flex;
    gap: 32px;
}

@media screen and (max-width: 772px) {
    .container-article {
        flex-direction: column;
    }
}

.container-article__left {
    flex: 1 0;
}

.container-article__right {
    flex: none;
    width: 320px;
}

@media screen and (max-width: 772px) {
    .container-article__right {
        width: 100%;
    }
}

.container-article__right .alternative-article + .alternative-article {
    margin-top: 16px;
}

.container-article__title {
    margin: 0 0 16px 0;
    font-weight: bold;
    font-size: 18px;
}

.idesc {
    line-height: 1.14;
    font-weight: 500;
    font-size: 14px;
    color: #2c2045;
    word-break: break-word;
}

.idesc p {
    margin: 16px 0;
}

.idesc h1, .idesc .h1, .idesc h2, .idesc .h2, .idesc h3, .idesc .h3, .idesc h4, .idesc .h4, .idesc h5, .idesc .h5, .idesc h6, .idesc .h6 {
    margin: 30px 0 12px 0;
}

.idesc ul {
    padding: revert;
    display: revert;
    margin: revert;
    list-style: revert;
    line-height: 1.64;
}

.idesc p + ul {
    margin-top: 10px;
}

.idesc ul > li {
    display: revert;
    margin: revert;
    list-style: revert;
}

.idesc ol {
    padding: revert;
    display: revert;
    margin: revert;
    list-style: revert;
    line-height: 1.64;
}

.idesc p + ul {
    margin-top: 10px;
}

.idesc ol > li {
    display: revert;
    margin: revert;
    list-style: revert;
}

.idesc ul ul, .idesc ul ol, .idesc ol ol, .idesc ol ul {
    margin-left: 20px;
}

.idesc p:first-child, .idesc h1:first-child, .idesc h2:first-child, .idesc h3:first-child, .idesc h4:first-child, .idesc h5:first-child, .idesc h6:first-child {
    margin-top: 0 !important;
}

.idesc p:first-child, .idesc h1:first-child, .idesc h2:first-child, .idesc h3:first-child, .idesc h4:first-child, .idesc h5:first-child, .idesc h6:first-child, .idesc .h1:first-child, .idesc .h2:first-child, .idesc .h3:first-child, .idesc .h4:first-child, .idesc .h5:first-child, .idesc .h6:first-child {
    margin-top: 0 !important;
}

.idesc p:last-child, .idesc h1:last-child, .idesc h2:last-child, .idesc h3:last-child, .idesc h4:last-child, .idesc h5:last-child, .idesc h6:last-child, .idesc .h1:last-child, .idesc .h2:last-child, .idesc .h3:last-child, .idesc .h4:last-child, .idesc .h5:last-child, .idesc .h6:last-child {
    margin-bottom: 0 !important;
}

.idesc table {
    width: 100%;
    margin: 12px 0;
    border: 0;
    border-top: 1px solid #ddd;
    border-collapse: collapse;
}

.idesc table td, .idesc table th {
    padding: 6px 9px;
    border: 0;
    border-bottom: 1px solid #ddd;
}

.idesc table tr:first-child td, .idesc table th {
    font-weight: bold;
}

.idesc table tr:hover > td {
    background-color: rgba(0, 0, 0, 0.01);
}

.idesc img {
    max-width: 500px;
    height: auto;
    border-radius: 5px;
}

@media all and (max-width: 520px) {
    .idesc img {
        max-width: 100%;
    }
}

.list-icon {
    list-style: none;
}

.list-icon > li {
    padding-left: 24px;
    position: relative;
}

.list-icon-dot > li::before {
    content: "";
    width: 14px;
    height: 14px;
    float: left;
    margin: 4px 0 0 -24px;
    background: no-repeat 0 0 url(/static/img/icons/list-dot.svg);
    background-size: 100% 100%;
}

.list-icon-checked > li::before {
    content: "";
    width: 14px;
    height: 14px;
    float: left;
    margin: 4px 0 0 -24px;
    background: no-repeat 0 0 url(/static/img/icons/list-check.svg);
    background-size: 100% 100%;
}

.list-icon-unchecked > li::before {
    content: "";
    width: 14px;
    height: 14px;
    float: left;
    margin: 4px 0 0 -24px;
    background: no-repeat 0 0 url(/static/img/icons/list-uncheck.svg);
    background-size: 100% 100%;
}

* {
    box-sizing: border-box;
}

.d-none {
    display: none !important;
}

html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    min-width: 360px;
    position: relative;
    overflow-x: hidden;
    color: #0A0916;
    background-color: white;
}

body:not(.landing) {
    background-color: #F2F5F6;
}

html.lock,
body.lock {
    overflow: hidden;
}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 164px - 32px);
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.container {
    width: 100%;
    display: flex;
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: auto;
    margin-left: auto;
    max-width: 1376px;
    height: 100%;
}

.flex {
    display: flex;
}

.flex.wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.mt-32 {
    margin-top: 32px;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.w100 {
    width: 100%;
}

.w25 {
    width: 25%;
}

.w50 {
    width: 50%;
}

#emogi-info {
    background: #ECECEC;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    width: max-content;
    cursor: pointer;
    transition: background ease 0.3s;
}

#emogi-info:hover {
    background: #dadada;
}

#emoji-tooltip {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    color: #0A0916;
    font-weight: 400;
    padding: 16px;
    font-size: 16px;
    display: none;
    z-index: 100;
}

#emoji-tooltip[data-show] {
    display: block;
}

#arrow,
#arrow::before {
    position: absolute;
    width: 8px;
    height: 8px;
    background: inherit;
}

#arrow {
    visibility: hidden;
}

#arrow::before {
    visibility: visible;
    content: "";
    transform: rotate(45deg);
}

.tabs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 8px;
    gap: 8px;
    border: 1px solid rgba(10, 9, 22, 0.1);
    border-radius: 16px;
}

.tabs button, .tabs a {
    width: 100%;
    white-space: nowrap;
}

@media screen and (max-width: 672px) {
    .tabs {
        width: 100%;
        flex-wrap: wrap;
    }

    .tabs button, .tabs a {
        width: 100%;
    }
}

.btn-filter {
    background: #ECECEC;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    width: max-content;
    cursor: pointer;
    transition: background ease 0.3s;
    border: none;
}

.btn-filter:hover {
    background: #dadada;
}

@media screen and (max-width: 1024px) {
    .filter-block {
        flex-direction: column;
    }

    .filter-block .filter {
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .btn-filter {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .filter-block {
        display: none;
    }

    .filter-block.open {
        display: flex;
    }
}

h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
}

h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}

h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.faq__item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 16px;
    text-align: left;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 16px;
}

.faq__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #0A0916;
}

.faq-content {
    display: none;
    width: 100%;
}

.faq-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #494857;
}

.button-search.is-checked {
    background: #0A0916;
    color: white;
}

b {
    font-weight: 800;
}

pre {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 16px;
    gap: 8px;
    width: 100%;
    background: rgba(10, 9, 22, 0.05);
    border: 1px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #66647A;
}

@media screen and (max-width: 1024px) {
    pre {
        font-size: 12px;
        white-space: pre-wrap;
    }
}

.api-menu {
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
}

.api-menu li {
    width: 100%;
}

.api-menu li a {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .faq-row {
        flex-direction: column-reverse;
    }

    .faq-row .w25 {
        width: 100%;
    }
}

.notification-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 16px;
    gap: 16px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
}

.notification-item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.notification-item__desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #66647A;
}

.notification-item__time {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #66647A;
}

.support-list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    width: 100%;
}

.support-list__item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 1024px) {
    .support-list__item {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 472px) {
    .support-list__item {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.support-list__item-left {
    flex: 1 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-list__item-user {
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 8px;
}

@media screen and (max-width: 1024px) {
    .support-list__item-user {
        flex-direction: row-reverse;
    }
}

.support-list__item-user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    gap: 4px;
}

@media screen and (max-width: 1024px) {
    .support-list__item-user-info {
        align-items: flex-start;
    }
}

.support-list__item-user-info h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #0A0916;
}

@media screen and (max-width: 472px) {
    .support-list__item-user-info h4 {
        font-size: 14px;
        line-height: 14px;
    }
}

.support-list__item-user-info p {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    opacity: 0.5;
    white-space: nowrap;
}

.support-list__item-user-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .support-list__item-user-avatar {
        width: 30px;
        height: 30px;
    }
}

.support-list__item-user-avatar img {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(10, 9, 22, 0.25);
    border-radius: 999999px;
}

.support-list__item-info {
    flex: 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    width: 100%;
}

.support-list__item-info h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #0A0916;
}

@media screen and (max-width: 472px) {
    .support-list__item-info h4 {
        font-size: 14px;
        line-height: 14px;
    }
}

.support-list__item-info p {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    opacity: 0.5;
}

.support-list__item-status {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 1024px) {
    .support-list__item-status {
        width: 30px;
        height: 30px;
    }
}

.support-list__item-status img {
    width: 100%;
    height: 100%;
}

.support-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
    gap: 16px;
    width: max-content;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
}

.support-item__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
}

.support-item__info-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 16px;
}

.support-item__info-header h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
}

.support-item__info-header span {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    opacity: 0.5;
}

.support-item__info p {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #504F64;
}

.support-item__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.support-item__avatar img {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(10, 9, 22, 0.25);
    border-radius: 999999px;
}

.support-item__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 10px;
    width: 100%;
}

.support-item__wrapper.user-support {
    align-items: flex-start;
}

.support-textarea {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .support-textarea {
        flex-direction: column;
    }

    .support-textarea button, .support-textarea textarea {
        width: 100%;
    }
}

.support-textarea textarea {
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #0A0916;
}

.support-textarea textarea::placeholder {
    opacity: 0.5;
}

.support-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 16px;
    border: 2px solid rgba(10, 9, 22, 0.05);
    border-radius: 8px;
    width: 100%;
}

.support-header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    width: 100%;
}

.support-header__info h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
}

.support-header__info p {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "pnum" on, "lnum" on;
    opacity: 0.5;
}

.pagination__list {
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination__list li a,
.pagination__list li span {
    opacity: 0.75;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    min-width: 30px;
    height: 30px;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #091D27;
    border: 1px solid rgba(10, 9, 22, 0.05);
    background: #fff;
    border-radius: 3px;
    transition: opacity ease 0.3s, background ease 0.3s, color ease 0.3s;
    cursor: pointer;
}

.pagination__list li a:hover,
.pagination__list li span:hover {
    background: #0A0916;
    opacity: 1;
    color: white;
}

.pagination__list li.pagination-active a {
    background: #0A0916;
    opacity: 1;
    color: white;
    cursor: default;
}

.pagination__list li.pagination-disabled a,
.pagination__list li.pagination-disabled span {
    background: #0A0916;
    color: white;
    opacity: 0.5;
    cursor: default;
}

.admin-panel-link {
    color: #e03131 !important;
}

.group-title-h2 {
    text-align: center;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 1rem;
}

.group-title-h3 {
    text-align: center;
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 1rem;
}