/* Variables */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700");
body {
  font-family: "Montserrat", sans-serif;
}

.video-block {
  background-image: linear-gradient(to top, #1b2f45 0%, #00a651 20%, #1b2f45 100%);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-tab-title {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 30px 15px;
}

.video-tab .post-overlay-wrapper {
  min-height: 430px;
}
.video-tab .post-overlay-wrapper .post-content {
  padding: 35px;
}
.video-tab .post-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: normal;
}
.video-tab .nav-tabs {
  border-bottom: none;
  margin-left: 30px;
  height: 376px;
  overflow-y: auto;
}
.video-tab .nav-tabs::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
  border-radius: 10px;
}
.video-tab .nav-tabs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00a651;
}
.video-tab .nav-tabs li {
  width: 100%;
  display: block;
  min-height: 100px;
}
.video-tab .nav-tabs li a {
  background: none;
  border: 0;
  padding: 0;
  border: 0;
}
.video-tab .nav-tabs li a .post-thumbnail {
  float: left;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
}
.video-tab .nav-tabs li a .post-thumbnail img {
  max-width: 100px;
}
.video-tab .nav-tabs li a h3 {
  color: #fff;
  font-weight: normal;
  line-height: 28px;
  font-size: 16px;
  margin: 0;
}

.play-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.play-icon:hover {
  cursor: none;
}
.play-icon .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.1s ease;
}
.play-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.video-tab iframe {
  width: 100%;
  min-height: 369px;
  border: none;
  background: #000;
  padding: 10px;
  border-radius: 6px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  background: transparent;
  border: none;
}