/**
 * @file
 * Inner Columns styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.inner-columns {
  display: flex;
  margin: 2rem 0;
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.inner-columns + .inner-columns {
  margin-top: 6rem;
}
@media screen and (max-width: 73.0625rem) {
  .inner-columns + .inner-columns {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns + .inner-columns {
    margin-top: 2rem;
  }
}
.inner-columns.inner-columns--50-50 .inner-columns__column-1,
.inner-columns.inner-columns--50-50 .inner-columns__column-2 {
  width: 50%;
}
.inner-columns.inner-columns--50-50 .inner-columns__column-1 {
  padding-right: 3%;
}
.inner-columns.inner-columns--50-50 .inner-columns__column-2 {
  padding-left: 3%;
}
.inner-columns.inner-columns--40-60 .inner-columns__column-1 {
  width: 40%;
  padding-right: 1%;
}
.inner-columns.inner-columns--40-60 .inner-columns__column-2 {
  width: 60%;
  padding-left: 5%;
}
.inner-columns.inner-columns--60-40 .inner-columns__column-1 {
  width: 60%;
  padding-right: 5%;
}
.inner-columns.inner-columns--60-40 .inner-columns__column-2 {
  width: 40%;
  padding-left: 1%;
}
.inner-columns .inner-columns__column-1 .component:last-child,
.inner-columns .inner-columns__column-2 .component:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 47.9375rem) {
  .inner-columns .inner-columns__column-1,
  .inner-columns .inner-columns__column-2 {
    width: 100% !important;
    padding: 0 0 1.5rem !important;
  }
}

/*# sourceMappingURL=inner-columns.css.map*/