.wp-block-youthhostels-hostel-map #map {
  fill: var(--wp--preset--color--white);
}

.hostel-map-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  border-radius: var(--wp--custom--border-radius--card, 8px);
  box-shadow: var(--wp--preset--shadow--default, 0 4px 12px rgba(0, 0, 0, 0.15));
  padding: var(--wp--preset--spacing--small, 1rem);
  width: 280px;
  max-width: calc(100vw - 20px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
}
.hostel-map-tooltip.is-visible {
  visibility: visible;
  opacity: 1;
}
.hostel-map-tooltip .hostel-item {
  gap: var(--wp--preset--spacing--small, 1rem);
  align-items: flex-start;
  flex-wrap: wrap;
}
.hostel-map-tooltip .hostel-item-thumbnail {
  width: 80px;
  height: auto;
  aspect-ratio: 72/55;
  min-width: 80px;
  display: flex;
}
.hostel-map-tooltip .hostel-facilities-activities {
  width: 100%;
  padding-top: 0;
}
.hostel-map-tooltip .hostel-facilities-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--wp--preset--spacing--x-small);
  flex-wrap: wrap;
  margin: 0;
}
.hostel-map-tooltip .hostel-facilities-item {
  width: calc(50% - var(--wp--preset--spacing--x-small));
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--wp--preset--spacing--x-small);
  align-items: center;
}
.hostel-map-tooltip .hostel-facilities-item .service-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding-bottom: 0px;
  padding-top: 0px;
  flex-shrink: 0;
  margin-left: 0;
  margin-right: 0;
}
.hostel-map-tooltip .hostel-facilities-item .service-icon-container i {
  font-size: var(--wp--preset--font-size--large);
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hostel-map-tooltip .hostel-facilities-item span {
  font-size: var(--wp--preset--font-size--base);
  font-family: var(--wp--preset--font-family--heading);
  line-height: 0.84em;
}
.hostel-map-tooltip .hostel-facilities-item:not(.hostel-activities-item) .service-icon-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  background-color: var(--wp--preset--color--primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  min-width: 30px;
  height: 36px;
  max-width: none;
  aspect-ratio: 1/1;
  max-height: none;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.hostel-map-tooltip .hostel-facilities-item:not(.hostel-activities-item) .service-icon-container.shape-1::before {
  -webkit-mask-image: url("../../assets/shapes/icon-back-01.svg");
  mask-image: url("../../assets/shapes/icon-back-01.svg");
}
.hostel-map-tooltip .hostel-facilities-item:not(.hostel-activities-item) .service-icon-container.shape-2::before {
  -webkit-mask-image: url("../../assets/shapes/icon-back-02.svg");
  mask-image: url("../../assets/shapes/icon-back-02.svg");
}
.hostel-map-tooltip .hostel-facilities-item:not(.hostel-activities-item) .service-icon-container.shape-3::before {
  -webkit-mask-image: url("../../assets/shapes/icon-back-03.svg");
  mask-image: url("../../assets/shapes/icon-back-03.svg");
}
.hostel-map-tooltip .hostel-facilities-item:not(.hostel-activities-item) .service-icon-container.shape-4::before {
  -webkit-mask-image: url("../../assets/shapes/icon-back-04.svg");
  mask-image: url("../../assets/shapes/icon-back-04.svg");
}
.hostel-map-tooltip .hostel-facilities-item.hostel-activities-item .service-icon-container {
  background-color: var(--wp--preset--color--green);
  border-radius: 50%;
}
.hostel-map-tooltip .hostel-facilities-item.hostel-activities-item .service-icon-container i {
  color: var(--wp--preset--color--white);
}