#cookies {
    a {
        color: #e87722;
    }
    p {
        font-family: "Inter", sans-serif;
        font-size: 1em;
        margin-bottom: 1rem;
    }
    ul {
        list-style-type: disc;
        font-family: "Inter", serif;
        font-size: 1em;
        line-height: 140%;
        margin: 2em;
        li {
            margin: 1.1em 0;
        }
    }
}

#cookies-panel {
    position: fixed;
    bottom: 0;
    background-color: #070401;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    transform: translateY(100%);
    transition-property: all;
    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
}

#cookies-panel.slide_up {
    transform: translateY(0);
    transition-delay: 800ms;

}

#cookies-panel.slide_down {
    transform: translateY(100%);

}


