.Page-wrapper--search {
  position: fixed;
  z-index: -10;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  padding: 100px;
  background: rgba(#92bedd, 0.9);
  opacity: 0;
  transition: opacity 0.5s;
}

.Page-wrapper--search.opened {
  z-index: 10;
  opacity: 1;
}

.Page-wrapper--search.opened .Page-wrapper--search-inner {
  overflow: hidden;
  overflow-y: auto;
  height: 80vh;
}

.Page-wrapper--search.opened form {
  margin: 45px 0 60px;
}

.Page-wrapper--search.opened form .form-group {
  position: relative;
}

.Page-wrapper--search.opened form input[type='text'] {
  width: 75%;
  transition: width 0.5s;
}

.Page-wrapper--search.opened form button[type='submit'] {
  display: inline-block;
  width: 25%;
  height: 100%;
  margin-top: 2px;
  text-align: left;
  background: transparent;
}

.Page-wrapper--search.opened form button[type='submit'] img {
  height: 90%;
}

.Page-wrapper--search.opened .often-search {
  width: 75%;
}

.Page-wrapper--search.opened .often-search > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
}

.Page-wrapper--search.opened .often-search > div:last-of-type {
  margin-right: 0;
}

.Page-wrapper--search.opened .btn {
  margin-top: 45px;
}

@media screen and (max-width: 992px) {
  .Page-wrapper--search.opened {
    padding: 45px;
  }

  .Page-wrapper--search.opened form input[type='text'] {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  .Page-wrapper--search.opened {
    padding: 45px 15px;
  }

  .Page-wrapper--search.opened form input[type='text'] {
    width: 60%;
  }
}

.form-group--field {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (--bp-2) {

.form-group--field {
    max-width: 75%;
}
  }

#SearchFormInput {
  width: 100%;
  padding: 14px 25px;
  font-family: var(--font-primary);
  font-size: 1.375rem;
  line-height: 1.4375rem;
}

@media (--bp-2) {

#SearchFormInput {
    padding: 14px 22px;
}
  }

@media (--bp-3) {

#SearchFormInput {
    padding: 20px 30px;
}
  }

.search-searchButton {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  max-width: 55px;
  min-height: 55px;
  max-height: 55px;
  margin-left: 10px;
  padding-left: 10px;
  border-radius: 50%;
  transition: background 250ms ease-in-out;
}

.search-searchButton:hover img {
      transform: scale(1.2);
    }

.search-searchButton img {
    max-width: 25px;
    transition: transform 250ms ease-in-out;
  }

@media (--bp-2) {

.search-searchButton {
    min-width: 45px;
    max-width: 45px;
    min-height: 45px;
    max-height: 45px;
    margin-left: 25px;
}

    .search-searchButton img {
      max-width: 22px;
    }
  }

@media (--bp-3) {

.search-searchButton {
    min-width: 65px;
    max-width: 65px;
    min-height: 65px;
    max-height: 65px;
}

    .search-searchButton img {
      max-width: auto;
    }
  }

.Search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.SearchForm-group {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.SearchForm-input {
  width: 100%;
  max-width: 500px;
  padding: 10px 20px;
  border: 1px solid var(--clr-clickable);
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
  background-color: transparent;
  transition: border-color 0.3s ease-in-out;
}

.Search-resultText {
  text-align: center;
}

.Search-resultText .highlight {
    color: var(--clr-clickable);
  }
