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

}


@media (max-width: 1500px)
{

}


/* Desktops/Laptops */
@media (max-width: 1200px)
{
    .quiz-question
    {
        font-size: 30px;
        width: 80%;
    }
    fieldset
    {
        width: 70%;
    }
    .question
    {
        display: none;
    }
}

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

}

/* Tablets */
@media (max-width: 768px)
{
    .quiz-question
    {
        width: 90%;
        font-size: 25px;
        padding: 5px;
    }
    fieldset
    {
        width: 80%;
    }
    .step-bar .step-count
    {
      width: 25px;
      height: 25px;
      font-size: 16px;
    }
    .step-bar .bar::after
    {
        width: 10px;
    }

    #tamEkranYap {
      position: unset;
      margin-block: 20px;
    }
}

/* mobile */
@media (max-width: 480px)
{
    main
    {
        padding-top: 130px;
    }
    header
    {

    }
    .step-count
    {
        display: block;
    }
    #countdown
    {
        width: 100%;
    }
    .steps
    {
        padding: 20px;
    }
    .step-bar
    {
      width: 100%;
      margin-top: 20px;
    }
    form
    {
        border-radius: 0;
    }
    .quiz-question
    {
      width: 100%;
      font-size: 15px;
    }
    fieldset
    {
        padding: 50px 10px;
        width: 100%;
    }
    .radio-field
    {
        height: 43px;
    }
    .radio-field label
    {
        font-size: 15px;
    }
    .next-prev
    {
        position: static;
    }
    .next-prev button
    {
        width: 100%;
        border-radius: 0 !important;
    }
}
