@-webkit-keyframes rotation{
    from {-webkit-transform: rotate(360deg);}
    to {-webkit-transform: rotate(0deg);}
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.wait{
    -webkit-transform: rotate(360deg);
    animation: rotation 1s linear infinite;
    -moz-animation: rotation 1s linear infinite;
    -webkit-animation: rotation 1s linear infinite;
    -o-animation: rotation 1s linear infinite;

}

#progressBox {
    width: 300px;
    height: 30px;
    border: 1px solid #C8C8C8;
    background: white;
    position: relative;
    margin: 0 auto;
    margin-top: 100px;
        border-radius:50px;

}

#progressBar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    height: 30px;
    width: 100%;
    line-height: 30px;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-family: Georgia;
    clip: rect(0px, 0, 40px, 0px);
    background: #00A1F5;
    border-radius:50px;
}

#progressText {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 30px;
    line-height: 15px;
    color: black;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: Georgia;
}