.site-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.site-modal.active {
	display: block;
}

.site-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.site-modal__dialog {
	position: relative;
	width: calc(100% - 30px);
	max-width: 560px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	margin: 20px auto;
	background: #fff;
	border-radius: 20px;
	padding: 32px 24px 24px;
	z-index: 2;
	box-sizing: border-box;
	top: 50%;
	transform: translateY(-50%);
}

.site-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #f3f3f3;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
}

.site-modal__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #252525;
}

.site-modal__text {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 24px;
}

.site-modal__form .input {
	margin-bottom: 16px;
}

body.modal-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.site-modal__dialog {
		padding: 24px 16px 16px;
		border-radius: 16px;
	}

	.site-modal__title {
		font-size: 22px;
	}
}
