

/* Page Style */
svg path {
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    stroke: #000;
    stroke-width: 1px;
    stroke-linejoin: round;
    cursor: pointer
}

svg path:hover {
    fill: #1cc7c9;
}

.disabled {
    fill: #c7c7c7 !important;
    pointer-events:none;
}
.enabled {
    fill: #b6ff00 !important;
    cursor: pointer;
}
.enabled:hover {
    fill: #1cc7c9 !important;
}