#hotel-search {
  position: relative;
  max-width: 100%;
}

.hotel-search-wrapper {
  position: relative;
}


button#hotel-search-clear {
    position: absolute;
    right: 0;
    border: 0;
    border-radius: 100%;
    background: #a7a7a7;
    height: 40px;
    width: 40px;
    padding: 10px !important;
    line-height: 1;
    color: white;
    transform: translate(-30%, 25%);
    top: 0;
}

#hotel-search-input {
    border: 0px solid #ccc;
    border-radius: 99px;
    padding: 12px 25px;
    width: 100%;
	font-size:22px;
	background-color:#efefef;
}

#hotel-search-results {
  position: relative;
  width: 100%;
  z-index: 1000;
  margin-top: 25px;
}

#hotel-search-results ul {
  list-style: none;
  background: #fff;
  border: 0px solid #ddd;
  margin: 0;
  padding: 0;
	border-radius:0px;
}

#hotel-search-clear {
  display: none; /* hidden by default */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

#hotel-search-results li {
  padding: 12px 12px;
  border-bottom: 1px solid #eee;
}

.hotel-results span.hotel-title {
    font-family: "ivypresto-display", sans-serif;
    display: block;
    width: 75%;
	font-size: 2vw;
}

#hotel-search-results li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  flex-direction: row;
  gap: 10px;
}

small.hotel-location, small.hotel-type {
    width: 25%;
    align-content: end;
    text-align: right;
}
.hotel-results li {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}