.rate-score, .rate-score span {
    font-size: 30px;
    color: green;
    width: 60px;
    text-align: right;
}

.timeframe-container {
    --width: 50px;
    --height: 10px;
    --arrow-size: 6px;
    position: relative;
}

.timeframe--arrow {
    position: absolute;
    border: var(--arrow-size) solid transparent;
    border-top-color: #222;
    z-index: 100;
    top: calc(var(--arrow-size) * -1 + 4px);
    margin-left: calc(var(--arrow-size) * -1);
}

.timeframe--bars,
.timeframe--labels {
    position: relative;
    display: flex;
    color: #999;
}

.timeframe--bars {
    --percentage: 44%;
    border-radius: .5em;
    overflow: hidden;
}

.timeframe--labels span {
    display: inline-block;
    width: var(--width);
    text-align: center;
}

.timeframe--bars span {
    display: inline-block;
    width: var(--width);
    height: var(--height);
    background: #ccc;
    position: relative;
}

.timeframe--bars .timeframe--fill {
    position: absolute;
    height: 100%;
    max-width: 100%;
    display: inline-block;
    width: var(--percentage);
    z-index: 1;
}

.timeframe--bars span:nth-child(2):after {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: #fff;
    z-index: 1000;
    right: 0;
}

.timeframe--bars span:nth-child(2):before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 0;
    background: #fff;
    z-index: 1000;
}

.timeframe-container[data-score=low] .timeframe--bars .timeframe--fill {
    background: #eb455b;
}

.timeframe-container[data-score=mid] .timeframe--bars .timeframe--fill {
    background: orange;
}

.timeframe-container[data-score=high] .timeframe--bars .timeframe--fill {
    background: #238223;
}