.window_holder{
	position:fixed;
	top:0;
	z-index:999;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.5);
}

.newsletter_module.popup{
	width:100%;
	max-width:289px;
	margin:0 auto;
	position:relative;
	top:50%;
	transform:translateY(-50%);
	background:#F9FCFF;
	padding:31px 16px 22px;
	border:3px solid #ffce39;
	border-radius: 25px;
	box-sizing:border-box;
}

.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;
	margin-bottom: 22px;
}

.newsletter_module.popup button.button-subscribe {
	background: #376CFB;
}
.newsletter_module.popup button.button-unsubscribe {
	background: #FD3730;
}
