/**
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */
@media all and (min-width: 1024px) and (max-width: 1280px) { }

@media all and (min-width: 768px) and (max-width: 1024px) { }


@media all and (max-width: 768px) {
    .email_validator_continer{
        width: 90%;
        margin: 0 auto;
    }
    .email_validator_continer
    .form-group{
        margin-bottom: 20px;
    }
    .row .col-4 .form-select{
        padding-left: 0.25rem;
    }
    #all_employments .add_another_employer,
    #all_employments .remove_employer,
    #all_employments .btn.pull-right{
        float: left ;
        margin: 3px 0;
    }
}

