
.cookieConsentContainer {
	z-index: 999;
	width: 400px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 20px;
	background: #ffffff;
	overflow: hidden;
	position: fixed;
    bottom: 20px;
	right: 20px;
	display: none;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.cookieConsentContainer .cookieTitle a {
	font-family: OpenSans, arial, "sans-serif";
	color: #333333;
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: OpenSans, arial, "sans-serif";
	color: #333333;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 10px;
} 
.cookieConsentContainer .cookieDesc a {
	font-family: OpenSans, arial, "sans-serif";
	color: #333333;
	text-decoration: underline;
}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
	font-family: OpenSans, arial, "sans-serif";
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-top: 14px;
	background: #6200EA;
	box-sizing: border-box; 
	padding: 10px 20px;
	text-align: center;
	transition: background 0.3s;
	border-radius: 5px;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	color: #ffffff!important;
	background: #333333;
}
@media (max-width: 980px) {
	.cookieConsentContainer {
		bottom: 0px !important;
		right: 0px !important;
		width: 100%  !important;
		border-radius: 0px;
	}
}