@charset "UTF-8";
/* CSS Document */

#cookieNotice {
	position:fixed;
	display:table;
	width:100%;
	background-color: rgba(68,68,68,0.95); /* Hintergrundfarbe Banner */
	/* box-shadow: 0px 0px 10px 0px #999; */
	z-index:99999;
	border-top: 2px solid #fff;
	padding: 11px 30px 11px 30px;
	display: flex;
	flex-wrap: wrap;
}

#cookieNotice.top {
	top:0;
}

#cookieNotice.bottom {
	bottom:0;
}

#cookieNotice a {
	color: #fff;  /* Linkfarbe */
	font-weight: bold;
	text-decoration: underline;
}

#cookieNotice a:hover {
	text-decoration: none;
}

#cookieNoticeText {
	/* display:table-cell;
	padding:15px 10px; */
	font-size:0.9em;
	color:#fff;
	display: inline-block;
	padding: 5px 5px;
	margin-right: 20px;
	width: auto;
	flex: 1 1 70%;
}

/* Button Cookies ablehnen */
#cookieNoticeDecline {
	/* display:table-cell; */
	width:5%;
	text-align:center;
	vertical-align:middle;
	padding:10px;
	cursor:pointer;
	font-size:0.9em;
	background-color:#f9354c; /* Farbe Button "Ablehnen" */
	color:#fff; /* Schriftfarbe Button "Ablehnen" */
	border: 1px solid #fff;
	background-color: unset;
	padding: 8px 5px;
	margin-right: 20px;
	width: 160px;
	display: inline-table;
	flex: 1 1 15%;
}

#cookieNoticeDecline:hover {
	/* background-color:#EE393C; */ /* Hover-Farbe Button "Ablehnen" */
	/* color:#000; */
	text-decoration: underline;
}

/* Button Cookies akzeptieren */	
#cookieNoticeDismiss {
	/* display:table-cell; */
	width:5%;
	text-align:center;
	vertical-align:middle;
	/* padding:10px; */
	cursor:pointer;
	font-size:0.9em;
	background-color:#216A09; /* Farbe Button "Einverstanden" */
	color:#fff; /* Schriftfarbe Button "Einverstanden" */
	border: 1px solid #fff;
	background-color: unset;
	padding: 8px 5px;
	width: 160px;
	display: inline-table;
	background-color: #ec6d02;
	flex: 1 1 15%;
}
	
#cookieNoticeDismiss:hover {
	/* background-color:#52A810; */ /* Hover-Farbe Button "Einverstanden" */
	/* color:#000; */
	text-decoration: underline;
}

#cookieNoticeRevoke {
	position:fixed;
	width:auto;
	left:20px;
	padding:5px 10px;
	cursor:pointer;
	background-color:#E8E8E8; /* Hintergrundfarbe Revoke-Button */
	box-shadow: 0px 0px 10px 0px #999; /* Schriftfarbe */
	transition: all 0.5s;
	z-index:99999;
}

#cookieNoticeRevoke.top {
	top:0;
	margin-top: -14px;
}

#cookieNoticeRevoke.top:hover {
	margin-top: 0;
}

#cookieNoticeRevoke.bottom {
	bottom:0;
	margin-bottom: -14px;
}

#cookieNoticeRevoke.bottom:hover {
	margin-bottom: 0;
}
	
@media only screen and (max-width: 634px) {

	#cookieNotice {
		display: block;
	}

#cookieNoticeText {
    font-size: 0.7em;
	position:relative;
	display:block;
}
	
#cookieNoticeDecline,
#cookieNoticeDismiss {
	position:relative;
	display:block;
	width:100%;
	padding: 10px 0;
	margin-bottom: 10px;
	margin-top: 5px;
}
	
#cookieNoticeRevoke.top,
#cookieNoticeRevoke.bottom {
	margin-top: 0;
	margin-bottom: 0;
}

	
}