#cookiecontainer{
	display: none;
}

#cookiecontainer .button{
	color: #1b4538;
    background-color: white;
    display: inline-block;
    padding: 8px 60px 8px 20px;
    text-transform: uppercase;
    position: relative;
    margin-top: 10px;
    transition: background-color 0.5s;
    text-decoration: none;
	font-weight: 600;
	height: auto;
	width: auto;
}

body.cookie #cookiecontainer{
	display: block;
	position:fixed;
	z-index: 100000;
	background-image: url('/_img/svg/cookie_arc.svg');
	background-repeat:no-repeat;
	background-size: 100% 100%;
	color: white;
	font-size:13px;
	line-height: 16px;
	bottom: 0;
	padding: 58px 124px 20px 20px;
}

body.cookie #cookiecontainer .green{
	background-color: #95c53d;
}

body.cookie #cookiecontainer a{
	color: white;
}



@media all and (max-width:720px) {
	body.cookie #cookiecontainer{
		position:relative;
		background-image: none;
		background-color: #95c53d;
		padding: 20px;
		border-bottom: 1px solid #1B4538;
		margin-bottom: 16px;
	}
	
	body.cookie #cookiecontainer br{
		display: none;
	}
}