#cookiePopUp {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem .5rem;
    font-family: "Noto Serif", Helvetica, Roboto, Arial, sans-serif;
    font-size: 1.4rem
}

#cookiePopUp button {
    display: inline-block;
    margin: 0 .25rem 0 1rem;
    padding: .625rem 1rem;
    cursor: pointer;
    outline: none;
    border: 0;
    border-radius: 3px;
    background-repeat: no-repeat;
    transition: background-position .3s ease-in-out;
    font-family: "Noto Serif", serif;
}

#cookiePopUp a {
    text-decoration: underline;
    color: #030b26;
}

#cookiePopUp a:hover {
    text-decoration: none;
}

#cookiePopUp.cookiePopUp-default {
    box-shadow: 0 -0.0625rem 0.625rem rgba(0, 0, 0, 0.7);
    background-color: #e6e6e6;
    color: #333
}

#cookiePopUp.cookiePopUp-default button {
    background-color: #1cff15;
    background-image: linear-gradient(to bottom, #1cff15, #05ae00);
    color: #fff
}

#cookiePopUp.cookiePopUp-dark {
    box-shadow: 0 -0.0625rem 0.625rem rgba(0, 0, 0, 0.7);
    background-color: #ffff;
    color: #000;
}

#cookiePopUp.cookiePopUp-dark button {
    background-color: #8a6d3b;
    color: #fff;
}

#cookiePopUp button:hover {
    background-position: 0 1rem;
    background-color: #445284;
}

#cookiePopUp.cookiePopUp-darkenblue {
    box-shadow: 0 -0.0625rem 0.625rem rgba(0, 0, 0, 0.7);
    background-color: #85a6cc;
    color: #fff
}

#cookiePopUp.cookiePopUp-darkenblue button {
    background-color: #5a84b4;
    background-image: linear-gradient(to bottom, #5a84b4, #355274);
    color: #fff
}

#cookiePopUp.cookiePopUp-lightblue {
    box-shadow: 0 -0.0625rem 0.625rem rgba(0, 0, 0, 0.7);
    background-color: #2dbceb;
    color: #fff
}

#cookiePopUp.cookiePopUp-lightblue button {
    background-color: #00a1e1;
    background-image: linear-gradient(to bottom, #00a1e1, #00587b);
    color: #fff
}