
.lss-progress{
    position: relative;
    height: 8px;
    border-radius: 4px;
    background: gray;
}
.lss-progress span{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
}
.lss-progress span.green{
    background: green;
}
.lss-progress span.red{
    background: red;
}
.lss-progress span.orange{
    background: orange;
}

.camera-list{
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.camera-list .status,
.camera-grid .status{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.camera-list .red .status,
.camera-grid .red .status{
    background: red;
}
.camera-list .green .status,
.camera-grid .green .status{
    background: green;
}

.camera-grid figure{
    padding-bottom: 65%;
    position: relative;
    background: #2b2b2c;
    border: solid 1px #ebebeb;
    margin: 0;
}

.camera-grid figure img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.camera-grid figure figcaption{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3px 15px;
    color: #FFFFFF;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}