.RoomMap {
  position: sticky;
  top: 20px;
  left: 0;
}

.RoomMap p {
  margin: 0;
}

.RoomMap #map {
  width: 90vw;
  height: calc(100dvh - 60px);
  border-radius: 10px;

  @media (min-width: 1400px) {
    width: 510px;
  }
}

.RoomMap .RoomMap__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.RoomMap .RoomMap__marker svg {
  width: 20px;
  height: 20px;
}

.RoomMap .mapboxgl-popup-tip {
  position: relative;
  top: -20px;
}

.RoomMap .mapboxgl-popup-content {
  position: relative;
  top: -20px;
  padding: 8px;
}

.RoomMap__popup h5 {
  font-family: 'Poppins', serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C3A56;
  margin-top: 7px;
}

.RoomMap__popup p {
  font-family: 'Poppins', serif;
  font-size: 13px;
  font-weight: 500;
  color: #1C3A56;
}

.downward-triangle {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 15px);
  width: 0;
  height: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid white;
}