.chart-onet {
    position: relative;
    width: calc(100% - 50px);
    height: 300px;
    border-bottom: 1px solid #ccc;
    margin-left: 50px;
    margin-bottom: 200px;

}
.chart-onet .charts {
    display: flex;
    padding: 0;
    margin: 0;
    height: 100%;
    position: relative;
    justify-content: space-evenly;
    /*align-items: self-end;*/
    align-items: flex-end;
    flex-direction: row-reverse;
}
.charts > .progress {
    width: 8%;
    background: #1B3B73;
    position: relative;
    margin-bottom: 0 !important;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    min-height: 14%;
}
.charts > .progress::after {
    content: attr(data-value);
    color: #FFD61C;
    font-size: 14px;
    position: absolute;
    top: 19px;
    right: 50%;
    transform: translate(50%);
}
.charts > .progress::before{
    content: attr(data-title);
    color: #1B3B73;
    font-size: 14px;
    position: absolute;
    top: calc(100% + 30px);
    right: 50%;
    transform: translate(50%);
}


.chart-onet .div.back {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}
.chart-onet .div.back > .sec {
    height: 20%;
    width: 100%;
    border-top: 2px dashed #aaa;
    border-left: 1px solid #ccc;
    position: relative;
}
.chart-onet .div.back > .sec.green{
    border-left-color: #00D447;
}
.chart-onet .div.back > .sec.blue{
    border-left-color: #1AC4F1;
}
.chart-onet .div.back > .sec.yellow{
    border-left-color: #FFE600;
}
.chart-onet .div.back > .sec.orange{
    border-left-color: #FF7700;
}
.chart-onet .div.back > .sec.red{
    border-left-color: #FF0000;
}
.chart-onet .div.back > .sec:first-child{
    border-top: none;
}
.chart-onet .div.back > .sec::before {
    content: attr(data-title);
    position: absolute;
    right: calc(100% + 15px);
    font-size: 12px;
    top: 50%;
    width: 50px;
    transform: translateY(-50%);
}

.chart-onet .charts-title-progress {
    display: flex;
    justify-content: space-evenly;
    height: 150px;
    flex-direction: row-reverse;
}
.chart-onet .charts-title-progress > div {
    width: 8%;
    font-size: 12px;
    text-orientation: mixed;
    writing-mode: tb-rl;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 8px;
    transform: rotate(180deg);
}






@media only screen and (max-width: 600px) {
    .charts > .progress::after {
        content: attr(data-value);
        color: #FFD61C;
        font-size: 10px;
        position: absolute;
        top: 10px;
        right: 50%;
        transform: translate(50%);
    }
}

