#cookiePopUp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem .5rem;
    font-family: Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: .875rem;
    text-align: right
}

#cookiePopUp button {
    display: inline-block;
    margin: 0 .25rem;
    padding: .625rem 1rem;
    cursor: pointer;
    outline: none;
    border: 0;
    border-radius: 3px;
    background-repeat: no-repeat;
    transition: background-position .3s ease-in-out
}

#cookiePopUp button:hover {
    background-position: 0 1rem
}

#cookiePopUp.default {
    box-shadow: 0 -.0625rem .625rem rgba(0, 0, 0, .7);
    background-color: #e6e6e6;
    color: #333
}

#cookiePopUp.default button {
    background-color: #1cff15;
    background-image: linear-gradient(180deg, #1cff15, #05ae00);
    color: #fff
}

#cookiePopUp.dark {
    box-shadow: 0 -.0625rem .625rem rgba(0, 0, 0, .7);
    background-color: #3b3b3b;
    color: #fff;
    z-index: 1;
}

#cookiePopUp.dark button {
    background-color: #d51f1f;
    background-image: linear-gradient(180deg, #d51f1f, #7c1212);
    color: #fff
}
