/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
.current-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 16px;
  border-bottom: 1px solid #e1e1e1;
  margin: 0 0 10px 0;
  gap: 0;
}
.current-filters__filter {
  background-color: #ededed;
  color: #2c2c2c;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  padding: 9px 10px 9px 9px;
  height: auto;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 8px 0 0;
  transition: background-color 0.5s;
  cursor: pointer;
  text-decoration: none;
}
.current-filters__filter:hover {
  background-color: #d8b27e;
  text-decoration: none;
  color: #2c2c2c;
}
.current-filters__filter:hover .current-filters__remove {
  filter: none;
}
.current-filters__filter:focus {
  text-decoration: none;
}
.current-filters__name {
  display: inline-block;
  margin: 0 3px 0 0;
}
.current-filters__remove {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSI+PGRlZnM+PHBhdGggaWQ9ImtsY2lhIiBkPSJNMTU3IDIxNi42M2wtLjYzLS42My00Ljg3IDQuODctNC44Ny00Ljg3LS42My42MyA0Ljg3IDQuODctNC44NyA0Ljg3LjYzLjYzIDQuODctNC44NyA0Ljg3IDQuODcuNjMtLjYzLTQuODctNC44N3oiLz48L2RlZnM+PGc+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE0NiAtMjE2KSI+PHVzZSB4bGluazpocmVmPSIja2xjaWEiLz48L2c+PC9nPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
  display: block;
  height: 11px;
  width: 11px;
  margin: 0 0 0 13px;
  filter: none;
}
.current-filters__reset {
  margin: 10px 0 0 0;
}
.current-filters__reset form {
  margin: 0;
}
.current-filters__reset button,
.current-filters__reset a {
  background-color: #ededed;
  color: #2c2c2c;
  font-size: 12px;
  line-height: 14px;
  padding: 9px 10px 9px 9px;
  height: auto;
  outline: none;
  display: inline-block;
  background-color: #c8a676;
  padding: 9px 14px 9px 11px;
  font-weight: 400;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.5s;
}
.current-filters__reset button:hover,
.current-filters__reset a:hover,
.current-filters__reset button:focus,
.current-filters__reset a:focus,
.current-filters__reset button:active,
.current-filters__reset a:active,
.current-filters__reset button:active:focus,
.current-filters__reset a:active:focus {
  color: #fff;
  outline: none;
}
.current-filters__reset button:hover,
.current-filters__reset a:hover {
  background-color: #d8b27e;
}
@media (max-width: 768px) {
  .current-filters {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .current-filters__filter {
    margin-top: 4px;
    margin-right: 4px;
  }
  .current-filters__reset {
    margin-top: 4px;
  }
}

