 /* Cookies */
 .cookies-banner {
    display: none;
    position: fixed;
    z-index: 9999999;
    background-color: rgb(20, 20, 20);
    width: 40vw;
    max-width: 550px;
    min-width: 550px;
    border-radius: 15px;
    bottom: 10px;
    right: 10px;

    opacity: 1;
    transition: opacity .25s;

    box-shadow: 0 0 10px 2px rgba(20, 20, 20, .5);
}

.cookies-banner p {
    font-size: 0.9rem;
}

.cookies-banner button {
    font-weight: 500 !important;
    font-size: .8rem;
}

.cookies-banner img{
    width: 50px; 
    float: left; 
    margin-right: 20px;
}

@media (width <= 576px) { /* SM breakpoint */
    .cookies-banner{
        left: 0;
        bottom: 0;
        border-radius: 0;
        width: 100vw;
        min-width: 100vw;
        max-width: none;
    }
}