#searchform {
  display: flex;
  margin-top: 24px;
}
#searchform .select-wrapper {
  position: relative;
  display: inline-block;
  color: var(--orange1);
  transition: color 0.5s;
}
#searchform .select-wrapper select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Graublau Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--orange1);
  background-color: transparent;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--orange1);
  transition: color 0.5s, background-color 0.5s;
  position: relative;
  padding-right: 4rem !important;
}
#searchform .select-wrapper select.is-checked {
  background-color: var(--orange1);
  color: var(--white);
}
#searchform .select-wrapper::after, #searchform .select-wrapper .cancel {
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
#searchform .select-wrapper::after {
  content: "";
  -webkit-mask-image: url("/wp-content/themes/fsm/partials/search-form/img/arrow.svg");
  mask-image: url("/wp-content/themes/fsm/partials/search-form/img/arrow.svg");
  right: 9px;
  width: 9px;
  height: 9px;
}
#searchform .select-wrapper .select-cancel {
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  padding: 0;
  width: 10px;
  height: 10px;
  -webkit-mask-image: url("/wp-content/themes/fsm/partials/search-form/img/cancel.svg");
  mask-image: url("/wp-content/themes/fsm/partials/search-form/img/cancel.svg");
  right: 23px;
  display: none;
}
#searchform .select-wrapper.is-checked .select-cancel {
  display: inline-block;
}
#searchform .select-wrapper.is-checked {
  color: white;
}
#searchform.has-text .search-wrapper {
  color: var(--gray2);
}
#searchform.has-text .search-wrapper input[type="search"] {
  border-color: var(--orange1);
}
#searchform.has-text .search-wrapper button {
  display: block;
}
#searchform .search-wrapper {
  width: 100%;
  max-width: 340px;
  margin: 16px auto;
  padding: 0;
  position: relative;
  color: var(--gray3);
}
#searchform .search-wrapper:focus-within {
  color: var(--gray2);
}
#searchform .search-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: inherit;
  background-color: currentColor;
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/search-form/img/search.svg);
  -webkit-mask-size: 100%;
  mask-image: url(/wp-content/themes/fsm/partials/search-form/img/search.svg);
  mask-size: 100%;
}
#searchform .search-wrapper input[type="search"] {
  width: 100%;
  height: 100%;
  padding: 8px 100px 8px 32px;
  box-sizing: border-box;
  border: 1.2px solid;
  color: inherit;
}
#searchform .search-wrapper button {
  position: absolute;
  display: none;
}
#searchform .search-wrapper button.search {
  visibility: hidden;
}
#searchform .search-wrapper button.cancel {
  position: absolute;
  padding: 0;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--orange1);
  -webkit-mask-image: url(/wp-content/themes/fsm/partials/search-form/img/cancel.svg);
  -webkit-mask-size: 100%;
  mask-image: url(/wp-content/themes/fsm/partials/search-form/img/cancel.svg);
  mask-size: 100%;
  cursor: pointer;
}
.nojs #searchform button.search {
  display: block;
  padding: 6px 8px;
  right: 4px;
  top: 4px;
  border-width: 1px;
  line-height: 1;
  font-weight: normal;
  width: 66px;
  text-align: center;
}
.nojs #searchform button.cancel {
  right: 76px;
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=https://fsm.kniff.at/wp-content/build/scss_library/6aca50cc7ca9a43092916d050c6594db171921eb.css.map */