video 
{
	margin-top: 1em;
	margin-bottom: 1em;
}

.vjs-default-skin.vjs-controls-disabled .vjs-control-bar 
{
    display: none;
}

.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button 
{
    display: none;
}

.video-js.vjs-default-skin 
{
    max-width: 650px;
    width: 100%;
}

.video-js .vjs-tech 
{
    height: 100%;
    width: 100%;
    max-width: 770px;
}

.vjs-hidden 
{
    display: none !important;
}

/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}


