main {
  position: relative;
  padding-top: 104px;
}

.content-wrapper {
  display: flex;
  /* grid-template-columns: 60% 40%; */
  position: relative;
  height: calc(100% - 0px);
}

#map {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

.map-wrapper {
  height: 85vh;
  overflow: hidden;
  flex: 1;
}

.content {
  max-height: 85vh;
  overflow-y: scroll;
  padding: 10px 20px;
  width: 595px;
}

.custom-group-mobile {
  display: none;
}

.search-wrapper {
  position: sticky !important;
  top: -11px;
  z-index: 90;
  padding-top: 1px;
  background-color: white;
}

.custom-group {
  border-radius: 500px;
  border-width: 2px;
  border-style: solid;
  border-color: silver;
  background-color: white;
}

.custom-group .custom-select {
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  /* padding-left: 26px; */
  width: 150px;
}

.select-items {
  min-width: 150px;
}

.card-product-wrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px;
  justify-items: center;
  margin-top: 30px;
}

.product-card {
  max-width: 257px;
}

.product-card:hover,
.product-card .card-body .card-title:hover {
  background-color: #f4fffe;
  color: #4ea59c;
  cursor: pointer;
}

.img-header {
  overflow: hidden;
}

.card-product-wrapper .product-card img {
  margin: 0 auto;
  max-width: 257px;
  aspect-ratio: 1/1;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.card-product-wrapper .product-card img:hover {
  transform: scale(1.3);
}

.custom-marker {
  position: relative;
  display: block;
}

.custom-marker .marker-wrapper {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  border-radius: 4px;
  padding: 5px 10px;
  white-space: nowrap;
}

.custom-marker .marker-wrapper:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: #000000 transparent transparent transparent;
}
.custom-marker .marker-wrapper .marker-text {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: white;
}

.custom-marker:hover .marker-wrapper {
  background-color: #ffc000;
}

.custom-marker:hover .marker-wrapper:before {
  border-color: #ffc000 transparent transparent transparent;
}

.custom-marker:hover .marker-wrapper .marker-text {
  color: black;
}

.popupCustom {
  /* bottom: 5px !important; */
}

.popUp-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.popUp-custom img {
  /* border-radius: 15px; */
  width: 125px;
  aspect-ratio: 1/1;
}

.footer-desktop-search {
  display: block;
  margin-top: 62px;
  background-color: #455b59;
  padding-top: 65px;
  padding-bottom: 77px;
}

@media (height >= 900px) {
  .map-wrapper {
    height: 89vh;
  }

  .content {
    max-height: 89vh;
  }
}

@media (orientation: portrait) {
  .content-wrapper {
    grid-template-columns: none;
  }

  .map-wrapper {
    display: none;
  }

  .custom-group {
    display: none !important;
  }

  .custom-group-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .custom-group-mobile select {
    border-width: 2px;
    border-style: solid;
    border-color: #c6e7e4;
    font-size: 15px;
    padding: 15px 24px;
  }

  .custom-group-mobile .input-group {
    border-width: 2px;
    border-style: solid;
    border-color: #c6e7e4;
  }

  .custom-group-mobile .input-group .custom-input {
    font-size: 15px;
    font-weight: 400;
    padding: 15px 24px;
  }

  .custom-group-mobile .input-group button {
    padding: 15px 16px;
    z-index: 1;
  }

  .content {
    min-height: 100vh;
    max-height: none;
    overflow-y: unset;
    scrollbar-width: none;
  }

  .content::-webkit-scrollbar {
    display: none;
  }

  .card-product-wrapper {
    grid-template-columns: 100%;
    align-items: center;
  }

  .product-card {
    max-width: none;
    width: 100%;
  }

  .card-product-wrapper .product-card img {
    max-width: 100%;
  }

  .footer-desktop-search {
    display: none;
  }
}
