.gm-divider {
  .gm-divider-line {
    position: relative;
  }

  .gm-divider-line::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gm-color-border);
  }

  &.gm-divider-left {
    .gm-divider-line:first-child {
      width: 1em;
      max-width: 1em;
    }
  }

  &.gm-divider-right {
    .gm-divider-line:last-child {
      width: 1em;
      max-width: 1em;
    }
  }
}
