/*
 * NoSpace-kijkersteller voor de kijkerspagina.
 * Wordt met JavaScript direct links van LIVE/OFFLINE geplaatst.
 */

#nospace-viewer-count {
    position: fixed;
    z-index: 2147483644;

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

    min-width: 96px;
    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;

    color: #ffffff;
    background: rgba(5, 18, 31, 0.9);

    font-family:
        Inter, ui-sans-serif, system-ui,
        -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;

    box-sizing: border-box;
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.32);

    pointer-events: none;
    white-space: nowrap;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

#nospace-viewer-count[hidden] {
    display: none !important;
}

@media (max-width: 600px) {
    #nospace-viewer-count {
        min-width: 82px;
        padding: 0 8px;
        font-size: 9px;
    }
}

@media (
    orientation: landscape
) and (
    max-height: 520px
) {
    #nospace-viewer-count {
        min-width: 78px;
        padding: 0 7px;
        font-size: 9px;
    }
}
