.deos-facet-filter {
  .deos-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 20px;

    &:not(:last-child) {
      margin-bottom: 20px;
    }

    .deos-filter {
      .wpgb-select-controls {
        display: none;
      }

      select {
        font-size: 16px;
        color: #747979 !important;
        padding-left: 5px;
      }
    }

    &.grid-1 {
      .deos-filter {
        width: 100%;
      }
    }
    &.grid-2 {
      .deos-filter {
        width: calc(50% - 10px);
      }
    }
    &.grid-4 {
      .deos-filter {
        width: initial;
        flex: 1 1 0;
        @media (max-width: 676px) {
          width: calc(50% - 10px);
          flex: 1 1 50%;
        }

        select {
          width: 100%;
        }
      }
    }
    .deos-facet-search {
      label {
        position: relative;
        display: -ms-flexbox;
        display: flex;
      }
      input {
        position: relative;
        vertical-align: middle;
        -webkit-appearance: none;
        appearance: none;
        height: 50px;
        min-height: 50px;
        width: 100%;
        margin: 0;
        padding: 8px 6px;
        background-color: #fff;
        border-width: 2px;
        border-style: solid;
        box-shadow: none;
        border-color: #ccc;
        border-radius: 10px;
        line-height: 24px;
        font-size: 16px;
        font-weight: 400;
        outline: none;
        transition: border-color 100ms ease;
        padding: 6px 32px;
        color: #747979 !important;
      }

      .deos-filter-search-icon {
        position: absolute;
        top: calc(50% - 13px);
        font-size: 18px !important;
        font-family: FontAwesome !important;
        left: 0;
        height: 16px;
        width: 16px;
        margin: 0 8px 0 10px;
        color: #c7c7c7;
      }

      .wpgb-input-icon {
        display: none;
      }
    }

    .deos-reset-filter {
      display: flex;
      justify-content: start;
      button {
        height: 50px;
        width: 50px;
        font-family: FontAwesome !important;
        font-size: 22px !important;
        margin-bottom: 0px !important;
        padding: 15px !important;
        background-color: #404040 !important;
        border-radius: 10px !important;
        color: white;
        cursor: pointer;
        border: none;
        opacity: 0.6;

        &.has-filter {
          opacity: 1;
        }
      }
    }
  }
}

.deos-referenzen .deos-facet-filter {
  position: relative;
  padding: 25px;
  z-index: 0;
  margin-bottom: 50px;
}

.deos-referenzen .deos-facet-filter::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #ececec;
  z-index: -1;
}

@media (max-width: 676px) {
  .deos-referenzen .deos-facet-filter {
    padding: 12px;
  }
}
