/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
.ux-filter {
  display: block;
}

.ux-filter__remove-all {
  font-family: Frutiger-Bold, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  align-items: center;
  background-color: transparent;
  color: #131313;
  cursor: pointer;
  display: inline-flex;
  flex-flow: row nowrap;
  font-size: 12px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
  min-height: 30px;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.ux-filter__remove-all ux-icon[name=close] {
  font-size: 10px;
  margin-left: 10px;
}
.ux-filter__remove-all::after {
  background-color: #131313;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 250ms ease-out;
  width: 100%;
}
.ux-filter__remove-all:hover::after {
  transform: none;
}
.ux-filter__remove-all.is-hidden {
  display: none;
}