#loader {
    background-color: #fff;
    display: table;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    vertical-align: middle;
    width: 100%;
    z-index: 9999;
}
.loader-container {
    display: table-cell;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    z-index: 12;
}
#preloader_1 {
    margin: auto;
    position: relative;
    width: 100px;
}
#preloader_1 span {
    animation: 1.5s ease-in-out 0s normal none infinite running preloader_1;
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    display: block;
    height: 5px;
    position: absolute;
    width: 9px;
}
#preloader_1 span:nth-child(2) {
    animation-delay: 0.2s;
    left: 11px;
}
#preloader_1 span:nth-child(3) {
    animation-delay: 0.4s;
    left: 22px;
}
#preloader_1 span:nth-child(4) {
    animation-delay: 0.6s;
    left: 33px;
}
#preloader_1 span:nth-child(5) {
    animation-delay: 0.8s;
    left: 44px;
}
@keyframes preloader_1 {
0% {
    background: rgba(23, 223, 190, 1) none repeat scroll 0 0;
    height: 5px;
    transform: translateY(0px);
}
25% {
    background: rgba(21, 218, 192, 1) none repeat scroll 0 0;
    height: 30px;
    transform: translateY(15px);
}
50% {
    background: rgba(13, 200, 203, 1) none repeat scroll 0 0;
    height: 5px;
    transform: translateY(0px);
}
100% {
    background: rgba(6, 180, 215, 1) none repeat scroll 0 0;
    height: 5px;
    transform: translateY(0px);
}
}
