<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#referee_lights {
    position: absolute;
    margin-top: 20vh;
    margin-left: 11vw;
    /* height: 50vh; */
    width: 70vw;
    font-size: 4vw;
    border: 1vw solid black;
    border-radius: 1vw;
    z-index: 100;
    background: #fff;
    padding: 2vw;
    display: none;
    background: #ccc;
}

.referee_light {
    border: 0.5vmin #fff;
    border-radius: 10vw;
    display: inline-block;
    width: 20vmin;
    height: 20vmin;
/*    background: #ccc; */
    /* margin-left: 12vmin;
    margin-top: 5vmin;*/
}

.light_container {
    display: inline-block;
    width: 32%;
    text-align: center;
}

.light_dot {
    width: 0vmin;
    height: 0vmin;
    border: 2vmin solid black;
    border-radius: 5vmin;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9vmin;
}

.light_neutral{
    
}

.light_good{
    background: #fff;
    border: 0.5vmin solid black;
    border-radius: 10vw;
}

.light_failed{
    background: #f00;
    border: 0.5vmin solid black;
    border-radius: 10vw;
}

.reason {
    margin-top: 1vw;
    width: 100%;
    height: 5vmin;
}

.reason_red {
    background: #f00;
}

.reason_yellow {
    background: #fffa00;
}

.reason_blue {
    background: #0061ff;
}

.reason_turqoise {
    background: turquoise;
}

.reason_purple {
    background: purple;
}

.reason_orange {
    background: orange;
}

#referee_lights_overlay {
    display: none;
}</pre></body></html>