@import "../common/variables";
@import '../mixins';

.@{css-prefix} {
  &-row {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  &-row-border-top {
    &:before {
      .setTopLine();
    }
  }

  &-row-border-bottom {
    &:after {
      .setBottomLine();
    }
  }

  &-row-img img,
  &-row-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
