div.mfeedback {
	display: flex;
    justify-content: center;
}
div.mf-name, div.mf-email, div.mf-captcha, div.mf-message {width:80%; padding-bottom:0.4em;}
div.mf-name input, div.mf-email input {width:60%;}
div.mf-message textarea {width: 60%;}
span.mf-req {color:red;}
div.mf-ok-text {color:green; font-weight:bold; padding-bottom: 1em;}

.form_feadback{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feedback{
    position: relative;
}
.feedback .b24-window-close{
	background-color: #b80f29;
}
.feedback .b24-window-close::before, .feedback .b24-window-close::after{
    background-color: #000;
}
.feedback .centered {
    text-align: center;
    font-size: 34px;
    font-weight: bolder;
    color: black;

    margin-bottom: 20px;
}

.feedback .centr {
    color: black;
    font-weight: 500;
    margin-bottom: 0px;
}
.form_feadback .mf-inpur-err{
	display: flex;
    justify-content: space-between;
}
.form_feadback .mf-inpur-err > p{
	width: 45%;
    font-size: 10px;
}
.form_feadback .mf-input{
	display: flex;
    position: relative;
}
.form_feadback .mf-input .mf-phone, .form_feadback .mf-input .mf-email{
    position: relative;
	margin: 10px;
}

.form_feadback .mf-input .mf-text{
	display: none;
    position: absolute;
    margin-left: 10px;
}

.form_feadback .mf-input input{
	padding-left: 20px;
    width: 190px;
    height: 50px;
    border-radius: 30px;
	border: 2px solid  #656565;
}
.form_feadback > input{
	width: 190px;
    height: 50px;
    border-radius: 30px;
	border: 2px solid #B87B85;
	background-color: #B87B85;
	color: white;

    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
}
.form_feadback > input :hover{
	background-color: #660000;
}

.form_feadback .p-usercosent{
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
    font-size: 12px;
	width: 85%;

	margin-bottom: 7px; 
}
.b24-window-feadback{
	transition: all 1s;
}
.b24-window-feadback .feedback{
	background-color: #fff;
	padding: 20px;
	border-radius: 30px
}
.b24-window-feadback .feedback .cont-form .form_feadback .p-usercosent{
	color: #666666;
	width: 100%;
}
.b24-window-feadback .feedback .centr{
	color: black !important;
}

.b24-window-feadback .feedback .cont-form .mf-input input{
	color: #666666 !important;
}



/* для элемента input c type="radio" */
  .custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }

  /* для элемента label связанного с .custom-radio */
  .custom-radio+label {
    display: inline-flex;
    align-items: center;
    user-select: none;

    font-weight: normal;
    font-size: 13px;
  }

  /* создание в label псевдоэлемента  before со следующими стилями */
  .custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #660000;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }

  /* стили при наведении курсора на радио */
  .custom-radio:not(:disabled):not(:checked)+label:hover::before {
    border-color: #660000;
  }

  /* стили для активной радиокнопки (при нажатии на неё) */
  .custom-radio:not(:disabled):active+label::before {
    background-color: #8C6262;
    border-color: #8C6262;
  }

  /* стили для радиокнопки, находящейся в фокусе 
  .custom-radio:focus+label::before {
    
  }*/

  /* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
  .custom-radio:focus:not(:checked)+label::before {
    border-color: #8C6262;
  }

  /* стили для радиокнопки, находящейся в состоянии checked */
  .custom-radio:checked+label::before {
    border-color: #660000;
    background-color: #660000;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }

  /* стили для радиокнопки, находящейся в состоянии disabled */
  .custom-radio:disabled+label::before {
    background-color: #e9ecef;
  }