/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.ca-cookiealert {    
    bottom: 0;
    left: 0;    
    z-index: 1000;
    opacity: 0;    
    transform: translateY(100%);
    transition: all 500ms ease-out;
}

.ca-cookiealert.ca-show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.ca-underline {
    text-decoration: underline;
}