/* Insight Media — Control Plane V4 */

.im-control-state{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin:18px auto 0;

    min-height:38px;

    color:
        rgba(255,255,255,.62);

    font-size:12px;
}

.im-control-light{
    width:8px;
    height:8px;

    border-radius:50%;

    background:#999;
}

.im-control-light.ready{
    background:#8fd19b;

    box-shadow:
        0 0 0 6px
        rgba(143,209,155,.11);
}

.im-control-light.starting{
    background:#efb646;

    animation:
        im-control-pulse
        1s
        infinite;
}

.im-control-light.live{
    background:#ff8275;

    box-shadow:
        0 0 0 7px
        rgba(255,130,117,.12);
}

.im-control-light.error{
    background:#ff8275;
}

@keyframes im-control-pulse{
    50%{
        opacity:.35;
    }
}

.im-studio-live-btn.is-starting{
    pointer-events:none;

    background:#a47b43;
}

.im-studio-live-btn.is-live{
    background:#a73832;
}

.im-studio-live-btn.is-error{
    background:#776762;
}
