/* Video controls */

#video-container {

}

#video-controls {
	position: inherit;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5px;
    height: 35px;
	opacity: 0;
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-o-transition: opacity .3s;
	-ms-transition: opacity .3s;
	transition: opacity .3s;
  background-image: url("../imgs/rwPlayer.png");

  background-repeat: repeat-x;
   background-size: cover;

}

#video-container:hover #video-controls {
	opacity: .9;
}

button {
	background: #e06f8b;
	border: 0;
	color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}

button:hover {
	cursor: pointer;
}

#seek-bar {
	width: 50%;
}

#volume-bar {
	width: 10%;
}
