/*******************************
Lists with show more
*******************************/
.lists-inline-with-show-more {
  list-style-type: none;
  padding: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;

  li {
    margin-inline-end: .4rem;
  }

  a {
    text-decoration: underline;
  }
  
  /* Toggle lists */
  .toggle-inline-list {
    cursor: pointer;
    font-weight: 700;

    &,
    span {
      text-decoration: none;
    }

    &.show-less {
      text-decoration: none;
      padding-inline-start: .4rem;
    }
  }
}
