.cookies-container {
	width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	background-color: rgba(0, 0, 0, 0.8); 
	font-family: 'arial', sans-serif; 
	padding: 1em 1.8em; 
	margin: 0px; 
	position: fixed; 
	left: 0px; 
	top: 0px; 
	box-sizing: border-box;
	z-index: 999999;
	height: 100vh;
}

.cookies-text {
	flex: 1 1 1800px;
	font-size: 1.0rem; 
	color: #fff; 
	line-height: 30px;
	width: 100%;
	vertical-align: middle;
}

.cookies-buttons {
	flex: 1 0 220px;
	text-align: right;
	vertical-align: middle;
	width: 100%;
}

.cookies-accept{
	color: #000 !important; 
	font-size: 1.0rem; 
	font-weight: bold; 
	text-decoration: none; 
	display: inline-block; 
	margin-right: 14px; 
	background-color: #f2e15b; 
	padding: 10px 20px;
}

.cookies-decline {
	color: #ff9900 !important; 
	font-size: 1.0rem; 
	font-weight: bold; 
	text-decoration: none; 
	display: inline-block; 
}

.InfoLink {
	color: #c9c9c9 !important; 
	text-decoration: underline; 
	display: inline-block;
}
@media screen and (max-width: 747px) {
	.cookies-container {
		display: block;
	}
	.cookies-text {
		flex: 0;
		display: block;
		width:100%;
		max-width: 100%;
	}
	.cookies-buttons {
		margin:10px auto 0;
		text-align: center;
	}
}
@media screen and (max-width: 261px) {
	.cookies-accept, .cookies-decline {
		display:block;
		max-width: 100px;
			margin:0 auto;
	}
}