// https://codepen.io/kcko/pen/qBrpVjO

.liner {
  display: flex;
  align-items: flex-start;
  text-align: center;

    &:before {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #D66853;
    min-width: 20px;
    margin: auto;
  }
  
  
  &:after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #D66853;
    min-width: 20px;
    margin: auto;
  }

  &:after {
    margin-left: 20px;
  }
    &:before {
    margin-right: 20px;
  }
}