template#cookie_banner {
	display: none;
}

#cc {

	position: fixed;
	z-index: 999999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.5);
	font-family: hause-din, Roboto, sans-serif;
	font-weight: 300;
	font-size: 1rem;
	color: #4d4d4d;
	line-height: 1.5;
}
#cc > .ccModal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	width: 90%;
	height: auto;
	max-height: calc(100vh - 50px);
	min-height: 295px;
	margin: auto;
	padding: 1em;
	background-color: #fff;
	overflow-y: auto;
	box-shadow: 0 0 5px #000;
	transition: all .5s ease-in-out;
}

#cc > .ccText {
	width: calc(100% - 150px);
	float: left;
}

#cc > .ccText p {
    margin: 0;
}
div#ccConfirmAll {
	background: #ca0534;
	color: white;
	border: 1px solid #ca0534;
}
#ccSave {
	display: none;
}
#cc .ccClose {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#cc #ccPolicyLinks {
	text-align: center;
}
ul.options {
	display: none;
}
ul.options li {
	margin-bottom: 10px;
}
ul.options li span {
	color: black;
}
.showInfo {
	padding-top: 10px;
}
.cookie-button {
	cursor: pointer;
	border: 1px solid #000;
	padding: 5px 10px;
	text-align: center;
	margin-bottom: 10px;
	margin-right: 10px;
	margin-top: 10px;
	min-width: 140px;
}

#ccRedecide {
	cursor: pointer;
	margin-bottom: 20px;
	background: #ca0534;
	display: inline-block;
	color: white !important;
	padding: 10px 15px 7px 15px;
	box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.switch {
	position: relative;
	display: inline-block;
	width: 35px;
	height: 23px;
}

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


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

.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 4px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

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

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

input:checked + .slider:before {
	-webkit-transform: translateX(12px);
	-ms-transform: translateX(12px);
	transform: translateX(12px);
}
.switch[for="necessary"] .slider {
	opacity: 0.5;
}
/*.switch[for="necessary"] input {*/
/*	pointer-events: none;*/
/*}*/

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

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

@media screen and (max-width: 600px) {
	#cc > .ccText {
		width: 100%;
		float: none;
		padding-bottom: 30px;
	}
    #cc > .ccClose {
        width: 100%;
    }
    #cc #ccConfirmAll, #cc #ccDecline {
        width: calc(50% - 10px);
        float: left;
    }
    #cc #ccConfirmAll {
        margin-right: 10px;
    }
    #cc #ccDecline {
        margin-left: 10px;
    }
}
