.at-divider {
  box-sizing: border-box;
  padding: 0;
  color: rgba(0, 0, 0, .65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
  font-feature-settings: 'tnum';
  background: #e8e8e8;

  &-inner-text {
    display: inline-block;
    padding: 0 24px;
  }

  &-vertical {
    position: relative;
    top: -.06em;
    display: inline-block;
    width: 1px;
    height: .9em;
    margin: 0 8px;
    vertical-align: middle;
  }

  &-horizontal {
    display: block;
    clear: both;
    width: 100%;
    min-width: 100%;
    height: 1px;
    margin: 24px 0
  }

  &-with-text {
    display: table;
    margin: 16px 0;
    color: rgba(0, 0, 0, .85);
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    background: 0 0;

    &:before {
      position: relative;
      top: 50%;
      display: table-cell;
      width: 50%;
      border-top: 1px solid #e8e8e8;
      -webkit-transform: translateY(50%);
      transform: translateY(50%);
      content: '';
    }

    &:after {
      position: relative;
      top: 50%;
      display: table-cell;
      width: 50%;
      border-top: 1px solid #e8e8e8;
      -webkit-transform: translateY(50%);
      transform: translateY(50%);
      content: '';
    }

  }
}

