#cookie-banner {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: #ffffff;
    color: black;
    padding: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
}

@media(min-width: 1000px) {
    #cookie-banner {
        width: 400px;
        right: 15px!important;
        left: initial!important;
        font-size: 16px!important;
    }
    #cookie-banner p {
        font-size: 16px!important;
        line-height: 18px!important;
    }
}

#cookie-banner p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 12px;
    text-align: left;
}

#cookie-banner a {
    color: #4ea3ff;
    text-decoration: underline;
}

#cookie-buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#cookie-banner .cookie-button {
    height: 35px;
    margin-bottom: 10px;
    font-size: 12px;
    flex: 0 0 30%;
}

#cookie-banner button.accept {
    background: -webkit-gradient(linear, left top, right top, from(#0249d7), to(#0159f9));
    background: -webkit-linear-gradient(left, #0249d7, #0159f9);
    background: -o-linear-gradient(left,#0249d7 0,#0159f9 100%);
    background: linear-gradient(90deg, #0249d7, #0159f9);
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

.cookie-link{
    border: none;
}

.block-case-preview--large .block-case-preview__title{
    max-width: 32rem;
}