.cookie-message {
    position: fixed;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    left: 0;
    right: 0;
    bottom: 60px;
    background: black;
    padding: 30px;
    opacity: 0.8;
    color: white;
    line-height: 1.2em;
}

.cookie-message_button {
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: white;
    color: black;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .cookie-message {
        flex-direction: column;
        bottom: 50px;
        z-index: 2;
        opacity: 1;
    }
}