.ank-contact-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}
.ank-contact-popup.is-open {
	display: flex;
}
.ank-contact-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.ank-contact-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 620px;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
	padding: 22px 24px 24px;
	box-sizing: border-box;
}
.ank-contact-popup__close {
	position: absolute;
	top: 6px;
	right: 10px;
	z-index: 2;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.ank-contact-popup__close:hover {
	color: #f2811b;
}
.ank-contact-popup__title {
	margin: 0 0 18px;
	padding: 0 24px;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: #ef7f1a;
	line-height: 1.3;
}
.ank-contact-popup__grid {
	display: flex;
	align-items: center;
	gap: 22px;
}
.ank-contact-popup__info {
	flex: 0 0 38%;
	max-width: 38%;
	text-align: left;
}
.ank-contact-popup__logo {
	display: block;
	max-width: 160px;
	width: 100%;
	height: auto;
	margin-bottom: 18px;
}
.ank-contact-popup__contacts {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ank-contact-popup__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 13px;
	line-height: 1.4;
	color: #333;
}
.ank-contact-popup__contacts li em {
	flex: 0 0 16px;
	margin-top: 2px;
	color: #f2811b;
	font-size: 14px;
	text-align: center;
}
.ank-contact-popup__contacts a {
	color: #333;
	text-decoration: none;
	word-break: break-word;
}
.ank-contact-popup__contacts a:hover {
	color: #f2811b;
}
.ank-contact-popup__form-wrap {
	flex: 1 1 auto;
	min-width: 0;
}
.ank-contact-popup__form .form-field {
	margin-bottom: 10px;
}
.ank-contact-popup__form .form-control {
	width: 100%;
	height: 40px;
	padding: 8px 12px;
	font-size: 13px;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	box-shadow: none;
	background: #fff;
}
.ank-contact-popup__form .form-control:focus {
	border-color: #f2811b;
	outline: none;
}
.ank-contact-popup__form .form-control.txtarea {
	height: 78px;
	min-height: 78px;
	resize: vertical;
}
.ank-contact-popup__submit {
	display: block;
	width: 100%;
	min-width: 0 !important;
	margin-top: 4px;
	padding: 10px 16px !important;
	font-size: 14px !important;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #fff !important;
	background: #ef7f1a !important;
	border: 0 !important;
	border-radius: 999px !important;
	text-align: center;
}
.ank-contact-popup__submit:hover,
.ank-contact-popup__submit:focus {
	background: #f2811b !important;
	color: #fff !important;
}
body.ank-popup-open {
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.ank-contact-popup {
		padding: 10px;
		align-items: center;
		justify-content: center;
	}
	.ank-contact-popup__dialog {
		max-width: 100%;
		max-height: calc(100vh - 20px);
		margin-top: 0;
		padding: 18px 14px 16px;
		border-radius: 8px;
	}
	.ank-contact-popup__title {
		font-size: 18px;
		margin-bottom: 14px;
		padding: 0 20px;
	}
	.ank-contact-popup__grid {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.ank-contact-popup__info {
		display: none;
	}
	.ank-contact-popup__form .form-control {
		height: 38px;
	}
	.ank-contact-popup__form .form-control.txtarea {
		height: 70px;
		min-height: 70px;
	}
	.ank-contact-popup__close {
		top: 2px;
		right: 6px;
		font-size: 24px;
	}
}
