.ui-datepicker {
  z-index: 1020 !important;
  padding: 15px;
  color: #6f6f6f;
  min-width: 200px;
  box-sizing: border-box;
  background-color: #FFF;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.ui-datepicker-calendar {
  width: 100%;
}
.ui-datepicker-calendar th {
  padding: 2px;
  font-size: 12px;
  text-align: center;
}
.ui-datepicker-calendar td {
  padding: 2px;
  font-size: 12px;
  text-align: center;
  font-size: 14px;
}
.ui-datepicker-calendar td:not(.ui-state-disabled) a:hover {
  background-color: #ddd;
}
.ui-datepicker-calendar td:not(.ui-state-disabled) a.ui-state-active {
  color: #FFF;
  background-color: #00a8e6;
}
.ui-datepicker-calendar span {
  width: 26px;
  display: block;
  line-height: 24px;
  color: #999;
}
.ui-datepicker-calendar a {
  width: 26px;
  display: block;
  line-height: 24px;
  color: #444;
  text-decoration: none;
}

.ui-datepicker-header {
  position: relative;
  margin-bottom: 10px;
}

.ui-datepicker-title {
  margin: 0 25px;
  text-align: center;
}

.ui-datepicker-prev {
  top: 3px;
  width: 22px;
  height: 22px;
  color: #333;
  position: absolute;
  border-radius: 100px;
  box-sizing: border-box;
  left: 0;
}
.ui-datepicker-prev::after {
  top: 4px;
  width: 10px;
  content: "";
  height: 10px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  left: 6px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
}
.ui-datepicker-prev .ui-icon {
  display: none;
}

.ui-datepicker-next {
  top: 3px;
  width: 22px;
  height: 22px;
  color: #333;
  position: absolute;
  border-radius: 100px;
  box-sizing: border-box;
  right: 0;
}
.ui-datepicker-next::after {
  top: 4px;
  width: 10px;
  content: "";
  height: 10px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  right: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
}
.ui-datepicker-next .ui-icon {
  display: none;
}

.ui-datepicker-prev.ui-state-disabled {
  color: #ddd;
  cursor: not-allowed;
}

.ui-datepicker-next.ui-state-disabled {
  color: #ddd;
  cursor: not-allowed;
}

