/**
 * @author Valentin Alisch, Nicolas Zupfer
 * @version 1.0
 *
 * Privacy Notice
 */



/* Mobile */
#privacy-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: white;
	color: black;
	z-index: 10000;
	mix-blend-mode: difference;

	font-size: 9px;
	line-height: 12px;
	padding: 10px;
}
#privacy-notice.hidden {
	opacity: 0;
	pointer-events: none;
}

	#privacy-notice a {
		text-decoration: underline;
		cursor: pointer;
	}

/* Tablet */
@media ( min-width: 900px ) {
	#privacy-notice {
		font-size: 15px;
		line-height: 20px;
		padding: 17.5px;
	}
}

/* Desktop */
@media ( min-width: 1600px ) {
	#privacy-notice {
		font-size: 20px;
		line-height: 27px;
		padding: 25px;
	}
}