/* GDPR Cookie dialog */

.gdprcookie {
	position: fixed;
	color: #242424;
	font-size: .8em;
	line-height: 1.5em;
	right: 1.5rem;
	bottom: 1.5rem;
	max-width: 29em;
	padding: 2.2rem;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 8px;
	border: 1px solid #eee;
	z-index: 1000;
}

.gdprcookie h1,
.gdprcookie h2 {
	font-size: 1.2em;
	margin-bottom: .5rem;
	color: #022952;
	font-family: sans-serif;
	font-weight: 700;
}

.gdprcookie a {
	color: inherit;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
	margin-top: 20px;
}

.gdprcookie-buttons button {
	color: white;
	font-family: sans-serif;
	font-size: 1em;
	padding: .4rem 0.6rem;
	border-radius: .15rem;
	cursor: pointer;
}

.gdprcookie-buttons button:first-child {
	background-color: #022952;
	color: #fff;
	font-weight: 500;
	margin-right: 10px;
	transition: color 0.2s;
}

.gdprcookie-buttons button:first-child:hover {
	background-color: #000;
}

.gdprcookie-buttons button:last-child {
	background-color: none;
	color: #022952;
	font-weight: 400;
	margin-right: 10px;
	text-decoration-line: underline;
}

.gdprcookie-buttons button:last-child:hover {
	color: #0B1A35;
}


.gdprcookie-buttons button:disabled {
	color: #bbb;
}

.gdprcookie-buttons button:disabled:hover {
	color: #bbb;
}

input[type="checkbox"] {
	accent-color: #95682B;
}

.gdprcookie-buttons .acceptWhenCloseLGPD {
	background: url(../imgs/svg/close1.svg);
  position: absolute;
  margin: 15px;
  top: 0;
  right: 0;
	transition: 0.2s;
	width: 29px;
	height: 29px;
}

.gdprcookie-buttons .acceptWhenCloseLGPD:hover {
	opacity: 0.8;
}

/* 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: 50%;
	padding: 0;
	margin: 0;
}

.gdprcookie-types input[type=checkbox] {
	margin-right: .25rem;
}

@media (max-width: 640px) {
	.gdprcookie {
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		max-width: inherit;
		overflow-x: hidden;
		box-shadow: none;
		border-radius: 0px;
		border: none;
		border-top: 2px solid #022952;
		border-radius: none;
	}
}