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

#cookieConsent * {
	color: #ccc;
}

#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 {
	color: white !important;
	display: inline-block;
	border-radius: 2px;
	padding: 0 20px;
	cursor: pointer;
	float: right;
	margin: 0 4em 0 10px;
	margin-bottom: 1.5em !important;
}

.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.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.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.SUBMIT{
	margin: 0 auto;
	background-color: var(--info-blue);
}

.cookieConsent:hover {
	background-color: var(--info-blue-hover);
	/* box-shadow: inset 0 0 0 2px var(--info-blue-hover); */
	box-shadow: inset 0 0 0 2px var(--info-blue);
	color: var(--info-blue) !important;
	/* color: white !important; */
	/* font-weight: bold; */
}

#cookies-popup {
	/* background-color: var(--black-transparent); */
	background-color: #4a4a4afa;
	background-color: #000000a3;
	/* height: 30em; */
	height: calc(100% );
	/* width: 26em; */
	width: 100%;
	z-index: 999;
	position: fixed;
	/* top: 50%; */
	bottom: 0;
	/* transform: translateY(-50%); */
	/* border-radius: 10px; */
	display: none;
}

#cookies-popup * {
	color: white;
}

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

#cookies-popup li {
	border-bottom: 1px solid var(--blue);
}

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

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

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

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

#cookies-popup a {
	display: block;
}

#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.4em;
	/* height: 34px; */
	height: 1.1em;
}

.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%;
}