
* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* border: 1px solid #F00;*/
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.61em;
    margin: 0 auto;
    color: #000;
    background: #ebebeb;

    /*Add ligatures to font style*/

    font-feature-settings: "kern", "liga";
}
button {
    background: transparent;
    border: none;
}
span {
    color: #fff;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, .05); /*#777;*/
}
input[type="range"]::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, .05);  /*#777;*/
}
input[type=range]::-ms-track {
    height: 4px;
    background: rgba(255, 255, 255, .05);  /*#777;*/
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background: #ff8000;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    background: #ff8000;
    height: 5px;
    width: 5px;
    border-radius: 100%;
    cursor: pointer;
}
input[type=range]::-ms-thumb {
    background: #ff8000;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    cursor: pointer;
}
input[type=range]::-ms-fill-lower {
    background: #ff8000;
}

input[type='range'] {
    -webkit-appearance: none !important;
    background: rgba(255, 255, 255, .05);  /*#777;*/
    height: 4px;
    margin: 0 0 5px 0;
}
#seekBar {
    position: relative;
    top: 25px;
    display: block;
    width: 100%;
    padding: 0;
}
#videoControls {
    position: relative;
    top: -50px;
    background: transparent;

}
#seekbarDiv {
    display: block;
}
.right {
    float: right;
}
.center1 {
    width: 800px;
    margin: 0 auto;
    background: #fff;
}
.center2 {
    width: 100%;
}
.controlIcons {
    z-index: 9999;
    color: #fff;
}
.black {
    color: #000;
}
.hidden {
    visibility: hidden;
}
#videoContainer {
    transition: transform 1s;
}
#videoContainer:hover #seekBar {
    transform: translate(0px, -35px);
}
#videoContainer:hover .hidden {
    visibility: visible;
}
.dash {
    display: inline-block;
    font-family: 'Verdana', 'sans-serif';
    font-size: .7em;
}




