/*
 * 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%;
    max-width: 100%;
    padding: 20px;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background-color: rgba(6,55,96,.95);
}
.cookiealert.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert .container{
    display: flex;
    align-items: center;
    padding: 0;
}
.cookiealert h4{
    color: rgb(255,255,255);
    font-size: 16px;
}
.cookiealert a{text-decoration: underline}
.cookiealert-boton{text-align: center;}
.cookiealert .acceptcookies{margin: 0 auto;}

@media(min-width: 0px){
    .cookiealert .container{flex-direction: column;}
    .cookiealert-boton{margin-top: 10px;}
}
@media(min-width: 768px){
    .cookiealert .container{flex-direction: row;}
    .cookiealert-boton{margin-top: 0;width: 200px;}
}
@media(min-width: 768px){
    .cookiealert-boton{width: 220px;}
}