.spinner {
    margin: 5px auto;
    width: 200px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #465a62;
    height: 100%;
    width: 5px;
    display: inline-block;
    margin-right: 2px;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

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

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

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

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

.spinner .rect6 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.spinner .rect7 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.spinner .rect8 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.spinner .rect9 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.spinner .rect10 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.spinner .rect11 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.spinner .rect12 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.1) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        background-color: #465a62;
        transition: background-color;
        transform: scaleY(0.1);
        -webkit-transform: scaleY(0.1);
    }  20% {
           background-color: #deeaff;
           transition: background-color;
           transform: scaleY(1.0);
           -webkit-transform: scaleY(1.0);
       }
}

#plz-wait {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 900;
}

#plz-container {
    position: relative;
    text-align: center;
    top: 50%;
    z-index: 1000;
}

.plz-title {
    text-align: center;
    font-weight: 400;
    font-size: 1.8em;
}

#plz-message-box {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0.9;
}

#plz-message {
    position: absolute;
    width: 100%;
    margin: 0px;
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    border-radius: 0px;
    z-index: 99999;
}
