.cookie-message {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem;
    background-color: #fff;
    border: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;

    transition: all 0.5s ease-in-out;
}

.cookie-message--hidden {
    transform: translateY(100%);
}

.cookie-message__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.cookie-message__content {
    font-size: 0.8em;
    font-weight: 300;
    margin: 0 1rem;
}
.cookie-message__text {
    margin: 0;
}
.cookie-message__link {
    color: #333;
    text-decoration: none;
}

.cookie-message__link:hover {
    text-decoration: underline;
}

.cookie-message__actions {
    font-size: 0.8em;
    font-weight: 300;
    margin: 0 1rem;
}
.cookie-message__button {
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.cookie-message__button:active {
    background-color: #333;
}