.quiz-container {
    padding: 1em;
    max-width: 100%;
    margin: 1em auto;
}

    .quiz-container a {
        text-decoration: none;
        color: #333;
    }

#quiz-header,
#quiz-start-screen,
#quiz-results-screen,
#quiz-counter {
    text-align: center;
}

.question {
    font-size: 1.25em;
}

.answers {
    list-style: none;
    padding: 0;
}

    .answers a {
        display: block;
        padding: 0.5em 1em;
        margin-bottom: 0.5em;
        background: #e9e8e8;
        border-radius: 10px;
    }

        .answers a.correct {
            background: #090;
        }

        .answers a.incorrect {
            background: #c00;
        }

        .answers a.correct,
        .answers a.incorrect {
            color: #fff;
        }

#quiz-controls {
    background: #333;
    color: #fff;
    padding: 0.5em 1em;
    text-align: center;
    border-radius: 10px;
}

#quiz-response {
}

#quiz-results {
    font-size: 1.25em;
}

#quiz-buttons a,
.quiz-container .quiz-button {
    display: inline-block;
    padding: 0.5em 1em;
    background: #333;
    color: #fff;
    border-radius: 10px;
}

#quiz-buttons a {
    background: #fff;
    color: #333;
}

/* Quiz State Overrides */

.quiz-results-state #quiz-controls {
    background: none;
    padding: 0;
}

.quiz-results-state #quiz-buttons a {
    background: #333;
    color: #fff;
}


.progress-title {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #455493;
    margin: 0 0 20px;
}

.progress {
    height: 7px;
    background: #f8f8f8;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: visible;
}

    .progress .progress-bar {
        box-shadow: none;
        border-radius: 0;
        position: relative;
        -webkit-animation: animate-positive 2s;
        animation: animate-positive 2s;
    }

        .progress .progress-bar:before,
        .progress .progress-bar:after {
            content: "";
            width: 15px;
            height: 15px;
            background: #fff;
            position: absolute;
            top: -6px;
            right: 16px;
            transform: rotate(45deg);
        }

        .progress .progress-bar:after {
            border: 4px solid #fff;
            position: absolute;
            right: 2px;
        }

    .progress.red .progress-bar:before,
    .progress.red .progress-bar:after {
        outline: 4px solid #ef5b5b;
    }

    .progress.red .progress-bar:after {
        background: #ef5b5b;
    }

    .progress.yellow .progress-bar:before,
    .progress.yellow .progress-bar:after {
        outline: 4px solid #ffc116;
    }

    .progress.yellow .progress-bar:after {
        background: #ffc116;
    }

    .progress.blue .progress-bar:before,
    .progress.blue .progress-bar:after {
        outline: 4px solid #20a39e;
    }

    .progress.blue .progress-bar:after {
        background: #20a39e;
    }

    .progress.green .progress-bar:before,
    .progress.green .progress-bar:after {
        outline: 4px solid #7cb518;
    }

    .progress.green .progress-bar:after {
        background: #7cb518;
    }

@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}