@use "00-base/configure" as *;

.ma__split50 {

  @include ma-container;

  &__container {

    @media ($bp-medium-min) {

      @include clearfix;
      padding-top: 60px;
      padding-bottom: 60px;

      > *:nth-last-child(n+2),
      > *:nth-last-child(n+2) ~ * {

        @include span-columns(6);

        @include omega(2n);
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
      }

      > *:nth-child(2n) {
        border-left: 1px solid;
      }
    }
  }

  &--has-divider &__container {

    @media ($bp-medium-min) {
      border-top: 1px solid;
    }
  }
}
//theme

.ma__split50 {

  &__container {

    > *:nth-child(2n) {
      border-left-color: $c-bd-divider;
    }
  }

  &--has-divider &__container {
    border-top-color: $c-bd-divider;
  }
}