.callback-wrapper {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.b-feedback__wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 83%;
  margin: auto;
}
.b-feedback__legend{
	width: 45%;
	font-weight: 900;
	font-size: 5vw;
	text-transform: uppercase;
	color: #ffffff;
}

.b-feedback__fieldset{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 55%;
    padding: 0px 5vw;
}

.b-feedback__row{
	width: 100%;
	margin-bottom: 3vw;
}
.b-feedback__input{
	border-bottom: 1px solid #ADA090;
}

.b-feedback__input label span {
  color: #FF0000;
}

.b-feedback__input.error {
    border-bottom: 1px solid red;
}

.b-feedback__input.error .mf-req:after{
    content: 'Необходимо заполнить поле';
    display: inline-block;
    margin-left: 10px;
    font-size: 10px;
    text-transform: lowercase;
    color: red;
}
.b-feedback__input label{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 100%;
    padding-bottom: 10px;
}
.b-feedback__input input{
	padding-left: 15px;
	background-color: transparent;
}

.b-feedback__button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 45px;
    background-color: #ADA090 !important;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.b-feedback__button:hover {
  background-color: #ffffff !important;
}


.b-feedback__row_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media(max-width: 900px) {
  .b-feedback__wrapper{
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  }

  .b-feedback__legend {
    width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .b-feedback__fieldset {
    width: 100%;
    padding: 0;
}
}

.privacy a{
    color: #ffffff;
}

.b-question__row.privacy a {
  color: #ADA090;
}


#site-popup_success{
    background-image: url('images/background.png');
    background-size: cover;
}
.popup_success-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.popup_success-icon{
    margin-bottom: 45px;
    font-size: 28px;
}
.popup_success-title{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 64px;
    line-height: 75px;
    text-transform: uppercase;
}
.popup_success-body{
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
}