 
    #player {
    	float:left;
    	padding:1em 1em .5em;
    	background-color:white;

    }
    
    #controls {
   
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      margin-top: 5px;
      padding-bottom: 3px;
      border-radius: 7px;
    }
    
    video {
    	background:white;
    }
    
    button {
  
    	width:35px;
    	height:16px;
    	border:none;
    	cursor:pointer;
    
    }
    
    .pause {    
      	width: 30px;
    	  text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px; 
    }

    .stop {    
    	text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px; 
    }

    #volume-bar {
	    width: 50px;
      vertical-align: middle;
      padding:0px;
    }

    .mute {    text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px; }

    .unmute {    
        text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px; }
    .replay {    
        text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px; }

    .fullscreen {
        text-indent: 0px;
        color: black;
        background-color: white;
        background-image: none;
        padding: 0px;
        padding-bottom: 3px;
    }

    progress {
      color: black;
      font-size: 12px;
      /*width: 220px;*/
      height: 16px;
      border: none;
      margin-right: 10px;
      background: white;
      border-radius: 9px;
      vertical-align: middle;
      width: calc( 100% - 166px);
    }

    progress::-moz-progress-bar { 
      color:black;
      background:white; 
    }
    
    progress[value]::-webkit-progress-bar {
      background-color: white;
      border-radius: 2px;
    }
    
    progress[value]::-webkit-progress-value {
      background-color: black;
    }
    
    input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      margin: 6.8px 0;
    }
    input[type=range]:focus {
      outline: none;
    }
    input[type=range]::-webkit-slider-runnable-track {
      width: 100%;
      height: 4.4px;
      cursor: pointer;
      background: white;
      border-radius: 1px;
    }
    input[type=range]::-webkit-slider-thumb {
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: white;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -7.9px;
    }
    input[type=range]:focus::-webkit-slider-runnable-track {
      background: white;
    }
    input[type=range]::-moz-range-track {
      width: 100%;
      height: 4.4px;
      cursor: pointer;
      background: white;
      border-radius: 1px;
    }
    input[type=range]::-moz-range-thumb {
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: white;
      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: white;
      border-radius: 2px;
    }
    input[type=range]::-ms-fill-upper {
      background: white;
      border-radius: 2px;
    }
    input[type=range]::-ms-thumb {
      height: 18px;
      width: 9px;
      border-radius: 3px;
      background: white;
      cursor: pointer;
      height: 4.4px;
    }
    input[type=range]:focus::-ms-fill-lower {
      background: white;
    }
    input[type=range]:focus::-ms-fill-upper {
      background: white;
    }