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

 #layout-builder .layout--twocol-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--twocol-section .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
 }
