/*· · ─────── · OVERLAY · ─────── · ·*/
#bottomInfoOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);

    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}

#bottomInfoOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

/*· · ─────── · CONTAINER · ─────── · ·*/
#bottomInfoBox {
    width: 72vw;
    max-height: 80vh;
    overflow-y: auto;
    padding: 25px 40px 25px 25px;
    background: transparent;
    color: #fff;
}

#bottomInfoBox,
#bottomInfoBox * {
    font-family: "manga", sans-serif;
    font-weight: bold;
}

/* entries */
.bottomInfo-entry {
    margin-bottom: 25px;
    border-radius: 50px;
    corner-shape: squircle;
    background: rgba(0,0,0,0.5);
    padding: 20px;

    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.bottomInfo-title {
    font-size: 35px;
    margin-bottom: 10px;
}

/* section headers */
.bottomInfo-section {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* bullet points */
.bottomInfo-bullet {
    font-size: 20px;
    line-height: 1.2;
    padding-left: 20px;
    position: relative;
}

/* custom bullet */
.bottomInfo-bullet::before {
    content: "・";
    position: absolute;
    left: 0;
    opacity: 0.5;
    font-family: sans-serif;
}

.bottomInfo-divider {
    height: 2px;
    background: #aaa;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* spacer */
.bottomInfo-spacer {
    height: 15px;
}

/*· · ─────── · NO NO NO SCROLLING · ─────── · ·*/
body.bottomInfo-open {
    overflow: hidden;
}