.white-label-reporting__chart {
    display: flex;
    height: 100%;
    gap: 16px;
}

.white-label-reporting__chart-item-wrapper {
    display: flex;
    align-items: end;
    height: 100%;
    border-left: 1px solid var(--main-colors-grey);
    min-width: 6.5%;
}

.white-label-reporting__chart-item {
    width: 100%;
    background-color: var(--main-colors-black);
    border-top-right-radius: 8px;
}

.white-label-reporting__chart-item-wrapper:nth-child(even) .white-label-reporting__chart-item {
    opacity: .4;
}

@media screen and (max-width: 1023px) {
    .white-label-reporting__chart {
        display: none;
    }
}