.bs24-cookie-banner {
    position: fixed;
    z-index: 11111;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: #eee;
    color: #212529;
    font: 14px/21px verdana, sans-serif;
    text-align: start;
    animation: bs24-cookie-banner-motion .4s linear;
    -webkit-animation: bs24-cookie-banner-motion .4s linear;
}

.bs24-cookie-banner::after {
    content: "";
    display: block;
    clear: both;
}

@keyframes bs24-cookie-banner-motion {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.bs24-accept-cookie-banner,
a.bs24-accept-cookie-banner {
    float: right;
    display: block;
    box-sizing: content-box;
    padding: 8px 20px;
    margin: 0 0 0 10px;
    background: #ccc;
    color: #0d6efd;
    font: 700 14px/21px Roboto, sans-serif;
    text-decoration: underline;
    text-align: center;
    text-transform: none;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color .4s ease;
    -webkit-transition: background-color .4s ease;
}

.bs24-accept-cookie-banner:hover,
.bs24-accept-cookie-banner:focus {
    background: #bdbdbd;
    color: #0d6efd;
}

.bs24-cookie-message {
    margin: 0;
    padding: 0;
    color: #212529;
    font: 14px/21px verdana, sans-serif;
}

.bs24-cookie-message a {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: underline;
}

.bs24-cookie-message a:hover,
.bs24-cookie-message a:focus {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .bs24-cookie-banner {
        padding: 10px 12px;
        font: 12px/17px verdana, sans-serif;
    }

    .bs24-cookie-message {
        font: 12px/17px verdana, sans-serif;
    }

    .bs24-accept-cookie-banner,
    a.bs24-accept-cookie-banner {
        padding: 5px 12px;
        margin: 0 0 0 8px;
        font: 700 12px/17px Roboto, sans-serif;
        border-radius: 4px;
    }
}
