#bgform{
	display: none;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	background: rgba(0,0,0,.8);
	z-index: 99990;
}
.form{
	width: 100%;
	max-width: 610px;
	background: #f0f0f0;
	padding: 40px 15px;
	position: fixed;
	border-radius: 20px;
	z-index: 99991;
	left: 50%;
	transform: translate(-50%, 0);
	top: -100%;
	margin-top: 0;
	transition: all 0.6s ease;
}
.form.active{
	transform: translate(-50%, -50%);
	top: 50%;
}
.form_inner{
	display: table;
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
}
.form_hd{
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 30px;
	text-align: center;
}
.form_th{
	font-size: 24px;
	line-height: 30px;
	text-align: center;
}
.inp_name{
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 10px;
	font-weight: 400;
}
.inp_field{
	font-size: 16px;
	line-height: 16px;
	border: 1px solid #1A1A1A;
	border-radius: 20px;
	padding: 10px 15px;
	color: #B4B4B4;
	margin-bottom: 5px;
	background: transparent;
	width: 100%;
}
.inp_mess{
	font-size: 16px;
	line-height: 16px;
	border: 1px solid #1A1A1A;
	border-radius: 20px;
	padding: 10px 15px;
	color: #B4B4B4;
	margin-bottom: 5px;
	background: transparent;
	width: 100%;
	height: 55px;
	resize: none;
}
.inp_descr{
	font-size: 12px;
	line-height: 16px;
	opacity: 0.5;
	margin-bottom: 15px;
}
input[name="submit"]{
	background: rgba(184, 199, 187, 0.5);
	border-radius: 20px;
	padding: 10px 50px;
	border: 0;
	font-size: 18px;
	cursor: pointer;
}