.list-full-page .views-filters-wrapper {
  min-width: calc(100% + 36px * 2);
  left: -36px;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  display: flex;
  margin-top: 50px;
  margin-bottom: 0;
}
.list-full-page .views-filters-wrapper .inner-wrapper {
  overflow-x: scroll;
  padding: 0 36px 18px;
  display: flex;
}
.list-full-page .views-filters-wrapper .inner-wrapper .tag {
  border: 2px solid #b51f20;
  color: #b51f20;
  padding: 0.4rem 24px;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  display: flex;
  flex-shrink: 0;
}
.list-full-page .views-filters-wrapper .inner-wrapper .tag:hover, .list-full-page .views-filters-wrapper .inner-wrapper .tag.selected {
  background: #b51f20;
  color: #fff;
}
.list-full-page .views-filters-wrapper .inner-wrapper .tag:last-of-type {
  margin-right: 0;
}
@media (min-width: 768px) {
  .list-full-page .views-filters-wrapper .inner-wrapper {
    overflow: hidden;
    padding-bottom: 0;
    flex-wrap: wrap;
  }
  .list-full-page .views-filters-wrapper .tag {
    margin-bottom: 18px;
  }
}
@media (min-width: 1367px) {
  .list-full-page .views-filters-wrapper {
    margin-top: 150px;
    justify-content: flex-end;
  }
  .list-full-page .views-filters-wrapper .inner-wrapper {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
  }
}