@keyframes slideIn {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.cookies-alert {
    animation: 0.5s ease slideIn;
    bottom: 0;
    background-color: #FFFFE0;
    border-top: 1px solid black;
    color: #444;
    font-size: 15px;
    font-family: "Arial", sans-serif;
    line-height: 24px;
    padding: 10px 10px 0 10px;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 1000;
}

.cookies-alert a {
    color: #7cb14c;
    font-weight: bold;
    text-decoration: none;
}

.cookies-alert a:hover {
    color: #23527c;
}

.cookies-alert-close {
    background: none;
    border: none;
    bottom: 5px;
    float: right;
    font-size: 20px;
    position: absolute;
    right: 5px;
}
