.header-search {
  &:hover {
    cursor: pointer;
  }
}

.search-wrapper {
  display: none;
  height: 100vh;
  width: 100%;
  background-color: $yellow;
  margin-top: 20px;
  padding-left: 90px;
  &.show {
    display: block;
  }
}

#kesearch_num_results {
  display: none;
}
.tx-kesearch-pi1 {
  .kesearch_searchbox {
    margin-top: 200px;
    max-width: 930px;
    width: 100%;
    position: relative;
    .kesearchbox {
      height: auto;
      margin: 0;
      &:before {
        content: '';
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        background-image: url("../../Images/searchbar-search.svg");
        border: none;
        height: 60px;
        width: 57px;
        background-repeat: no-repeat;
        background-size: cover;
      }
      #ke_search_sword {
        border-radius: 50px;
        border: none;
        box-shadow: none;
        background: #FFF;
        padding: 16px 20px 16px 110px;
        position: static;
        width: 100%;
        font-size: 44px;
        line-height: 65px;
        color: $purple;
        &::placeholder {
          color: $black;
          opacity: 1;
        }
      }
    }
    .submitbutt {
      input {
        border: none;
        border-radius: 50%;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        min-width: 0;
        background-image: url("../../Images/plus.svg");
        background-size: 100% 100%;
        margin: 0;
        padding: 0;
        font-size: 0;
        line-height: 0;
      }
    }
  }
  .resetbutt {
    display: none;
  }

  // Search Results
  .result-number, .teaser_icon {
    display: none;
  }

  #kesearch_results {
    max-width: 930px;
    .result-list-item {
      margin: 0;
      border-top: 2px solid $black;
      padding-top: 20px;
      padding-bottom: 30px;
      position: relative;
      .result-list-item-inner {
        display: block;
        padding-right: 100px;
        .result-title {
          color: $black;
          transition: all 0.3s ease-out;
          h3 {
            font-weight: 500;
          }
        }
        .result-teaser {
          color: $black;
        }
        &:hover {
          cursor: pointer;
          .result-title {
            color: $purple;
          }
          &:before {
            background-image: url("../../Images/go-light.svg");
          }
        }
        &:before {
          content: '';
          position: absolute;
          right: 15px;
          top: 50%;
          transform: translateY(-50%);
          background-image: url("../../Images/go.svg");
          height: 50px;
          width: 50px;
          background-repeat: no-repeat;
          background-size: cover;
          pointer-events: none;
          transition: all 0.3s ease-out;
        }
      }
      &:last-child {
        border-bottom: 2px solid $black;
      }
    }
  }
}

.page-layout-4 {
  background-color: $yellow;
  #kesearch_results {
    margin-top: 0;
  }
  .tx-kesearch-pi1 form {
    margin-bottom: 0;
  }
}