/* Error Page Styles */

.seconds {
    background-color: #dcdde0;
    height: 10px;
    width: 600px;
    margin: auto;
    border-radius: 10px;
}

.bar {
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#50cd89), color-stop(100%,#50cd89));
    height: 10px;
    width: 0%;
    border-radius: 10px;
}

.animating {
    -webkit-animation: error-progress 61s infinite linear;
    animation: error-progress 61s infinite linear;
}

@-webkit-keyframes error-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes error-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
