.searchpage-header {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  /* min-height: 60px; */

  padding: 0 20px;

  background: white;
}

.searchpage-header-row {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  height: 60px;
  min-height: 60px;
}

.searchpage-header-field {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;
  height: 40px;

  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);

  background: white;
}

.searchpage-header-field i {
  position: absolute;
  display: flex;
  z-index: 1;

  flex-direction: row;

  transform: translateY(-50%);

  top: 50%;
  right: 20px;

  font-size: 18px;

  color: rgba(0, 0, 0, 0.4);
}

.searchpage-header-field input,
.searchpage-header-field select {
  position: relative;

  width: 100%;
  height: 100%;

  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0);

  padding: 0 20px;
  padding-top: 3px;
  padding-right: calc(20px + 18px + 5px);

  font-size: 16px;
}

.searchpage-header-backbutton {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  min-width: 40px;
  min-height: 40px;

  border-radius: 4px;

  font-size: 18px;

  text-decoration: none;

  color: black;
  border: 1px solid rgba(0, 0, 0, 0.2);
}


/* SearchOverlay. */
.searchoverlay {
  position: fixed;
  display: none;
  z-index: 200;

  flex-direction: column;

  width: 100vw;
  height: 100vh;

  background: white;
}
.searchoverlay.active {
  display: flex;
}

.searchoverlay-suggestions {
  position: relative;
  display: flex;
  overflow: hidden;
  overflow-y: auto;

  flex-direction: column;

  width: 100%;
  max-height: calc(100% - (60px + 70px));

  padding: 10px 0;
}
.searchoverlay-suggestions-item {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;

  padding: 20px 20px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  text-decoration: none;
  color: inherit;
}
.searchoverlay-suggestions-item-img {
  position: relative;
  display: flex;
  flex-shrink: 0;

  flex-direction: row;

  width: 100px;
  height: 60px;

  border-radius: 6px;

  object-fit: cover;
  object-position: center center;
}

.searchoverlay-suggestions-item-content {
  position: relative;
  display: flex;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;
}

.searchoverlay-suggestions-item-title {
  position: relative;

  font-size: 16px;
  font-weight: 600;
}

.searchoverlay-suggestions-item-text {
  position: relative;

  margin-top: 5px;

  font-size: 14px;
  font-weight: 400;
}

.searchpage-filtering {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
  height: 60px;
  min-height: 60px;

  padding: 0 20px;

  background: white;
}






































































/*  */
