@charset "UTF-8";
.leaflet-wrapper {
  width: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
}
.leaflet-wrapper .content {
  display: flex;
  height: 600px;
  overflow-x: hidden;
}
.leaflet-wrapper .content #map {

  flex: 0 0 70%;
  height: 100%;
  min-height: 300px;
  border-radius: 0.5rem;
}
    .leaflet-wrapper .content #map.full-width {
        flex: 0 0 100%;
    }
@media (max-width: 1024px) {
  .leaflet-wrapper .content #map {
    height: 300px;
  }
}
.leaflet-wrapper .content .address-container {
  width: 100%;
}
.leaflet-wrapper .content .address-container .title {
  font-weight: bold;
  padding-left: 1.6rem;
}
.leaflet-wrapper .content .address-container #addresses {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  padding-left: 0.8rem;
  overflow-y: auto;
  overflow-x: hidden;
  /*scrollbar-width: none;*/ /* Für Firefox */
  /*-ms-overflow-style: none;*/ /* Für Internet Explorer und Edge */
}
.leaflet-wrapper .content .address-container #addresses::-webkit-scrollbar {
  /*display: none;*/ /* Für Chrome, Safari und Opera */
}
.leaflet-wrapper .content .address-container #addresses li::before {
  display: none;
}
.leaflet-wrapper .content .address-container #addresses .marker {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.leaflet-wrapper .content .address-container #addresses .marker:hover {
  transform: scale(1.03);
  border: 1px solid #ccc;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.leaflet-wrapper .content .address-container #addresses .marker .address {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.5rem;
}
.leaflet-wrapper .content .address-container #addresses .marker .name {
  font-weight: bold;
  font-size: 16px;
  color: #4caf50;
}
.leaflet-wrapper .content .address-container #addresses .marker .info {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .leaflet-wrapper .content .address-container #addresses .marker {
    padding: 0;
  }
  .leaflet-wrapper .content .address-container #addresses .marker:hover {
    transform: none;
    border: none;
    box-shadow: none;
  }
}
@media (max-width: 1024px) {
  .leaflet-wrapper .content .address-container #addresses {
    gap: 0.8rem;
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .leaflet-wrapper .content .address-container {
    max-height: 200px;
  }
  .leaflet-wrapper .content .address-container .title {
    padding: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .leaflet-wrapper .content {
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }
}

.field-name-map-part-coordinates-field {
  display: none;
}

.leaflet-container a {
  color: inherit;
}
.leaflet-container a::before {
  display: none !important;
}
.leaflet-container a::after {
  background: none !important;
}
.leaflet-container a svg {
  display: none !important;
}

.leaflet-popup-close-button span {
  color: #ff4949;
}
