/*
* Cookie alert
*/

#cookie-alert {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.75);
    z-index: 200;
    margin-bottom: 0;
    color: #efefef;
    font-size: 13px;
    border-radius: 0;
    border-left: 1rem solid #B8175A;
    border-top: 1px solid #444;
    text-align: center;
    padding: 12.4px;
}


/*
* Cookie text
*/
#cookie-alert p {
    margin: 0;
    padding: 0;
}
#cookie-alert a.privacy {
    color: rgba(255,255,255,1);
    text-decoration: underline;
}
#cookie-alert a.privacy:hover {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
}
#cookie-alert.remove {
    animation: slideOut .75s ease-in-out both;
}

/*
* Cookie button
*/

#cookie-alert button {
    background: rgba(255,255,255,0);
    box-shadow: none;
    border: 1px solid #efefef; 
    transition: all .25s ease-in-out 0s;
}
#cookie-alert button:hover {
    color: rgba(0,0,0,0.9);
    background: rgba(255,255,255,0.9);
    transition: all .25s ease-in-out 0s;
}
@media screen and (max-width: 1247px) {
    #cookie-alert button {
        display: block;
        margin: 6.2px auto 0 auto;
    } 
}
@media screen and (min-width: 1248px) {
    #cookie-alert button {
        margin-left: 1em;
    } 
}

/*
* Cookie animation
*/

@keyframes SlideIn {
  0%   { bottom: -12em; }
  100% { bottom: 0; }
}
@keyframes slideOut {
  0%   { bottom: 0; }
  100% { bottom: -12em; }
}