.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;

    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 21px;
    font-family: "Lato";
    font-weight: 700;
    padding: 10px 0;
}

.cookiealert p {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 11px 0 11px 0;
    line-height: 17.5px;
    letter-spacing: 0;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    color: #9dca00;
    text-decoration: underline;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;

    font-size: 13px;
    line-height: 19.5px;
    font-weight: 900;
    text-align: center;
    color: #9dca00;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 25px;

    background-color: transparent;
    transition: all 0.3s;
    border: 1px solid #9dca00;
}