.cart-container {
    background: #eeeeee;
    padding: 15px;
    border-radius: 5px;
}

.cart .orders__title {
    font-size: 28px;
    padding: 20px 0;
}

.orders__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    column-gap: 7px;
    row-gap: 15px;
    padding: 10px 20px;
    font-size: 20px;
    background: #f5f5f5;
    border: 2px solid white;
    border-radius: 5px;
}

.order-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.order-item .order-item__title,
.order-item .order-item__value {
    font-size: 20px;
    margin: 0;
}

.order__button {
    background: #ff7f00;
    color: #fff;
    font-size: 16px;
    height: 44px;
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 30px;
    outline: none;
    cursor: pointer;
    border: 2px solid #ff7f00;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s;
}

.order__button_selected {
    pointer-events: none;
    background: transparent;
    color: #ff7f00;
}

.order__button:hover {
    background: transparent;
    color: #ff7f00;
}

.empty__title {
    text-align: center;
    margin: 35px 0;
}

.user-form .err-privacy__wrap {
    margin: 20px 0;
}

.user-form .pay-method__list {
    justify-content: center;
    gap: 15px;
}

.cart .render__offers {
    margin: 0;
    padding: 0;
}

.user-form__block {
    background: #f5f5f5;
    border: 2px solid white;
}
