.helpContainer {
    position: relative;
    display: inline-block;
}

.helpTooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    z-index: 1000;
    background: white;
    border: 5px solid;
    border-color: gray gray black black;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

    .helpTooltip img {
        width: auto;
        height: auto;
        border: 0;
        display: block;
    }

.helpLink:focus + .helpTooltip,
.helpLink:hover + .helpTooltip {
    visibility: visible;
    opacity: 1;
}

.pointer {
    cursor: pointer;
}

.chkTrend {
    color: White;
    font-family: Arial;
    font-size: 8pt;
    font-weight: bold;
}
.esri-legend {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: white;
    padding: 0px;
    border: 1px solid black;
}

#PropDiv {
    /*width: 30%;
      height: 100vh;*/
    float: right;
    overflow: auto;
    padding: 10px;
    background: #f8f9fa;
    border-left: 1px solid #ccc;
}


