#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 900px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_notification p {
    margin: 10px 0 0;
    font-size: 0.7rem;
    text-align: left;
    overflow: hidden;
}

#cookie_notification_list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#cookie_notification.show {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
}

.cookie_accept {
    font-weight: 600;
    width: 200px;
    margin: 10px 0;
}