/*
 * @file
 * Provides the layout styles for layout_twocol.
 */

div.layout__region--second {
  min-width: 250px;
  max-width: 350px;
  min-height: 50px;
  float: right;
}
div.layout__region--first {
  min-width: 250px;
  max-width: 350px;
  min-height: 50px;
  float: left;
}

.layout--twocol {
  display: flex;
  flex-wrap: wrap;
}

.layout--twocol > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 40em) {
  .layout--twocol > .layout__region--first,
  .layout--twocol > .layout__region--second {
    flex: 0 1 50%;
  }
}
