/* * 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%;
    min-width: 345px;
    margin: 0 !important;
    z-index: 555;
    opacity: 0;
    border-radius: 0;
    color: white;
    background: black;
}

.cookiealert.show {
    opacity: 1;
}

.cookiealert a {
    text-decoration: none;
    color: white;
    background: red;
    margin-left: 10px;
    padding: 5px;
    border-radius: 3px;
    vertical-align: baseline;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    padding: 5px;
    font-family: Arial;
    font-size: 15px;
}
