.desktop_quiz_timer, .mobile_quiz_timer{
    display: block;
    color: #ffffff;
    background-color: #369990;
    box-shadow: none;
    border: none;
    height: 70px;
}
.mobile_quiz_timer,
.mobile_quiz_timer_separator{
    display: none;
}
.quiz_timer_label{
    width: 100%;
    display: block;
    text-align: center;
    margin-top: -15px;
    font-size: 12px;
    font-weight: 400;
}
.quiz_timer_time{
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: block;
    font-size: 26px;
    line-height: 28px;
    font-style: normal;
    font-weight: 500;
}
.quiz_timer_line{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 3px;
    border-radius: 25px;
    background: #d1d1d1;
    margin-top: 5px;
}
.quiz_timer_line .filled{
    position: absolute;
    background: #fff;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 25px;
}
@media (max-width:818px){
    .mobile_quiz_timer{
        display:block!important;
        max-width: 240px;
        margin: 1rem auto;
    }
    .mobile_quiz_timer_separator{
        display: block;
    }
    .desktop_quiz_timer{
        display: none!important;
    }
}