/*# sourceMappingURL=news-popup.css.map*/

.news-popup {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 10000;
}

.news-popup.opened {
	display: flex;
}

.news-popup__overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .4);
}

.news-popup__main {
	display: flex;
	width: 100%;
	max-width: 640px;
	max-height: 95vh;
	padding: 48px 24px;
	position: relative;
	overflow-y: auto;
	background-color: #fff;
}

.news-popup__close {
	width: 20px;
	height: 20px;
	border: none;
	padding: 0;
	position: absolute;
	font-size: 0;
	background-color: transparent;
	cursor: pointer;
	top: 24px;
	right: 24px;
}

.news-popup__close:after, .news-popup__close:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #575c5f;
}

.news-popup__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.news-popup__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.news-popup__content {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.news-popup__text {
	text-align: center;
}

.news-popup__heading {
	margin-bottom: 16px;
	text-align: center;
}

.news-popup__form {
	margin-top: 32px;
}

.news-popup__submit {
	border: none;
	margin: 0 auto;
}

.news-popup__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.news-popup__label {
	font-size: 16px;
}

.news-popup__form-cell {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.news-popup__form-cell input {
	border: 1px solid #d0d3dd;
	padding: 10px 16px;
	font-size: 16px;
	line-height: 140%;
	border-radius: 8px !important;
	outline: none;
}
