.tag-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  line-height: 1;
  margin: 0 8px 8px 0;
  border-radius: 60px;
  background: var(--gray, #f6f8f9);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out
}

.tag-category:hover {
  background: #e9ebec;
  text-shadow: none
}

.tag-category.is-active {
  border-color: var(--black-real, #000);
  font-weight: 700
}

.tags-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 34px;
  padding-bottom: 16px
}