.cookiealert {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 20%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 20;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background: #fff;
}

.cookiealert.shows {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}
