/********** Template CSS **********/
.horizontal-chart {
    width: 80%;
    margin: 20px auto;
    border: 1px solid #ccc;
    
}
.horizontal-chart .bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
   
}

.horizontal-chart .label,
.horizontal-chart .value {
    width: 100px auto;
    text-align: right;
    padding-right: 10px;
    padding-left: 10px;
}
.horizontal-chart .graph {
    width: 300px;
    height: 20px;
    background-color: lightgray;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.horizontal-chart .barfill {
    height: 100%;
    background-color: #aacff2;
    border-radius: 5px;
}
.horizontal-chart .bar-tooltip {
    position: fixed; 
    display: none; /*none; block;*/
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font: 12px sans-serif;
}