.block_with_form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

@media screen and (max-width: 768px) {
	.block_with_form {
		flex-direction: column;
	}
}

.form {
	position: relative;
	width: 300px;
	max-width: 95%;
	padding: 15px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, .5);
}

.form {
	display: flex;
	flex-direction: column;
	font-size: 14px;
}

.form select {
	width: 100%;
	padding: 4px;
	border-radius: 5px;
	border: 0;
	background: #d7d7d7;
	outline: none;
}

.form b {
	text-align: center;
	font-size: 18px;
	margin-bottom: 5px;
}

.form label {
	font-weight: 600;
	margin-bottom: 0;
}

.ask_for_call_button,
.form input[type="button"] {
	width: 100% !important;
	padding: 10px 0;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.form input[type="button"] {
	margin-top: 10px;
	background: rgb(0 17 70);
}

#result {
	margin-top: 10px;
}

.ask_for_call_button {
	font-size: 13px;
	margin: 15px 0 0 0 !important;
	background-color: #fff;
	border: 1px solid rgb(0 17 70);
	color: rgb(0 17 70);
}

#additional_info {
	font-size: 10px;
}

.additional_info_text {
	line-height: 12px;
}

/*-------------------------------------------*/
.popup_outer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .55);
	z-index: 5;
	display: none;
	justify-content: center;
	align-items: center;
}

.popup_inner {
	position: relative;
	width: 400px;
	padding: 15px;
	background-color: #fff;
	box-shadow: 0 15px 50px rgba(0, 0, 0, .5);
}

.popup_header {
	/*display: flex;*/
	/*justify-content: space-between;*/
	/*align-items: center;*/
}

.popup_title {
	width: 80%;
	margin: 20px auto 0;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

.popup_title_img {
	text-align: center;
	margin-top: 20px;
}

.popup_title_img img {
	width: 60px;
}

.popup_links_block {
	width: 70%;
	margin: 0 auto;
}

.popup_links_block_phone {
	width: 100%;
	padding: 10px;
	text-align: center;
	margin-top: 20px;
	background: #00347a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.popup_links_block_phone:hover {
	transition: .3s;
	color: #fff;
	text-decoration: none;
	background: rgb(77, 119, 109);
}

.popup_links_block_whatsapp {
	width: 100%;
	padding: 10px;
	text-align: center;
	margin-top: 20px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.popup_links_block_whatsapp:hover {
	transition: .3s;
	color: #fff;
	text-decoration: none;
	background: #00a93c;
}

.popup_links_block_whatsapp svg {
	width: 25px;
}

.popup_close {
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 10px;
	font-weight: 900;
	font-size: 20px;
}

.popup_body {
	margin-top: 15px;
}

.popup_body form {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: #0046a7;
}

.popup_body form input[type="text"] {
	width: 100%;
	padding: 4px;
	margin-top: 2px;
}

.popup_body form input[type="button"] {
	width: 100%;
	padding: 10px;
	background-color: #00347a;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 20px;
}

.popup_body form input[type="button"]:hover {
	transition: .3s;
	background-color: #0036b2;
}

.popup_body form label {
	font-size: 14px;
	font-weight: 600;
}

.popup_body form label[for="phone"] {
	margin-bottom: 0;
}

.popup_body form input[type="text"] {
	padding: 10px;
	border: 1px solid #414141;
	border-radius: 5px;
}

.popup_body form input[type="text"]:focus {
	transition: .3s;
	outline: none;
	border-color: #000000;
}

.popup_outer.active {
	display: flex;
}