/*
 * 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;
    color: #5e6a75;
    background: #fff;
    font: 0.9rem/1.8 Frutiger Next LT W05 Medium,Open Sans,Arial,sans-serif;
    /* only animation-duration here is required, rest are optional (also animation-name but it will be set on hover)*/
    animation-duration: 1s; /* same as transition duration */
    animation-timing-function: linear; /* kind of same as transition timing */
    animation-delay: 0ms; /* same as transition delay */
    animation-iteration-count: 1; /* set to 2 to make it run twice, or Infinite to run forever!*/
    animation-direction: normal; /* can be set to "alternate" to run animation, then run it backwards.*/
    animation-fill-mode: none; /* can be used to retain keyframe styling after animation, with "forwards" */
    animation-play-state: running; /* can be set dynamically to pause mid animation*/

}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert h4 {
    color: #2c292a;
    padding-top: 1.5%;
    padding-bottom: 0.3%;
}

.cookiealert h5 {
    color: #2c292a;
    padding-top: 1.5%;
    padding-bottom: 0.3%;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
    border: 1px solid black; 
    padding: 14px 28px;
  
}
