/**
 * component ´Privacy-Banner´
 *
 * @copyright 2019 i-fabrik GmbH
 * @author Tobias Garz
 */

.privacy-banner {
	align-items     : center;
	background      : #eee;
	color           : #000;
	display         : flex;
	flex-direction  : column;
	justify-content : center;
	left            : 0;
	opacity         : 1;
	padding         : 10px;
	position        : relative;
	top             : 0;
	transition      : all 0.5s ease-in-out;
	width           : 100%;
	z-index         : 999;
}

.privacy-banner__inner {
	background : transparent;
	padding    : 15px;
	text-align : center;
	width      : 100%;
	z-index    : 2;
}

.privacy-banner.hide {
	 opacity : 0;
	 z-index : -1;
}

.privacy-banner__link-to-privacy {
	color           : inherit;
	font-weight     : bolder;
	text-decoration : none;
}

.privacy-banner__link-to-privacy:hover, .privacy-banner__link-to-privacy:focus {
	  color           : inherit;
	  text-decoration : underline;
}

.privacy-banner .btn {
	margin : 0 auto;
}

/* Iframes mit dem dem Attribut 'data-privacy-banner' sind bis zum Nachladen
der 'src' unsichtbar */
iframe[data-src] {
	display : none !important;
}
