/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0px;
    margin: 0 auto !important;
    z-index: 999;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    border-radius: 0px;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ffffff;
    background: #6790f9;
    padding: 30px 0;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    color: #ffffff;
    text-decoration: underline
}

.cookiealert .acceptcookies {
    position: relative;
    padding: 3px 20px;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid;
    border-color: 0;
    color: #6790f9;
    background-color: #ffffff;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 2;
    margin-left: 10px;
    vertical-align: baseline;
}
.cookiealert .acceptcookies:hover {
    border-color: #fff;
    color: #4d4d4d;
    background-color: #fff;
}
