#cookieBanner {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    left: 0;
    bottom: 0;
    z-index: 9999;
    color: #fff;
    display: none
}

#acceptCookies {
    display: inline-block;
    background-color: #0d6efd; 
    color: #fff;
    text-decoration: none;
    padding: 6px 18px;
    text-align: center;
    border-radius: 18px;
    font-weight: bold;
}

#acceptCookies:hover {
    cursor: pointer;
    opacity: .8
}

.cookieContent {
    margin: 0 auto;
    width: 928px;
    padding: 15px 25px;
    font-family: Arial;
    font-size: 13px;
    color: #fff;
}

.cookieText {
    display: inline-block;
    width: 80%;
    line-height: 16px;
    cursor: default;
}

.cookieButton {
    padding: 10px 0;
    display: block;
    float: right;
}

@media (max-width: 991.98px) {
    .cookieContent {
        width: 768px;
    }
}

@media (max-width: 800px) {
    .cookieContent {
        width: 600px;
    }
}

@media (max-width: 628px) {
    .cookieContent {
        width: 100%;
    }

    .cookieText {
        display: block;
    }

    .cookieButton {
        float: none;
    }
}
