/* GDPR Cookie dialog */
#cookiebanner{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(58,67,77,.75);
	z-index: 1000;
	pointer-events: all;
}
.gdprcookie {
    position: fixed;
    color: white;
    font-size: .9em;
    line-height: 1.5em;
    left: 1.5rem;
	right: 1.5rem;
    bottom: 1.5rem;
    
    padding: 1rem;
    background: black;
	z-index: 1001;
	overflow: auto;
}
.gdprcookie.advanced, 
.tablet .gdprcookie, 
.mobile .gdprcookie{
	top:1.5rem;
}


.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.2em;
    margin-bottom: .5rem;
	color: #fff;
}
.gdprcookie h2 {
    font-size: 1.2em;
}
.gdprcookie a {
    color: inherit;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 1em;
    background: none;
    cursor: pointer;

	outline: none;
    background-color:#333;
	
    padding: 0;
	display:inline-block;
	margin:5px 15px 30px 0px;
	transition: all .2s ease;
	
	border: 2px solid #333;
	border-radius: 100px;
	min-height: 48px;
	min-width: 11em;
	text-align: center;
	
	-webkit-box-shadow: 0 6px 6px -3px rgba(0,0,0,.2), 0 10px 14px 1px rgba(0,0,0,.14), 0 4px 18px 3px rgba(0,0,0,.12);
	box-shadow: 0 6px 6px -3px rgba(0,0,0,.2), 0 10px 14px 1px rgba(0,0,0,.14), 0 4px 18px 3px rgba(0,0,0,.12);
	
}
.gdprcookie-buttons button:hover,
.gdprcookie-buttons button:first-of-type:hover{
	background-color:#8e0037;
	border-color:#8e0037;
}

.gdprcookie-buttons button:first-of-type{background-color: #49b300; border-color: #49b300;}

.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}


/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
	/*
    float: left;
    width: 45%;
	*/
    padding: 0;
    margin: 10px 0;
}
.gdprcookie-types li div{ font-weight: bold;}
.gdprcookie-types li table{width:100%; font-weight: normal;}
.gdprcookie-types li table td{border: 1px solid #333; vertical-align: top; padding:2px;}
.gdprcookie-types li table tr:first-of-type td{font-weight: bold;}


.gdprcookie-types li label{font-weight: bold;}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
}

@media screen and (max-width: 470px){}