/* Форма заказа */
.order-form {
    display: flex;
    justify-content: space-between;

    background-color: var(--color-background-primary);
    border: 1px solid var(--color-foreground-primary);

    max-width: 1840px;
    width: calc(100vw - 40px * 2);
    height: 700px;

    position: absolute;
    top: calc((100% - 700px) / 2);
    left: calc((100% - calc(100vw - 40px * 2)) / 2);
    z-index: 1;

    display: none;
}

.order-form-content {
    flex: 1;
    height: 100%;
}

.order-form-img {
    width: 47.292vw;
    max-width: 908px;
}

.order-form-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.order-form-content {
    display: flex;
    flex-direction: column;
    gap: 46px;
    padding: 32px;

    align-items: end;
}

.order-form-content-icon {
    width: 32px;
    height: 32px;

    cursor: pointer;
}

.order-form-content-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.order-form-content-block {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 0 104px;
    width: 100%;
}

.order-form-content-block-title {
    color: var(--color-foreground-primary);
    text-transform: lowercase;
    font-size: 64px;
    line-height: 110%;
    font-weight: 500;
    letter-spacing: -0.3px; 
}

.order-form-content-message {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding-bottom: calc(32px + 46px);

    display: none;
}

.order-form-content-block-title-min {
    color: var(--color-foreground-primary);
    text-transform: lowercase;
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
}

@media screen and (min-width: 1921px) {
    .order-form {
        left: calc((100% - 1840px) / 2);
    }
}
    

/* Адаптация на маленькие экраны (< 1920)*/
/* 1440 */
@media screen and (max-width: 1780px) {
    .order-form-content-block-title {
        font-size: 48px;
        line-height: 110%;
    }
}

/* Адаптация на маленькие экраны (< 1920)*/
/* 1440 */
@media screen and (max-width: 1575px) {
    /* Форма заказа */
    .order-form {
        height: 512px;

        top: calc((100% - 512px) / 2);
    }

    .order-form-img {
        max-width: 540px;
        min-width: 494px;
        width: 37.5vw;
    }

    .order-form-content {
        flex-direction: row-reverse;
        align-items: start;
        padding: 32px 32px 32px 5.278vw;
        gap: 0;
    }

    .order-form-content-block {
        gap: 48px;
        padding: 0;
    }

    .order-form-content-message {
        padding-bottom: 0;
        align-items: start;
    }
}

/* 1280 */
@media screen and (max-width: 1280px) {
    /* Форма заказа */
    .order-form {
        width: calc(100vw - 20px * 2);
        height: 438px;

        top: calc((100% - 438px) / 2);
        left: calc((100% - calc(100vw - 20px * 2)) / 2);
    }

    .order-form-img {
        max-width: 494px;
    }

    .order-form-content {
        padding: 24px 24px 24px 48px;
    }

    .order-form-content-block {
        gap: 32px;
    }

    .order-form-content-block-title {
        font-size: 32px;
        line-height: 110%;
    }

    .order-form-content-block-title-min {
        font-size: 18px;
        line-height: 100%;
    }
}


/* 768 */
@media screen and (max-width: 1200px) {
    /* Форма заказа */
    .order-form {
        width: 728px;
        height: 735px;

        top: calc((100% - 735px) / 2);
        left: calc((100% - 728px) / 2);

        flex-direction: column;
        gap: 32px;
    }

    .order-form-img {
        max-width: 100%;
        height: 294px;
        max-height: 294px;
        width: 100%;
    }

    .order-form-img img {
        object-position: 0 -15px;
    }


    .order-form-content {
        gap: 0;
        padding: 0;
    }

    .order-form-content-icon {
        position: absolute;

        top: 20px;
        right: 20px;
    }

    .order-form-content-icon img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .order-form-content-block {
        padding: 0 20px;
        width: 100%;
    }

    .order-form-content-message {
        gap: 24px;
        align-items: center;
        padding-bottom: 32px;
    }
}

/* 375 */
@media screen and (max-width: 725px) {
    /* Форма заказа */
    .order-form {
        width: 100vw;
        min-height: 100vh;
        height: 100%;

        top: 0;
        left: 0;
    }

    .order-form-img {
        height: 38.94vh;
        max-height: 38.94vh;
        min-width: 100%;
    }

    .order-form-img img {
        object-position: center;
    }

    .order-form-content {
        align-items: center;
    }

    .order-form-content-block {
        padding: 0 12px 20px;
        height: 100%;
    }

    .order-form-content-message {
        gap: 16px;
        padding: 0 12px 0;
    }

    .order-form-content-block-title {
        text-align: center;
    }

    .order-form-content-block-title-min {
        font-size: 16px;
        line-height: 100%;

        text-align: center;
    }
}


@media screen and (max-width: 725px) and (max-height: 755px) {
    .order-form {
        height: fit-content;
    }
}