body {
    margin: 0;
    padding: 0;
}

.video-container-el {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 154px;
    gap: 0;
    justify-content: left;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #252525;
    cursor: pointer;
}

.wrapper:first-child {
    cursor: default;
}

.video-header {
    width: 100%;
    height: 30px;
    display: flex;
    background: black;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
}

.video-header .camera-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.controls {
    width: 100%;
    height: 30px;
    display: flex;
    background: black;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.switchers {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 45px;
}

.current-time {
    font-size: 16px;
    flex: 1;
}

.mute-toggle {
    width: 25px;
    height: 25px;
    background-image: url("static/sound-on.svg?ver=1");
    background-size: cover;
    cursor: pointer;
}

.current-quality {
    flex: 1;
}

.mute-toggle.mute-toggle-on {
    background-image: url("static/sound-off.svg?ver=1");
}


.custom-progress-bar {
    background: #ccc;
    height: 10px;
    position: relative;
}

.progress-indicator {
    background: blue;
    height: 100%;
    width: 0;
    position: absolute;
}

.frame-step-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.slider {
    width: 100%;
}

.layout-1-large {
    display: block;
    overflow: auto;
}

.layout-1-large>div {
    float: left;
    width: calc(100%/8);
    height: calc((100vh - 152px) / 5);;
}

.layout-1-large>div:first-child {
    width: calc(100%/8*5);
    height: calc(100vh - 152px);
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(225, 225, 225, 0.94);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    padding: 0 10px;
    z-index: 1;
}

.range {
    height: 40px;
    border: 0!important;
}

.zoom-range {
    height: 40px;
    border: 0!important;
}

.row {
    margin: 0;
}

.range-field label {
    position: absolute;
    top: 7px;
}

.range-field input {
    margin-top: 22px;
    margin-bottom: 4px;
}

.switch {
    display: inline-block;
}
.hide {
    display: none !important;
}
.blur {
    height: 100%!important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
