
/*
 * Created By: JOHN MICHAEL B. GELA
 * Date Created: 06/29/2017
 */

.loader-container {
    background: rgba(250, 250, 250, 0.76);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.loader {
    margin: 5px auto 0;
    width: 70px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.loader > .bounce {
    width: 15px;
    height: 15px;
    background-color: #949494;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: loader-bounce-delay 1.4s infinite ease-in-out both;
            animation: loader-bounce-delay 1.4s infinite ease-in-out both;
}

.loader .bounce-1 {
    -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s;
}

.loader .bounce-2 {
    -webkit-animation-delay: -0.16s;
            animation-delay: -0.16s;
}

@-webkit-keyframes loader-bounce-delay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
            40% { -webkit-transform: scale(1.0) }
}

@keyframes loader-bounce-delay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }
}