/* Hide Website */

.gdprcookie-mask {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 20;
	background: rgba(0,0,0,0.7);
}

/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    color: #5e5e5e;
    padding: 1.5rem;
    background: #e0e0e0;
	z-index: 25;
	overflow-y: auto;
	box-sizing: border-box;
}

.gdprcookie[data-options="2"] {
	max-width: 45em;
}
.gdprcookie[data-options="3"] {
	max-width: 60em;
}
.gdprcookie.wide[data-options="2"] {
	max-width: 65em;
}
.gdprcookie.wide[data-options="3"] {
	max-width: 80em;
}
	
@media only screen and (max-width: 768px) {
	.gdprcookie {
   		top: 0;
    	left: 0;
		max-height: 100%;
	}
	
	.gdprcookie::-webkit-scrollbar {
		height: 12px;
	}

	.gdprcookie::-webkit-scrollbar-track {
		border-radius: 10px;
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	}

	.gdprcookie::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background: rgba(0,0,0,0.3);
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	}
}

@media only screen and (min-width: 769px) {
	.gdprcookie {
    	left: 50%;
		bottom: 0;
	}
	
	.gdprcookie[data-options="2"] {
		margin-left: -225px;
		/*margin-bottom: -150px;*/
	}
	.gdprcookie[data-options="3"] {
		margin-left: -300px;
		/*margin-bottom: -195px;*/
	}
	.gdprcookie.wide[data-options="2"] {
		margin-left: -325px;
		/*margin-bottom: -100px;*/
	}
	.gdprcookie.wide[data-options="3"] {
		margin-left: -400px;
		/*margin-bottom: -100px;*/
	}
}

.gdprcookie p {
    font-size: 1.4em;
    line-height: 1.5em;
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 2.0em;
    margin-bottom: 1.0rem;
    color: #bc2228;
}
.gdprcookie h2 {
    font-size: 1.8em;
}
.gdprcookie a {
    color: inherit;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.gdprcookie-buttons button {
	color: #fff;
    font-family: inherit;
    font-size: 1.5em;
    padding: .4rem .8rem;
    background: #5e5e5e;
    border: solid .05rem #5e5e5e;
    border-radius: .25rem;
    margin: 0 .5rem;
    cursor: pointer;
}
.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}
.gdprcookie-buttons button.highlight {
	color: #000;
	font-weight: bold;
	border-color: #d8c7b4;
	background-color: #d8c7b4;
}
@media only screen and (max-width: 768px) {
	.gdprcookie-buttons {
		margin-bottom: 2rem;
	}
	.gdprcookie-buttons button + button {
		margin-top: 1rem;
	}
}

.fullsize button {
	width: 100%;
	margin: 0.5em 0 0 0;
}

/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
    font-size: 1.3em;
    margin: 0;
	padding-bottom: 1em;
}
@media only screen and (min-width: 769px) {
	.gdprcookie-types li {
		float: left;
		padding: 0 2% 0 0;
	}
	
	.gdprcookie[data-options="2"] .gdprcookie-types li {
		width: 48%;
	}

	.gdprcookie[data-options="3"] .gdprcookie-types li {
		width: 31%;
	}
}
.gdprcookie-types li label {
    font-size: 1.3em;
    font-weight: bold;
}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
}
