/* =Elements style
---------------------- */
.loading-container{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(230, 230, 230, .8);
    z-index: 10;
}
.loading-container-active{
    display: block;
}
.load-wrapp {
    float: left;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  
  .load-wrapp p {
    padding: 0 0 20px;
  }
  .load-wrapp:last-child {
    margin-right: 0;
  }
  
  .line {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #222;
  }
  
  
  /* =Animate the stuff
  ------------------------ */

  .load-3 .line:nth-last-child(1) {
    animation: loadingC .7s 0.1s linear infinite;
  }
  .load-3 .line:nth-last-child(2) {
    animation: loadingC .7s 0.2s linear infinite;
  }
  .load-3 .line:nth-last-child(3) {
    animation: loadingC .7s 0.3s linear infinite;
  }

  
  .l-1 {
    animation-delay: 0.48s;
  }
  .l-2 {
    animation-delay: 0.6s;
  }
  .l-3 {
    animation-delay: 0.72s;
  }
  .l-4 {
    animation-delay: 0.84s;
  }
  .l-5 {
    animation-delay: 0.96s;
  }
  .l-6 {
    animation-delay: 1.08s;
  }
  .l-7 {
    animation-delay: 1.2s;
  }
  .l-8 {
    animation-delay: 1.32s;
  }
  .l-9 {
    animation-delay: 1.44s;
  }
  .l-10 {
    animation-delay: 1.56s;
  }

  @keyframes loadingC {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 200%);
    }
    100% {
      transform: translate(0, 0);
    }
  }
