.cookieConsentContainer {
z-index: 999;
width: 80%;
bottom:25%;
left:10%;
right:10%;
min-height: 20px;
box-sizing: border-box;
padding: 30px;
background: #fff;
overflow: hidden;
position: fixed;
}

.cookieConsentContainer .cookieTitle {
float:left;
margin-right:15px;
font-family: OpenSans, arial, "sans-serif";
color: #ffa500;
font-weight:bold;
font-size: 1.6em;
line-height: 20px;
}

.cookieTitle {
display: flex;
margin:15px 0;
}

.cookieConsentContainer .cookieDesc p {
margin: 0;
padding: 0;
font-family: OpenSans, arial, "sans-serif";
color: #0c2b36;
font-size: 1em;
line-height: 20px;
display: block;
margin-top: 10px;
} 

.cookieConsentContainer .cookieDesc a {
font-family: OpenSans, arial, "sans-serif";
color: #0c2b36;
text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
display: inline-block;
font-family: OpenSans, arial, "sans-serif";
color: #fff;
font-size: 1em;
font-weight: bold;
margin-top: 20px;
background: #426470;
border-radius:25px;
box-sizing: border-box; 
padding: 15px 24px;
text-align: center;
transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover { 
cursor: pointer;
background: #86acba;
text-decoration:none !important;
}

@media (max-width: 600px) {
.cookieConsentContainer {
bottom: 0px !important;
left: 0px !important;
width: 100%  !important;
}
}