#videoElement {
    /*height: 100vh;*/
    width: 100vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.outer-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e0e0e0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.inner-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333333;
    z-index: 1001;
    transition: all .3s;
}


/*
#cameraSelect, #cameraZoom,#pagesegmodSelect,#variantSelect {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30%;
    z-index: 1;
    outline: 0;
    background: white;
    border-radius: 10px;
    padding: 5px;
}

#pagesegmodSelect {
    bottom: 35%;
}

#variantSelect {
    bottom: 40%;
}

#cameraZoom {
    bottom: 40%;
}*/

#cameraZoom {
    -webkit-appearance: slider-vertical;
    height: 80px;
    position: absolute;
    width: 80px;
    margin-left: 50px;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type='range'] {
        background-color: #333333;
    }

    input[type='range']::-webkit-slider-runnable-track {
        height: 10px;
        -webkit-appearance: none;
        color: #ff0000;
        margin-top: -1px;
    }

    input[type='range']::-webkit-slider-thumb {
        width: 10px;
        -webkit-appearance: none;
        height: 10px;
        cursor: ew-resize;
        background: #00ff00;
    }

}
/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: #43e5f7;
}
input[type="range"]::-moz-range-track {
    background-color: #9a905d;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: #43e5f7;
}
input[type="range"]::-ms-fill-upper {
    background-color: #9a905d;
}

