.cookiePopupBoxContainer {
	z-index: 999;
*	width: 350px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 5px 10px 10px 10px;
	background: #333333;
	overflow: hidden;
	position: fixed;
        bottom: 30px;
	left: 30px;
	display: none;
        border-radius: 0.3em 0.3em 0.3em 0.3em;
        box-shadow: 1px 1px #666666;
}
.cookiePopupBoxContainer .cookieTitle a {
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookiePopupBoxContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 5px;
	float: left;
}
 .cookiePopupBoxContainer .cookieDesc a {
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-weight: bold;
}
.cookiePopupBoxContainer .cookieButton a {
        float: right;
	display: inline-block;
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-top: 10px;
	background: #560e07;
	box-sizing: border-box; 
	padding: 5px 10px;
	text-align: center;
	transition: background 0.3s;
}
.cookiePopupBoxContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #f72e19;
}

@media (max-width: 980px) {
	.cookiePopupBoxContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}

