#cookieConsent {
	background-color: rgba(20, 20, 20, 0.8);
	min-height: 26px;
	font-size: 14px;
	color: #ccc;
	line-height: 26px;
	padding: 1em 2em 0 2em;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	z-index: 9999;
}

#cookieConsent div:last-of-type {
	margin-top: 1em;
}

#cookieConsent a {
	color: #4B8EE7;
	text-decoration: none;
}

#closeCookieConsent {
	float: right;
	display: inline-block;
	cursor: pointer;
	height: 20px;
	width: 20px;
	margin: -15px 0 0 0;
	font-weight: bold;
}

#closeCookieConsent:hover {
	color: #FFF;
}

#cookieConsent a.cookieConsent.OK {
	background-color: var(--info-blue);
	color: white;
	display: inline-block;
	border-radius: 2px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 1em 0 10px;
}

#cookieConsent a.cookieConsent.MOD {
	background-color: var(--info-blue);
	color: white;
	display: inline-block;
	border-radius: 2px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 1em 0 10px;
}

#cookieConsent a.cookieConsent.KO {
	box-shadow: inset 0 0 0 2px var(--info-blue);
	color: white;
	display: inline-block;
	border-radius: 2px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 1em 0 10px;
}

.cookieConsent {
    margin-bottom: 1.5em !important;
}

.cookieConsent.SUBMIT{
	margin: 0 auto;
	background-color: var(--info-blue);
}

#cookieConsent a.cookieConsent:hover {
	background-color: var(--info-blue-hover);
	box-shadow: inset 0 0 0 2px var(--info-blue-hover);
	color: white !important;
}


#cookies-popup {
	background-color: #000000a3;
	/* background-color: #2a2f4af9; */
	height: calc(100% );
	width: 100%;
	z-index: 999;
	position: fixed;
	bottom: 0;
	display: none;
	font-size: .75em;
}

@media screen and (min-width: 361px) {
	#cookies-popup {
		font-size: .7em;
	}
}

#cookies-popup * {
	color: white;
}

#cookies-popup ul {
	font-size: 2em;
	text-align: center;
	line-height: 2;
	width: 13.5em;
	margin: 0 auto;
	position: relative;
	top: 40%;
	transform: translateY(-50%);
}

#cookies-popup li {
	border-bottom: 1px solid var(--blue);
	list-style: none;
	padding: 0;
}

#cookies-popup li > div {
	display: inline-flex;
	width: 80%;
	justify-content: space-between;
}

#cookies-popup li .switch {
	vertical-align: text-bottom;
	margin: 0;
}

#cookies-popup li:last-of-type {
	border-bottom: none;
}

#cookies-popup li.active {
	background-color: var(--blue);
}

#cookies-popup a {
	display: block;
	padding: 0 1em;
}

#cookies-popup .info {
    margin-top: -1em;
	margin-bottom: 1.3em;
}

#cookies-popup .info a {
	color: #4B8EE7;
	/* text-decoration: none; */
	margin: 0 auto;
}

#cookies-popup .info:hover {
	text-decoration-line: underline;
}

.switch {
	position: relative;
	display: inline-block;
	/* width: 60px; */
	width: 2.7em;
	/* height: 34px; */
	height: 1.1em;
}

@media screen and (min-width: 1281px) {
	.switch {
		width: 2.5em;
	}
}

@media screen and (min-width: 1681px) {
	.switch {
		width: 2.3em;
	}
}


.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	/* height: 26px; */
	height: .7em;
	/* width: 26px; */
	width: .7em;
	left: .3em;
	bottom: .1em;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

.switch.disabled input:checked+.slider {
	background-color: #e2e2e2;
}

.switch.disabled {
	pointer-events: none;
}


input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}