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

.cookies-alert {
    display: flex;
    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.high {
    bottom: 70px;
    border: 1px solid black;
}

.cookies-alert-text {
    flex-grow: 1;
}

.cookies-alert-button-wrapper {
    width: 32px;
    position: relative;
    top: -4px;
    right: -4px;
}

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

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

.cookies-alert-close {
    color: #000000;
    background: none;
    border: none;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    font-size: 28px;
    right: 5px;
    padding: 2px;
}
