#cookie-bar {
	background-color:rgba(0, 0, 0, 0.85); /* Hintergrund Farbe an die Gestaltung der jeweiligen Website anpassen */
	color: #fff;
	height:auto; 
	line-height:24px; 
	text-align:center; 
	padding:15px 20px 20px 20px;
	text-align: center;
    width: 100%;
	z-index: 9999;
}
#cookie-bar.fixed {
	position:fixed; 
	top:0; 
	left:0; 
	right: 0; 
	width:100%;
}
#cookie-bar.fixed.bottom {
	bottom:0; 
	top:auto;
}
#cookie-bar p {
	padding:0;
	margin: 0 auto;
    display: block;
    position: relative;
	font-family: "Crimson Text script=all rev=1", "Adobe Blank";
	font-size: 16px;
	width: 90%;
}
#cookie-bar a {
	color: #49a78a; /* Primaere Farbe der jeweiligen Website einsetzen */
	font-weight: bold;
	text-decoration:none;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#cookie-bar a:hover {
	color:#fff;
}
#cookie-bar .cb-enable,
#cookie-bar .cb-disable {
	background-color: #418671; /* Primaere Farbe der jeweiligen Website einsetzen */
    text-decoration: none;
    padding: 4px 10px 3px 10px;
    font-family: "Crimson Text script=all rev=1", "Adobe Blank";
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
/*    border-radius: 4px;*/ /* Button From an die Gestaltung der jeweiligen Website anpassen */
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 12px;
	margin-top: 10px;
    cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#cookie-bar .cb-enable:hover,
#cookie-bar .cb-disable:hover{
	background-color: #fff;
    color: #333;
}
#cookie-bar .cb-disable {
	display: none;
}
@media only screen and (max-width:1023px){
	#cookie-bar {
		padding:22px 5px 27px 5px;
	}
	#cookie-bar p {
		width: 100%;
	}
}
/*
@media only screen and (max-width:799px){
	#cookie-bar {
		padding:22px 20px 27px 30px;
	}
	#cookie-bar p {
		width: 60%;
	}
}

@media only screen and (max-width:765px){
	#cookie-bar p {
		width: 80%;
	}
}
/*
#cookie-bar .cb-disable {background:#990000;}
#cookie-bar .cb-disable:hover {background:#bb0000;}
#cookie-bar .cb-policy {background:#0033bb;}
#cookie-bar .cb-policy:hover {background:#0055dd;}*/



/* Layout fuer die Cookie Aus- und Abschaltfunktion auf der Datenschutzseite */
.switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 30px;
    float: left;
    margin-right: 20px;
}
.switch input {
    display: none;
}
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CDCDCD;
    margin: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.switch .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 5px;
    bottom: 4px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.switch .slider.round {
    border-radius: 34px;
}
.switch .slider.round:before {
    border-radius: 50%;
}
.switch input:checked + .slider {
    background-color: #418671; /* Primaere Farbe der jeweiligen Website einsetzen */
}
.switch input:focus + .slider {
    box-shadow: 0 0 1px #418671; /* Primaere Farbe der jeweiligen Website einsetzen */
}
.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
#spanCookieState {
	display: inline-block;
	min-height: 35px;
}