/* GDPR Cookie dialog */

.gdprcookie {
	width: 100%;
	max-width: 800px;
	box-sizing:border-box;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0px;
	z-index: 5500;
	color: #333;
	font-size: 1em;
	margin: auto;
	padding: 32px;
	line-height: 10px;	
	background: #FFF;
	-webkit-box-shadow: 0px 0px 0px 1px #DDD;
	-moz-box-shadow: 0px 0px 0px 1px #DDD;
	-o-box-shadow: 0px 0px 0px 1px #DDD;
	box-shadow: 0px 0px 0px 1px #DDD;
}

.gdprcookie h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	padding: 8px 0 16px 0px
}

.gdprcookie p, .gdprcookie-intro p {
	font-size: 1em;
	line-height: 18px ;
	margin-bottom: 16px;
	padding-right: 42px;
}

/* GDPR Cookie buttons */

.gdprcookie-buttons {
	text-align: center;	
}

.gdprcookie-buttons button,
.gdprcookie-types button,
.gdprcookie-intro button {
	margin: 16px 6px 0px 6px;
	padding: 10px 22px;
	border-radius: 4px;
	background: none;
	font-family: inherit;
	font-size: 0.8em;
	cursor: pointer;
	display: inline-block;
	transition: all .3s;
	cursor: pointer;
}

.gdprcookie-buttons button,
.gdprcookie-types button {
	min-width: 204px;
}

button.acc-all {
	color: #FFFFFF;
	border: solid 1px #D00015;
	background: #D00015;
}

button.acc-all:hover {
	background-color: #D00015;
	border: solid 1px #D00015;
}

button.save-pref,
button.only-ess,
button.set-pref {
	color: #D00015; 
	border: solid 1px #D00015;	
}

button.save-pref:hover,
button.only-ess:hover,
button.set-pref:hover {
	color: #FFFFFF; 
	border: solid 1px #D00015;
	background: #D00015;
}

button.set-pref:disabled,
button.set-pref:disabled:hover {
	color: rgba(208,0,21,.5);
	border: solid 1px rgba(208,0,21,.5);
	background: none;
	cursor: default;
}



#close-cookiemsg {
	position: absolute;
	top: 8px;
	right: 18px;
	max-width: 32px;
	height: 32px;
	border: none;
	background-color: #FFF;
	background-image: url(../images/svg/close-ico.svg);
	background-size: 36px 36px;
	background-repeat: no-repeat;
	background-position: center;
}


/* GDPR Cookie types */

.gdprcookie-types {
	background: #F5F5F5;
	padding: 16px;
	margin: 16px 0 0 0;
	text-align: center;
}

.gdprcookie-types ul {
	overflow: hidden;
	max-width: 310px;
	padding: 0;
	margin: 0 auto;
}

.gdprcookie-types li {
	display: block;
	list-style: none;
	float: left;
	width: 50%;

	padding: 12px 0;
	margin: 0;
	text-align: left;
}

.gdprcookie-types label {
	cursor: pointer;
	padding: 8px;
}

.gdprcookie-types input[type=checkbox] {
	padding: 8px;
	cursor: pointer;
}

#gdpr-cookietype-1:focus-visible {
	outline: 3px solid #ea504d;
	border-radius: 4px;
	transition: all 0.0s
}

/* -----------------------------------
TABLETS PORTRAIT
------------------------------------ */
@media only screen and (min-width: 580px){

.gdprcookie-types ul {
	max-width: 350px;
}

.gdprcookie-types li {
	width: 50%;
	max-width: 200px;
	text-align: center;
}

}