.map-departments>path {
    fill: #232f3e;
    stroke: #769cb5;
    stroke-width: 1px;
    transition: fill .3s;
    cursor: pointer;
}

.map-departments>path:hover {
    fill: #769cb5;
    stroke: #232f3e;
    stroke-width: 1px;
    transition: fill .3s;
    cursor: pointer;
}

.map-departments>path.active {
    fill: #fb911f !important;
    stroke: #232f3e !important;
    stroke-width: 1px !important;
}

select#map-select {
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

#toolTip-map {
    display: none;
    background-color: #1e61b3;
    color: #fff;
    box-shadow: 5px 5px 20px 5px rgb(0 0 0 / 52%);
    padding: 0.5rem 1.2rem;
    border-radius: 0.4rem;
    position: absolute;
}

.map-content {
    margin-top: 5rem;
    width: 50%;
    margin: auto;
}

#modalClose {
    cursor: pointer;
}

@media (max-width: 900px) {

    .map-content {
        margin-top: 2rem;
        width: 80%;
        margin: auto;
    }

}