.invisible {
    visibility: hidden;
}

.chart-container .line {
    display: flex;
    height: 45px;
    flex-grow: 1;
    position: relative;
}
.chart-container.alternative .line:before {
    background-color: white;
}
.chart-container .line:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #7FACEB;
}

.chart-container .line .chunk {
    height: 100%;
    text-align: center;
    position: relative;
    transform: scaleX(0);
}
.chart-container .line .green {
    background-color: #7FACEB;
}
.chart-container .line .yellow {
    background-color: #B9D4E9;
}
.chart-container.alternative .line .blue {
    background-color: #005AD780;
}
.chart-container .line .blue {
    background-color: #005AD7;
}
.chart-container .line-row {
    display: flex;
    align-items: center;
}
.chart-container .chart-col {
    margin-top: 45px;
}
.chart-container.alternative .chart-col .year {
    color: white;
}
.chart-container .chart-col .year {
    position: relative;
    top: -10px;
    line-height: 10px;
    font-family: var(--e-global-typography-e161e0a-font-family);
    font-size: var(--e-global-typography-e161e0a-font-size);
    font-weight: var(--e-global-typography-e161e0a-font-weight);
    letter-spacing: var(--e-global-typography-e161e0a-letter-spacing);
    color: #404040;
}
.chart-container.alternative .chart-col .valFull {
    color:white;
}
.chart-container .chart-col .valFull {
    min-width: 60px;
    text-align: right;
    padding-left: 20px;
    color: #7FACEB;
    margin-left: 0px;
    white-space: nowrap;
    font-family: var(--e-global-typography-bf180db-font-family);
    font-size: var(--e-global-typography-bf180db-font-size);
    font-weight: var(--e-global-typography-bf180db-font-weight);
    letter-spacing: var(--e-global-typography-bf180db-letter-spacing);
}
.chart-container.alternative .chart-col .chunk span {
    color:white;
}
.chart-container .chart-col .chunk span {
    position: relative;
    display: block;
    color: #005AD7;
    top: -38px;
    white-space: nowrap;
    --animate-delay: 1250ms;
    font-family: var(--e-global-typography-83ee015-font-family);
    font-size: var(--e-global-typography-83ee015-font-size);
    font-weight: var(--e-global-typography-83ee015-font-weight);;
    letter-spacing: var(--e-global-typography-83ee015-letter-spacing);
}
.chart-container .chart-col .chunk span.valOther {
    color: #7FACEB;
}
.chart-container .chart-col .chunk span.valOther2 {
    color: #B9D4E9;
}


@keyframes scale-x {
    0%   { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.scale-x {
    transform-origin: 0;
    animation: scale-x var(--animate-duration) ease-out;
    animation-fill-mode: forwards;
}

@media only screen and (max-width: 768px) {
    .chart-container .chart-col .chunk span,
    .chart-container .chart-col .chunk span.valOther {
        font-size:18px;
        top: 8px;
        color: #ffffff !important;
        font-weight:300;
    }
    .chart-container .chart-col .chunk.green span.valOther {
        color: #005AD7 !important;
    }
    .chart-container .chart-col .valFull {
        font-size:18px;
    }
    .chart-container .chart-col {
        margin-top: 20px;
    }
}