.meter-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
/* RUIM */
.meter-wrapper.bad .meter-box.filled {
    background-color: #B20000;
}
.meter-wrapper.bad + .rating {
    color: #B20000;
}
/* REGULAR */
.meter-wrapper.average .meter-box.filled {
    background-color: #F6B428;
}
.meter-wrapper.average + .rating {
    color: #F6B428;
}
/* BOM */
.meter-wrapper.good .meter-box.filled {
    background-color: #00B159;
}
.meter-wrapper.good + .rating {
    color: #00B159;
}

.meter-box {
    width: 40px;
    height: 5px;
    background-color: #dadada;
    transition: 0.2s all ease-out;
}
.meter-box + .meter-box {
    margin-left: 4px;
}

.rating {
    font-size: 10px;
    line-height: 100%;
    margin-top: 2px;
    color: #666;
    transition: 0.2s all ease-out;
}