/* GDPR BAR */
#gdpr-bar {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	bottom: -500px;
	left: 0;
	background-color: #FFF;
	z-index: 999;
	border-top: 2px solid #000;
	transition: bottom 0.5s linear;
	padding: 20px;
}
#gdpr-bar.active{
	bottom: 0 !important;
}
.gdpr-text {
	display: block;
	width: 60%;
	margin-bottom: 0;
}
.gdpr-buttons {
	display: flex;
	justify-content: flex-end;
	width: 30%;
}
.gdpr-buttons a {
	padding: 5px 15px;
	text-decoration: underline;
}
@media only screen and (max-width: 991px) {
	#gdpr-bar { 
		flex-direction: column;
		justify-content: start;
	}
	.gdpr-text,
	.gdpr-buttons {
		width: 100%;
	}
}