.map-wrapper {
  padding: 20px 0 0px;
}

#map {
  width: 100%;
  height: 600px;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-wrapper .active .path {
  fill: #32BCAD;
}

.icon-wrapper p {
  margin: 0;
}

.list-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  margin-top: 40px;
  background-color: #EFEFF0;
}

.card-wrapper {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 20px;
  gap: 30px;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.card-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.tag {
  position: absolute;
  top: 8px;
  left: 0;
  font-family: db_heavent;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 10px;
}

.card-detail {
  display: flex;
  flex-direction: column;
  font-family: db_heavent;
  font-size: 26px;
  line-height: 32px;
  color: #333333;
}

.card-detail .card-title {
  font-family: db_heavent;
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  margin: 0;
}

.card-detail .card-price {
  font-family: db_heavent;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
}

@media only screen and (max-width: 1200px) {
  .list-wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 749px) {
  .list-wrapper {
    grid-template-columns: 1fr;
  }

  .card-wrapper {
    padding: 12px;
    gap: 16px;
  }

  .card-wrapper .col-md-6 {
    padding: 0;
  }

  .card-detail .card-title {
    line-height: 1.2;
  }

  .card-detail .card-price {
    line-height: 1.4;
  }

  .map-card-img {
    width: 100px !important;
    height: 100px !important;
  }

  .map-card-tag {
    width: 100px !important;
  }

  .gm-style-iw {
    max-width: 90vw !important;
  }
}