#fullscreenMapModal .modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  z-index: 1050;
  width: 100vw;
  max-width: none;
  height: 100vh;
  overflow: hidden;
}

#fullscreenMapModal .modal-header {
  display: none;
}

#fullscreenMapModal .modal-content {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

#fullscreenMapModal .modal-body {
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#fullscreenMapModal #col-map {
  height: 100vh;
}

#fullscreenMapModal-col-left {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#fullscreenMapModal-thumbs {
  overflow-y: auto;
  overflow-x: hidden;
}

#fullscreenMapModal .content-thumb-focus {
  padding: 20px;
}

#fullscreenMapModal .content-thumb {
  margin: 5px 0px;
  box-shadow: 0 1px 3px rgba(145, 19, 81, 0.08);
  border-radius: 5px;
  padding: 4px;

  display: block;
  text-decoration: none;
}

#fullscreenMapModal .content-thumb .image-background {
  display: block;
  padding-bottom: 25%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid transparent;

  position: relative;
  z-index: 1;
}

#fullscreenMapModal .content-thumb .image-full-width {
  padding-bottom: 50%;
  background-size: cover;
  margin-bottom: 16px;
}

#fullscreenMapModal .content-thumb .no-margin {
  margin: 0px;
}

#fullscreenMapModal .no-padding {
  padding: 0px;
}

#fullscreenMapModal .leaflet-marker-icon.icon-marker {
  display: flex;
  background: #fff;
  width: 40px !important;
  justify-content: center;
  height: 40px !important;
  align-items: center;
  border-radius: 40px;
}

#fullscreenMapModal .icon-marker i {
  color: #911351;
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#fullscreenMapModal .icon-marker svg {
  fill: #911351;
  width: 24px;
}

#fullscreenMapModal .icon-marker.highlight {
  background: #911351;
}

#fullscreenMapModal .icon-marker.highlight i {
  color: #fff;
  /* colore più acceso/arancione per evidenziare */
  font-size: 28px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

#fullscreenMapModal .icon-marker.highlight svg {
  fill: #fff;
  width: 28px;
}

#fullscreenMapModal .col-left-bar {
  padding: 16px;
  position: sticky;
  background: #fff;
}

#fullscreenMapModal .col-left-bar .btn-filter {
  cursor: pointer;
  text-align: center;
  border: 1px solid rgb(176, 176, 176);
  background-color: rgb(255, 255, 255);
  outline: none;
  margin: 0px;
  border-radius: 30px;
  color: rgb(34, 34, 34);
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 16px;
}


#fullscreenMapModal #col-map {
  position: relative;
  height: 100vh;
}

#fullscreenMapModal #col-map #map {
  z-index: 1;
}

/* Default desktop */
#fullscreenMapModal #col-map #content {
  position: absolute;
  bottom: 0px;
  padding-bottom: 10%;
  /* fallback */
  padding-bottom: calc(10% + env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 767px) {
  #fullscreenMapModal #col-map #content {
    bottom: calc(10% + env(safe-area-inset-bottom));
  }
}

#fullscreenMapModal #col-map #content .box {
  background: #fff;
  z-index: 2;
  pointer-events: auto;
  border-radius: 10px;

  width: 90%;
  max-width: 800px;
  min-width: 320px;

  display: none;
}

#fullscreenMapModal #col-map #content .box.open {
  display: block;
}

#fullscreenMapModal #col-map-header {
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;

  pointer-events: none;
  z-index: 2;

  justify-content: flex-end;
  align-items: baseline;
}

#fullscreenMapModal .message {
  display: none;
}

#fullscreenMapModal #col-map-header .message {
  background-color: #fff;
  border-radius: 20px;

  width: 100%;
  padding: 16px;
  margin-right: 20px;

  display: none;
  pointer-events: auto;
}

#fullscreenMapModal .btn-action-filters,
#fullscreenMapModal #col-map-header .btn-closed {
  background: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 30px;
  border-radius: 20px;
  width: 50px;
  pointer-events: auto;
}

#fullscreenMapModal .btn-action-filters {
  margin-right: 10px;
  display: none;
  width: auto;
}

.modal-open .modal.ExperiencesSearchWidgetModal {
  z-index: 1060;
}

@media (max-width: 1439px) {
  #fullscreenMapModal #col-map-header .message {
    display: flex;

  }

  #fullscreenMapModal .btn-action-filters {
    display: block;
  }
}