#player {
    	padding:0;
    	background-color:#363A42;
      	border:0;
	 	max-width: 500px;
		width: 100%;
    }
    #controls {
      border: 0;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      margin-top: 5px;
      padding-bottom: 8px;
    }
    video {
    	border:0;
    	width:100%;
    }
.stop { 
	width:32px;
    height:32px;
	text-indent:-9999px;
	border:none;
    cursor:pointer;
	background: transparent url("../images/videoIcon/stop.svg") no-repeat 0 0;
}
.playIcon{
	width:32px;
    height:32px;
	text-indent:-9999px;
	border:none;
    cursor:pointer;
	background: transparent url("../images/videoIcon/play.svg") no-repeat 0 0;
}
.pause {
	width:32px;
    height:32px;
	text-indent:-9999px;
	border:none;
    cursor:pointer;
	background: transparent url("../images/videoIcon/pause.svg") no-repeat 0 0;
}
    #volume-bar {
	  width: 25px;
      vertical-align: middle;
      padding:0px;
    }
    .mute {
		width:23px;
		height:23px;
		text-indent:-9999px;
		border:none;
		cursor:pointer;
		background: transparent url("../images/videoIcon/volumeIcon.svg") no-repeat 0 0;
}
    .unmute {
		width:23px;
		height:23px;
		text-indent:-9999px;
		border:none;
		cursor:pointer;
		background: transparent url("../images/videoIcon/unmute.svg") no-repeat 0 0; 
}
    .replay {
		width:20px;
		height:20px;
		text-indent:-9999px;
		border:none;
		cursor:pointer;
		background: transparent url("../images/videoIcon/replay.svg") no-repeat 0 0;
}
    .fullscreen {
		background: transparent url("../images/videoIcon/fullScreen.svg") no-repeat 0 0; 
        text-indent: -9999px;
        border:none;
		cursor:pointer;
		width:23px;
		height:23px;
    } 
    progress {
      color: #00BBE9;
      font-size: 12px;
      width: 30%;
      height: 10px;
      border: none;
      margin:0px 5px;
      background: #434343;
      border-radius: 15px;
      vertical-align: middle;
    }
    progress::-moz-progress-bar { 
      color:#00BBE9;
      background:#fff; 
	  border-radius: 15px;
    }
    
    progress[value]::-webkit-progress-bar {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
    }
    
    progress[value]::-webkit-progress-value {
      background-color: #00BBE9;
	  border-radius: 15px;
    }
    
    input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      margin: 6.8px 0;
	display: inline-block !important;
    }
    input[type=range]:focus {
      outline: none;
    }
    input[type=range]::-webkit-slider-runnable-track {
      width: 100%;
      height: 4.4px;
      cursor: pointer;
      background: #00BCE9;
      border-radius: 1px;
      border: 1.1px solid #00BCE9;
    }
    input[type=range]::-webkit-slider-thumb {
      border: 2.5px solid #00BCE9;
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: #9DEEFC;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -7.9px;
    }
    input[type=range]:focus::-webkit-slider-runnable-track {
      background: #00BCE9;
    }
    input[type=range]::-moz-range-track {
      width: 100%;
      height: 4.4px;
      cursor: pointer;
      background: #00BCE9;
      border-radius: 1px;
      border: 1.1px solid #00BCE9;
    }
    input[type=range]::-moz-range-thumb {
      border: 2.5px solid #00BCE9;
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: #00BCE9;
      cursor: pointer;
    }
    input[type=range]::-ms-track {
      width: 100%;
      height: 4.4px;
      cursor: pointer;
      background: transparent;
      border-color: transparent;
      color: transparent;
    }
    input[type=range]::-ms-fill-lower {
      background: #00BCE9;
      border: 1.1px solid #00BCE9;
      border-radius: 2px;
    }
    input[type=range]::-ms-fill-upper {
      background: #00BCE9;
      border: 1.1px solid #00BCE9;
      border-radius: 2px;
    }
    input[type=range]::-ms-thumb {
      border: 2.5px solid #00BCE9;
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: #00BCE9;
      cursor: pointer;
      height: 4.4px;
    }
    input[type=range]:focus::-ms-fill-lower {
      background: #00BCE9;
    }
    input[type=range]:focus::-ms-fill-upper {
      background: #00BCE9;
}