.review-title-block {
    margin-bottom: 0;
}
.review-title-block h1 {
    font-size: 40px;
    font-family: "Ubuntu";
    color: rgb(175, 158, 136);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.review-title-content {
    margin-bottom: 25px;
    /*width: 100%;*/
}
.review-title-content__item {
    height: calc(100% - 24px);
    padding: 30px 25px;
    border: 1px solid #e3ddd8;
    margin: 12px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
}
.review-title-content__name {
    font-weight: bold;
}
.review-title-content__date{
    font-size: 14px;
    color: rgb(175, 158, 136);
    font-style: italic;
    margin-bottom: 15px;
}
.review-title-content__text{

}

/* * * * * */
.review-form{

}
.review-form__title-block {
    margin-bottom: 30px;
}
.review-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;
}

.review-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;
}
.review-form__input[name='name']{
    background-image: url(/local/templates/avel/images/contact_name.png);
}
.review-form__input[name='phone']{
    background-image: url(/local/templates/avel/images/contact_phone.png);
}
.review-form__input[name='theme']{
    background-image: url(/local/templates/avel/images/contact_mail.png);
}

.review-form__input::-moz-placeholder{
    font-style: italic;
    color: #b7b7b7;
}
.review-form__input::-webkit-input-placeholder{
    font-style: italic;
    color: #b7b7b7;
}
.review-form__input:-ms-input-placeholder{
    font-style: italic;
    color: #b7b7b7;
}
.review-form__input::-ms-input-placeholder{
    font-style: italic;
    color: #b7b7b7;
}
.review-form__input::placeholder{
    font-style: italic;
    color: #b7b7b7;
}

.review-form__input.error{
    border-bottom: 1px solid red;
}
.review-form__input.error::-moz-placeholder{
    font-style: italic;
    color: red;
}
.review-form__input.error::-webkit-input-placeholder{
    font-style: italic;
    color: red;
}
.review-form__input.error:-ms-input-placeholder{
    font-style: italic;
    color: red;
}
.review-form__input.error::-ms-input-placeholder{
    font-style: italic;
    color: red;
}
.review-form__input.error::placeholder{
    font-style: italic;
    color: red;
}

.review-form__textarea{
    width: 100%;
    margin: 40px 0;
    height: 200px;
    outline: none;
    border: 1px solid #ece8e5;
    resize: none;
    overflow: auto;
    padding: 15px 20px;
}
.review-form__textarea::placeholder{
    font-style: italic;
    color: #b7b7b7;
}
.review-form__textarea.error{
    border: 1px solid red;
}
.review-form__textarea.error::placeholder{
    font-style: italic;
    color: red;
}

.review-form__bottom{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.review-form__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    border-radius: 22.5px;
    background: #4a433d;
    color: #af9e88;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
}
.review-form__btn:hover{
    color: #4a433d;
    background: #af9e88;
}

.review-form__success {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 30px;
}
.review-form__success.active {
    display: flex;
}

@media (max-width: 799px) {

    .review-form__input[name="name"],
    .review-form__input[name="phone"]{
        margin-bottom: 20px;
    }
    .review-form__bottom {
        justify-content: center;
    }

    .review-title-content__item {
        height: auto;
    }
}