.order-data, .order-payment {
    width: 100%;
    border-top: 1px solid #ece8e5;
    padding: 15px 0 45px 0;
}
.order-data__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.order-data__name-title,
.order-data__phone-title,
.order-data__mail-title,
.order-data__payment-title{
    font-size: 15px;
    color: rgb(175, 158, 136);
}

.order-data__payment-title {
    margin-bottom: 10px;
}

.order-data__name,
.order-data__phone,
.order-data__mail {

}

.order-title{
    font-size: 40px;
    font-family: "Ubuntu";
    color: rgb(175, 158, 136);
    font-weight: bold;
    margin-bottom: 30px;
}
.order-form.hidden{
    display: none;
}
.order-form__title-block{
    margin-bottom: 30px;
}
.order-form__title{
    font-size: 16px;
    color: rgb(74, 67, 61);
    text-transform: uppercase;
    padding: 0 0 0 40px;
    background-image: url(/local/templates/avel/images/breadcrumbs_separator.png);
    background-repeat: no-repeat;
    background-position: 16.5px center;
    background-size: 7px;
    font-weight: bold;
}
.order-form__input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ece8e5;
    padding: 0 0 0 40px;
    outline: none;
    background-repeat: no-repeat;
    height: 40px;
    background-position: 8px center;
}
.order-form__input[name='name'] {
    background-image: url(/local/templates/avel/images/contact_name.png);
}
.order-form__input[name='phone'] {
    background-image: url(/local/templates/avel/images/contact_phone.png);
}
.order-form__input[name='theme'] {
    background-image: url(/local/templates/avel/images/contact_mail.png);
}

.order-form__input.error{
    border-bottom: 1px solid red;
}
.order-form__input.error::-moz-placeholder{
    font-style: italic;
    color: red;
}
.order-form__input.error::-webkit-input-placeholder{
    font-style: italic;
    color: red;
}
.order-form__input.error:-ms-input-placeholder{
    font-style: italic;
    color: red;
}
.order-form__input.error::-ms-input-placeholder{
    font-style: italic;
    color: red;
}
.order-form__input.error::placeholder{
    font-style: italic;
    color: red;
}
.order-form__email-error {
    position: absolute;
    bottom: -25px;
    font-style: italic;
    color: red;
    visibility: hidden;
}
.order-form__email-error.viewed {
    visibility: visible;
}

.order-form__textarea{
    width: 100%;
    margin: 40px 0;
    height: 200px;
    outline: none;
    border: 1px solid #ece8e5;
    resize: none;
    overflow: auto;
    padding: 15px 20px;
}

.order-form__textarea.error{
    border: 1px solid red;
}
.order-form__textarea.error::placeholder{
    font-style: italic;
    color: red;
}

.order__pagination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.order__pagination-prev,
.order__pagination-prev:hover{
    background: #ededed;
    color: #af9e88;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
    width: 240px;
    height: 46px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
.order__pagination-next,
.order__pagination-next:hover{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4a433d;
    color: #af9e88;
    border-radius: 23px;
    width: 240px;
    height: 46px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* * * * */
.payment-variant-block{
    margin-bottom: 60px;
}
.payment-variant-title {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgb(74, 67, 61);
    font-weight: bold;
}

.payment-variant__radio{
    opacity: 0;
    position: absolute;
}
.payment-variant__radio + label {
    width: auto;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
}
.payment-variant__radio + label > .payment-variant__radio-fake {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background: url(/local/templates/avel/images/radio_empty.png) no-repeat center;
}
.payment-variant__radio:checked + label > .payment-variant__radio-fake {
    background: url(/local/templates/avel/images/radio_checked.png) no-repeat center;
}
.payment-variant__desc{
    font-size: 15px;
    color: rgb(183, 183, 183);
    text-transform: uppercase;
}
.payment-variant__image{
    max-width: 100%;
    max-height: 100%;
}

/* * * * */
@media (max-width: 600px) {
    .order__pagination {
        flex-direction: column;
    }
    .order__pagination-prev {
        margin-bottom: 15px;
    }
}