/*
 * @file
 * Provides the layout styles for two-column layout section.
 */

 #layout-builder .layout--threecol-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 }
 
 @media screen and (min-width: 40em) {
  #layout-builder .layout--threecol-section .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
  }
 }
