@media (min-width: 1024px) {
    /* GENERAL */
    .header + main {
        padding-top: 89px;
    }

    /* FIELDS */
    .form-row--stack {
        flex-direction: row;
        gap: 8px;
    }

    .form-row--document {
        flex-wrap: nowrap;
    }

    .form-row--document .field--document-type {
        flex: 1 1 246px;
    }

    .form-row--address {
        flex-wrap: nowrap;
    }

    .form-row--address .field--address-street {
        flex: 1 1 246px;
    }

    .form-row--address .field--address-building,
    .form-row--address .field--address-apartment {
        flex: 1 1 73px;
    }

    .form-row--address .field--address-index {
        flex: 1 1 84px;
    }

    .code-field {
        gap: 32px;
    }

    /* BUTTONS */
    .btn--secondary {
        background-color: transparent;
    }

    .btn--secondary:hover {
        background-color: var(--color-primary-50);
    }

    .btn--secondary:disabled, .btn--secondary.disabled {
        background-color: transparent;
    }

    /* SELECTION */
    .selection-item-group--inline {
        flex-direction: row;
    }

    .selection-item-group--inline .selection-item {
        flex: 1;
    }

    .selection-item-group--gap-lg .selection-item {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* SELECT */
    .select__dropdown {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 8px;
        border-radius: 12px 12px 24px 24px;
        background: var(--color-white);
        box-shadow: 0 4px 23px rgba(0, 0, 0, 0.24);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 10;
    }

    .select.is-open .select__dropdown {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .select--card .select__dropdown {
        width: calc(100% - 64px);
        right: 0;
        left: unset;
    }

    .select__options {
        gap: 2px;
        max-height: 300px;
    }

    .select__option {
        min-height: 48px;
        padding: 8px 16px;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
    }

    /* MODALS */
    .modal__content {
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 380px;
        transform: translate(-50%, -50%) scale(0.95);
    }

    .modal__header {
        padding: 24px 16px 0 16px;
    }

    .modal__body {
        padding: 14px 32px 32px 32px;
    }

    .modal.is-active .modal__content {
        transform: translate(-50%, -50%) scale(1);
    }

    /* AUTH */
    .auth {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px;
    }

    .auth__card {
        position: relative;
        width: 100%;
        max-width: 1080px;
        min-height: auto;
    }

    .auth__body {
        flex: none;
        display: flex;
        flex-direction: column;
        min-height: 400px;
        padding: 40px;
        border-radius: 24px 24px 0 0;
    }

    .auth__content {
        flex: 1;
        display: flex;
        gap: 60px;
        margin-top: 40px;
    }

    .auth__text {
        flex: 0 1 44%;
        margin-bottom: 0;
    }

    .auth__title {
        font-size: 36px;
        line-height: 44px;
    }

    .auth__description {
        margin-top: 16px;
    }

    .auth__form {
        flex: 0 1 50%;
        justify-content: space-between;
        gap: 56px;
        max-width: 500px;
    }

    .auth__actions {
        justify-content: flex-end;
    }

    .auth__actions .btn {
        flex: 0 0 auto;
    }

    .auth__actions--equal .btn--primary {
        padding: 0 32px;
    }

    .auth__actions--equal .btn--secondary {
        padding: 0 24px;
    }

    .auth__footer {
        padding: 16px 24px;
        border-radius: 0 0 24px 24px;
    }

    .auth__contact {
        margin-top: 16px;
    }

    .auth__steps {
        position: absolute;
        top: -28px;
        left: 0;
        right: 0;
        gap: 8px;
        padding: 0 40px;
    }

    /* HEADER */
    .header__top {
        padding: 12px;
        border-radius: 24px;
        border-bottom: 1px solid var(--color-secondary-200);
    }

    .header__profile {
        width: 40px;
        height: 40px;
    }

    .header__nav--desktop {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: 56px;
    }

    .header__nav--desktop .header__link {
        display: inline-flex;
        align-items: center;
        height: 48px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 600;
    }

    .header__actions {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .header__btn {
        display: inline-flex;
    }

    .header__btn svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

    .header__btn + .header__btn {
        margin-left: 2px;
    }

    .header__profile {
        margin-left: 40px;
    }

    .header__bottom {
        display: none;
    }

    /* CABINET */
    .cabinet {
        padding-top: 52px;
    }

    .title {
        font-size: 36px;
        line-height: 44px;
    }

    /* CALCULATOR */
    .calculator {
        flex-direction: row;
        align-items: stretch;
    }

    .calculator__panel--switch {
        flex: 1;
    }

    .calculator__panel--content {
        flex: 1;
    }

    .calculator__panel--switch {
        padding: 40px;
        border-radius: 24px 8px 8px 24px;
    }

    .calculator__panel--content {
        padding: 40px;
        border-radius: 8px 24px 24px 8px;
    }

    /* APPLICATION */
    .application {
        max-width: 540px;
        margin: 0 auto;
    }

    .application__card {
        padding: 40px;
        border-radius: 24px;
    }
}
