/* ------------- */
/* Basic styling */
/* ------------- */

#sab-prov-map,
#sab-muni-map  {
    width: auto;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    animation: sab-fadeIn 400ms;
    display: inline;
}

@keyframes sab-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
  
#sab-prov-map svg,
#sab-muni-map svg {
    max-height: 800px;
    max-width: 800px;
}

#sab-prov-map svg g,
#sab-muni-map svg g,
#sab-muni-map svg path {
    display: block;
    position: relative;
    fill: #7b4997;
    stroke: #FFFFFF;
    stroke-width: 0.1;
    transition: fill 400ms ease;
}

#sab-prov-map svg g:hover,
#sab-muni-map svg g:hover,
#sab-muni-map svg path:hover {
    fill: #fa4659;
}

#sab-prov-map .active-link g,
#sab-muni-map .active-link g,
#sab-muni-map .active-link path {
    fill: #fa4659;
}

/* ------------- */
/* ------------- */
/* ------------- */



/* --------------- */
/* tooltip styling */
/* --------------- */

.sab-tooltip {
    font-weight: 700;
    position: fixed;
    color: #fff;
    background-color: #169fdb ;
    padding: 10px;
    z-index: 100;
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
    font-family:'Bitter', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

/* --------------- */
/* --------------- */
/* --------------- */