﻿.loading-bars {
    height: 65px;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
}

.loading-bars > div {
    background-color: #33829D;
    height: 100%;
    width: 7px;
    display: inline-block;
    margin: 0 2px;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.loading-bars .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.loading-bars .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.loading-bars .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.loading-bars .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

.loading-bars-message {
    display: block;
    text-align: center;
    font-size: 16px;
}
