.window_holder {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);

	display: flex;
	justify-content: center;
	align-items: center;

	padding: 20px; /* защита от выхода за края */
	box-sizing: border-box;
}

.newsletter_module.popup {
	width: 100%;
	background: #F9FCFF;
	padding: 31px 16px 22px;
	border: 3px solid #ffce39;
	border-radius: 25px;
	box-sizing: border-box;
	position: relative;
}


.popup_close{
	position:absolute;
	top:10px;
	right:10px;
width:20px;
	height:20px;
	cursor:pointer;
	padding:0;
}

.popup_close .fa {
	width: 15px !important;
	height: 15px !important;
	cursor: pointer;
}

.popup_close .fa::before,
.popup_close .fa::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #FD3730; /* Цвет линий */
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.popup_close .fa::before {
	transform: rotate(45deg);
}

.popup_close .fa::after {
	transform: rotate(-45deg);
}

.newsletter_module.popup .heading {
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:15px;
}
.newsletter_module.popup .heading img {
	display:inline-block !important;
	width:46px;
}
.newsletter_module.popup .heading span {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #376CFB;
}
.newsletter_module.popup form {
	margin-top:20px;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	gap:15px;
}

.newsletter_module.popup form input {
	width: 165px;
	height: 37px;
	background: #EBEBEB;
	border-radius: 10px;
	padding:0 15px;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 21px;
	color: #787878;
	border:0;
	box-sizing: border-box;
}
.newsletter_module.popup form input[type=email] {
	width: 214px;
}
.newsletter_module.popup #buttons {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	margin-top:23px;
}
.newsletter_module.popup #buttons img {
	width: 53px;
	display: block;
	margin-top:7px;
}
.newsletter_module.popup button {
	height: 37px;
	border-radius: 10px;
	padding:0 31px;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 20px;
	text-transform: uppercase;
	color: #FFFFFF;
	border:0;
	cursor:pointer;
	margin-left:auto;
	margin-right:auto;
	display: flex;
	align-items:center;.window_holder {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px; /* чтобы на маленьких экранах блок не упирался в края */
	box-sizing: border-box;
}

/* Попап */
.newsletter_module.popup {
	width: 100%;
	max-width: 340px;
	background: #F9FCFF;
	padding: 31px 16px 22px;
	border: 3px solid #ffce39;
	border-radius: 25px;
	box-sizing: border-box;
	position: relative;
}

/* Крестик */
.popup_close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.popup_close .fa {
	width: 15px;
	height: 15px;
	position: relative;
	display: block;
}

.popup_close .fa::before,
.popup_close .fa::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #FD3730;
	top: 50%;
	left: 0;
}

.popup_close .fa::before {
	transform: translateY(-50%) rotate(45deg);
}

.popup_close .fa::after {
	transform: translateY(-50%) rotate(-45deg);
}

/* Заголовок */
.newsletter_module.popup .heading {
	display: flex;
	align-items: center;
	gap: 15px;
}

.newsletter_module.popup .heading img {
	width: 46px;
}

.newsletter_module.popup .heading span {
	font-family: 'Roboto';
	font-weight: 500;
	font-size: 18px;
	color: #376CFB;
}

/* Форма */
.newsletter_module.popup form {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.newsletter_module.popup form input {
	width: 100%;
	max-width: 214px;
	height: 40px;
	background: #EBEBEB;
	border-radius: 10px;
	padding: 0 15px;
	font-family: 'Roboto';
	font-size: 18px;
	color: #787878;
	border: none;
	box-sizing: border-box;
}

/* Кнопки */
.newsletter_module.popup #buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.newsletter_module.popup #buttons img {
	width: 53px;
	display: block;
}

.newsletter_module.popup button {
	height: 40px;
	border-radius: 10px;
	padding: 0 31px;
	font-family: 'Roboto';
	font-size: 17px;
	color: #fff;
	border: none;
	cursor: pointer;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
}

.newsletter_module.popup button.button-subscribe {
	background: #376CFB;
}

.newsletter_module.popup button.button-unsubscribe {
	background: #FD3730;
}

/* Адаптив с уменьшением размеров на очень маленьких экранах */
@media (max-width: 360px) {
	.newsletter_module.popup {
		max-width: 280px;
		padding: 25px 14px;
	}

	.newsletter_module.popup .heading span {
		font-size: 16px;
	}
}
	margin-bottom: 22px;
}

.newsletter_module.popup button.button-subscribe {
	background: #376CFB;
}
.newsletter_module.popup button.button-unsubscribe {
	background: #FD3730;
}
