@keyframes cookie-prompt-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0%);
    }
}

@keyframes cookie-prompt-down {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-prompt {
    position: fixed;
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 8px;
    bottom: 0;
    z-index: 1000;
    border-top: 1px solid #404040;

    display: none;
    flex-direction: row;
    background-color: #202020;

 /* animation-name: cookie-prompt-up; */
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
    animation-fill-mode: forwards;
}

.cookie-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.cookie-message * {
    margin: 0;
}

.cookie-message h1 {
    line-height: 1;
}

.cookie-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: fit-content;
}

.cookie-buttons button {
    margin: 6px;
    border-radius: 12px;
    border: none;
    background-color: transparent;
    height: 48px;
    font-size: 11pt;
    padding: 0 12px;
    cursor: pointer;
}

.cookie-buttons button.secondary {
    border: 1px solid var(--accent-white);
    color: var(--accent-white);
}

.cookie-buttons button.primary {
    background-color: var(--accent);
    color: #202020;
    transition: background-color .25s ease;
}

.cookie-buttons button.primary:hover {
    background-color: #0aafc2;
}
@media (max-width: 767px) {
    .cookie-prompt {
        bottom: 74px;
        flex-direction: column;
    }
    .cookie-message {
        margin: 5px 8px 8px;
    }
    .cookie-buttons button {
        width: 50%;
    }
}