#cookiesBanner {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #000000b3;
    width: 20rem;
    z-index: 9;
    display: none;
    padding: 1rem;
    text-align: left;
    border-radius: 0.5rem;
}

#cookiesBanner>p {
    color: #fff;
}

#cookiesBanner>p>a {
    color: #ff8500;
}

#cookiesBanner>button {
    padding: 0.3rem 1.5rem;
    font-size: 1em;
    border-radius: 0.5rem;
    border: transparent;
    margin-top: 1rem;
    font-size: 0.8em;
    cursor: pointer;
}

@media (max-width: 900px) {
    #cookiesBanner {
        top: 102px;
        bottom: auto;
        width: 100%;
        border-radius: 0;
    }

    #cookiesBanner>p {
        font-size: 0.8em;
    }
}