progress[value] {
    /* Reset the default appearance */
    -webkit-appearance: none;
     appearance: none;
}

progress[value]::-webkit-progress-bar {
    background-color: #ddd;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
    background-color: #0588f0;
}

progress {
    width: 100%;
    height: 2vh;
}

.row {
    padding-top: 75px;
}

.progressbar[value] {
    /* Reset the default appearance */
    -webkit-appearance: none;
     appearance: none;
}

.progressbar {
    width: 100%;
    height: 2vh;
    background-color: #ddd;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

.progressbar[value]::-webkit-progress-bar {
    background-color: #ddd;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

.progressbar .inner {
    height: 2vh;
    animation: progressbar-countdown;
    animation-duration: 40s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-direction: reverse;
    animation-play-state: paused;
    animation-timing-function: linear;
}

@keyframes progressbar-countdown {
    100% {
        width: 100%;
        background: #54d94f;
    }
    0% {
        width: 0%;
        background: #d9534f;
    }
}

.question_image {
    min-width: 100%;
    max-height: 50vh;
    max-width: 100%;
}