
.cookiealert {
    font-size: 14px;
    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: #ecf0f1;
    background: #282622;
    padding: 10px 0;
    text-align: center;
    
}

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

.cookiealert a {
    color: #ecf0f1;
    text-decoration: underline
}

.cookiealert a:hover, a:focus {
    color: #bdc63e;
    text-decoration: underline
}



.cookiealert .acceptcookies {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    vertical-align: baseline;
}

.cookieButton {

    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    color: #fff;
    border: 2px solid #bdc63e;
    background-color: transparent;
}

.cookieButton:hover {

    border: 2px solid #bdc63e;
    background-color: #bdc63e;
    color: #fff;

}
