section.section-mapsearch-map {
    position: relative;

}

#mapsearch-map {
    height: 800px;
    margin-bottom: 8rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);

}

.leaflet-control-container a.leaflet-control-zoom-out,
.leaflet-control-container a.leaflet-control-zoom-in {
    text-decoration: none;
}

/*  
 * Marker Cluster Styling
 * ------------------------- */
.marker-cluster-small {
    /* background-color: rgba(99, 0, 131, 0.6); */
    background-color: rgba(var(--color-primary-rgb), 0.6);
}

.marker-cluster-small div {

    /* background-color: rgba(99, 0, 131, 0.7); */
    background-color: rgba(var(--color-primary-rgb), 0.7);
}

.marker-cluster-medium {
    /* background-color: rgba(186, 20, 25, 0.6) */
    background-color: rgba(var(--color-primary-rgb), 0.6);
}

.marker-cluster-medium div {

    /* background-color: rgba(186, 20, 25, 0.7); */
    background-color: rgba(var(--color-primary-rgb), 0.7);
}

.marker-cluster-large {

    /* background-color: rgba(13, 1, 0, 0.5) */
    background-color: rgba(var(--color-primary-rgb), 0.6);

}

.marker-cluster-large div {
    /* background-color: rgba(241, 128, 23, 0.6); */
    /* background-color: rgba(13, 1, 0, 0.6);  */
    background-color: rgba(var(--color-primary-rgb), 0.7);
}

.marker-cluster span {
    color: var(--color-white);
}

/*  
 * Popup Styling
 * ------------------------- */

.leaflet-popup {
    width: 275px;
}

.leaflet-popup-content {
    width: 100% !important;
    margin: 0;
    padding: 16px;
}

.leaflet-popup-content h4 a {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;

    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    /* of none */
}

.leaflet-popup-content p {
    font-size: 14px;
}

.leaflet-popup-content p.button-box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.leaflet-popup-content p.button-box .button {
    width: fit-content;
    padding: 6px 24px;
    height: 32px;
    margin-bottom: 0;
}