* {
    box-sizing: border-box;
}
.container-sc {
    width: 100%;
    margin: auto;
    height: 600px;
}
.current-image {
    position: relative;
    width: 600px;
    height: 400px;
    margin: auto;
    background-image: url("https://via.placeholder.com/600x400.jpg?text=Watch+Camera");
    background-repeat: no-repeat;
    background-size: auto;
}
.player {
    position: relative;
    text-align: center;
}

.player .play, .player .pause, .player .progress {
    display: inline-block;
    vertical-align: middle;
}


.player .play {
    border-left: 14px solid #333;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.player .pause {
    border-left: 4px solid #333;
    border-right: 4px solid #333;
    width: 14px;
    height: 16px;
    box-sizing: border-box;
}

.player input[type=range] {
    width: 200px;
}

.player input[type=range] {
    -webkit-appearance: none;
    background: rgba(0, 0, 0, 0.2);
    height: 5px;
    margin-top: 15px;
}

.player input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background: #333;
}

.player input[type=range]:focus {
    outline: none;
}
.current-ts[data-text]::before {
    content: attr(data-text);
}
.camera-container {
    border: 2px solid #eeab54;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.border-override {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid #fff;
}
.cameras,.camera{
    position:relative
}
.camera-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    background-color: rgba(10, 10, 10, 0.7);
    color: #fefefe;
    font-size: 8px;
    text-align: center;
}
#camera-resolution{
    max-width: 87%;
}