
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

#gray_layer_popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 99998;
}

#layer_popup {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 700px;
	margin-left: -350px;
	margin-top: -200px;
	background: #fff;
	z-index: 99999;
	padding: 10px;
	border-radius: 6px;
	font-family: Roboto;
	color: #2E2E2E;
}
#layer_popup > div {
	background: #D8E2F1;
	padding: 50px 75px;
	border-radius: 6px;
	position: relative;
}

#gray_layer_popup, #layer_popup {
	display: none;
}
#gray_layer_popup.active, .active + #layer_popup {
	display: block;
}

#layer_popup .close {
	position: absolute;
	height: 20px;
	width: 20px;
	cursor: pointer;
	background: url('images/close.svg') no-repeat;
	top: 15px;
	right: 15px;
}
#layer_popup .title {
	font-size: 30px;
	line-height: 110%;
	margin: 0 0 25px;
	max-width: 350px;
	font-weight: bold;
}
#layer_popup .text {
	font-weight: 300;
	max-width: 490px;
	margin: 0 0 30px;
}
#layer_popup .button a {
	font-size: 20px;
	font-weight: 400;
	max-width: 260px;
	display: block;
	text-align: center;
	color: #fff;
	background: #7E7EF8;
	border-radius: 4px;
	line-height: 24px;
	padding: 15px 0;
	transition: all 0.3s ease 0s;
}
#layer_popup .button a:hover {
	background: #6f6fff;
}

















