#cookie-banner {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;

padding: 15px 20px;
background: #fff;
color: #222;

border-top: 1px solid #ddd;
box-shadow: 0 -2px 10px rgba(0,0,0,.15);

text-align: center;
font-size: 14px;

}

#cookie-banner p {
display: inline;
margin: 0 15px 0 0;
}

#cookie-banner a {
color: #1677c8;
}

#cookie-banner button,
#cookie-settings {
padding: 8px 16px;
margin: 5px;

border: 1px solid #aaa;
border-radius: 4px;

background: #eee;
cursor: pointer;

}

#cookie-banner #cookie-accept {
background: #1677c8;
color: white;
border-color: #1677c8;
}

#cookie-settings {
display: none;

position: fixed;
left: 10px;
bottom: 10px;
z-index: 99998;

background: white;

}

@media (max-width: 600px) {

#cookie-banner {
    text-align: left;
}

#cookie-banner p {
    display: block;
    margin-bottom: 10px;
}

#cookie-banner button {
    width: 48%;
    margin: 0 1% 0 0;
}

}