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

 .layout--one-col {
  display: flex;
}

.layout--one-col > .layout__region {
  flex: 1 1 100%;
  max-width: 100%;
}

.layout__region {
  padding: 0!important;
  word-break: break-word;
}

@media screen and (max-width: 600px) {
  .layout {
    flex-direction: column;
  }
}

