/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #fff;
    color: #000;
    font: 300 1em/1.5em;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.demo-wrapper {
    width: 616px;
    height: 130px;
    display: none;
}

/* Grid */
.container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Progress */
.progress {
    background-color: #e5e9eb;
    height: 0.35em;
    width: 24em;
    margin: 0 auto;
    position: relative;
}

.progress-bar {
    animation-duration: 5s;
    animation-name: width;
    background-image: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    background-size: 24em 0.25em;
    height: 100%;
}

.progress-shadow {
    background-image: linear-gradient(to bottom, #eaecee, transparent);
    height: 2em;
    position: absolute;
    top: 100%;
    transform: skew(45deg);
    transform-origin: 0 0;
    width: 100%;
}

/* Animations */
@keyframes width {
    0%, 100% {
        transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
    }
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.nosupport {
    margin-top: 70px;
}

.nosupport a {
    color: #f00;
}