.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0.75;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #212327;
}

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

.cookiealert a {
    text-decoration: none;
}

.cookiealert a:hover {
    color: #B49C73;
    text-decoration: none;
    -webkit-transition: all .33s ease;
    -moz-transition: all .33s ease;
    -o-transition: all .33s ease;
    -ms-transition: all .33s ease;
    transition: all .33s ease;
}

.cookiealert button {
    background: #B49C73;
    color: #fff;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
