.see-more-chart {
    overflow: hidden;
    position: relative;
    transition: all 2s ease;
}

.see-more-chart.chart-expanded {
    padding-bottom: 8rem;
}

.see-more-chart:after {
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 90px, rgba(255,255,255,0) 200px);
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.see-more-chart.chart-expanded:after {
    opacity: 0;
}

.button2.see-more-button {
    display: none;
    position: absolute;
    bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    z-index: 1;
}

.see-more-chart .button2.see-more-button {
    display: block;
}

.table-comp {
    position: relative;
}
