.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999999999999999999999;
    opacity: 1;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    box-shadow:  1px -1px 3px gray; 
    text-align: center;
    background-color: #5d2975;
    padding-top: 10px;
    border-top: dashed 1px black;
    color: white;
    text-shadow: none !important;
}

.cookiealert span {
font-weight: bold; 
} 

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

.cookiealert a {
    text-decoration: underline
}
.cookiealert p {
    font-size: 12px; padding: 0; margin: 0;color: white; width: 80%; padding-left: 10%;
}

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