.path {
  list-style-type: none;
  padding-left: 0;
  display: flex;
}
.path-container {
  overflow-x: scroll;
  width: 100%;
}
.path__item {
  display: inline-block;
  flex-shrink: 0;
}

/* not my best*/
.path__link{
  padding: 0.2rem 0.5rem;
  float: right;
  width: 70%;
}

.path__link--active {
    background-color: rgba(0,150,255,0.25);
}


/**
 * trumps
 */

.path__item + .path__item:before {
  content: '>';
  color: rgba(0,0,0, 0.35);
  float: left;
  height: 100%;
  padding-right: 1rem;
}
