/* Media Queries */
@media only screen and (min-width: 768px) and (max-width: 1025px) {

    
}

@media only screen and (min-width: 400px) and (max-width: 767px) {

}

@media only screen and (max-width: 479px) {
    .ideal-form .ideal-wrap{
        width: 100%;
    }
    .ideal-form .ideal-label{
        margin-bottom: 10px !important;
    }
    .ideal-form .ideal-label, .ideal-form .ideal-field{
        width: 100%;
    }
    .ideal-form input[type="text"], .ideal-form input[type="password"], .ideal-form input[type="email"], .ideal-form input[type="number"], .ideal-form input[type="search"], .ideal-form input[type="url"], .ideal-form input[type="tel"], .ideal-form textarea, .ideal-form select{
        width: 100% !important;
    }
}

