.mapcontainer {
  display: flex;
  height: 100vh;
  width: 100vw;
}

#map {
  width: 50%;
  height: 100%;
}

#image-container {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #f7f7f7;
  /* cursor: pointer; */
}

.city {
  width: 30%;
  margin: 10px 8px;
  text-align: center;
  box-shadow: 0px 14px 34px rgba(41, 41, 41, 0.2);
  border: 5px solid #fff;
  border-radius: 12px;
  cursor: pointer;
}

.city .overlayTextImg {
  cursor: pointer;
  margin-bottom: 0;
  font-size: 14px;
  left: 0px;
  text-align: left;
  padding: 0 9px;
  bottom: 3px;
  font-family: var(--font-family-title);
}


.tile:hover .overlayTextImg {
  bottom: 5px;
  opacity: 1;
}

.city-image {
  width: 200px;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

#image-container {
  display: ruby;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  padding: 10px;
  background-color: #f7f7f7;
}

/* tooltip - infobox */

.gm-ui-hover-effect,
.gm-style .gm-style-iw .gm-style-iw-chr {
  outline: 0;
  display: none;
}

.gm-style-iw {
  text-align: center;
}

.gm-style-iw-d {
  margin-top: 10px;
  font-size: 14px;
  font-family: var(--font-family-title);
  text-align: center;
  font-weight: 500;
}

@media only screen and (min-width: 1920px) {
  .mapcontainer {
    height: 670px;
  }
}

@media only screen and (max-width: 991px) {
  .mapcontainer {
    flex-direction: column;
    height: auto;
  }
  #map {
    width: 100%;
    height: 500px;
  }

  #image-container {
    width: 100%;
    min-height: 500px;
    height: auto;
    /* cursor: pointer; */
  }
}
@media screen and (max-width: 767px) {
  .city {
    width: 44%;
  }
}
