.youtube-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 30px;
}

.youtube-lazy {
  background-color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube-lazy img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}

.youtube-lazy .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube-lazy .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}

.youtube-lazy img,
.youtube-lazy .play-button {
  cursor: pointer;
}

.youtube-lazy img,
.youtube-lazy iframe,
.youtube-lazy .play-button,
.youtube-lazy .play-button:before {
  position: absolute;
}

.youtube-lazy .play-button,
.youtube-lazy .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d( -50%, -50%, 0 );
}

.youtube-lazy iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/* YouTube wrapper specific content section */
.youtube-wrapper .youtube-content {
  padding: 20px 20px 50px 20px;
}

/* YouTube wrapper specific dropdown states */
.youtube-wrapper .youtube-dropdown.active:after {
  content: "\2796\fe0e"; /* Unicode character for "minus" sign (-) */
}

.youtube-wrapper .youtube-dropdown {
  display: block !important;
  background: #f8f7fc;
  padding: 15px;
  color: #272754;
  width: 50%;
  border: 2px solid #f8f7fc;
}

.youtube-wrapper .youtube-dropdown:after {
  content: '\02795\fe0e'; /* Unicode character for "plus" sign (+) */

  color: #272754;
  float: right;
  margin-left: 5px;
}

.youtube-wrapper .youtube-dropdown:focus-within {
  outline: 5px auto -webkit-focus-ring-color;
}

/* YouTube wrapper responsive views */
.youtube-wrapper .youtube-mobile-view {
  display: none;
  padding: 30px;
}

@media screen and (max-width: 600px) {
  .youtube-wrapper .youtube-mobile-view {
    display: block !important;
  }
  
  .youtube-wrapper .youtube-desktop-view {
    display: none !important;
  }
  
  .youtube-wrapper .youtube-dropdown {
    width: 90%;
  }
}

.youtube-wrapper .video-title-div {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}