.mwl-container {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.9);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transition: .3s;
  
  &.invisible {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
  }
  
  .control-nav {
    font-size: 20px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    position: absolute;
    z-index: 999;
    top: 50%;
    margin-top: -15px;
    // background: rgba(0,0,0, 0.5);
    color: white;
    cursor: pointer;
  }
  
  .control-layout {
    font-size: 20px;
    z-index: 9;
    line-height: 30px;
    width: 30px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 15px;
    // background: rgba(0,0,0, 0.5);
    color: white;
    cursor: pointer;
  }
  
  .control-go-small {
    display: none;
  }
  
  .control-close {
    right: 15px;
  }
  
  .control-previous {
    left: 15px;
  }
  
  .control-next {
    right: 15px;
  }
  
  .mwl-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    opacity: 1;
    background-image: url(../tail-spin.svg);
    background-position: center;
    background-repeat: no-repeat;
    
    .mwl-img-in-lightbox {
      margin: auto;
      max-width: 100%;
      height: auto;
      transform: scale(.8);
      filter: blur(5px);
      opacity: 0;
    } 
    
    &.visible {
      
      .mwl-img-in-lightbox {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1;
        transition: filter .5s, opacity .5s, transform .5s;
      }
      
    }
  }
  
  &.photography {
    background: rgba(0,0,0,.95);
    
    .control-next {
      right: 50%;
      margin-right: 15px;
    }
    
    .mwl-img-container {
      width: 50%;
      float: left;
    }
    
    .mwl-img-infos-container {
      position: relative;
      width: 50%;
      height: 100%;
      float: left;
      display: flex;
      align-items: center;
      
      .mwl-img-infos {
        width: 100%;
        padding: 2em;
        color: white;

        h1 {
          font-size: 1.5em;
          transform: translateY(60px);
          opacity: 0;
        }
        
        p {
          opacity: .7;
          transform: translateY(120px);
          opacity: 0;
        }
        
        .image-exif {
          font-size: .8em;
          color: #ccc;
          
          .exif-data {
            display: inline-block;
            margin-left: 15px;
            transform: translateY(60px);
            opacity: 0;
            
            i {
              color: aquamarine;
              width: 20px;
            } 
          }
          
          .exif-data:first-of-type {
            margin-left: 0;
          }
        }
        
        
        &.visible {
          transform: translateY(0px);
          opacity: 1;
          transition-duration: .5s;
          
          h1 {
            transform: translateY(-15px);
            opacity: 1;
            transition: transform .8s, opacity 1s;
          }
          
          p {
            transform: translateY(0px);
            padding-left: 15px;
            border-left: 1px solid #ccc;
            opacity: .6;
            transition: transform .8s, opacity 1s;
          }
          
          .exif-data.visible {
            transform: translateY(0px);
            opacity: 1;
            transition-duration: .8s;
          }
        }
      }
    }
    
    &.hide-infos {
      .control-next {
        right: 15px;
        margin-right: 0;
      }
      
      .mwl-img-container {
        width: 100%;
      }
      
      .mwl-img-infos-container {
        display: none;
      }
    }
    
    @media screen and (max-width: 960px) {
      .control-next {
        right: 15px;
        margin-right: 0;
      }
      
      .control-layout {
        display: none;
      }
      
      .mwl-img-container {
        width: 100%;
      }
      
      .mwl-img-infos-container {
        display: none;
      }
    }
  }
}