.fan-finder-module {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Vertically center the items */
    gap: 25px;
    background: rgba(0, 0, 0, 0.95);
    z-index: 199;
    font-size: 24px;
    display: none;
}

.module-separator {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 50px;
}

.viewer-card-module {
    display: flex;
    flex-direction: column;
    width: 300px;
    font-size: .9em;
    margin-bottom: 150px;
    background: rgba(0, 0, 0, 0.50);
    color: var(--colorAltText);
}

.card-pfp {
    position: relative;
    top: 100px;
    left: 50%;
    width: 70px;
    transform: translateX(-35px);
    border-radius: 50%;
    overflow: hidden;
}

.card-pfp img {
    height: 70px;
    width: 70px;

}

.card-top {
    height: 60px;
    width: 100%;
    background: var(--colorC);
    border-radius: 10px 10px 0 0;
}

.card-close {
    position: relative;
    top: 5px;
    right: 10px;
    text-align: right;
    font-weight: bold;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    padding: 40px 5px 10px 5px;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 0 0 10px 10px;
    line-height: 1.5;
}

#viewer-name {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: .5em;
}

#viewer-follows::before {
    content: 'Follows:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#viewer-creation-date::before {
    content: 'Created:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#viewer-following-date::before {
    content: 'Followed:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#viewer-age::before {
    content: 'Follow Age:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}


#subscriber::before {
    content: 'Subscribed:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#sub-length::before {
    content: 'Sub Length:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#gifted-subs::before {
    content: 'Gifted Subs:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

.viewer-badges {
    display: flex;
    justify-content: center;
    gap: .20em;
}

.viewer-badges img {
    height: 1em;
    margin: auto 0;
    margin-top: 1px;
}

.badges-text {
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}

#banned::before {
    content: 'User Banned:';
    margin-right: .25em;
    font-weight: 600;
    color: var(--colorC);
}