.menu_iframe{
	background: #fff;
	padding: 20px;
	margin: auto;
	max-width: 600px;
	width: 100%;
}

input.val{font-size: 14px;}
input.val:focus, input.input_new:focus {border: 1px solid #FF9300;}
input.input_new:invalid {color: #ff0000;}
input.input_new:valid {
	color: #3FB500;
	border-radius: 4px; 
	background: #fff url(/css/fa.png) no-repeat right center;
	border: 1px solid #78D300;
	font-size: 14px;  
}

.val, .input_new {
	color: #4C4C4C;
	border-radius: 4px; 
	border: 1px solid #D8D8D8;
	width: 95%;
	font-size: 14px;
	margin-right: 12px;
	padding-left: 9px;
	height: 25px;
}
select.val, select.input_new { height: 30px;margin: 0; padding: 0 10px; font-size: 14px;}
 

@font-face {
font-family: Calibri Light;
src: url(Calibri_Light.ttf);
}
.content{margin: auto; width: 99%; max-width: 800px; text-align: left; font-family: Calibri Light;}
.menu_razdel{background: #fff; padding: 5px 16px 16px 16px; margin: 0 8px; box-shadow: 0px 1px 10px rgba(64, 64, 64, .2); border-radius: 8px;}
.menu_razdel:hover{background: #F9F9F9;}
.head_razdel{font-size: 26px; color: #3E6287; padding: 10px 16px 10px 16px;}
input[type=text].inputs,input[type=email].inputs,input[type=phone].inputs, select.inputs { margin: 10px 0px 10px 6px; border: 1px solid #C1C1C1; border-radius: 3px;}
input[type=text].inputs,input[type=email].inputs,input[type=phone].inputs, select.inputs {padding: 21px 8px 8px 8px; font-size: 16px; letter-spacing: 0.7px;} 
input[type=phone].inputs,input[type=phone].inputs {letter-spacing: 0px; }
select.inputs {padding: 20px 8px 7px 8px;}
option {font-weight: normal; color: #777777;}
input[type=text].inputs:disabled{color: #DBDBDB; background: #DBDBDB; border: 1px solid #C1C1C1;}
.checkbox_label {font-size: 16px; background: #C1EA96; margin: 0 3px; padding: 5px 15px 5px 0; color: #3D7700; border-radius: 15px;}
.checkbox_label:hover { background: #B6E881;}
.radio_label {font-size: 16px; background: #E3EAF9; margin: 0 3px; padding: 5px 7px; color: #006E7F; border-radius: 3px;}
.radio_label:hover{background: #D2DEF7;}

.block_input {
  position: relative;  
}

.name_form { 
  position: absolute; 
  pointer-events: none;
  left: 19px;
  top: -8px;
  transition: .3s;
  color: #777777; 
  font-size: 14px;
}


.inputs:focus~.name_form { /* заголовок уходит вверх при клике на инпут */
  top: -20px; 
  left: 15px;
  font-size: 12px;
} 

input.inputs:required:invalid:not(:placeholder-shown)~.name_form { /* если инпут НЕвалид - заголовок краснеет и остается вверху */
  color: crimson;
  top: -20px; 
  left: 15px;
  font-size: 12px; 
}

 

input.inputs:required:valid:not(:placeholder-shown)~.name_form,
select.inputs:valid~.name_form { /* если инпут валид - заголовок зеленеет и остается вверху */
color: #3FB500;
  top: -20px; 
  left: 15px;
  font-size: 12px;
}



input.inputs:invalid:not(:placeholder-shown){ /* если инпут НЕвалид - заполненный текст и бордер краснеют */
	color: crimson; 
	background: #fff url(x.svg) no-repeat right center;
	border: 1px solid crimson;
	}
	
	
	
input.inputs:valid,
select.inputs:valid { /* если инпут валид - заполненный текст и бордер зеленеют */
	color: #3FB500; 
	background: #fff url(ok.svg) no-repeat right center;
	border: 1px solid #3FB500; 
}

 

select.inputs { 
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
background: url('img.png') no-repeat right center;
outline: 0; 
}

select.inputs { 
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    -ms-box-sizing:content-box;
    box-sizing:content-box;
}
 



.input_help:after{  /* подсказка при наведении на инпут */
  content: attr(data-title);
  position: absolute;
  bottom: 50px;
  width: 220px;
  text-align: center;
  background: #5DB7D3;
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-20px);
  transition:0.34s linear;
  color: #fff;
  z-index: 10;
  box-shadow:0 5px 12px #A5A5A5;
  pointer-events: none;
}
 
.input_help:hover:after, .input_help_str:hover:after{
  opacity: 1;
  transform: translateY(0);  
}

.inputs::-webkit-input-placeholder {color: transparent}/* webkit */
.inputs::-moz-placeholder          {color: transparent}/* Firefox 19+ */
.inputs:-moz-placeholder           {color: transparent}/* Firefox 18- */
.inputs:-ms-input-placeholder      {color: transparent}/* IE */
  
.inputs:focus::-webkit-input-placeholder {color: #000}
.inputs:focus::-moz-placeholder          {color: #000}
.inputs:focus:-moz-placeholder           {color: #000}
.inputs:focus:-ms-input-placeholder      {color: #000}

.comparison__table {
    margin-top: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-size: 14px;
}