#cookieBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    background:  #333333dd;
    z-index: 300;
    color: white;
    text-align: center;
    padding: 16px 32px;
    display: none;
}
#cookieBar * {
    color: white !important;
}
#cookieAccept {
    background-color: #0c73c2 !important;
    border: none !important;
    color: white !important;
    margin-top: 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 16px !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    padding: 0 20px !important;
    line-height: 50px;
}
#cookieDismiss{
    padding: 8px 16px;
    border: 2px solid white;
    margin: 8px 8px 0 8px;
    transition: all 75ms linear;
}
#cookieDismiss {
    background-color: transparent;
    color: white;
}
#cookieDismiss:hover {
    background-color: white;
    color: black;
}
@keyframes showCookieBar {
    from {bottom: -128px;}
    to {bottom: 0px;}
}
@keyframes hideCookieBar {
    from {bottom: 0px;}
    to {bottom: -128px;}
}