#cookies-box {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: cookiesAppear 1000ms ease-out forwards;
    z-index: 5
}

@keyframes cookiesAppear {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#cookies-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    min-width: 300px;
    background-color: white;
    border-radius: 5px;
    padding-top: 1.5vh;
    padding-bottom: 1.5vh
}

#cookies-info h1 {
    width: 90%;
    color: #212529;
    font-size: calc(0.4vw + 1.2vh + 0.9vmin);
    margin-top: 0;
    margin-bottom: 1vh
}

#cookies-info>p {
    width: 90%;
    color: #212529;
    font-size: calc(0.2vw + 1vh + 0.6vmin);
    margin-top: 1vh;
    margin-bottom: 2vh
}

#cookies-info>p a {
    text-decoration: none
}

#cookies-info>p a:hover {
    text-decoration: underline
}

#cookies-info>p a:visited,
#cookies-info>p a:active {
    color: blue
}

.cookies-separator {
    width: 100%;
    height: 1px;
    background-color: #999
}

#cookies-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    margin-top: 1vh
}

.cookies-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 5vh;
    border-radius: 2px;
    cursor: pointer
}

.cookies-btn p {
    color: white;
    font-size: calc(0.2vw + 1vh + 0.8vmin);
    margin-top: 0;
    margin-bottom: 0;
    user-select: none
}

#cookies-accept-btn {
    background-color: #3d4254
}