.hfse-loader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: flex;
  z-index: 9999;
  position: absolute;
  min-height: 100px;
  visibility: hidden;
  align-items: center;
  justify-content: center;
}
.hfse.loading .hfse-loader {
  opacity: 1;
  visibility: visible;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

.hfse-form input::placeholder {
  color: #000;
}
.hfse-form input:focus {
  outline: none !important;
}
.hfse-form > div + div {
  margin-top: 15px;
}
.hfse-form-primary-fields, .hfse-form-meta {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  align-items: center;
}
.hfse-form-primary-fields > *, .hfse-form-meta > * {
  padding-left: 8px;
}
.hfse-form-primary-fields > * + * {
  margin-top: 10px;
}
.hfse-form-primary-fields > * {
  flex: 1 0 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 640px) {
  .hfse-form-primary-fields > * {
    flex: 1;
    margin-top: 0;
    min-width: 1px;
  }
}
.hfse-form-primary-fields .hfse-additional-filters-field-container {
  flex: none;
}
@media screen and (max-width: 640px) {
  .hfse-form-primary-fields .hfse-additional-filters-field-container + * {
    flex: 1 0 auto;
  }
}
.hfse-form-secondary-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hfse-form-secondary-fields > div {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}
.hfse-form-meta {
  justify-content: center;
}
.hfse-form-primary-fields .hk-input, .hfse-form-submit-field-container .hk-button {
  width: 100%;
  height: 50px;
  border-radius: 4px;
}
.hfse-form-submit-field-container .hk-button {
  white-space: nowrap;
}
.hfse-form-submit-field-container .hk-button:not(:disabled) {
  color: #ffffff;
  background: #000000;
}
.hfse-form-submit-field-container .hk-button:not(:disabled):hover {
  color: #ffffff;
  background: #000000;
}
.hfse-form-primary-fields .hk-input {
  border: none;
  color: #000;
  font-size: 16px;
  padding: 10px 15px;
  min-height: inherit;
  box-sizing: border-box;
  background-color: #DDDFE0;
}
.hfse-form-primary-fields .hk-input:focus {
  color: #000;
  background-color: #DDDFE0;
}
.hfse-form-order-field-container .hk-select {
  padding-right: 23px !important;
}
.hfse-form .hfse-form-favorites-toggle-btn,
.hfse-form .hfse-form-featured-toggle-btn,
.hfse-form .hfse-form-map-toggle-btn,
.hfse-form .hfse-form-additional-filters-btn,
.hfse-form .hfse-form-reset-btn {
  border: 0;
  height: 35px;
  color: #000;
  display: flex;
  font-size: 13px;
  padding: 0 12px;
  font-weight: 600;
  line-height: 35px;
  border-radius: 4px;
  align-items: center;
  box-sizing: border-box;
  text-transform: uppercase;
  background-color: #fff;
}
.hfse-form .hfse-form-favorites-toggle-btn > .hk-icon,
.hfse-form .hfse-form-featured-toggle-btn > .hk-icon,
.hfse-form .hfse-form-map-toggle-btn > .hk-icon,
.hfse-form .hfse-form-additional-filters-btn > .hk-icon,
.hfse-form .hfse-form-reset-btn > .hk-icon {
  width: 15px;
  margin-right: 10px;
}
.hfse-form .hfse-form-favorites-toggle-btn:hover, .hfse-form .hfse-form-favorites-toggle-btn:active, .hfse-form .hfse-form-favorites-toggle-btn:focus,
.hfse-form .hfse-form-featured-toggle-btn:hover,
.hfse-form .hfse-form-featured-toggle-btn:active,
.hfse-form .hfse-form-featured-toggle-btn:focus,
.hfse-form .hfse-form-map-toggle-btn:hover,
.hfse-form .hfse-form-map-toggle-btn:active,
.hfse-form .hfse-form-map-toggle-btn:focus,
.hfse-form .hfse-form-additional-filters-btn:hover,
.hfse-form .hfse-form-additional-filters-btn:active,
.hfse-form .hfse-form-additional-filters-btn:focus,
.hfse-form .hfse-form-reset-btn:hover,
.hfse-form .hfse-form-reset-btn:active,
.hfse-form .hfse-form-reset-btn:focus {
  color: #000;
  border-color: #000;
}
.hfse-form .hfse-form-favorites-toggle-btn,
.hfse-form .hfse-form-featured-toggle-btn,
.hfse-form .hfse-form-map-toggle-btn {
  padding: 0 10px;
}
.hfse-form .hfse-form-favorites-toggle-btn,
.hfse-form .hfse-form-featured-toggle-btn {
  color: #999;
  transition: none;
}
.hfse-form .hfse-form-favorites-toggle-btn .hk-icon svg,
.hfse-form .hfse-form-featured-toggle-btn .hk-icon svg {
  color: #999;
}
.hfse-form .hfse-form-favorites-toggle-btn .hk-icon svg > *,
.hfse-form .hfse-form-featured-toggle-btn .hk-icon svg > * {
  fill: #999;
}
.hfse-form .hfse-form-favorites-toggle-btn:hover, .hfse-form .hfse-form-favorites-toggle-btn:active, .hfse-form .hfse-form-favorites-toggle-btn:focus,
.hfse-form .hfse-form-featured-toggle-btn:hover,
.hfse-form .hfse-form-featured-toggle-btn:active,
.hfse-form .hfse-form-featured-toggle-btn:focus {
  color: #333;
}
.hfse-form .hfse-form-favorites-toggle-btn:hover .hk-icon svg, .hfse-form .hfse-form-favorites-toggle-btn:active .hk-icon svg, .hfse-form .hfse-form-favorites-toggle-btn:focus .hk-icon svg,
.hfse-form .hfse-form-featured-toggle-btn:hover .hk-icon svg,
.hfse-form .hfse-form-featured-toggle-btn:active .hk-icon svg,
.hfse-form .hfse-form-featured-toggle-btn:focus .hk-icon svg {
  color: #333;
}
.hfse-form .hfse-form-favorites-toggle-btn:hover .hk-icon svg > *, .hfse-form .hfse-form-favorites-toggle-btn:active .hk-icon svg > *, .hfse-form .hfse-form-favorites-toggle-btn:focus .hk-icon svg > *,
.hfse-form .hfse-form-featured-toggle-btn:hover .hk-icon svg > *,
.hfse-form .hfse-form-featured-toggle-btn:active .hk-icon svg > *,
.hfse-form .hfse-form-featured-toggle-btn:focus .hk-icon svg > * {
  fill: #333;
}
.hfse-form .hfse-form-favorites-toggle-btn.active,
.hfse-form .hfse-form-featured-toggle-btn.active {
  color: #333;
}
.hfse-form .hfse-form-favorites-toggle-btn.active .hk-icon svg,
.hfse-form .hfse-form-featured-toggle-btn.active .hk-icon svg {
  color: red;
}
.hfse-form .hfse-form-favorites-toggle-btn.active .hk-icon svg > *,
.hfse-form .hfse-form-featured-toggle-btn.active .hk-icon svg > * {
  fill: red;
}
.hfse-form .hfse-form-featured-toggle-btn.active .hk-icon svg {
  color: goldenrod;
}
.hfse-form .hfse-form-featured-toggle-btn.active .hk-icon svg > * {
  fill: goldenrod;
}
.hfse-form .hfse-form-additional-filters-btn,
.hfse-form .hfse-form-reset-btn {
  font-size: 11px;
}
.hfse-form .hfse-form-additional-filters-btn {
  color: #fff;
  margin-right: 10px;
  position: relative;
  background-color: #000;
}
.hfse-form .hfse-form-additional-filters-btn:hover, .hfse-form .hfse-form-additional-filters-btn:active, .hfse-form .hfse-form-additional-filters-btn:focus {
  color: #fff;
  background: #000;
}
.hfse-form .hfse-form-reset-btn {
  border: 2px solid black;
}
.hfse-form .hfse-form-primary-fields .hfse-additional-filters-field-container {
  flex: 60px 0 0;
  position: relative;
}
.hfse-form .hfse-form-primary-fields .hfse-form-additional-filters-btn {
  min-width: 50px;
  width: 100%;
  height: 50px;
  margin-right: 0;
}
.hfse-form .hfse-form-primary-fields .hfse-form-additional-filters-btn svg {
  margin: 0 auto;
}
.hfse-form .field-label {
  width: 100%;
  display: block;
  color: #555555;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.hfse-form .field-control {
  position: relative;
}
.hfse-form-nights-count-container .hfse-form-nights-count-icon, .hfse-form-properties-count-container .hfse-form-properties-count-icon {
  margin-right: 10px;
}
.hfse-form-search-field-container {
  position: relative;
}
.hfse-form-search-field-container .hfse-form-search-field-icon {
  margin-right: 10px;
}
.hfse-form-search-field-reset-btn {
  top: auto;
  right: 5px;
  position: absolute;
}
.hfse-form-price-slider-container .field-label {
  text-align: center;
  font-size: 13px;
}
.hfse-form-price-slider-container .field-control {
  height: 4px;
  border: none;
  min-width: 200px;
  margin-left: 8px;
  background: #aaa;
  margin-right: 8px;
  margin-bottom: 6px;
  box-shadow: none;
}
.hfse-form-price-slider-container .field-control .noUi-connect {
  background: #000;
}
.hfse-form-price-slider-container .field-control .noUi-handle::after,
.hfse-form-price-slider-container .field-control .noUi-handle::before {
  display: none;
}
.hfse-form-price-slider-container .field-control .noUi-handle {
  border: none;
  border-radius: 25px;
  background: #333;
  height: 20px;
  width: 20px;
  top: -0.52em;
  box-shadow: none;
}
.hfse-form-price-slider-container .field-control.noUi-horizontal .noUi-handle {
  right: -10px;
}

.hfse-form-location-subfield label input.hk-checkbox {
  margin-right: 10px;
}

span.hk-form-icon.hk-icon {
  color: #000;
}

@media only screen and (max-width: 980px) {
  .hfse-form-secondary-fields > div + div {
    margin-top: 10px;
  }
  .hfse-form-secondary-fields-center {
    order: 5;
    width: 100%;
    justify-content: center;
  }
  .hfse-form-location-subfield label {
    width: 100%;
  }
}
@media only screen and (max-width: 667px) {
  div#datepicker-daterange-input {
    right: 0;
    left: 0;
    width: 100%;
  }
  .hk-responsive {
    flex-wrap: wrap;
  }
}
.hfse-form-additional-filters-state {
  width: 3px;
  height: 3px;
  margin-left: 5px;
  border-radius: 50%;
}
.hfse-form-additional-filters-btn.modified .hfse-form-additional-filters-state {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .hfse.with-map.map-visible .hfse-ai-form,
  .hfse.with-map.map-visible .hfse-relevance-form {
    margin-top: 20px;
  }
}
.hfse-form-modal .hk-input {
  font-size: 16px;
}
@media (max-width: 639px) {
  .hfse-form-modal {
    width: 100%;
    padding: 0 !important;
    z-index: 9999999999 !important;
  }
  .hfse-form-modal .hk-modal-footer {
    padding-bottom: 50px;
  }
  .hfse-form-modal > .hk-modal-dialog {
    height: 100%;
    width: 100%;
    max-width: 100% !important;
  }
}

