/*
 * ==========================================================================
 * Reset
 * ==========================================================================
*/

* {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    height: 100%;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

input[disabled],
input[readonly] {
    cursor: not-allowed;
}

button {
    cursor: pointer;
    background-color: transparent;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button[disabled] {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

a {
    color: inherit;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

/*
 * ==========================================================================
 * /Reset
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Variables
 * ==========================================================================
*/

:root {
    --header-shrink-offset: 48px;
}

@media (width < 1024px) {
    :root {
        --header-shrink-offset: 0px;
    }
}

/*
 * ==========================================================================
 * /Variables
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Layout
 * ==========================================================================
*/

body {
    font-family: "Google Sans", sans-serif;
    background-color: #1b1b29;
    color: #1b1b29;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}

body.page--locked {
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.main {
    flex: 1 0 auto;
    margin-top: 152px;
}

.footer {
    flex: 0 0 auto;
}

.container {
    max-width: 1208px;
    padding: 0 4px;
    margin: 0 auto;
}

@media (width < 1024px) {
    .main {
        margin-top: 108px;
    }
}

@media (width < 768px) {
    .main {
        margin-top: 80px;
    }
}

/*
 * ==========================================================================
 * /Layout
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Global UI Components
 * ==========================================================================
*/

/*
 * Masonry
 * ==========================================================================
*/

[data-masonry-container] {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease 0s,
        visibility 0.4s ease 0s;
}

[data-masonry-container].is-masonry-ready {
    opacity: 1;
    visibility: visible;
}

/*
 * /Masonry
 * ==========================================================================
*/

/*
 * Button
 * ==========================================================================
*/

.btn {
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    border-radius: 28px;
    min-height: 56px;
    font-weight: 500;
    font-size: 18px;
    transition:
        color ease 0.2s 0s,
        background-color ease 0.2s 0s,
        border-color ease 0.2s 0s;
}

.btn svg {
    flex-shrink: 0;
}

.btn--primary {
    color: #ffffff;
    background-color: #ff3d00;
}

.btn--primary-active {
    color: #ff3d00;
    background-color: #ffffff;
}

.btn--dark {
    background-color: #1b1b29;
    color: #fff;
}

.btn--dark-active {
    background-color: #ff3d00;
}

.btn--light {
    color: #1b1b29;
    background-color: #ffffff;
}

.btn--light-active {
    color: #ffffff;
    background-color: #ff3d00;
}

.btn--dark-outline {
    border: 1px solid #1b1b29;
}

.btn--dark-outline-active {
    background-color: #ff3d00;
    border-color: #ff3d00;
    color: #fff;
}

.btn--dim-outline {
    border: 1px solid #d0d0d0;
}

.btn--dim-outline-active {
    background-color: #1b1b29;
    color: #fff;
    border-color: #1b1b29;
}

.btn--light-outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn--light-outline-active {
    background-color: #ff3d00;
    border-color: #ff3d00;
}

.btn--rounded {
    border-radius: 50%;
    width: 56px;
    padding: 0px;
}

@media (any-hover: hover) {
    .btn--primary:hover {
        color: #ff3d00;
        background-color: #ffffff;
    }

    .btn--dark:hover {
        background-color: #ff3d00;
    }

    .btn--light:hover {
        color: #ffffff;
        background-color: #ff3d00;
    }

    .btn--light-outline:hover {
        background-color: #ff3d00;
        border-color: #ff3d00;
    }

    .btn--dark-outline:hover {
        background-color: #ff3d00;
        border-color: #ff3d00;
        color: #fff;
    }

    .btn--dim-outline:hover {
        background-color: #1b1b29;
        color: #fff;
        border-color: #1b1b29;
    }
}

@media (width < 1024px) {
    .btn {
        min-height: 48px;
        font-size: 16px;
        padding: 5px 20px;
        border-radius: 25px;
    }

    .btn--rounded {
        width: 48px;
        padding: 0px;
    }
}

@media (width < 768px) {
    .btn {
        min-height: 44px;
        font-size: 14px;
        padding: 4px 16px;
        gap: 10px;
        border-radius: 22px;
    }

    .btn--rounded {
        width: 44px;
        padding: 0px;
    }
}

/*
 * /Button
 * ==========================================================================
*/

/*
 * Title
 * ==========================================================================
*/

.title {
    font-weight: 500;
}

.title--light {
    color: #fff;
}

.title--h1 {
    font-size: 62px;
    line-height: 1.1;
}

.title--h2 {
    font-size: 34px;
    line-height: 1.2;
}

.title--h3 {
    font-size: 23px;
    line-height: 1.3;
}

.title--h4 {
    font-size: 20px;
    line-height: 1.3;
}

@media (width < 1024px) {
    .title--h1 {
        font-size: 45px;
    }

    .title--h2 {
        font-size: 27px;
    }

    .title--h3 {
        font-size: 20px;
    }

    .title--h4 {
        font-size: 18px;
    }
}

@media (width < 768px) {
    .title--h1 {
        font-size: 28px;
        line-height: 1.15;
    }

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

    .title--h3 {
        font-size: 16px;
        line-height: 1.25;
    }

    .title--h4 {
        font-size: 14px;
        line-height: 1.25;
    }
}

/*
 * /Title
 * ==========================================================================
*/

/*
 * Text
 * ==========================================================================
*/

.text--l,
.text--m {
    line-height: 1.5;
}

.text--s {
    font-weight: 500;
    font-size: 11px;
    line-height: 1.5;
}

@media (width < 768px) {
    .text--l {
        font-size: 14px;
        line-height: 1.3;
    }

    .text--m {
        font-size: 12px;
        line-height: 1.3;
    }

    .text--s {
        font-size: 10px;
        line-height: 1.4;
    }
}

/*
 * /Text
 * ==========================================================================
*/

/*
 * Card
 * ==========================================================================
*/

.card--l {
    padding: 96px 40px 40px;
    border-radius: 64px;
}

.card--m {
    padding: 40px;
    border-radius: 64px;
}

.card--s {
    padding: 24px;
    border-radius: 32px;
}

.card--primary {
    background-color: #fff;
}

.card--dim {
    background-color: #f5f5f5;
}

.card--primary-outline {
    background-color: #fff;
    border: 1px solid #ff3d00;
}

.card--light-outline {
    border: 1px solid #fff;
}

@media (width < 1280px) {
    .card--l {
        padding: 96px 18px 18px;
        border-radius: 36px;
    }
}

@media (width < 1024px) {
    .card--l {
        padding: 68px 18px 18px;
    }

    .card--m {
        border-radius: 50px;
        padding: 29px;
    }

    .card--s {
        padding: 18px;
        border-radius: 28px;
    }
}

@media (width < 768px) {
    .card--l {
        padding: 40px 18px 18px;
    }

    .card--m {
        border-radius: 36px;
        padding: 18px;
    }

    .card--s {
        padding: 14px;
        border-radius: 24px;
    }
}

/*
 * /Card
 * ==========================================================================
*/

/*
 * Tag
 * ==========================================================================
*/

.tag {
    font-weight: 500;
    font-size: 11px;
    line-height: 1.5;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 12px;
}

.tag--primary {
    border: 1px solid #d0d0d0;
}

@media (width < 768px) {
    .tag {
        font-size: 10px;
        min-height: 18px;
        padding: 0 7px;
        border-radius: 9px;
    }
}

/*
 * /Tag
 * ==========================================================================
*/

/*
 * Select
 * ==========================================================================
*/

.select {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.select__trigger {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 24px;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 28px;
    cursor: pointer;
    transition: border-color 0.2s ease 0s;
}

.select__content {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
}

.select__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: color 0.2s ease 0s;
}

.select__icon svg {
    max-width: 100%;
    max-height: 100%;
}

.select__text {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    transition: color 0.2s ease 0s;
}

.select__arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.select__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #1b1b29;
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

.select__list {
    max-height: calc(56px * 5);
    overflow-y: auto;
}

.select__option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-height: 56px;
}

.select__option--active {
    background-color: #1b1b29;
}

.select__option--active .select__text,
.select__option--active .select__icon {
    color: #fff;
}

.select--active .select__trigger {
    border-color: #1b1b29;
}

.select--active .select__arrow {
    transform: rotate(180deg);
}

.select--active .select__dropdown {
    opacity: 1;
    visibility: visible;
}

@media (any-hover: hover) {
    .select__trigger:hover {
        border-color: #1b1b29;
    }

    .select__option:hover {
        background-color: #1b1b29;
    }

    .select__option:hover .select__text,
    .select__option:hover .select__icon {
        color: #fff;
    }
}

@media (width < 768px) {
    .select__trigger {
        min-height: 44px;
        padding: 9px 14px;
        border-radius: 22px;
    }

    .select__text {
        font-size: 14px;
    }

    .select__dropdown {
        border-radius: 22px;
    }

    .select__list {
        max-height: calc(44px * 5);
    }

    .select__option {
        min-height: 44px;
        padding: 10px 14px;
    }
}

/*
* Select
* ==========================================================================
*/

/*
* Input
* ==========================================================================
*/

.input {
    position: relative;
}

.input input {
    min-height: 56px;
    width: 100%;
    border-radius: 28px;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #d0d0d0;
    padding: 15px 24px;
    transition: border-color 0.2s ease 0s;
}

.input input::placeholder {
    color: #d0d0d0;
}

.input input:focus {
    border-color: #1b1b29;
}

.input--with-icon input {
    padding-left: 58px;
}

.input--with-icon .input__icon {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 24px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.input--with-icon .input__icon svg {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

@media (any-hover: hover) {
    .input--with-icon .input__icon:hover {
        cursor: text;
    }
}

@media (width < 768px) {
    .input input {
        min-height: 44px;
        padding: 10px 14px;
        border-radius: 22px;
        font-size: 14px;
    }

    .input--with-icon input {
        padding-left: 48px;
    }

    .input--with-icon .input__icon {
        left: 14px;
    }
}

/*
* /Input
* ==========================================================================
*/

/*
* Counter
* ==========================================================================
*/

.counter {
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter__input {
    flex-grow: 1;
}

.counter__btn {
    flex-shrink: 0;
}

@media (width < 1024px) {
    .counter__btn {
        width: 56px;
        min-height: 56px;
        border-radius: 50%;
    }
}

@media (width < 768px) {
    .counter__btn {
        width: 44px;
        min-height: 44px;
    }
}

/*
* /Counter
* ==========================================================================
*/

/*
 * Accordion
 * ==========================================================================
*/

.accordion__panel {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

/*
 * /Accordion
 * ==========================================================================
*/

/*
 * Textarea
 * ==========================================================================
*/

.textarea textarea {
    width: 100%;
    min-height: 256px;
    resize: none;
    border-radius: 28px;
    background-color: #fff;
    border: 1px solid #d0d0d0;
    padding: 24px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    transition: border-color 0.2s ease 0s;
}

.textarea textarea::placeholder {
    color: #d0d0d0;
}

.textarea textarea:focus {
    border-color: #1b1b29;
}

@media (width < 768px) {
    .textarea textarea {
        border-radius: 22px;
        font-size: 14px;
        min-height: 168px;
        padding: 14px;
    }
}

/*
 * /Textarea
 * ==========================================================================
*/

/*
 * Table
 * ==========================================================================
*/

.table-wrapper {
    background-color: #f5f5f5;
    overflow-x: auto;
}

.table-wrapper--bordered {
    padding: 0 24px;
    border-radius: 32px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th {
    font-weight: 500;
}

.table tr:first-child td {
    border-top: 1px solid #d0d0d0;
}

.table td {
    border-bottom: 1px solid #d0d0d0;
}

.table tr:last-child td {
    border-bottom: none;
}

.table th,
.table td {
    line-height: 1.25;
    padding: 18px 10px;
    vertical-align: top;
}

.table th:first-child,
.table td:first-child {
    padding-left: 0;
}

.table th:last-child,
.table td:last-child {
    padding-right: 0;
}

@media (width < 768px) {
    .table-wrapper--bordered {
        padding: 0 18px;
        border-radius: 24px;
    }

    .table th,
    .table td {
        font-size: 14px;
        padding: 15px 10px;
    }
}

/*
 * /Table
 * ==========================================================================
*/

/*
 * Checkbox
 * ==========================================================================
*/

.checkbox input {
    display: none;
}

.checkbox label {
    line-height: 1.5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    position: relative;
}

.checkbox label::before {
    content: "";
    width: 32px;
    flex-shrink: 0;
    height: 32px;
    align-self: flex-start;
    border-radius: 12px;
    z-index: 1;
    border: 1px solid #d0d0d0;
    transition: border-color 0.2s ease 0s;
}

.checkbox label a {
    text-decoration: underline;
    transition: opacity 0.2s ease 0s;
}

.checkbox__checked-icon {
    position: absolute;
    z-index: 2;
    width: 32px;
    flex-shrink: 0;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease 0s;
}

.checkbox__checked-icon svg {
    flex-shrink: 0;
}

.checkbox input:checked + label::before {
    border-color: #1b1b29;
}

.checkbox input:checked + label .checkbox__checked-icon {
    opacity: 1;
}

@media (any-hover: hover) {
    .checkbox label a:hover {
        opacity: 0.7;
    }
}

@media (width < 768px) {
    .checkbox label {
        column-gap: 12px;
        font-size: 14px;
    }

    .checkbox label::before {
        width: 25px;
        height: 25px;
        border-radius: 8px;
    }

    .checkbox__checked-icon {
        width: 25px;
        height: 25px;
        border-radius: 8px;
    }
}

/*
 * /Checkbox
 * ==========================================================================
*/

/*
 * Popup
 * ==========================================================================
*/

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.67);
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.4s ease;
}

.popup--open {
    opacity: 1;
    visibility: visible;
}

.popup--open .popup__content {
    opacity: 1;
}

.popup__body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}

.popup__content {
    position: relative;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px 0px #1b2b4c26;
    max-width: 596px;
    width: 100%;
}

.popup__close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(calc(100% + 4px));
}

@media (width < 768px) {
    .popup__content {
        padding: 24px;
    }

    .popup__close {
        transform: translateY(calc(-100% - 4px));
    }
}

/*
 * /Popup
 * ==========================================================================
*/

/*
 * Alert
 * ==========================================================================
*/

.alert {
    padding: 24px 64px 24px 24px;
    border-radius: 28px;
    width: 100%;
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
}

.alert.hidden {
    display: none;
}

.alert--error {
    background-color: #ff3d00;
}

.alert--success {
    background-color: #64dd17;
}

.alert__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 28px;
    transition: background-color 0.2s ease 0s;
    border-radius: 8px;
    cursor: pointer;
}

.alert__close::before,
.alert__close::after {
    content: "";
    width: 16px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    transition: background-color 0.2s ease 0s;
    border-radius: 16px;
    top: 50%;
    left: 50%;
}

.alert__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.alert__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.alert__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert__link {
    text-decoration: underline;
    transition: opacity 0.2s ease 0s;
}

@media (any-hover: hover) {
    .alert__link:hover {
        opacity: 0.7;
        text-decoration: underline;
    }

    .alert__close:hover {
        background-color: #fff;
    }

    .alert--error .alert__close:hover::before,
    .alert--error .alert__close:hover::after {
        background-color: #ff3d00;
    }

    .alert--success .alert__close:hover::before,
    .alert--success .alert__close:hover::after {
        background-color: #64dd17;
    }
}

@media (width < 1024px) {
    .alert {
        font-size: 16px;
        padding: 18px 56px 18px 18px;
    }

    .alert__close {
        top: 16px;
        right: 16px;
    }
}

@media (width < 768px) {
    .alert {
        padding: 14px 52px 14px 14px;
        font-size: 14px;
    }

    .alert__close {
        top: 10.5px;
        right: 14px;
    }
}

/*
 * /Alert
 * ==========================================================================
*/

/*
 * Pagination
 * ==========================================================================
*/

.pagination {
    width: 100%;
}

.pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.pagination__prev {
    transform: rotate(180deg);
}

/*
 * /Pagination
 * ==========================================================================
*/

/*
 * ==========================================================================
 * /Global UI Components
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Widgets
 * ==========================================================================
*/

/*
 * Header
 * ==========================================================================
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #1b1b29;
}

.header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 48px 40px;
    transition: padding 0.3s ease 0s;
}

.header__logo {
    flex-shrink: 0;
    color: #fff;
}

.header__logo img {
    height: 26px;
}

.header__burger {
    display: none;
    cursor: pointer;
}

.header--scrolled .header__body {
    padding: 24px 40px;
}

.menu-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
    background-color: #00000080;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease 0s,
        visibility 0.4s ease 0s;
}

.menu-header__close {
    display: none;
    cursor: pointer;
}

.menu-header__body {
    transition: transform 0.4s ease 0s;
}

.menu-header__list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.account-header {
    display: flex;
    gap: 4px;
}

.account-header__balance {
    white-space: nowrap;
}

.account-header__balance,
.account-header__profile,
.account-header__logout {
    flex-shrink: 0;
}

@media (width < 1280px) {
    .header {
        border-radius: 0 0 36px 36px;
    }

    .header__body {
        padding: 48px 18px;
    }

    .header--scrolled .header__body {
        padding: 24px 18px;
    }

    .account-header__balance {
        padding: 0;
        border-radius: 50%;
        width: 56px;
    }

    .account-header__balance span {
        display: none;
    }
}

@media (width < 1024px) {
    .header__body {
        justify-content: initial;
        padding: 30px 18px;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__logo img {
        height: 22px;
    }

    .header__burger {
        display: flex;
        flex-shrink: 0;
    }

    .header--scrolled .header__body {
        padding: 30px 18px;
    }

    .menu-header__body {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 11;
        height: 100vh;
        background-color: #fff;
        padding: 30px 22px;
        width: 360px;
        box-shadow: 0 4px 15px 0 #1b2b4c26;
        border-radius: 36px 0 0 36px;
        transform: translateX(100%);
        overflow-y: auto;
    }

    .menu-header__close {
        display: flex;
        margin-left: auto;
    }

    .menu-header__nav {
        margin-top: 44px;
    }

    .menu-header__list {
        flex-direction: column;
        align-items: start;
        padding: 0 26px;
        gap: 44px;
    }

    .menu-header__link {
        padding: 0;
        min-height: auto;
        font-weight: 400;
        font-size: 28px;
        line-height: 1.2;
        text-align: left;
    }

    .menu-header__link:hover,
    .menu-header__link {
        background-color: transparent;
        color: #1b1b29;
    }

    .menu-header--active .menu-header__body {
        transform: translateX(0);
    }

    .menu-header--active .menu-header__overlay {
        opacity: 1;
        visibility: visible;
    }

    .account-header {
        gap: 12px;
    }

    .account-header__login,
    .account-header__profile {
        border-radius: 50%;
        padding: 0;
        width: 48px;
    }

    .account-header__login span,
    .account-header__profile span {
        display: none;
    }

    .account-header__balance {
        width: 48px;
    }

    .account-header__logout {
        display: none;
    }

    .account-header__balance,
    .account-header__profile {
        color: #fff;
        background-color: #ff3d00;
    }
}

@media (width < 1024px) and (any-hover: hover) {
    .account-header__balance:hover,
    .account-header__profile:hover {
        background-color: #fff;
        color: #ff3d00;
    }
}

@media (width < 768px) {
    .header__body {
        padding: 18px;
        gap: 4px;
    }

    .header__logo img {
        height: 19px;
    }

    .header--scrolled .header__body {
        padding: 18px;
    }

    .menu-header__body {
        padding: 18px 22px 30px;
    }

    .account-header {
        gap: 4px;
    }

    .account-header__login,
    .account-header__balance,
    .account-header__profile {
        width: 44px;
    }
}

@media (width < 576px) {
    .menu-header__body {
        width: calc(320 / 360 * 100%);
    }
}

/*
 * /Header
 * ==========================================================================
*/

/*
 * Footer
 * ==========================================================================
*/

.footer {
    color: #ffffff;
}

.footer__body {
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px 40px;
}

.footer__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px 40px;
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 40px;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0 12px;
    transition: opacity 0.2s ease 0s;
}

.footer__link span {
    text-decoration: underline;
}

@media (any-hover: hover) {
    .footer__link:hover {
        opacity: 0.7;
    }
}

@media (width < 1280px) {
    .footer__body {
        padding: 48px 18px;
    }
}

@media (width < 1024px) {
    .footer__body {
        flex-direction: column-reverse;
    }
}

@media (width < 768px) {
    .footer__body {
        padding: 24px 18px;
        gap: 32px 15px;
        align-items: start;
    }

    .footer__links {
        align-items: start;
        flex-direction: column-reverse;
        gap: 32px 15px;
    }

    .footer__socials {
        gap: 32px 15px;
        justify-content: start;
    }
}

/*
 * /Footer
 * ==========================================================================
*/

/*
 * Auth Popup
 * ==========================================================================
*/

.auth-popup__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
}

.auth-popup__text {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.auth-popup__text button {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    transition: opacity 0.2s ease 0s;
}

.auth-popup__form {
    margin-top: 32px;
}

.auth-popup__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-popup__checkbox {
    margin-top: 28px;
}

.auth-popup__bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px 32px;
}

.auth-popup__socials {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.auth-popup__reset {
    transition: opacity 0.2s ease 0s;
    text-decoration: underline;
}

@media (any-hover: hover) {
    .auth-popup__text button:hover,
    .auth-popup__reset:hover {
        opacity: 0.7;
        text-decoration: underline;
    }
}

@media (width < 768px) {
    .auth-popup__top {
        flex-direction: column;
        text-align: center;
    }

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

    .auth-popup__text {
        font-size: 14px;
        line-height: 1.3;
    }

    .auth-popup__form {
        margin-top: 24px;
    }

    .auth-popup__checkbox {
        margin-top: 16px;
    }

    .auth-popup__bottom {
        margin-top: 4px;
        flex-direction: column;
    }

    .auth-popup__submit {
        width: 100%;
    }

    .auth-popup__socials {
        margin-left: 0;
    }
}

/*
 * /Auth Popup
 * ==========================================================================
*/

/*
 * Register Popup
 * ==========================================================================
*/

.register-popup__bottom {
    margin-top: 28px;
}

@media (width < 1024px) {
    .register-popup__bottom {
        margin-top: 16px;
    }
}

/*
 * /Register Popup
 * ==========================================================================
*/

/*
 * Change Email Popup
 * ==========================================================================
*/

.change-email-popup__form {
    margin-top: 32px;
}

.change-email-popup__alert {
    margin-bottom: 16px;
}

.change-email-popup__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.change-email-popup__submit {
    margin-top: 40px;
}

.change-email-popup__submit .spinner {
    display: none;
}

.change-email-popup__submit.active {
    opacity: 0.7;
    pointer-events: none;
}

@media (width < 768px) {
    .change-email-popup__title {
        text-align: center;
    }

    .change-email-popup__form {
        margin-top: 24px;
    }

    .change-email-popup__alert {
        margin-bottom: 12px;
    }

    .change-email-popup__submit {
        margin-top: 4px;
        width: 100%;
    }
}

/*
 * /Change Email Popup
 * ==========================================================================
*/

/*
 * ==========================================================================
 * /Widgets
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Components
 * ==========================================================================
*/

/*
 * Reviews
 * ==========================================================================
*/

.reviews {
    padding: 48px 0 0;
}

.reviews--block {
    padding: 96px 0;
}

.reviews__title {
    text-align: center;
}

.reviews__items {
    margin-top: 88px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 4px;
}

.reviews__items.is-masonry-ready {
    display: block;
    margin-bottom: -4px;
}

.reviews__bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reviews__bottom.is-load-more-control-hidden {
    display: none;
}

.item-reviews {
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition:
        opacity 0.3s ease 0s,
        visibility 0.3s ease 0s;
}

.item-reviews.is-load-more-hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.item-reviews.is-load-more-preparing {
    opacity: 0;
    visibility: hidden;
}

.item-reviews__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.item-reviews__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.item-reviews__user {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
    gap: 12px;
}

.item-reviews__avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.item-reviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-reviews__username {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.item-reviews__stars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 4px;
}

.item-reviews__star {
    display: flex;
    flex-shrink: 0;
}

@media (width < 1024px) {
    .reviews--block {
        padding: 70px 0;
    }

    .reviews__items {
        margin-top: 64px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 768px) {
    .reviews {
        padding: 40px 0 0;
    }

    .reviews--block {
        padding: 44px 0;
    }

    .reviews__items {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .reviews__bottom {
        margin-top: 18px;
    }

    .item-reviews {
        gap: 12px;
    }

    .item-reviews__user {
        gap: 8px;
    }

    .item-reviews__avatar {
        width: 24px;
        height: 24px;
    }

    .item-reviews__star svg {
        width: calc(13 / 12 * 8px);
        height: 8px;
    }
}

/*
 * /Reviews
 * ==========================================================================
*/

/*
 * Blog
 * ==========================================================================
*/

.blog__title,
.blog__text {
    text-align: center;
}

.blog__main {
    margin-top: 88px;
}

.blog__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 16px 18px;
}

.blog__items.is-masonry-ready {
    display: block;
    margin-bottom: -16px;
}

.blog__bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.item-blog {
    border-radius: 32px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: box-shadow 0.2s ease 0s;
}

.item-blog__image {
    border-radius: 32px;
    overflow: hidden;
}

.item-blog__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.item-blog__content {
    padding: 24px;
}

.item-blog__info {
    margin-top: 33px;
    display: flex;
    align-items: center;
    gap: 8px 12px;
}

.item-blog__tags {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.item-blog__date {
    white-space: nowrap;
}

@media (any-hover: hover) {
    .item-blog:hover {
        box-shadow: 0px 4px 15px 0 #1b2b4c26;
    }
}

@media (width < 1024px) {
    .blog__main {
        margin-top: 60px;
    }

    .blog__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 768px) {
    .blog__main {
        margin-top: 35px;
    }

    .blog__items {
        grid-template-columns: repeat(1fr);
    }

    .blog__bottom {
        margin-top: 18px;
    }

    .item-blog,
    .item-blog__image {
        border-radius: 20px;
    }

    .item-blog__content {
        padding: 14px;
    }

    .item-blog__info {
        margin-top: 13px;
        gap: 8px;
    }
}

/*
 * /Blog
 * ==========================================================================
*/

/*
 * Disclaimer
 * ==========================================================================
*/

.disclaimer {
    color: #fff;
}

.disclaimer__body {
    padding: 48px 40px 0;
}

@media (width < 1280px) {
    .disclaimer__body {
        padding: 48px 18px 0;
    }
}

@media (width < 768px) {
    .disclaimer__body {
        padding: 24px 18px 0;
    }
}

/*
 * /Disclaimer
 * ==========================================================================
*/

/*
 * Page Nav
 * ==========================================================================
*/

.page-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

/*
 * /Page Nav
 * ==========================================================================
*/

/*
 * Callout
 * ==========================================================================
*/

.callout__main {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 32px;
}

@media (width < 768px) {
    .callout__title,
    .callout__text {
        text-align: center;
    }

    .callout__main {
        flex-direction: column-reverse;
    }
}

/*
 * /Callout
 * ==========================================================================
*/

/*
 * ==========================================================================
 * /Components
 * ==========================================================================
*/

/*
 * ==========================================================================
 * Sections
 * ==========================================================================
*/

/*
 * Page: Index
 * ==========================================================================
*/

/*
 * Section: Intro
 * --------------------------------------------------------------------------
*/

.intro {
    padding: 48px 0 4px;
}

.intro__title {
    text-align: center;
    padding-bottom: 84px;
    font-weight: 400;
}

.intro__main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.intro__video {
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background-color: #ff3d00;
}

.intro__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 4px;
}

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

.calculator-intro__fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calculator-intro__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 30px;
}

.calculator-intro__button {
    flex-shrink: 0;
}

.step-intro {
    text-align: left;
    min-height: 296px;
    transition:
        background-color 0.2s ease 0s,
        border-color 0.2s ease 0s;
}

.step-intro__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-intro__title {
    transition: color 0.2s ease 0s;
}

.step-intro__icon {
    margin-top: auto;
    width: 48px;
    min-height: 48px;
}

.step-intro__icon:hover {
    background-color: #ff3d00;
    color: #fff;
}

@media (any-hover: hover) {
    .step-intro:hover {
        background-color: #ff3d00;
        border-color: #ff3d00;
    }

    .step-intro:hover .step-intro__title {
        color: #fff;
    }

    .step-intro:hover .step-intro__icon {
        background-color: #fff;
        color: #ff3d00;
    }
}

@media (width < 1280px) {
    .intro__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-intro {
        min-height: auto;
    }
}

@media (width < 1024px) {
    .intro {
        padding: 37px 0 4px;
    }

    .intro__title {
        padding-bottom: 60px;
    }

    .intro__main {
        grid-template-columns: minmax(0, 1fr);
    }

    .intro__video {
        order: 1;
        min-height: 466px;
        border-radius: 50px;
    }

    .intro__calculator {
        order: 2;
        padding: 40px 18px 18px;
    }

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

    .calculator-intro__title,
    .calculator__intro__result,
    .calculator-intro__text {
        text-align: center;
    }

    .calculator-intro__result {
        font-size: 45px;
    }

    .calculator-intro__bottom {
        flex-direction: column;
    }
}

@media (width < 768px) {
    .intro {
        padding: 26px 0 4px;
    }

    .intro__title {
        padding-bottom: 38px;
    }

    .intro__video {
        min-height: 352px;
        border-radius: 36px;
    }

    .calculator-intro__result {
        font-size: 28px;
        line-height: 1.15;
    }

    .calculator-intro__bottom {
        gap: 15px 30px;
    }

    .step-intro {
        min-height: 174px;
    }

    .step-intro__icon {
        width: 38px;
        min-height: 38px;
    }
}

/*
 * /Section: Intro
 * --------------------------------------------------------------------------
*/

/*
 * Section: Services
 * --------------------------------------------------------------------------
*/

.services__title {
    text-align: center;
}

.services__items {
    position: relative;
    margin: 53px -40px 0;
    padding: 91px 40px 0;
}

.services__logo {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    z-index: 1;
}

.services__logo img {
    width: 100%;
    height: auto;
}

.services__list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.item-services__body {
    height: 100%;
    min-height: 268px;
    display: flex;
    flex-direction: column;
}

.item-services__text {
    margin-top: 14px;
    margin-bottom: 24px;
}

.item-services__icon {
    min-height: 48px;
    width: 48px;
    flex-shrink: 0;
    margin-top: auto;
}

.item-services__icon:hover {
    background-color: #ff3d00;
    color: #fff;
}

.item-services--link .item-services__body {
    transition: background-color 0.2s ease 0s;
}

.item-services--link .item-services__title {
    transition: color 0.2s ease 0s;
}

@media (any-hover: hover) {
    .item-services--link .item-services__body:hover {
        background-color: #ff3d00;
    }

    .item-services--link .item-services__body:hover .item-services__title {
        color: #fff;
    }

    .item-services--link .item-services__body:hover .item-services__icon {
        background-color: #fff;
        color: #ff3d00;
    }
}

@media (width < 1280px) {
    .services__items {
        padding-left: 18px;
        padding-right: 18px;
        margin-left: -18px;
        margin-right: -18px;
    }
}

@media (width < 1024px) {
    .services__title br {
        display: none;
    }

    .services__items {
        padding-top: 55px;
        margin-top: 40px;
    }

    .services__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (width < 768px) {
    .services__items {
        padding-top: 24px;
        margin-top: 24px;
    }

    .services__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .item-services__body {
        min-height: 156px;
    }

    .item-services__text {
        margin-top: 6px;
    }

    .item-services__icon {
        width: 38px;
        min-height: 38px;
    }
}

/*
 * /Section: Services
 * --------------------------------------------------------------------------
*/

/*
 * Section: About
 * --------------------------------------------------------------------------
*/

.about {
    color: #fff;
}

.about__body {
    padding: 48px 40px 0;
}

@media (width < 1280px) {
    .about__body {
        padding: 48px 18px 0;
    }
}

@media (width < 768px) {
    .about__body {
        padding: 44px 18px 0;
    }
}

/*
 * /Section: About
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Index
 * ==========================================================================
*/

/*
 * Page: Catalog
 * ==========================================================================
*/

/*
 * Section: Catalog
 * --------------------------------------------------------------------------
*/

.catalog__title {
    text-align: center;
}

.filters-catalog {
    margin-top: 88px;
}

.filters-catalog__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.services-catalog {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-services-catalog {
    transition: box-shadow 0.2s ease 0s;
}

.social-services-catalog__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.social-services-catalog__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-services-catalog__logo {
    width: 24px;
    flex-shrink: 0;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-services-catalog__logo {
    max-width: 100%;
    flex-shrink: 0;
}

.social-services-catalog__icon-wrapper,
.item-social-services-catalog__icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-services-catalog__icon,
.item-social-services-catalog__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-services-catalog__icon svg,
.item-social-services-catalog__icon svg {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

.social-services-catalog__icon--minus,
.item-social-services-catalog__icon--minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.social-services-catalog__icon--plus,
.item-social-services-catalog__icon--plus {
    opacity: 1;
    transform: rotate(0deg);
}

.social-services-catalog.is-accordion-open
    .social-services-catalog__icon--minus {
    opacity: 1;
    transform: rotate(0deg);
}

.item-social-services-catalog.is-accordion-open
    .item-social-services-catalog__icon--minus {
    opacity: 1;
    transform: rotate(0deg);
}

.social-services-catalog.is-accordion-open
    .social-services-catalog__icon--plus {
    opacity: 0;
    transform: rotate(90deg);
}

.item-social-services-catalog.is-accordion-open
    .item-social-services-catalog__icon--plus {
    opacity: 0;
    transform: rotate(90deg);
}

.social-services-catalog__inner {
    padding-top: 14px;
}

.social-services-catalog__item.is-accordion-open
    .item-social-services-catalog__heading::before {
    opacity: 0;
}

.item-social-services-catalog__heading {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 500;
    padding: 16px 0;
    position: relative;
    text-align: left;
}

.item-social-services-catalog__heading::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d0d0d0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity 0.2s ease 0s;
}

.social-services-catalog__item:last-child
    .item-social-services-catalog__heading::before {
    display: none;
}

.social-services-catalog__item:last-child
    .item-social-services-catalog__table-wrapper {
    padding-bottom: 0;
}

.item-social-services-catalog__table {
    text-align: center;
    min-width: 800px;
}

.item-social-services-catalog__table th:first-child,
.item-social-services-catalog__table td:first-child {
    text-align: left;
}

.item-social-services-catalog__table tr:last-child td {
    border-bottom: 1px solid #d0d0d0;
}

.item-social-services-catalog__table button {
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: color 0.2s ease 0s;
}

.item-social-services-catalog__table-wrapper {
    padding-bottom: 16px;
}

@media (any-hover: hover) {
    .social-services-catalog:hover {
        box-shadow: rgba(27, 43, 76, 0.15) 0px 4px 15px 0px;
    }

    .item-social-services-catalog__table button:hover {
        color: #ff3d00;
    }
}

@media (width < 1024px) {
    .filters-catalog {
        margin-top: 60px;
    }

    .services-catalog {
        margin-top: 40px;
    }
}

@media (width < 768px) {
    .catalog__title br {
        display: none;
    }

    .filters-catalog {
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 35px -18px 0;
    }

    .filters-catalog__list {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
    }

    .filters-catalog__item:first-child {
        padding-left: 18px;
    }

    .filters-catalog__item:last-child {
        padding-right: 18px;
    }

    .services-catalog {
        gap: 12px;
        margin-top: 25px;
    }

    .item-social-services-catalog__heading {
        font-size: 14px;
        padding: 12px 0;
    }

    .item-social-services-catalog__table-wrapper {
        padding-bottom: 14px;
    }

    .item-social-services-catalog__table td {
        padding-top: 13.5px;
        padding-bottom: 13.5px;
    }
}

/*
 * /Section: Catalog
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Catalog
 * ==========================================================================
*/

/*
 * Page: Api
 * ==========================================================================
*/

/*
 * Section: Api
 * --------------------------------------------------------------------------
*/

.api__title {
    text-align: center;
}

.api__details {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 40px;
}

.api__detail {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}

.anchors-api {
    margin-top: 88px;
}

.anchors-api__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.api__methods {
    margin-top: 40px;
}

.api__method-top {
    padding-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.api__method-bottom {
    overflow: hidden;
    padding-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 16px;
}

.api__method-bottom:last-child {
    margin-bottom: 0;
}

.method-api__select {
    max-width: 350px;
    margin-top: 10px;
}

.method-api__table-wrapper {
    padding-top: 10px;
}

.method-api__table {
    table-layout: fixed;
    min-width: 400px;
}

.method-api__table th,
.method-api__table td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.code-method-api {
    margin-top: 10px;
}

.code-method-api__title {
    font-weight: 500;
    line-height: 1.5;
}

.code-method-api__content {
    margin-top: 12px;
    background-color: #fff;
    border-radius: 16px;
}

.code-method-api__content pre {
    border-radius: 0;
    overflow-x: auto;
}

.code-method-api__content code {
    font-weight: 400;
    font-family: "Google Sans Code", monospace;
    line-height: 1.5;
}

@media (width < 1024px) {
    .api__details {
        gap: 12px 20px;
    }

    .api__detail {
        font-size: 16px;
    }

    .anchors-api {
        margin-top: 60px;
    }
}

@media (width < 768px) {
    .api__detail {
        font-size: 14px;
    }

    .anchors-api {
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 35px -18px 0;
    }

    .anchors-api__list {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
    }

    .anchors-api__item:first-child {
        padding-left: 18px;
    }

    .anchors-api__item:last-child {
        padding-right: 18px;
    }

    .api__methods {
        margin-top: 25px;
    }

    .code-method-api__title {
        font-size: 14px;
    }

    .code-method-api__content code {
        font-size: 14px;
    }
}

/*
 * /Section: Api
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Api
 * ==========================================================================
*/

/*
 * Page: Faq
 * ==========================================================================
*/

/*
 * Section: Faq
 * --------------------------------------------------------------------------
*/

.faq__title {
    text-align: center;
}

.faq__questions {
    margin-top: 88px;
    display: grid;
    gap: 16px;
}

.question-faq {
    transition: box-shadow 0.2s ease 0s;
}

.question-faq__trigger {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.question-faq__title {
    text-align: left;
}

.question-faq__content {
    padding-top: 16px;
}

.question-faq__icon-wrapper {
    position: relative;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.question-faq__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-faq__icon svg {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

.question-faq__icon--minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.question-faq__icon--plus {
    opacity: 1;
    transform: rotate(0deg);
}

.question-faq.is-accordion-open .question-faq__icon--minus {
    opacity: 1;
    transform: rotate(0deg);
}

.question-faq.is-accordion-open .question-faq__icon--plus {
    opacity: 0;
    transform: rotate(90deg);
}

@media (any-hover: hover) {
    .question-faq:hover {
        box-shadow: 0px 4px 15px 0 #1b2b4c26;
    }
}

@media (width < 1024px) {
    .faq__questions {
        margin-top: 60px;
    }

    .question-faq {
        padding: 24px;
    }

    .question-faq__icon-wrapper {
        width: 26px;
        height: 26px;
    }
}

@media (width < 768px) {
    .faq__questions {
        margin-top: 35px;
        gap: 12px;
    }

    .question-faq {
        padding: 18px;
    }

    .question-faq__content {
        padding-top: 12px;
    }

    .question-faq__icon-wrapper {
        width: 20px;
        height: 20px;
    }
}

/*
 * /Section: Faq
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Faq
 * ==========================================================================
*/

/*
 * Page: Blog Page
 * ==========================================================================
*/

/*
 * Section: Blog Page
 * --------------------------------------------------------------------------
*/

.blog-page__details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.blog-page__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 2px;
}

.blog-page__title {
    text-align: center;
    margin-top: 32px;
}

.blog-page__content {
    margin: 88px auto 0;
    max-width: 796px;
    line-height: 1.5;
}

.blog-page__content img {
    max-width: 100%;
    max-height: 100%;
}

.blog-page__content h1,
.blog-page__content h2,
.blog-page__content h3,
.blog-page__content h4,
.blog-page__content h5 {
    font-weight: 500;
}

.blog-page__content h2 {
    font-size: 23px;
    line-height: 1.3;
}

@media (width < 1024px) {
    .blog-page__content {
        margin: 60px auto 0;
    }

    .blog-page__content h2 {
        font-size: 20px;
    }
}

@media (width < 768px) {
    .blog-page__title {
        margin-top: 20px;
    }

    .blog-page__content {
        margin: 35px auto 0;
        font-size: 14px;
    }

    .blog-page__content h2 {
        font-size: 16px;
    }
}

/*
 * /Section: Blog Page
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Blog Page
 * ==========================================================================
*/

/*
 * Page: Order
 * ==========================================================================
*/

/*
 * Section: Order
 * --------------------------------------------------------------------------
*/

.filters-order {
    margin-top: 96px;
}

.filters-order__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.order__main {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
}

.form-order__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-order__checkbox {
    margin-top: 28px;
}

.form-order__button {
    margin-top: 28px;
}

.order__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description-order__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.description-order__item {
    padding-left: 16px;
    position: relative;
}

.description-order__item::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
}

@media (width < 1024px) {
    .filters-order {
        margin-top: 60px;
    }

    .order__main {
        margin-top: 40px;
        grid-template-columns: minmax(0, 1fr);
    }

    .form-order {
        order: 2;
    }

    .form-order__checkbox {
        margin-top: 16px;
    }

    .form-order__button {
        margin: 16px auto 0;
    }

    .order__info {
        order: 1;
        flex-direction: column-reverse;
    }
}

@media (width < 768px) {
    .filters-order {
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 35px -18px 0;
    }

    .filters-order__list {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
    }

    .filters-order__item:first-child {
        padding-left: 18px;
    }

    .filters-order__item:last-child {
        padding-right: 18px;
    }

    .order__main {
        margin-top: 25px;
    }
}

/*
 * /Section: Order
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Order
 * ==========================================================================
*/

/*
 * Page: Multiorder
 * ==========================================================================
*/

/*
 * Section: Multiorder
 * --------------------------------------------------------------------------
*/

.multiorder__main {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
}

.form-multiorder__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-multiorder__button {
    margin-top: 28px;
}

@media (width < 1024px) {
    .multiorder__main {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .multiorder__message {
        order: 1;
    }

    .form-multiorder {
        order: 2;
    }

    .form-multiorder__button {
        margin: 18px auto 0;
    }
}

@media (width < 768px) {
    .multiorder__main {
        margin-top: 35px;
    }
}

/*
 * Section: /Multiorder
 * --------------------------------------------------------------------------
*/

/*
 * Page: /Multiorder
 * ==========================================================================
*/

/*
 * Page: History
 * ==========================================================================
*/

/*
 * Section: History
 * --------------------------------------------------------------------------
*/

.history__main {
    margin-top: 96px;
}

.filters-history__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.history__table-wrapper {
    margin-top: 40px;
}

.history__table {
    min-width: 800px;
    text-align: center;
}

@media (width < 1024px) {
    .history__main {
        margin-top: 60px;
    }

    .history__table-wrapper {
        margin-top: 40px;
    }
}

@media (width < 768px) {
    .history__main {
        margin-top: 35px;
    }

    .history__table-wrapper {
        margin-top: 25px;
    }

    .filters-history {
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 0 -18px;
    }

    .filters-history__list {
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
    }

    .filters-history__item:first-child {
        padding-left: 18px;
    }

    .filters-history__item:last-child {
        padding-right: 18px;
    }
}

/*
 * /Section: History
 * --------------------------------------------------------------------------
*/

/*
 * Page: /History
 * ==========================================================================
*/

/*
 * Page: Affiliates
 * ==========================================================================
*/

/*
 * Section: Affiliates
 * --------------------------------------------------------------------------
*/

.affiliates__title {
    text-align: center;
}

.affiliates__tables {
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.affiliates__table--info,
.affiliates__table--payments {
    min-width: 650px;
}

.affiliates__table--stats {
    min-width: 750px;
}

.affiliates__withdraw {
    display: flex;
    justify-content: center;
}

@media (width < 1024px) {
    .affiliates__tables {
        margin-top: 60px;
    }
}

@media (width < 768px) {
    .affiliates__tables {
        margin-top: 35px;
    }
}

/*
 * /Section: Affiliates
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Affiliates
 * ==========================================================================
*/

/*
 * Page: Balance
 * ==========================================================================
*/

/*
 * Section: Balance
 * --------------------------------------------------------------------------
*/

.balance__title {
    text-align: center;
}

.balance__main {
    margin-top: 88px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
}

.form-left-balance__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-left-balance__button {
    margin-top: 28px;
}

.left-balance__table-wrapper {
    margin-top: 40px;
}

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

.right-balance {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-right-balance__text {
    margin-top: 12px;
}

@media (width < 1024px) {
    .balance__main {
        margin-top: 60px;
        grid-template-columns: minmax(0, 1fr);
    }

    .left-balance {
        order: 2;
    }

    .form-left-balance__button {
        margin: 16px auto 0;
    }

    .left-balance__table-wrapper {
        margin-top: 40px;
    }

    .left-balance__table {
        min-width: 500px;
    }

    .right-balance {
        order: 1;
    }
}

@media (width < 768px) {
    .balance__main {
        margin-top: 35px;
    }

    .left-balance__table-wrapper {
        margin-top: 35px;
    }
}

/*
 * /Section: Balance
 * --------------------------------------------------------------------------
*/

/*
 * /Page: Balance
 * ==========================================================================
*/

/*
 * Page: Terms
 * ==========================================================================
*/

.terms__title {
    text-align: center;
}

.terms__content {
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    line-height: 1.5;
}

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

.terms__content ol,
.terms__content ul {
    padding-left: 20px;
}

.terms__content ul li {
    list-style: disc;
}

@media (width < 1024px) {
    .terms__content {
        margin-top: 60px;
    }
}

@media (width < 768px) {
    .terms__content {
        margin-top: 35px;
        font-size: 14px;
        gap: 32px;
    }

    .terms__block {
        gap: 16px;
    }
}

/*
 * /Page: Terms
 * ==========================================================================
*/

/*
 * Page: Account
 * ==========================================================================
*/

.account__title {
    text-align: center;
}

.account__page-nav {
    margin-top: 88px;
}

.account__main {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-account,
.card-account__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-account__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px 12px;
    flex-wrap: wrap;
}

.card-account__tag {
    background-color: #fff;
}

.card-account__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (width < 1024px) {
    .account__page-nav {
        margin-top: 60px;
    }
}

@media (width < 768px) {
    .account__page-nav {
        margin-top: 35px;
    }

    .account__main {
        margin-top: 35px;
        gap: 16px;
    }

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

    .card-account,
    .card-account__form {
        gap: 12px;
    }

    .card-account__top {
        flex-direction: column;
    }

    .card-account__bottom {
        margin-top: -8px;
    }

    .card-account__button {
        width: 100%;
    }
}

/*
 * /Page: Account
 * ==========================================================================
*/

/*
 * ==========================================================================
 * /Sections
 * ==========================================================================
*/
