bar-chart,
donut-chart,
line-chart{
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: fit-content;
    /* border: 1px solid; */
    font-size: 14px;
}

bar-chart.flow-bottom,
donut-chart.flow-bottom,
line-chart.flow-bottom{
    flex-direction: column;
}

bar-chart .chart-label, 
donut-chart .chart-label,
line-chart .chart-label{
    opacity: 0.75;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: auto;
    transition: opacity 200ms ease-in;
}

bar-chart .chart-label:hover, 
donut-chart .chart-label:hover,
line-chart .chart-label:hover{
    opacity: 1;
}

bar-chart.flow-bottom .chart-label, 
donut-chart.flow-bottom .chart-label,
line-chart.flow-bottom .chart-label{
    height: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flow-bottom .chart-label .chart-group-row::-webkit-scrollbar{
    display: none;
}

bar-chart .chart-group-row, 
donut-chart .chart-group-row,
line-chart .chart-group-row{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    /* border: 1px solid; */
}

bar-chart .chart-group, 
donut-chart .chart-group,
line-chart .chart-group{
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    /* border: 1px solid; */
}

.chart-label span{
    border-radius: 5px;
    font-family: Arial;
    color: #000;
    letter-spacing: 0.25px;
    margin-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    height: 20px;
    cursor: pointer;
    transition: opacity 200ms ease-in;
}

.chart-label span:hover{
    opacity: 0.75;
}

.chart-white .chart-label span{
    color: #fff;
}

.chart-label .chart-group span{
    width: 90%;
    text-overflow: ellipsis;
}

bar-chart.flow-bottom .chart-label span, 
donut-chart.flow-bottom .chart-label span,
line-chart.flow-bottom .chart-label span{
    padding: 0 2px;
    margin-left: 3px;
}