/*
 * 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;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    font-size: 15px;
    background: #fff;
    color: #707386;
    box-shadow: 0 0 18px rgba(0,0,0,.2);
    padding: 10px;
}

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

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 15px;
    vertical-align: baseline;
    margin-bottom: 0px;
    height: 40px;
    font-size: 13px;
    min-width: 90px;
    border-radius: 8px;
}
.acceptcookies {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    font-size: 15px;
}
.acceptcookies:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    opacity: 0.8;
}
@media (max-width: 1023px){
    .acceptcookies {
     display: block !important;
     margin: 0 auto !important;
     margin-top: 10px !important;
     margin-bottom: 7px !important;
    }
}