/* Map */
.map-grid-column {
    overflow-y: auto;    
    height: calc(100vh - 257px);
}

.enr-map {
    background-color: #f0f0f0;
    width: 100%;
    height: 800px;
}

    .enr-map.cursor-zoom-in {
        cursor: crosshair;
    }

.map-region {
    stroke: #cccccc;
    stroke-width: 1;
}

    .map-region:hover {
        fill-opacity: 0.5;
    }

    .map-region.active {
        stroke-width: 3;
        stroke: #4a4a4a;
    }


/* Tooltip */
.tooltip {
    font-weight: 600;
    font-size: 16px;
}

    .tooltip.top .tooltip-arrow {
        border-top-color: #ffffff;
    }

.tooltip-inner {
    color: #000000;
    background: #ffffff;
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.24);
}



/* Zoom Button */
.map-zoom-btn {
    left: 20px;
    font-size: 28px;
    padding-left: 5px;
    padding-top: 1px;
}

/* Legend Button */

.map-legend h4 {
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
}

.map-legend-btn {
    padding-top: 3px;
    padding-left: 5px;
    font-size:24px;
    right:20px;
}

.map-legend-btn .btn:active {
    box-shadow:none;
}

.map-zoom-btn, 
.map-legend-btn {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 20px;


    color: #4a4a4a;
    background: #ffffff;
    border:1px solid #ccc;
    border-radius:5px;
}

.map-zoom-btn:hover, 
.map-legend-btn:hover,
.map-zoom-btn:active, 
.map-legend-btn:active {
    background:#fafafa;
    box-shadow:none;
}

/* Map Legend */

.map-legend {
    right:20px;
    top: 60px;
    border:none;
    box-shadow:0px 2px 16px rgba(0,0,0,0.24);
    max-height:400px;
    overflow-y:auto;
}

.map-legend li {
    display: block;
    padding: 5px 20px;
    clear: both;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
}

.map-legend li.divider {
    height:0px;
    background:none;
    border-bottom:1px solid #cccccc;
    margin:10px 0;
    padding:0;
}

.map-legend .legend-color {
    content: "";
    height:14px;
    width:14px;
    display: inline-block;
    position: relative;
    top: 2px;
    margin-right: 15px;
}
.cursor-zoomIcon{
        cursor: crosshair;
    }