/* large screens */
@media (min-width: 1600px)
{

}


@media (max-width: 1500px)
{
    
}


/* Desktops/Laptops */
@media (max-width: 1200px)
{
    .timer
    {
        right: 8px;
    }
    .timer-inner
    {
        width: 100px;
        height: 100px;
        border-width: 6px;
    }
    .active::before
    {
        width: 70px !important;
    }
    .step-count-bar::after
    {
        width: 70px;
    }
    .quiz-question
    {
        font-size: 35px;
    }
    .question
    {
        display: none;
    }
    .radio-btn input
    {
        width: 100%;
    }
    .radio-btn
    {
        padding: 0 30px;
    }
    form::before
    {
        height: 58.8%;
    }
}

/* Laptops */
@media (max-width: 1024px)
{

}

/* Tablets */
@media (max-width: 768px)
{
    .quiz-question
    {
        margin-top: 250px;
    }
    .tab-50
    {
        width: 50%;
    }
    .tab-100
    {
        width: 100%;
    }
    .no-div
    {
        display: none;
    }
    .timer
    {
        position: static;
        width: 100%;
        display: grid;
        height: 100%;

    }
    .timer-inner
    {
        border-radius: 0;
        width: 100%;
        height: 100%;
        text-align: center;
    }
    header
    {
        display: grid;
        align-items: center;
        padding: 0;
        min-height: 100px;
        position: fixed;
        top: 0;
        z-index: 1000;
    }
}

/* mobile */
@media (max-width: 480px)
{
    .quiz-question
    {
        font-size: 20px;
        width: 100%;

    }
    .mob-100
    {
        width: 100%;
    }
    .next-prev button
    {
        width: 100%;
    }
}