/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: -140px; /* hidden below viewport */
    width: 100%;
    margin: 0 !important;
    z-index: 11000 !important;
    opacity: 0;
    border-radius: 0;
    transition: bottom 400ms ease-out, opacity 400ms ease-out;
    color: #ecf0f1;
}

.cookiealert.show {
    bottom: 0 !important;
    opacity: 1;
    transition-delay: 200ms;
}

.cookiealert a {
    text-decoration: underline;
    color: blue;
    
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}