.lightbox {
    background-color: rgba($black, 0.8);
    overflow: scroll;
    position: fixed;
    display: none;
    z-index: 9999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    
    &-container {
      position: relative;
      max-width: 960px;
      margin: 7% auto;
      display: block;    
      padding: 0 3%;
      height: auto;
      z-index: 10;
      
      // Increasing top margin for mobile
      @media screen and (max-width: 768px) { margin-top: 10%; }
      @media screen and (max-width: 414px) { margin-top: 13%; }
    }
      
    &-content {
      box-shadow: 0 1px 6px fade(black, 70%);
    }
    
    &-close {
      text-transform: uppercase;    
      background: transparent;
      position: absolute; 
      font-weight: 300;      
      font-size: 12px;
      display: block;
      border: none;
      color: white;
      top: -30px;
      right: 4%;
      &:focus {
          outline: none;
      }
    }
  }
  
  .video-container {  
      padding-bottom: 56.25%;
      position: relative;  
      padding-top: 30px; 
      overflow: hidden;
      height: 0; 
  }
  
  .video-container iframe,
  .video-container object,
  .video-container embed {
      position: absolute;
      height: 100%;  
      width: 100%;  
      left: 0;  
      top: 0;
  }