/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
 .cookiealert .btn-ok {
    color: #fff !important;
    background-color: #0095DA !important;
    border-color: #0095DA !important;
    font-size: 10px !important;
    transition: .8s !important;
}

.cookiealert .btn-ok:hover {
    color: #0095DA !important;
    background-color: #ffffff!important;
    border-color: #ffffff!important;
    transition: .8s !important;
}
.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 500ms ease-out;
    color: #ecf0f1;
    padding: 6px !important;
    font-size: 12px;
    background-color: #000000;
    opacity: 0.95 !important;
}



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

.cookiealert a {
    text-decoration: underline;
    /*color: rgb(239, 56, 50);*/
    font-weight: 700;
    font-size: 13px;
}

.cookiealert a:hover {
    color: #ecf0f1;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

@media (max-width: 767px){
    .cookiealert {
        text-align: left;
    }
}