@media (max-width: 639px) {
  .hfse-form-where-options {
    padding: 0 !important;
    width: 100%;
  }
  .hfse-form-where-options > .hk-modal-dialog {
    height: 100%;
    width: 480px;
    max-width: 100% !important;
  }
}
@media (min-width: 640px) {
  .hfse-form-where-options > .hk-modal-dialog {
    width: 480px;
    max-width: 480px !important;
  }
}
@media (min-width: 640px) {
  .hfse-form-date-options > .hk-modal-dialog {
    width: 100%;
    max-width: 800px !important;
  }
}
@media (min-width: 320px) {
  .hfse-form-date-options .datepicker {
    width: 100%;
  }
}
@media (min-width: 480px) {
  .hfse-form-date-options .datepicker {
    width: 100%;
  }
  .hfse-form-date-options .datepicker__month {
    width: 240px;
  }
}
@media (min-width: 640px) {
  .hfse-form-guests-options > .hk-modal-dialog {
    width: 360px;
    max-width: 360px !important;
  }
}
@media (max-width: 639px) {
  .hfse-form-guests-options .hk-modal-body > .hk-flex {
    margin-top: 40px !important;
  }
}
@media (min-width: 767px) {
  .hfse-form-additional-filters-options > .hk-modal-dialog {
    width: 680px;
    max-width: 680px !important;
  }
}
@media (max-width: 768px) {
  .hfse-form-additional-filters-options > .hk-modal-dialog {
    width: 100%;
    max-width: 100% !important;
  }
}
.hfse-form-date-options .datepicker__inner {
  display: flex;
  flex-direction: column;
}
.hfse-form-date-options .datepicker__topbar {
  order: 2;
  display: flex;
  margin: 20px 0 0;
  align-items: center;
  justify-content: space-between;
}
.hfse-form-date-options .datepicker__close-button {
  position: static;
}
.hfse-form-date-options .datepicker__buttons {
  transform: none;
  position: static;
}
.hfse-form-date-options .datepicker__clear-button {
  color: #000;
  margin-top: 0;
  background-color: transparent;
}
.hfse-form-date-options .datepicker__close-button, .hfse-form-date-options .datepicker__submit-button {
  margin-top: 0;
}
@media screen and (min-width: 480px) {
  .hfse-form-date-options .datepicker__month-button--next[month="1"], .hfse-form-date-options .datepicker__month-button--prev[month="2"] {
    display: none;
  }
}
.hfse-form-date-options .datepicker__info--selected-label {
  display: none;
}
.hfse-form-date-options .datepicker__month-day--invalid {
  color: #9c9da2;
  cursor: not-allowed;
}
.hfse-form-date-options .datepicker__month-day--valid {
  color: #000 !important;
}
.hfse-form-date-options .datepicker__month-day--day-selected {
  color: #000 !important;
  background-color: rgba(0, 0, 0, 0.2);
}
.hfse-form-date-options .datepicker__month-day--first-day-selected, .hfse-form-date-options .datepicker__month-day--last-day-selected {
  color: #fff !important;
  background-color: #000;
}
.hfse-form-date-options .datepicker__month-day--today {
  background-color: #484c55;
  color: #fff !important;
}
.hfse-form-date-options .datepicker__month-day--selected:not(.datepicker__month-day--today):not(.datepicker__month-day--first-day-selected):not(.datepicker__month-day--last-day-selected) {
  color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}
