#cookieBanner{
	width:100%;
	
	border-top:1px solid #ccc;
	background-color:white;
	background-image:url("https://cms.artur.eu/static/img/cookieBannerBG.png");
	background-repeat:repeat;
	
	display:none;
	align-items:center;
	justify-content:center;

	position:fixed;
	bottom:0;
	left:0;
	z-index:9999999999999;
}

#cookieBanner *{
	font-family:"museo-sans", Helvetica, Arial, sans-serif;
}

#cookieBannerInner{
	max-width:1000px;
	width:100%;
	padding:20px;
	box-sizing:border-box;
	position:relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#cookieBannerText{
	font-weight:300;
	margin-bottom:20px;
	font-size:18px;
	line-height: 150%;
}

#cookieBannerText strong{
	font-weight:600;
}

#cookieBannerCheckboxes{
	display:flex;
	border:1px solid #ccc;
	border-radius:10px;
	padding:10px;
	background-color:white;
	margin-bottom:20px;
	width:100%;
}

.cookieBannerCheckbox{
	width:50%;
	display:flex;
	cursor:pointer;
	padding:10px;
}

.cookieBannerCheckbox.disabled{
	opacity:0.5;
	cursor:default;
}

.cookieBannerLabel{
	font-size:18px;
	margin-left:8px;
	font-weight:300;
}

.cookieBannerCheckbox span{
	display:block;
	width:20px;
	height:20px;
	border-radius:2px;
	border:1px solid #777;
	background-color:white;
	flex-shrink:0;
}

.cookieBannerCheckbox.checked span{
	background-image:url("https://cms.artur.eu/static/img/cookieBannerCheck.svg");
	background-repeat:no-repeat;
	background-size: 18px;
	background-position: 1px 1px;
}

.cookieBannerButton{
	border-radius:2px;
	border:1px solid #006c30;
	background-color:white;
	font-weight:300;
	cursor:pointer;
	text-align:center;
	box-sizing:border-box;
	font-size:18px;
	padding:8px;
}

.cookieBannerButton:hover{
	background-color:#eee;
	border:1px solid #666;
}

.cookieBannerButton.size-100{
	width:100%;
}

.cookieBannerButton.size-50{
	width:calc(50% - 5px);
}

.cookieBannerButton.dominant{
	background-color:#006c30;
	color:white;
	font-size:22px;
	padding:10px;
	margin-bottom:10px;
}

.cookieBannerButton.dominant:hover{
	background-color:#00497D;
	border:1px solid #00497D;
}

#cookieBannerLogo{
	position:absolute;
	right:20px;
	top:0;
	background-color:white;
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #eee;
	border-top:none;
	border-radius: 0 0 10px 10px;
	transition:padding 0.5s;
}

#cookieBannerLogo:hover{
	padding-top:7px;
}

#cookieBannerLogo img{
	width: 35px;
	padding: 7px;
	box-sizing:border-box;
}

@media screen and (max-width:580px){
	
	#cookieBannerCheckboxes{
		flex-direction:column;
	}
	
	.cookieBannerCheckbox{
		width:100%;
	}
	
	#cookieBannerText,
	.cookieBannerLabel{
		font-size:16px;
	}
	
	#cookieBannerButton {
		padding: 5px 10px;
		font-size: 18px;
	}
	
	.cookieBannerButton.size-50{
		width:100%;
		padding: 5px 10px;
		margin-bottom:10px;
		font-size: 18px;
	}
}