.form_review{
	display:flex;
	color:#1B1B1B;
	gap:50px;
}
.form_review .appointment__left{
	min-width:380px;
	display:flex;
	flex-direction:column;
	gap:20px;
}
.form_review .appointment__right{
	width:100%;
}

.form_review h2{
	font-weight: 600;
	font-size: 22px;
	line-height: 130%;
	margin-bottom:15px;
	margin-top:0;
}

.form_review label{
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	display:inline-block;
	margin-bottom:8px;
}
.form_review input, .form_review textarea{
	background: #FFFFFF;
	border-radius: 3px;
	min-height:48px;
	padding:15px;
	border:1px solid rgba(215, 215, 215, 0.5);
	width:100%;
	display:block;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	resize:vertical;
}

.form_review .appointment__but button{
	width:250px;
}

.form_review .field-reviewsform-recaptcha{
	display:none;
}

.form_review #reviewsform-usermessage{
	height:150px;
}
.form_review .form_stars{
	height:64px;
}
.form_review .form_stars ._stars div{
	display:block;
	float:left;
	width:16px;
	height:16px;
	background:url(image/star_empty.svg) no-repeat center center;
	background-size:contain;
	cursor:pointer;
}
.form_review .form_stars ._stars._selected div{
	background-image:url(image/star_full.svg);
}
.form_review .form_stars ._stars:hover div{
	background-image:url(image/star_full.svg) !important;
}
/*.form_review .form_stars ._stars div:hover, .form_review .form_stars ._stars div._active{
	background-image:url(image/star_full.svg) !important;
}*/
.form_review .form_stars ._stars div:hover ~ div{
	background-image:url(image/star_empty.svg) !important;
}
.form_review .form_stars ._stars div._selected ~ div{
	background-image:url(image/star_empty.svg);
}
.form_review .form_stars ._stars div + div{
	margin-left:12px;
}

.form_review .form_button{
	margin-top:45px;
}
.form_review .form_button > div{
	float:left;
}
.form_review .appointment__agreement{
	margin-left:15px;
	font-weight: 500;
	font-size: 13px;
	line-height: 150%;
	color: #9D9D9D;
}
.form_review .appointment__agreement a{
	text-decoration:underline;
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	color: #9D9D9D;
}


#form_review_thanks{
	position:fixed;
	display:none;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	z-index:1000;
	background:rgba(0,0,0,0.4);
}
#form_review_thanks ._in{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}
#form_review_thanks ._box{
	padding:60px;
	max-width:480px;
	background:#fff;
	overflow:hidden;
}
#form_review_thanks ._text1{
	font-weight: 600;
	font-size: 22px;
	line-height: 130%;
	text-align:center;
}
#form_review_thanks ._text2{
	font-weight: 500;
	font-size: 15px;
	line-height: 150%;
	text-align:center;
	margin-top:10px;
}
#form_review_thanks ._btns{
	margin-top:30px;
	text-align:center;
}
#form_review_thanks ._btns .button{
	width:310px;
}


@media (max-width:768px) {
	.form_review{
		flex-direction:column;
		gap:20px;
	}
	.form_review .appointment__left{
		min-width:auto;
	}
	#form_review_thanks ._box{
		padding:50px 15px;
	}
	.form_review .form_button{
		margin-top:20px;
		display:flex;
		flex-direction:column;
	}
	.form_review .appointment__agreement{
		order:1;
		text-align:center;
	}
	.form_review .appointment__but{
		order:2;
		margin-top:10px;
	}
	.form_review .appointment__but .button{
		width:100%;
	}
	.form_review._letter .form_stars{
		display:none;
	}
}