/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 300ms ease-out;
    color: #ecf0f1;
    background-color: #212327 
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.cookiealert .acceptcookies {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    display: inline-block;
    padding: 2px 10px;
    transition: 0.5s;
    margin: 6px;
    color: #fff;
    background: #52bee8;
}

.cookiealert .acceptcookies:hover {
    background: #fff;
    color: #52bee8;
}

.cookiealert a {
    color: #52bee8;
    text-decoration: underline
}