.form__body * {
    outline: none;
}

.order-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 0.2em;
}

.order-preview__card-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


.order-preview-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 0.5em;
    background-color: #ededed;
    padding: 0.2em 0.7em 0.2em 0.7em;
    margin-top: 0.5em;
}

.preview-card__img {
    width: 5em;
    height: 5em;
    border-radius: 0.5em;
}

.preview-card__product {
    padding: 0 0.4em;
}

.order-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 3.5em;
}

.preview-card__quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5em;
    width: 1.5em;
    background-color: #ff9494;
    border-radius: 0.5em;
}

.preview-card__price {
    font-weight: 100;
}

.order-preview__total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 1em 1em;
    width: 80%;
    border-top: 1px solid var(--secondary-text-color);
    margin-top: 1em;
}

.order-preview__total-text {
    font-size: 1.2em;
    font-weight: 100;
}

.order-form__title {
    text-align: center;
    font-size: 1.3em;
    padding: 2em 0;
    color:var(--secondary-text-color);
}

.order-preview__total-price {
    font-size: 1.5em;
    font-weight: 100;
}

.form__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.recipient-info, .address-info, .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form__item {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 4em;
    justify-content: space-evenly;
}

.form__label {
    font-size: 0.9em;
    font-weight: 100;
    color:var(--secondary-text-color);
}

.form-input {
    height: 2em;
    border: 1px solid var(--secondary-text-color);
    border-radius: 0.2em;
    padding: 0 0.5em;
}

.form-input._error {
    border: 1px solid rgb(255, 83, 83);
    box-shadow: 0 0 5px rgb(255, 83, 83);
}

.house-street {
    height: auto;
}

.street-wrapper, .house-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 4em;
    justify-content: space-evenly;
}

.form-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em 0;
}

.form-submit {
    height: 3em;
    width: 10em;
    font-size: 1.1em;
    border: none;
    background-color: var(--secondary-text-color);
    border-radius: 0.7em;
    color: azure;
}

.form-disclaimer {
    font-size: 0.7em;
    padding-top: 1em;
    font-weight: 100;
    color: #878787;
    text-align: center;
}

.select {
    position: relative;
}

.select__header {
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-text-color);
    cursor: pointer;
    border-radius: 0.2em;
    padding: 0 0.5em;
    height: 1.65em;
}

.form-phone {
    width: 100%;
}

.phone-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    align-items: center;
    justify-content: center;
}

.phone-select {
    height: auto;
    background: #fff;
}

.phone-body {
    background: #fff;
    height: 4.25em;
    z-index: 2;
}

.select-current {
    font-size: 0.9em;
    font-weight: 100;
    color:rgb(52, 87, 82);
}

.select__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    margin-left: auto;
    text-align: center;
}

.select.is-active .select__body {
    display: block;
}

.select__body {
    border: 1px solid var(--secondary-text-color);
    border-top: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 85%;
    background: #ffffff;
    display: none;
}

.select__item {
    height: 2.25em;
    display: flex;
    align-items: center;
    padding: 0.3em;
    font-size: 0.9em;
    font-weight: 100;
    color:rgb(52, 87, 82);
    cursor: pointer;
    transition: 0.5s;
}





@media (min-width: 576px) {
    .container {
        --container-width: var(--mq-size-sm);
    }
}

@media (min-width: 768px) {
    .container {
        --container-width: var(--mq-size-md);
    }
}

@media (min-width: 992px) {
    .container {
        --container-width: var(--mq-size-lg);
    }

    .order-preview__card-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .order-preview-card {
        margin-top: 0.4em;
        width: 99%;
    }

    .recipient-info, .address-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .form__item {
        width: 95%;
    }

    .form-submit {
        cursor: pointer;
        transition: 0.5s;
    }

    .form-submit:hover {
        background-color: var(--main-color);
        transition: 0.5s;
        color: var(--secondary-text-color);
    }

    .house-street {
        flex-direction: row;
        justify-content: space-between;
    }

    .street-wrapper {
        width: 72%;
    }

    .house-wrapper {
        width: 27%;
    }

    .select__item:hover {
        background: #e8e8e8;
        transition: 0.5s;
    }
}

@media (min-width: 1200px) {
    .container {
        --container-width: var(--mq-size-xl);
    }
}