.background {
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 998;
	top: 0;
	left: 0;
}
.cookies_popup {
	background: #fff;
	position: fixed; 
    top: 50%;
    left: 50%;
	width: 100%;
    max-width: 550px; 
	padding: 55px 40px 55px 40px;
	z-index: 999;
	transform: translate(-50%,-50%);
	text-align: left;
	line-height: 1.2;
	color: #000000;
}
.cookies_popup h1 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
}
.cookies_popup p {
	font-size: 18px;
}
.cookies_popup p a {
	color: #3d5a80;
	text-decoration: underline;
}
.btn_cont {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.btn_cont button {
	width: 33%;
	max-width: 140px;
	border: 3px solid #3d5a80;
	font-size: 18px;
	border-radius: 5px;
	padding: 12px 0;
	cursor: pointer;
}
.btn_cont button:nth-child(1), .btn_cont button:nth-child(2), .btn_cont button:nth-child(3):hover {
	background: #fff;
	color: #3d5a80;
}
.btn_cont button:nth-child(3), .btn_cont button:nth-child(1):hover, .btn_cont button:nth-child(2):hover {
	background: #3d5a80;
	color: #fff;
}	
.close_button {
	position: absolute;
	right: 40px;
	top: 30px;
	width: 31px;
	height: 31px;
	opacity: 0.3;
	background: none;
	border: 1px solid #808080;
	border-radius: 0;
	cursor: pointer;
}
.close_button:hover {
	opacity: 1;
}
.close_button:before, .close_button:after {
	position: absolute;
	top: 5px;
	left: 13px;
	content: ' ';
	height: 21px;
	width: 3px;
	background-color: #808080;
}
.close_button:before {
  transform: rotate(45deg);
}
.close_button:after {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {

}	