.cookie-banner {
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    background: #fff;
    text-align: center
}
@media screen and (min-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        max-width: 356px;
        margin: 0 auto;
        border-radius: 5px;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15)
    }
}
.cookie-banner:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .05)), to(transparent));
    background: linear-gradient(0deg, rgba(0, 0, 0, .05), transparent)
}
@media screen and (min-width: 768px) {
    .cookie-banner:before {
        display: none
    }
}
.cookie-banner p {
    font-size: 15px;
    color: #0d0d0c;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}
.cookie-banner p a {
    color: #0d0d0c
}
.cookie-banner .close-cookie-banner {
    font-family: Calibri, Arial Narrow, sans-serif;
    margin: 16px auto 0;
    border-radius: 4px;
    padding: 10px 22px;
    background: #0d0d0c;
    font-size: 15px;
    outline: 0;
    color: #fff;
}