.hfse-form-date-options .datepicker__info-text--selected-days {
  font-size: 13px;
  font-style: normal;
  color: #000;
}
.hfse-form-date-options .datepicker__info--feedback {
  max-width: 60%;
}

.hfse-form input::placeholder,
.hfse-form-modal input::placeholder {
  color: #000;
}
.hfse-form input:focus,
.hfse-form-modal input:focus {
  outline: none !important;
}
.hfse-form label.field-label,
.hfse-form label.type-label,
.hfse-form label.amenity-label,
.hfse-form-modal label.field-label,
.hfse-form-modal label.type-label,
.hfse-form-modal label.amenity-label {
  color: #000;
  display: block;
  font-size: 13px;
  text-align: left;
  word-break: break-all;
  margin-bottom: 5px;
}
.hfse-form label.bedrooms-label,
.hfse-form label.bathrooms-label,
.hfse-form-modal label.bedrooms-label,
.hfse-form-modal label.bathrooms-label {
  font-size: 15px;
  margin-right: 10px;
}
.hfse-form .hk-checkbox,
.hfse-form .hk-radio,
.hfse-form-modal .hk-checkbox,
.hfse-form-modal .hk-radio {
  border: 1px solid #cacacf;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.hfse-form .hk-checkbox:checked:focus,
.hfse-form .hk-radio:checked:focus,
.hfse-form-modal .hk-checkbox:checked:focus,
.hfse-form-modal .hk-radio:checked:focus {
  background-color: #303033;
  border-color: #000;
}
.hfse-form .hk-radio,
.hfse-form-modal .hk-radio {
  margin-right: 5px;
}
.hfse-form .hfse-all-amenities-btn,
.hfse-form-modal .hfse-all-amenities-btn {
  margin-top: 10px;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: underline;
}
.hfse-form .hfse-field-grid,
.hfse-form-modal .hfse-field-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.hfse-form .hfse-number-with-control,
.hfse-form-modal .hfse-number-with-control {
  width: 90px;
  white-space: nowrap;
}
.hfse-form .hfse-number-with-control .reduce-btn,
.hfse-form .hfse-number-with-control .increase-btn,
.hfse-form-modal .hfse-number-with-control .reduce-btn,
.hfse-form-modal .hfse-number-with-control .increase-btn {
  width: 20px;
  height: 20px;
  line-height: 1;
  cursor: pointer;
  font-size: 18px;
  box-shadow: none;
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  background-color: #000000;
}
.hfse-form .hfse-number-with-control .number-input,
.hfse-form-modal .hfse-number-with-control .number-input {
  padding: 0;
  width: 100%;
  height: 20px;
  color: #000;
  border: none;
  line-height: 1;
  max-width: 32px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none !important;
  -moz-appearance: textfield;
  appearance: textfield;
}
.hfse-form .hfse-number-with-control::selection,
.hfse-form-modal .hfse-number-with-control::selection {
  background: transparent !important;
  color: #000 !important;
}
.hfse-form .hfse-number-with-control div::selection,
.hfse-form-modal .hfse-number-with-control div::selection {
  background: transparent !important;
}
.hfse-form .hk-form-label,
.hfse-form-modal .hk-form-label {
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
}

@media (max-width: 639px) {
  .hfse-form-zone-options {
    padding: 0 !important;
    width: 100%;
  }
  .hfse-form-zone-options > .hk-modal-dialog {
    height: 100%;
    width: 100%;
    max-width: 480px !important;
  }
}
@media (min-width: 640px) {
  .hfse-form-zone-options > .hk-modal-dialog {
    width: 480px;
    max-width: 480px !important;
  }
}

.hfse-form-zone-input {
  border-radius: 4px;
  background-color: #DDDFE0;
  padding: 10px 15px 5px 50px;
}
.hfse-form-zone-input .hk-form-icon {
  height: 45px;
  bottom: auto;
}

.hfse-form-zone-input-fields {
  display: flex;
  flex-wrap: wrap;
}

.hfse-form-zone-selections {
  display: inline-flex;
  flex-wrap: wrap;
}

.hfse-form-zone-selection {
  color: #fff;
  line-height: 1;
  font-size: 12px;
  line-height: 13px;
  padding: 6px 12px;
  margin: 0 5px 5px 0;
  border-radius: 13px;
  display: inline-block;
  background-color: #000;
}
.hfse-form-zone-selection:hover {
  cursor: pointer;
}

.hfse-form-zone-keyword {
  padding: 0;
  width: 120px;
  border: none;
  height: 25px;
  line-height: 25px;
  margin-bottom: 5px;
  background-color: transparent;
}

.hfse-form-zone-subfield {
  margin-bottom: 20px;
}

.hfse-form-zone-subfield-locations {
  display: flex;
  flex-wrap: wrap;
}

.hfse-form-zone-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hfse-form-zone-btn {
  width: 100%;
  color: #333;
  border: 2px solid transparent;
  padding: 8px;
  text-align: left;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 10px;
  box-shadow: none;
  background-color: transparent;
}
@media screen and (min-width: 640px) {
  .hfse-form-zone-btn {
    margin-right: 10px;
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.hfse-form-zone-btn:hover, .hfse-form-zone-btn.hfse-selected {
  cursor: pointer;
  border-color: #ddd;
}
.hfse-form-zone-btn .name {
  font-size: 14px;
}
.hfse-form-zone-btn .subheading {
  color: #333;
  font-size: 12px;
}
.hfse-form-zone-btn .image {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  margin-right: 10px;
  background-color: #9c9da2;
}
.hfse-form-zone-btn .image img {
  overflow: hidden;
  border-radius: 25px;
}

.hfse-form-zone-city {
  padding-left: 15px;
}

.hfse-form-zone-location {
  display: flex;
  align-items: center;
}

.hfse-ai-search-loader-modal {
  z-index: 99990 !important;
}
.hfse-ai-search-loader-modal .hk-modal-dialog {
  border-radius: 10px;
  border: 4px solid rgba(127, 17, 224, 0.4);
}
.hfse-ai-search-loader-modal .hd-lottie {
  width: 90px;
  height: 90px;
  background: purple;
  border-radius: 500px;
}

.hfse-form ~ .hfse-properties-container {
  margin-top: 20px;
}

.hfse-properties {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
}
.hfse-properties > div {
  padding-left: 8px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.hfse-property-container.property-loading .hfse-property-meta-primary .terms {
  background-image: none !important;
}

.template-slider .hfse-properties {
  margin-left: -8px !important;
  flex-wrap: nowrap;
}
.template-slider .hfse-properties > div {
  margin-bottom: 0;
}
.template-slider .hk-slidenav.hfse-properties-slider-prev-btn,
.template-slider .hk-slidenav.hfse-properties-slider-next-btn {
  background-color: rgba(0, 0, 0, 0.1);
}
.template-slider .hk-slidenav.hfse-properties-slider-prev-btn svg polyline,
.template-slider .hk-slidenav.hfse-properties-slider-next-btn svg polyline {
  stroke: #fff !important;
}
.template-slider .hk-slidenav.hfse-properties-slider-prev-btn svg path,
.template-slider .hk-slidenav.hfse-properties-slider-next-btn svg path {
  fill: #fff !important;
}
.template-slider .hk-slidenav.hfse-properties-slider-prev-btn:hover,
.template-slider .hk-slidenav.hfse-properties-slider-next-btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.template-slider .hk-slidenav.hfse-properties-slider-prev-btn:hover svg polyline,
.template-slider .hk-slidenav.hfse-properties-slider-next-btn:hover svg polyline {
  stroke: #fff !important;
}

.hfse-property-card {
  height: 100%;
}
.hfse-property-body {
  flex-grow: 1;
}
.hfse-property-meta {
  padding: 0 20px;
}
.hfse-property-meta-primary {
  display: flex;
  margin-top: 10px;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.hfse-property-meta-primary .hfse-property-locations,
.hfse-property-meta-primary .hfse-property-types {
  height: 24px;
  max-width: 80%;
  font-size: 13px;
  line-height: 16px;
  background-size: 20px;
  box-sizing: border-box;
  padding: 3px 0 3px 26px;
  background-repeat: no-repeat;
  background-position: left center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hfse-property-meta-primary .hfse-property-locations {
  padding-right: 10px;
  background-image: url(../img/locations-icon.svg);
}
.hfse-property-meta-primary .hfse-property-types {
  background-image: url(../img/types-icon.svg);
}
.hfse-property-meta-secondary {
  display: flex;
  margin-top: 10px;
  flex-wrap: nowrap;
  padding: 10px 0 15px;
  border-top: 1px solid #eee;
  justify-content: space-between;
}
.hfse-property-meta-secondary .hfse-property-guests,
.hfse-property-meta-secondary .hfse-property-bedrooms,
.hfse-property-meta-secondary .hfse-property-bathrooms {
  height: 28px;
  font-size: 16px;
  line-height: 20px;
  background-size: 28px;
  box-sizing: border-box;
  padding: 4px 0 4px 34px;
  background-repeat: no-repeat;
  background-position: left center;
}
.hfse-property-meta-secondary .hfse-property-guests {
  background-image: url(../img/guests-icon.svg);
}
.hfse-property-meta-secondary .hfse-property-bedrooms {
  background-image: url(../img/bedrooms-icon.svg);
}
.hfse-property-meta-secondary .hfse-property-bathrooms {
  background-image: url(../img/bathrooms-icon.svg);
}
.hfse-property-container {
  position: relative;
}
.hfse-property-container .hk-dotnav > * > * {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hfse-property-groups, .hfse-property-favorite-toggle-btn {
  z-index: 10;
  position: absolute;
  width: auto !important;
}
.hfse-property-groups {
  top: 6px;
  left: 6px;
}
.hfse-property-group {
  color: #fff;
  padding: 3px 5px;
  margin: 0 5px 5px 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
}
.hfse-property-favorite-toggle-btn {
  top: 10px;
  right: 10px;
}
.hfse-property-favorite-toggle-btn svg {
  color: white;
}
.hfse-property-favorite-toggle-btn svg > path {
  fill: white;
}
.hfse-property-favorite-toggle-btn.favorite svg {
  color: red;
}
.hfse-property-favorite-toggle-btn.favorite svg > * {
  fill: red;
}
.hfse-property-rating {
  line-height: 20px;
}
.hfse-property-rating-icon polygon {
  fill: #333;
  stroke: #333 !important;
}

@media screen and (max-width: 479px) {
  .hfse.map-visible.grid-with-map-portrait-1 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-1 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-1 .hfse-property-container {
    width: 100%;
    min-width: 100%;
  }
  .hfse.map-visible.grid-with-map-portrait-2 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-2 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-2 .hfse-property-container {
    width: 50%;
    min-width: 50%;
  }
  .hfse.map-visible.grid-with-map-portrait-3 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-3 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-3 .hfse-property-container {
    width: 33.33%;
    min-width: 33.33%;
  }
  .hfse.map-visible.grid-with-map-portrait-4 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-4 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-4 .hfse-property-container {
    width: 25%;
    min-width: 25%;
  }
  .hfse.map-visible.grid-with-map-portrait-5 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-5 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-5 .hfse-property-container {
    width: 20%;
    min-width: 20%;
  }
  .hfse.map-visible.grid-with-map-portrait-6 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-portrait-6 .hfse-property-container,
  .hfse.without-map.grid-without-map-portrait-6 .hfse-property-container {
    width: 16.66%;
    min-width: 16.66%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .hfse.map-visible.grid-with-map-landscape-1 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-1 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-1 .hfse-property-container {
    width: 100%;
    min-width: 100%;
  }
  .hfse.map-visible.grid-with-map-landscape-2 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-2 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-2 .hfse-property-container {
    width: 50%;
    min-width: 50%;
  }
  .hfse.map-visible.grid-with-map-landscape-3 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-3 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-3 .hfse-property-container {
    width: 33.33%;
    min-width: 33.33%;
  }
  .hfse.map-visible.grid-with-map-landscape-4 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-4 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-4 .hfse-property-container {
    width: 25%;
    min-width: 25%;
  }
  .hfse.map-visible.grid-with-map-landscape-5 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-5 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-5 .hfse-property-container {
    width: 20%;
    min-width: 20%;
  }
  .hfse.map-visible.grid-with-map-landscape-6 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-landscape-6 .hfse-property-container,
  .hfse.without-map.grid-without-map-landscape-6 .hfse-property-container {
    width: 16.66%;
    min-width: 16.66%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .hfse.map-visible.grid-with-map-tablet-1 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-1 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-1 .hfse-property-container {
    width: 100%;
    min-width: 100%;
  }
  .hfse.map-visible.grid-with-map-tablet-2 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-2 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-2 .hfse-property-container {
    width: 50%;
    min-width: 50%;
  }
  .hfse.map-visible.grid-with-map-tablet-3 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-3 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-3 .hfse-property-container {
    width: 33.33%;
    min-width: 33.33%;
  }
  .hfse.map-visible.grid-with-map-tablet-4 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-4 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-4 .hfse-property-container {
    width: 25%;
    min-width: 25%;
  }
  .hfse.map-visible.grid-with-map-tablet-5 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-5 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-5 .hfse-property-container {
    width: 20%;
    min-width: 20%;
  }
  .hfse.map-visible.grid-with-map-tablet-6 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-tablet-6 .hfse-property-container,
  .hfse.without-map.grid-without-map-tablet-6 .hfse-property-container {
    width: 16.66%;
    min-width: 16.66%;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .hfse.map-visible.grid-with-map-desktop-1 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-1 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-1 .hfse-property-container {
    width: 100%;
    min-width: 100%;
  }
  .hfse.map-visible.grid-with-map-desktop-2 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-2 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-2 .hfse-property-container {
    width: 50%;
    min-width: 50%;
  }
  .hfse.map-visible.grid-with-map-desktop-3 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-3 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-3 .hfse-property-container {
    width: 33.33%;
    min-width: 33.33%;
  }
  .hfse.map-visible.grid-with-map-desktop-4 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-4 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-4 .hfse-property-container {
    width: 25%;
    min-width: 25%;
  }
  .hfse.map-visible.grid-with-map-desktop-5 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-5 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-5 .hfse-property-container {
    width: 20%;
    min-width: 20%;
  }
  .hfse.map-visible.grid-with-map-desktop-6 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-desktop-6 .hfse-property-container,
  .hfse.without-map.grid-without-map-desktop-6 .hfse-property-container {
    width: 16.66%;
    min-width: 16.66%;
  }
}
@media screen and (min-width: 1200px) {
  .hfse.map-visible.grid-with-map-large-1 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-1 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-1 .hfse-property-container {
    width: 100%;
    min-width: 100%;
  }
  .hfse.map-visible.grid-with-map-large-2 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-2 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-2 .hfse-property-container {
    width: 50%;
    min-width: 50%;
  }
  .hfse.map-visible.grid-with-map-large-3 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-3 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-3 .hfse-property-container {
    width: 33.33%;
    min-width: 33.33%;
  }
  .hfse.map-visible.grid-with-map-large-4 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-4 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-4 .hfse-property-container {
    width: 25%;
    min-width: 25%;
  }
  .hfse.map-visible.grid-with-map-large-5 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-5 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-5 .hfse-property-container {
    width: 20%;
    min-width: 20%;
  }
  .hfse.map-visible.grid-with-map-large-6 .hfse-property-container,
  .hfse.map-hidden.grid-without-map-large-6 .hfse-property-container,
  .hfse.without-map.grid-without-map-large-6 .hfse-property-container {
    width: 16.66%;
    min-width: 16.66%;
  }
}
.hfse-map {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hfse-map .gm-style-iw {
  padding: 0;
  border-radius: 0;
  max-width: 320px;
  overflow: hidden !important;
  max-height: fit-content !important;
}
.hfse-map .gm-style-iw:focus {
  outline: none !important;
}
.hfse-map .gm-style-iw-d {
  max-width: 300px;
  max-height: 600px !important;
  overflow: hidden !important;
}
.hfse-map .poi-info-window {
  padding: 15px !important;
}
.hfse-map .gm-ui-hover-effect {
  top: 7px !important;
  opacity: 1 !important;
  padding: 0 !important;
  right: 7px !important;
  width: 26px !important;
  height: 26px !important;
  background-color: #FFF !important;
  border: 1px solid #8A8F9A !important;
}
.hfse-map .gm-ui-hover-effect > span {
  margin: 3px !important;
  width: 18px !important;
  height: 18px !important;
  background-color: #888 !important;
}
.hfse-map .hfse-property-infowindow-header {
  min-height: 50px;
  background-size: cover;
  background-color: #999;
}
.hfse-map .hfse-property-infowindow-image {
  height: auto;
  max-width: 100%;
}
.hfse-map .hfse-property-infowindow-price {
  font-size: 16px;
  margin-bottom: 10px;
}
.hfse-map .map-control {
  padding: 6px 8px;
  border-radius: 3px;
  text-align: center;
  margin: 8px 0 8px 8px;
  display: inline-block;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px;
}
.hfse-map .map-control:hover {
  cursor: pointer;
}
.hfse-map .hfse-property-infowindow-container:hover {
  text-decoration: none;
}
.hfse-map .hfse-property-infowindow-container:focus {
  outline: none !important;
}
.hfse-map .hfse-property-infowindow-container .hk-card-body {
  background-color: #fff !important;
}
.hfse-map .hfse-property-infowindow-header-overlay {
  background: linear-gradient(180deg, rgba(196, 196, 196, 0) 0%, rgba(125, 125, 125, 0) 49.59%, rgba(12, 12, 12, 0.39) 100%);
}
.hfse-map .hfse-map-badge-image {
  top: -10px;
  left: -10px;
  padding: 5px;
  cursor: pointer;
  position: relative;
  color: currentcolor;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.hfse-map .hfse-map-badge {
  top: 50%;
  left: 50%;
  padding: 8px;
  flex-shrink: 0;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 20px;
  position: absolute;
  color: currentcolor;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
  vertical-align: middle;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.hfse-map .hfse-map-badge:hover, .hfse-map .hfse-map-badge.hfse-map-badge-focus {
  z-index: 100;
  transform: translate(-50%, -50%) scale(1.1);
}
.hfse-map .hfse-map-badge-price {
  color: #222;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 8px 14px;
}
.hfse-map .hfse-map-badge-price:hover, .hfse-map .hfse-map-badge-price.hfse-map-badge-focus {
  color: #fff;
  background: #000;
}
.hfse-map .hfse-map-badge-parent-focus {
  z-index: 9999 !important;
}
.hfse-map .hfse-map-badge-parent-focus .hfse-map-badge-price {
  color: #fff;
  background: #000;
  transform: translate(-50%, -50%) scale(1.1);
}
.hfse-map .hfse-map-badge-icon {
  border-radius: 50%;
}
.hfse-map .hfse-map-badge-icon svg {
  display: block;
  fill: black;
  height: 16px;
  width: 16px;
  max-width: 16px;
  stroke: #FFF;
  stroke-width: 4px;
  overflow: visible;
}
.hfse-map .hfse-map-tooltip {
  width: 300px;
  display: none;
  z-index: 1000002;
  cursor: pointer;
  user-select: none;
  position: absolute;
  pointer-events: auto;
}
.hfse-map .hfse-map-tooltip-content {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.hfse-map .hfse-map-tooltip-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
  font-weight: bold;
  z-index: 100;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  border: none;
  padding: 5px;
}
.hfse-map .hfse-map-tooltip-close-btn svg {
  display: block;
  fill: none;
  height: 12px;
  width: 12px;
  stroke: #FFF;
  stroke-width: 4px;
  overflow: visible;
}
.hfse-map .leaflet-div-icon {
  border: none;
  background: transparent;
}
.hfse-map .leaflet-popup-content {
  margin: 0;
  padding: 0;
  border: none;
}
.hfse-map .leaflet-touch .leaflet-bar {
  border: none;
}
.hfse-map .leaflet-popup-content-wrapper {
  box-shadow: none;
  background: transparent;
}

.hfse {
  position: relative;
}
.hfse .hfse-body {
  padding: 0;
  box-sizing: border-box;
  background-color: #FFF;
}
.hfse.without-grid.without-map .hfse-body {
  padding: 15px;
}
.hfse.with-grid.with-map.template-default .hfse-body {
  min-height: calc(100vh - 100px);
}
.hfse.map-hidden .hfse-sidebar, .hfse.without-map .hfse-sidebar {
  display: none;
}
.hfse.with-map .hfse-map-container {
  width: 100%;
  height: 400px;
  position: relative;
  background-size: cover;
  background-color: #EEE;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/map-placeholder.jpg");
}
.hfse .hfse-filters,
.hfse .hfse-ai-form,
.hfse .hfse-relevance-form {
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .hfse.with-map.map-visible {
    display: flex;
    overflow: visible;
  }
  .hfse.with-map.map-visible .hfse-body {
    width: 55%;
  }
  .hfse.with-map.map-visible.map-right .hfse-body {
    padding-right: 20px;
  }
  .hfse.with-map.map-visible.map-left .hfse-body {
    padding-left: 20px;
  }
  .hfse.with-map.map-visible .hfse-sidebar {
    width: 45%;
    overflow: visible;
  }
  .hfse.with-map.map-visible .hfse-map-container {
    top: 0;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
  }
  .hfse.map-visible.map-left .hfse-sidebar {
    order: 0;
  }
  .hfse.map-visible.map-right .hfse-sidebar {
    order: 2;
  }
  .hfse .hfse-form-primary-fields,
  .hfse .hfse-form-secondary-fields {
    padding-bottom: 10px;
  }
  .hfse.with-grid.sticky-filter .hfse-filters {
    top: 0;
    z-index: 999;
    position: -webkit-sticky;
    position: sticky;
    background-color: #fff;
  }
}
.hfse .hk-button {
  box-shadow: none;
}

.hfse-ai-form {
  position: relative;
}
@media screen and (min-width: 640px) {
  .hfse-ai-form .hfse-ai-form-fields {
    display: flex;
    flex-wrap: wrap;
  }
  .hfse-ai-form .hfse-ai-form-input-container {
    flex: 1;
    min-width: 1px;
  }
  .hfse-ai-form .hfse-ai-form-button-container {
    width: auto;
    padding-left: 8px;
  }
}
@media screen and (max-width: 639px) {
  .hfse-ai-form .hfse-ai-form-button-container {
    margin-top: 10px;
  }
}
.hfse-ai-form .ai_search_input {
  font-size: 16px;
  padding: 0 20px;
}
.hfse-ai-form .ai_search_submit {
  white-space: nowrap;
}
.hfse-ai-form .ai_search_input,
.hfse-ai-form .ai_search_submit {
  height: 50px;
}
.hfse-ai-form .ai_recent_search {
  top: auto !important;
  left: 50%;
  width: 40rem;
  display: none;
  position: absolute;
  border-radius: 17px;
  z-index: 10000;
  max-width: 92%;
  margin-top: 10px;
  padding: 20px 20px 10px;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  border: 4px solid rgb(232, 238, 237);
  box-shadow: rgba(28, 28, 28, 0.15) 0px 8px 20px 0px;
}
.hfse-ai-form .ai_recent_search_items {
  max-height: 250px;
  overflow-y: auto;
}
.hfse-ai-form .ai_recent_search_item {
  width: 100%;
  border: none;
  cursor: pointer;
  display: block;
  padding: 12px 12px 12px 40px;
  text-align: left;
  height: fit-content;
  border-radius: 8px;
  -moz-box-align: center;
  text-decoration: none;
  box-sizing: border-box;
  color: #1c1c1c;
  background-color: #FFF;
  background-image: url(../img/search-history-icon.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 12px 10px;
  font-size: 14px;
}
.hfse-ai-form .ai_recent_search_item:hover {
  background-color: rgb(232, 238, 237);
}

.hfse-relevance-form {
  position: relative;
}
@media screen and (min-width: 640px) {
  .hfse-relevance-form .hfse-relevance-form-fields {
    display: flex;
    flex-wrap: wrap;
  }
  .hfse-relevance-form .hfse-relevance-form-input-container {
    flex: 1;
    min-width: 1px;
  }
  .hfse-relevance-form .hfse-relevance-form-button-container {
    width: auto;
    padding-left: 8px;
  }
}
@media screen and (max-width: 639px) {
  .hfse-relevance-form .hfse-relevance-form-button-container {
    margin-top: 10px;
  }
}
.hfse-relevance-form .relevance_search_input {
  font-size: 16px;
  padding: 0 20px;
}
.hfse-relevance-form .relevance_search_submit {
  white-space: nowrap;
}
.hfse-relevance-form .relevance_search_input,
.hfse-relevance-form .relevance_search_submit {
  height: 50px;
}
.hfse-relevance-form .relevance_recent_search {
  top: auto !important;
  left: 50%;
  width: 40rem;
  display: none;
  position: absolute;
  border-radius: 17px;
  z-index: 10000;
  max-width: 92%;
  margin-top: 10px;
  padding: 20px 20px 10px;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  border: 4px solid rgb(232, 238, 237);
  box-shadow: rgba(28, 28, 28, 0.15) 0px 8px 20px 0px;
}
.hfse-relevance-form .relevance_recent_search_items {
  max-height: 250px;
  overflow-y: auto;
}
.hfse-relevance-form .relevance_recent_search_item {
  width: 100%;
  border: none;
  cursor: pointer;
  display: block;
  padding: 12px 12px 12px 40px;
  text-align: left;
  height: fit-content;
  border-radius: 8px;
  -moz-box-align: center;
  text-decoration: none;
  box-sizing: border-box;
  color: #1c1c1c;
  background-color: #FFF;
  background-image: url(../img/search-history-icon.png);
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 12px 10px;
  font-size: 14px;
}
.hfse-relevance-form .relevance_recent_search_item:hover {
  background-color: rgb(232, 238, 237);
}
