.osm-map{
    width: 100%;
}

.osm-map .marker{
    display: none;
}

/* Marker cluster icon */

.marker-cluster > div{
    border-radius: 100%;
    background: var(--primary-color);
    color: var(--background-dark);
    text-align: center;
}

.marker-cluster > div > span {
    font-weight: 900;
}

/* Tooltip */

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: var(--background-dark);
    color: #fff;
    box-shadow: 0 3px 14px rgb(0 0 0 / 10%);
}

.leaflet-popup-content-wrapper{
    border-radius: 3px;
}

.leaflet-popup-content{
    font-size: 0.95rem;
}

.leaflet-popup{
    margin: 0 0 0 3px;
}

.leaflet-container a.leaflet-popup-close-button,
.leaflet-container a.leaflet-popup-close-button span{
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
}

.leaflet-container a.leaflet-popup-close-button{
    background: var(--primary-color);
    color: #fff;
    border-radius: 100%;
    top: -8px;
    right: -8px;
    transition: all ease 0.5s;
}

.leaflet-container a.leaflet-popup-close-button:hover{
    background: #fff;
}

.leaflet-container a.leaflet-popup-close-button:hover span{
    color: var(--background-dark);
}

.leaflet-popup-tip-container {
    width: 20px;
    height: 14px;
    margin-left: -10px;
    margin-top: -2px;
}

.leaflet-popup-tip {
    margin: -13px auto 0;
}

.leaflet-popup-content{
    margin: 0;
}

.leaflet-popup-content .marker-wrapper{
    margin: 15px;
    max-width: 215px;
    font-family: var(--font-text);
}

.leaflet-popup-content .marker-title{
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.leaflet-popup-content .marker-address,
.leaflet-popup-content .marker-content{
    font-size: 0.75rem;
}

.leaflet-popup-content .marker-content{
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 10px 0;
    padding-top: 10px;
}

.leaflet-popup-content .marker-content *{
    color: #fff;
}

.leaflet-popup-content .marker-content p{
    margin: 0;
    line-height: inherit;
}