/* GDPR Cookie dialog */

.gdprcookie
{
	font-family: "Merriweather", sans-serif;
	position: fixed;
	color: #333;
	font-size: .8em;
	line-height: 1.4em;
	left: 1.5rem;
	bottom: 1.5rem;
	max-width: 30em;
	padding: 1rem;
	background: #ddd;
	z-index: 10000;
	border-radius: 10px;
	text-align: justify;
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.2em;
    margin-bottom: .5rem;
}
.gdprcookie h2 {
    font-size: 1.2em;
}
.gdprcookie a
{
	color: #39418C;
	text-decoration: underline;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 1em;
    padding: .4rem;
    border: solid 1px #1d28a1;
    border-radius: 5px;
    margin:.5rem;
    background: #39418C;
    cursor: pointer;
}
.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 {
    list-style: none;
    float: left;
    padding: 0;
    margin: 0;
}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
}


/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

.gdprcookie
{
	font-size: .8em;
	line-height: 1.3em;
	left: 0rem;
	bottom: 0rem;
	max-width: 30em;
	max-height: 76%;
	padding: 1rem;
	overflow:scroll; 
}


}