.location-custom-select {
  position: relative;
}
.location-lookup-submit {
  display: flex;
  min-width: 148px;
  height: 60px;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 64px;
  border: 2px solid #9fe870;
  background: #9fe870;
  color: #015c2e;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-family: "Averta-bold";
  line-height: 150%;
  /* 24px */
  letter-spacing: -0.16px;
}

.location-custom-select-toggle {
  padding: 16px 16px 16px 24px;
  border: 1px solid #bbb;
  background: #fff;
  text-align: center;
  font-style: normal;
  cursor: pointer;
}

.location-custom-select-toggle.selecting {
  border: 1px solid #00994f;
}

.location-custom-select-toggle:after {
  font-family: "tabler-icons";
  content: "\ea5f";
  font-size: 24px;
}

.location-custom-select-options {
  position: absolute;
  width: 100%;
  z-index: 1000;
  margin-top: 4px;
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: auto;
  max-height: 40vh;
}

.location-custom-select-options div {
  position: relative;
  padding: 12px 40px 12px 12px;
  font-style: normal;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-custom-select-options .selected,
.location-custom-select-options div:hover {
  border-radius: 8px;
  background: var(--Palette-Fill-Interactive-int-highlighted, #ecfae2);
  color: #015c2e;
}

.location-custom-select-options .selected::after {
  font-family: "tabler-icons";
  content: "\ea5e";
  position: absolute;
  right: 12px;
}

.location-searching {
  display: flex;
  justify-content: flex-start;
}
.location-searching-image-mobile {
  display: none !important;
}
.location-searching .location-searching-image img {
  position: relative;
  display: block;
  width: 608px;
  height: 732px;
}
.location-searching .location-searching-content .location-searching-select {
  position: relative;
}

.location-searching
  .location-searching-content
  .location-searching-select:after {
  display: flex;
  align-items: center;
  font-family: "tabler-icons";
  padding: 0px;
  justify-content: end;
  content: "\ea5f" !important;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.location-searching .location-searching-content select {
  position: relative;
  border-radius: 1000px;
  border: 1px solid var(--Primitives-Neutral-4, #bbb);
  background: #fff;
  display: flex;
  padding: 16px 16px 16px 24px;
  align-items: center;
  align-self: stretch;
  color: #747474;
  text-overflow: ellipsis;
  font-size: 17px;
  font-style: normal;

  line-height: 140%;
  letter-spacing: -0.34px;
  width: 100%;
  cursor: pointer;
}

.location-searching .location-searching-content button {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 64px;
  border: 2px solid #00994f;
  color: #00994f;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-family: "Averta-bold";
  line-height: 150%;
  letter-spacing: -0.16px;
  background: none;
  cursor: pointer;
}
@media (max-width: 393px) {
  .location-searching-image-mobile {
    height: 192px;
  }
}
@media (min-width: 394px) and (max-width: 767px) {
  .location-searching-image-mobile {
    height: 242px;
  }
}

@media (max-width: 767px) {
  .location-searching {
    flex-direction: column;
  }
  .location-searching-image {
    display: none !important;
  }
  .location-searching-image-mobile {
    display: flex !important;
    width: 100%;
  }

  .location-searching .location-searching-content {
    width: 100%;
  }

  .location-custom-select-options {
    max-height: 27vh;
  }
}
@media (max-width: 1279px) {
  .location-searching .location-searching-image {
    width: 40%;
    height: auto;
  }
  .location-searching .location-searching-image img {
    width: 100%;
    height: 100%;
  }
}
