.root{
  white-space: nowrap;
}

.breadcrumb{
  display: inline-block;
  font-size: $font-size-small;
  white-space: nowrap;
  padding: 0;
  margin-left: 12px;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  color: $color-grey-3;
  &:before{
    content: '/';
    color: $color-grey-3;
    display: inline-block;
    padding-right: 12px;
    font-size: 16px;
    vertical-align: -1px;
    font-weight: normal;
    font-family: $font-base;
  }
  .title {
    color: $color-grey-3;
    position: relative;
  }
  &:hover{
    text-decoration: line-through;
    text-decoration-color: $color-black;
    color: $color-black;
    .title {
      color: $color-black;
      &:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 50%;
        border-bottom: 1px solid #000;
      }
    }
    &:before {
      color: $color-black;
    }
  }
  &:first-child:before{
    color: $color-black;
  }
  .title{
    display: inline-block;
  }
}

.ball{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -1px;
  box-sizing: border-box;
  background-size: cover!important;
  position: relative;
  span{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid currentColor;
  }
}

.cross{
  vertical-align: -4px;
  transition: color .1s linear;
  padding-left: 5px;
}

.star {
  color: $color-yellow;
  &.unfilled {
    color: $color-grey-3;
  }
}
