.youtube-container{
    position: relative;
    background-color: black;
    margin-left: auto;
    margin-right: auto;
    align-content: space-around;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-around;
    display: flex;
    height: 500px;
    width: 100%;
  }
  .youtube-container.load-active {
      background:#000 url(../images/spinner-loading.gif) center center no-repeat;
  }
  .youtube-container iframe{
    height: 100%;
    width: 100%;
  }
  
  .youtube-player {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }
  .youtube-thumb{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .youtube-container > .video-consent-overlay{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing:border-box;
    padding:0 20px;
    color: white;
  }
  .youtube-container .video-consent-overlay-text{
    text-align:center;
  }
  .youtube-container .video-consent-overlay-accept-button{
    margin: 20px 0 0 0;
    padding: 8px 10px;
    background-color: blue;
    cursor:pointer;
  }
  .play-button{
    position: absolute;
    left: 50%;
    top: 50%;
    background : url(../images/video_youtube_icon.png);
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
    
@media (max-width: 767.98px) {
  .youtube-container{
      margin-bottom: 30px  !important;
  }
}