#cookie-warning { display: none; }
#cookie-warning.show {
	display: block;
	position: fixed;
	width: 450px;
	max-width: 100%;
	background-color: #fff;
	left: 0;
	right: 0;
	top: 40px;
	margin: 0 auto;
	z-index: 1060;
	padding: 20px;
}

#cookie-warning.show p {
	font-size: 15px;
	line-height: 2;
}

body.fixed {
	//position: fixed;
	overflow: hidden;
}

body.fixed::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0.65;
	z-index: 1050;
}

.greenbtn{
	display:inline-block;
	color:#fff;
	background:green;
	line-height:40px;
	line-height:2;
	font-size:18px;
	font-family:Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight:600;
	text-transform:uppercase;
	border:none;
	text-align:center;
	padding:0 4rem;
	margin:0 auto;
}
.greenbtn:hover{
	color:#fff;
	background:green;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    #cookie-warning.show {
	top: 20px;
	padding: 10px;
    }
    #cookie-warning.show p {
	font-size: 12px;
	line-height: 1;
    }
}

