.us-map {
    -webkit-tap-highlight-color:  rgba(0,0,0,0);
}

/* Default state styles */
.us-map .state {
    fill: #e1e8e8;
    fill-opacity: 1;
    stroke: none;

    -webkit-transition: fill 0.1s;
    -moz-transition: fill 0.1s;
    transition: fill 0.1s;
}

/* Hit area styles (Don't change) */
.us-map .state_hitArea {
    fill: rgba(0,0,0,0);
    stroke: none;
    cursor: pointer;
}

/* Election state styles */
.us-map .state_hasElection {
    fill: #24a61b;
    cursor: pointer;
}

/* Hover state styles */
.us-map .state_isActive {
    fill: #0eca00;
}

/* Selected state styles */
.us-map .state_isSelected {
    fill: #24a61b !important;
}

/* Label text styles */
.us-map .state_labelText {
    stroke: none;
    fill: #FFF !important;
    pointer-events: none;
}