.video-container {
	padding-top: 0;
}
.panel.video-preview .video-container {
  position: relative;
  /*padding: 0;*/
}
.panel.video-preview .video-container.playing:after {
  content: " ";
  width: 100%;
  height: 100%;
  min-height: 30%;
  background: #000000;
  transition: all 0.25s ease-out;
  z-index: 2;
}
.panel.video-preview .video-container:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.panel.video-preview .video-container:after {
  transition: all 0.25s ease-out;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: traslateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  content: " ";
  width: 100%;
  height: 100%;
  min-height: 30%;
  /*background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);*/
  z-index: 2;
}
.panel.video-preview .video-container video,
.panel.video-preview .video-container .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: traslateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: 100%;
  max-height: 100%;
}
.panel.video-preview .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  border: none;
}
.panel.video-preview .video-container video {
  width: 100%;
  z-index: 1;
}
.panel.video-preview .video-container video:before {
  width: 100%;
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
}
.panel.video-preview .video-container video::-webkit-media-controls-play-button {
  display: none !important;
}
.panel.video-preview .video-container .overlay-content {
  text-align: center;
  width: auto;
  z-index: 3;
}
.panel.video-preview .video-container .overlay-content .btn.btn-primary.btn-lg {
  font-size: 5em;
  padding: .25em;
  margin: 0;
  background: none;
  border: none;
  color: #fff;
  opacity: .4;
  transition: opacity 0.25s ease-in-out;
}
.panel.video-preview .video-container .overlay-content .btn.btn-primary.btn-lg:hover {
  opacity: 0.9;
}
.panel.video-preview .video-container .overlay-content .btn.btn-primary.btn-lg:focus {
  opacity: 0.9;
  outline: auto;
}
@media (min-width: 768px) {
  .panel.video-preview .video-container .overlay-content .btn.btn-primary.btn-lg {
    font-size: 7em;
  }
}
.panel.video-preview .video-container .overlay-content .fa-play-circle {
  background: transparent;
  color: #fff;
}
