/*======================================
Theme Name: scalesquad
Theme URI: https://scalesquad.com
Description: Official child theme for scalesquad
Version: 1.0
Author: Scale Squad
Author URI: https://scalesquad.com
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */


















/*==CUSTOM COLUMN ORDER==*/
@media all and (max-width: 980px) {
    /*** wrap row in a flex box ***/
    .dwe-custom-row {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
    }
    
    /*** custom classes that will designate the order of columns in the flex box row ***/
    .dwe-first-on-mobile {
    -webkit-order: 1;
    order: 1;
    }
    
    .dwe-second-on-mobile {
    -webkit-order: 2;
    order: 2;
    }
    
    .dwe-third-on-mobile {
    -webkit-order: 3;
    order: 3;
    }
    
    .dwe-fourth-on-mobile {
    -webkit-order: 4;
    order: 4;
    }
    /*** add margin to last column ***/
    .dwe-custom-row:last-child .et_pb_column:last-child {
    margin-bottom: 30px;
    }
    
    }
    /*===============*/
    /*==END CUSTOM COLUMN ORDER==*/

