
/* Extra large screen */
@media only screen and (max-width: 1599px){
    
}

/* large screen */
@media only screen and (max-width: 1399px){
    
}

/* laptop screen */
@media only screen and (max-width: 1199px){
    .content-wrapper{
        padding: 28px;

        .modal-heading{
            font-size: 3.5rem;
            margin-bottom: 1.2rem;
        }

        .modal-heading-3{
            font-size: 34px;
            margin-bottom: 16px;
        }

        .modal-heading-2{
            font-size: 1.75rem;
        }

        .form-control {            
            padding: 0.75rem;
            font-size: 1.25rem;
        }
    }

    .form-check {    
        .form-check-label{
            font-size: 1.25rem;
        }
    }
}
/* mid screen / Tabs */
@media only screen and (max-width: 991px){
    .content-wrapper{
        padding: 24px;

        .modal-heading{
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .modal-heading-3{
            font-size: 30px;
            margin-bottom: 16px;
        }

        .modal-heading-2{
            font-size: 1.5rem;
        }
    }
}

/* tabs screen */
@media only screen and (max-width: 765px){

    .content-wrapper{
        padding: 20px;

        .modal-heading{
            font-size: 2.5rem;
            margin-bottom: 0.9rem;
        }
        .modal-heading-3{
            font-size: 24px;
            margin-bottom: 16px;
        }
        .modal-heading-2{
            font-size: 1.25rem;
        }
        .modal-ques{
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
            letter-spacing: 1px;       
        }
        .modal-hints{
            font-size: 1rem;
            margin-top: 20px;
            font-weight: 400;
            text-align: center;
            color: rgba(255, 255, 255, 1);
        }
        .modal-text{
            font-size: 1rem;
            margin-bottom: 1.25rem; 
            margin-top: 0;
        }
        .modal-list{
            margin-bottom: 1.25rem; 
            margin-top: 0;
    
            li{
                font-size: 1rem;
            }
        }
        .modal-text-2{
            font-size: 1rem;
            margin-bottom: 1.25rem; 
            margin-top: -10px;
        }
        .radio-scale-wrapper{
            gap: 6px;
    
            .form-group-2{
                padding: 8px 10px;
            }
        }
        &.content-wrapper-2{
            .modal-ques{
                margin-bottom: 24px;
            }
        }
        .form-control {            
            padding: 0.6rem;
            font-size: 1rem;
        }
    }

    .modal-footer-text{
        font-size: 1.5rem;
    }

    .form-check {
        padding: 0.75rem;
    
        .form-check-label{
            font-size: 1rem;
        }
    }
}

/* extra small / Mobile devices */
@media only screen and (max-width: 575px) {
    .content-wrapper{
        padding: 16px;

        .modal-heading{
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
    }

}