#search-view {
  overflow: hidden;
  color: #363a45;
  margin-bottom: 36px;
}

#search-view input:focus,
#search-view input:hover,
#search-view textarea:hover,
#search-view textarea:focus,
#search-view select:hover,
#search-view select:focus {
  outline: none;
  border: 1px solid #363a45;
}

#search-view * {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

.search-title-container {
  display: flex;
  flex-direction: column;
  gap: 12px;

  @media (max-width: 768px) {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.search-title {
  color: var(--primary-main, #3d5afe);
  font-feature-settings:
    'liga' off,
    'clig' off;
  font-family: Alexandria;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 58.824% */
}

.search-subtitle {
  color: var(--text-primary, var(--text-primary, #363a45));
  font-feature-settings:
    'liga' off,
    'clig' off;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

#site-typeahead-box * + * {
  margin-top: 8px;
}

.site-dropdown-item-name + div {
  text-transform: capitalize;
  color: #7e8188 !important;
  font-size: 13px;
}

.site-dropdown-item {
  padding: 12px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 24px auto;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.search-input-layout {
  background-color: #fff;
  display: grid;
  grid-template-columns: 4fr 2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .search-input-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
  }
}

.search-input-container {
  position: relative;
  height: 40px;
}

.search-checkin-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 100%;
}

.search-display {
  width: 100%;
  font-size: 14px;
  align-self: center;
}

.search-input-box {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #363a4561;
  border-radius: 2px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.search-input-label {
  position: absolute;
  top: -6px;
  left: 12px;
  background: white;
  padding: 0 4px;
  line-height: 12px;
  font-size: 12px;
  font-family: "Suisse Int'l";
  color: var(--text-secondary, #4a4e58);
}

#site-search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-fadein {
  position: relative;
  opacity: 1;
  transition:
    opacity 0.5s,
    left 0.5s;
  left: 0;
}

.site-fadeout {
  opacity: 0;
  left: -100px;
  transition:
    opacity 0.5s ease-out,
    left 0.5s ease-out;
  display: none !important;
}

#site-search-input {
  padding: 12px 36px 12px 12px;
  width: 100%;
  line-height: 22px;
  border-radius: 2px;
  border: 1px solid #dfdfe1;
  transition: border-color 0.3s ease;
  font-size: 14px;
}

#site-search-input::placeholder {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  /* Take up the entire width of the input field */
}

#site-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

#site-location-search {
  display: grid;
  grid-template-rows: 1fr 1fr 3fr;
  padding: 12px 20px 0 20px;
}

#site-search-icon {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
}

#site-search-results {
  overflow-y: none;
  -ms-overflow-style: none;
  scrollbar-width: 2px;
  margin-top: 0px !important;
  background: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

#site-search-results.htmx-request {
  display: none;
}

#site-search-results::-webkit-scrollbar,
#site-calendar-datepicker::-webkit-scrollbar {
  width: 1px !important;
}

#site-search-results::-webkit-scrollbar-thumb,
#site-calendar-datepicker::-webkit-scrollbar-thumb {
  background-color: gray;
  /* Scroll bar thumb color */
  border-radius: 99px;
  /* Rounded corners for the thumb */
}

#site-search-results::-webkit-scrollbar-track,
#site-calendar-datepicker::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

#site-search-results::-webkit-scrollbar-thumb:vertical,
#site-calendar-datepicker::-webkit-scrollbar-thumb:vertical {
  min-height: 20px;
  /* Set the minimum height for the vertical scroll bar */
}

.search-tile {
  max-height: 30rem;
  max-width: 1100px;
  margin: auto;
}

#search-tile-display {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0px 20px 0px;
  width: 100%;
}

.calender-header-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

#calendar-header-wrapper {
  display: flex;
  align-items: center;
}

#calendar-reset {
  font-size: 14px;
  border-bottom: 1px solid #363a45;
  cursor: pointer;
}

.search-button {
  text-align: center;
  height: 40px;
}

.search-button-text {
  color: var(--primary-contrast, var(--primary-contrast, #fff));
  text-transform: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#site-logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#site-left-arrow {
  cursor: pointer;
}

#site-calendar-main {
  display: grid;
  grid-template-rows: auto auto 43px 1fr;
  justify-items: center;
  padding: 16px 24px;
}

#site-calendar-header {
  display: flex;
  width: 100%;
  margin-top: 24px;
  justify-content: space-between;
  align-items: center;
}

#site-calendar-days-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

#site-calendar-date-picker-wrapper {
  display: block;
  grid-template-rows: 43px 1fr;
  justify-items: center;
}

#site-calendar-days {
  grid-template-rows: 43px;
}

#site-calendar-days,
#site-calendar-datepicker {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

#site-calendar-datepicker {
  grid-template-rows: repeat(5, 43px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: 2px;
}

.site-week-days {
  color: rgb(126, 129, 136) !important;
  font-size: 12px !important;
}

.site-week-days,
#site-calendar-datepicker * {
  display: flex;
  justify-content: center;
  align-items: center;
}

.le-widget-inactive-dates {
  cursor: not-allowed;
  color: rgb(239, 239, 240) !important;
}

.le-widget-active-dates {
  cursor: pointer;
  color: #00f1bd;
}

.le-widget-between-selected-date {
  cursor: pointer;
  background: #e6fef9;
}

.le-widget-active-dates:hover,
.le-widget-active-dates:focus {
  background: #e6fef9;
}

.le-widget-selected-date {
  cursor: pointer;
  background: rgb(0, 241, 189);
  color: rgb(54, 58, 69);
}

#site-calendar-month-header {
  font-weight: 600;
}

.site-popular-place-text {
  color: #7e8188 !important;
  font-size: 13px;
  font-weight: 500;
}

.site-animation-ball {
  position: absolute;
  border-radius: 9999px;
  background-color: #363a45;
  top: 50%;
  animation: ball-cycle 3.1s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  height: 24px;
  width: 24px;
}

.site-animation-ball-one {
  animation-delay: -1s;
}

.site-animation-ball-two {
  animation-delay: -2s;
}

.site-animation-ball-three {
  animation-delay: -3s;
}

#site-animation-balls {
  display: none;
}

#site-animation-balls.htmx-request {
  position: relative;
  display: inline-block;
}

#site-animation-balls-wrapper {
  display: flex;
  justify-content: center;
}
