
#loading-backdrop {
    position: fixed;
    top:0;
    left: 0;
    font-family: 'Quicksand', sans-serif;
    transition: .3s ease;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    height: 100vh;
    width: 100%;
    background-color: rgba(45,95,100,0.3);
    z-index: 1200;
}
#loading-backdrop > .loading-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    text-align: center;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    width: 80px;
    height: 220px;
    z-index: 1201;
}

#loading-backdrop .loader {
    position: relative;
    width: 54px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}
#loading-backdrop .loader .line {
    width: 8px;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#1ee95d), to(#5714ce));
    background: -webkit-linear-gradient(top, #1ee95d, #5714ce);
    background: -o-linear-gradient(top, #1ee95d, #5714ce);
    background: linear-gradient(to bottom, #1ee95d, #5714ce);
    opacity: .5;
}

#loading-backdrop .loader .line1 {
    left: 0;
    -webkit-animation: line-grow 0.5s ease alternate infinite;
    animation: line-grow 0.5s ease alternate infinite;
}

#loading-backdrop .loader .line2 {
    left: 20px;
    -webkit-animation: line-grow 0.5s 0.2s ease alternate infinite;
    animation: line-grow 0.5s 0.2s ease alternate infinite;
}

#loading-backdrop .loader .line3 {
    left: 40px;
    -webkit-animation: line-grow 0.5s 0.4s ease alternate infinite;
    animation: line-grow 0.5s 0.4s ease alternate infinite;
}
#loading-backdrop p {
    color: #46998f;
    animation: blinker 1.0s linear infinite;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

@keyframes blinker {
  50% { opacity: 0.0; }
}
@keyframes line-grow {
    0% {
        height: 0;
    }
    100% {
        height: 75%;
    }
}

