#cookieFade {
    position: absolute;
    width: 100%;
    height: 100%;
    background: grey;
}


.cookieConsentContainer {
    z-index: 1200;
    border-radius: 15px;
    position: fixed;
    width: 500px;
	max-width: 80vw;
    height: max-content;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px;
    background: #fafafa;
    overflow: hidden;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.cookieConsentContainer .cookieTitle a {
	font-family: inherit;
	color: #606060;
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;

	color: #606060;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 10px;
} .cookieConsentContainer .cookieDesc a {
	font-family: OpenSans, arial, "sans-serif";
	color: #606060;
	text-decoration: underline;
}
.cookieConsentContainer .cookieButton{
	float:right;
}
.cookieConsentContainer .cookieButton .onlyLink{
   background:none !important;
   color:#606060 !important;
   text-decoration: underline;
}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
    font-family: Roboto;
    color: #FFFFFF !important	;
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
    border-radius: 5px;
    background: #0086bf;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background 0.3s;
}
.cookieConsentContainer .cookieButton a#MoreInfo {
	display: inline-block;
	font-family: OpenSans, arial, "sans-serif";
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-top: 14px;
	background: #0086bf;
	box-sizing: border-box; 
	padding: 15px 24px;
	text-align: center;
	transition: background 0.3s;
}


.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #047bae;
}

@media (max-width: 980px) {
	.cookieConsentContainer {
		bottom: 0px !important;
	
		border-radius: 15px;
	}
}
@media (max-width: 603px) {
	.cookieConsentContainer{
		width: 90%;
		max-width: 500px;
	}

}