.chart-iterator {
    display: flex;
    flex-direction: column;
}

.chart-iterator chart:first-of-type {
    margin-top: 10px;
}

.chart-iterator chart {
    position: relative;
    margin: 10px 0;
    width: 100%;
    height: 100%;
}

.chart-iterator chart:last-of-type {
    margin-bottom: initial;
}

.svg-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.chart .svg-container{
    width: 100%;

}
.chart .title-banner {
    padding: 0;
    width: 100%;
    border: none;
    background: none;
    transition: 0.3s opacity;
    margin: 6px 0;
}

.chart .title-banner:hover {
    opacity: 0.7;
}

.chart .title-banner-after:after {
    content: '';
    background: #d3d3d3;
    position: absolute;
    top: 20px;
    left: 0px;
    right: 50px;
    height: 1px;
    z-index:-1;
}

.chart .title-banner-after-dashboard:after {
    content: '';
    background: #d3d3d3;
    position: absolute;
    top: 20px;
    left: 0px;
    right: 0px;
    height: 1px;
    z-index:-1;
}

.chart .title-banner .title-banner-name {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #596157;
    background: #fff;
    padding: 0 10px;
    line-height: 30px;
    text-align: center;
}

.title-banner-arrow {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #ed2f2f;
    overflow: hidden;
}

.title-banner-arrow i {
    font-size: 22px;

    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);

    transition: 0.3s top;
}

.title-banner-arrow i:first-of-type {
    top: 50%;
}

.title-banner-arrow i:last-of-type {
    top: 150%;
}

.title-banner-arrow.collapsed i:first-of-type {
    top: -50%;
}

.title-banner-arrow.collapsed i:last-of-type {
    top: 50%;
}

.loading {
    opacity: 0.15;
    pointer-events: none;
}

.description {
    margin: 4px 25px 32px 25px;
}

.c3-legend-item-hidden {
    opacity: 0.45;
}