body {
    margin: 0;
}

#waitPage {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f4f8;
    z-index: 9999;
    text-align: center;
}

#waitPage .tracerContainer {
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
}

#waitPage .row {
    max-width: 400px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    font-size: 14px;
    letter-spacing: -.01em;
}

#waitPage .tracerContainer h2 {
    font-size: 20px;
    margin: 0 0 5px 0;
}

#waitPage .tracerContainer .row > p {
    color: #666666;
    margin: 0 0 24px 0;
}

.tracerContainer .waitPage-delayTime {
    font-weight: bold;
    margin: 10px 0;
    font-size: 20px;
}

#waitPage .progress-title {
    color: #666666;
}

#waitPage .progress {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: "Roboto", sans-serif;
    background-color: #EEE;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
}

#waitPage .progress-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    position: relative;
}

#waitPage .progress-bar {
    height: 15px;
    display: block;
    float: left;
    width: 0;
    background-color: #ff3f54;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: width 0.8s ease-in-out;
    transition: width 0.8s ease-in-out;
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
    -webkit-animation: progressActive 2s linear infinite;
    -ms-animation: progressActive 2s linear infinite;
    animation: progressActive 2s linear infinite;
}

#waitPage img.progress-icon {
    position: absolute;
    top: 85px;
    -webkit-transition: left 0.8s ease-in-out;
    transition: left 0.8s ease-in-out;
    left: 0;
}

#waitPage .progress-label {
    line-height: 15px;
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.7em;
    text-shadow: 0 1px rgba(0, 0, 0, 0.3);
}

#waitPage #wait_value {
    color: #666666;
    font-size: 16px;
    margin: 15px 0;
}

#waitPage #wait_value strong {
    font-size: 17px;
    color: #000000;
    font-weight: bold;
}

#waitPage .waitPage-reason {
    font-size: 12px;
    color: #666666;
    margin-top: 100px;
}

#waitPage .waitPage-reason img {
    margin-bottom: -2px;
}

/* animation */
@-webkit-keyframes progressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}

@-ms-keyframes progressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}

@keyframes progressActive {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 35px 35px;
    }
}
