body {
  font-family: "Roboto", sans-serif;
  background: #feffff;
  width: 100vw;
}
body header {
  position: fixed;
  width: 100vw;
}
body header .header-container {
  display: flex;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgba(204, 201, 201, 0.5725490196);
  justify-content: space-between;
}
body header .header-container .header-nav-left {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
body header .header-container .header-nav-left .header-nav-item {
  font-size: 16px;
  text-decoration: none;
  color: black;
  padding: 10px;
}
body header .header-container .header-logo {
  width: auto;
  height: 70px;
}
body header .header-container .header-nav-right {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 50px;
}
body header .header-container .header-nav-right .header-nav-item {
  font-size: 16px;
  text-decoration: none;
  color: black;
  padding: 10px;
}
body header .header-second-row {
  display: flex;
  height: 50px;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(204, 201, 201, 0.5725490196);
}
body header .header-second-row .search-bar {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 350px;
  padding-left: 10px;
}
body header .header-second-row .search-bar .search-box {
  position: relative;
  width: 100%;
  padding-right: 30px;
}
body header .header-second-row .search-bar .search-box .search-input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(204, 201, 201, 0.5725490196);
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  outline: none;
}
body header .header-second-row .search-bar .search-box .fa-search {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
body header .header-second-row .header-second-row__button {
  display: inline-flex;
  background-color: #feffff;
  margin: 0 5px;
  border: 1px solid rgb(157, 156, 156);
  border-radius: 5px;
  padding: 4px 10px;
  justify-content: center;
}
body header .header-second-row .header-second-row__button .fa-chevron-down {
  position: relative;
  margin-left: 5px;
  top: 2px;
}
body header .header-second-row .save-button {
  background-color: rgb(30, 30, 181);
  color: #feffff;
}
body main {
  display: flex;
  position: fixed;
  top: 139px;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}
body main #map {
  position: relative;
  height: 100%;
  width: 55vw;
}
body main .result-container {
  position: relative;
  height: 100%;
  width: calc(100% - 55vw);
  overflow: hidden;
}
body main .result-container .result-container-header {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-left: 20px;
  padding-top: 20px;
}
body main .result-container-subheader {
  display: flex;
  position: relative;
  justify-content: space-between;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 10px;
}
body main .result-container-subheader .result-number {
  font-weight: bold;
}
body main .result-container-subheader .result-sort {
  color: rgb(30, 30, 181);
  cursor: pointer;
  padding-right: 30px;
}
body main .result-container-subheader .result-sort span {
  font-weight: bold;
}
body main .result-container-subheader .result-sort .fa-chevron-down {
  position: relative;
  margin-left: 5px;
}
body main .result-container-subheader .result-sort button {
  display: none;
  background-color: #feffff;
}
body main .result-listing-container {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  list-style: none;
  margin: 0;
  padding: 20px 20px;
  height: 100%;
  overflow-y: scroll;
}
body main .result-listing-container li {
  position: relative;
  height: 290px;
  padding: 0;
  width: 360px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
body main .result-listing-container li div article {
  min-width: 286px;
}
body main .result-listing-container li div article .result-listing-container__image {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
body main .result-listing-container li div article .result-listing-container__info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 5px;
  height: 90px;
}
body main .result-listing-container li div article .result-listing-container__info .result-listing-container__info__price {
  font-weight: bold;
}
body main .result-listing-container li div article .result-listing-container__info .result-listing-container__info__beds-baths span {
  font-size: 14px;
  color: black;
}
body main .result-listing-container li div article .result-listing-container__info .vertical-divider {
  display: inline-block;
  height: 1em; /* Adjust the height as needed */
  width: 1px; /* Adjust the width for thickness */
  background-color: #a6a5a5; /* Choose your color */
  margin: 0 8px; /* Space around the divider */
  vertical-align: middle;
}/*# sourceMappingURL=styles.css.map */