#quiz-wrapper {
    min-height: 400px;
    position: relative;
}

#quiz-wrapper #quiz-container {
    padding: 0 20px
}

.quiz-header {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

#quiz-content {
    min-height: 370px;
    padding: 10px 0 50px;
}

.quiz-footer {
    bottom: 0;
    position: absolute;
    width: calc(100% - 40px);
    padding-top: 10px;
    border-top: 1px solid #ccc;
}

#quiz-wrapper .quiz-timer {
    font-size: 25px;
    text-align: center;
}

.question-template .question-header {
    min-height: 50px;
    display: flex;
    align-items: center;
}

.question-template .question-content {
    padding: 0 20px 10px;
    font-size: 16px;
}

.question-template #question-answers .question-answer {
    width: 98%;
    margin: 1%;
    float: left;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.question-template #question-answers {
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.question-template #question-answers .question-answer:hover {
    background-color: #ccc;
}

.question-template #question-answers .question-answer.selected-answer {
    color: white;
    border: 1px solid #346abb;
    background-color: #346abb !important;
}

.question-template.question-image-1-template .question-header .question-image-wrapper {
    min-width: 25%;
    max-width: 50%;
    text-align: center;
}

.question-template.question-image-1-template .question-header .question-image-container {
    padding: 10px;
}

.question-template.question-image-1-template .question-header .question-image-container img {
    max-height: 700px;
}

#quiz-init {
    width: 100%;
    padding: 20px;
    text-align: center;
}

#quiz-init .init-description {
    font-size: 18px;
}

#quiz-init .init-questions-details {
    font-size: 22px;
    margin: 60px 0 80px;
}

#quiz-init .init-buttons-wrapper {

}

#quiz-ended-page {
    font-size: 24px;
    display: flex;
    height: 350px;
}

#quiz-ended-page div {
    margin: auto;
}

.question-video-wrapper {
    width: 100%;
    text-align: center;
}

.question-video-wrapper .question-video-container {
    padding: 20px;
}

