/* make items in columns vertically center, put this in the row css */
.vertical-center-row {
  display: flex;
  align-items: center;
}

/* if you have background color set to the column, above vertical-center-row won't work.  Use this in the col you want to center and set equal column height in divi's row */
.vertical-center-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Put it in the row css */
@media only screen and (max-width: 980px) {
  .rev-order-2col-row {
    display: flex;
    flex-wrap: wrap;
  }

  .rev-order-2col-row .et_pb_column:nth-child(2) {
    order: 1;
  }

  .rev-order-2col-row .et_pb_column:nth-child(1) {
    order: 2;
  }
}

/* for row that you want to make all height of blur the same, make sure you have also set the qualize height setting in the row module */
.equal_height_blur_row .et_pb_column {
  display: flex;
}
