/* assets/css/map.css */



.map_container {
    margin-left: -90px;
    padding: 20px 0;
    width: 100%;
    min-width: 600px;
}

.map svg path {
    fill: var(--color-slate-800);
    stroke: #ffffff;
    stroke-width: 1px;
}

.map svg path:hover {
    fill: var(--color-slate-700);
}

.map svg .pin:not(.disabled) path {
    fill: var(--color-slate-800);
    stroke: var(--color-oms-brand);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map svg .pin.disabled path {
    border: #808080 !important;
    stroke-width: 1 !important;
}
.oms-map-outline .map svg path {
	  fill: var(--color-slate-50);
    stroke: var(--color-slate-300);
    stroke-width: 1px;
}

.oms-map-outline .map svg .pin:not(.disabled) path {
		fill: var(--color-slate-50);
}
.pin {
    cursor: pointer;
    display: block;
}

#popup {
    display: none;
    position: fixed;
    max-width: 32rem;
    min-width: 20rem;
    z-index: 11;
    transition: opacity 200ms ease-in-out;
    border-radius: 10px;
    pointer-events: none;
    padding: 1.2rem 1.8rem 0.5rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(30, 30, 30, 0.1);
    backdrop-filter: blur(10px);
}

.popup_content {
    overflow: auto;
    overflow-x: hidden;
}

.location-li-item {
    list-style: none;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    color: var(--color-slate-600);
}

.icon-wrapper {
    margin-right: 11.2px;
}

@media (max-width: 1400px) {
    .map_container {
        margin: 0 auto;
        min-width: initial;
    }
}

@media (max-width: 800px) {
    .map_container,
    #popup {
        display: none !important;
    }
}
