#map {
    width: 40%;
    display: block;
    margin: auto;
}

#map .state { cursor: pointer; }

#map .state .shape {
    cursor: pointer;
    -width: 0;
}

#map .state .label_icon_state {
    fill: #FFF;
    font-size: 11px;
    line-height: 12px;
    font-weight: 400;
}

#map .state .label_state {
    display: none;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

#map .state:hover .label_state {
	display: none;
}

#map .state.hover .label_state {
	display: block;
}

#map .state .shape { fill: #a29e9e; }
#map .state .shape.active {
	fill: #2d2056;
	stroke: #FFF;
}

#map .state .icon_state { fill: #2d2056; }

#map .state .label_state { fill: #666; }

#map .state:hover .shape.active {
	fill: #f1a320;
}

#map .state:hover .icon_state,
#map .state.hover .icon_state { fill: #eaca1e; }

@media (max-width: 991px) {
    #map {
        width: 100%;
    }
}