.jst_form form.form_question, .jst_form form.form_reviews {
	display: none;
	justify-content: space-between;
	gap: 15px;
	padding-top: 24px;
}

.jst_form .callback-send {
	display: flex;
	justify-content: space-between;
	padding-right: 16px;
	width: 100%;
}

.jst_form .callback p {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: #5E6367;
	max-width: 502px;
}

@media screen and (max-width: 768px) {
	.jst_form .callback-send {
		flex-direction: column;
		gap: 10px;
	}
}

.relative {
	position: relative;
}
/* START: инфо блок для сообщений */
.info_msg_block {
	text-align: center;
}

.info_msg {
	padding: 10px 25px 10px 25px;
	background-color: #ffe1dd;
	border: 1px solid #cbcbcb;
	border-radius: 4px;
	margin: 10px 0 15px 0;
	display: none;
}

.success_msg {
	padding: 10px 25px 10px 25px;
	background-color: #9ff3ab;
	border: 1px solid #cbcbcb;
	border-radius: 4px;
	margin: 10px 0 15px 0;
	display: none;
}
/* END: инфо блок для сообщений */

/* START: error*/
form .error {
	-webkit-animation: .2s error forwards;
	animation: .2s error forwards;
	border: 1px solid #c23112;
}

@keyframes error {
	0% {
		transform: rotate(0deg)
	}
	25% {
		transform: rotate(2deg)
	}
	50% {
		transform: rotate(0deg)
	}
	75% {
		transform: rotate(-2deg)
	}
	100% {
		transform: rotate(0deg)
	}
}

/* END: error end*/

.blur {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
	background-color: rgba(255, 255, 255, .1);
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	filter: blur(2px);
	pointer-events: none;
}
