.bottom {
    margin-top: 6px;
    padding-top: 6px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 2px solid rgba(0, 0, 0, .18);
}

.curveWrap {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .28);
    padding: 8px 8px 2px;
}

.curveCanvasWrap {
    height: 72px;
      position: relative;
    height: 110px;
    background: #fff;
    overflow: hidden;
}

.labelsRow {
    font-size: 11px;
    height: 16px;
}

.lbl.jun {
    max-width: 64vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lbl.dec {
    max-width: 36vw;
    overflow: hidden;
    text-overflow: ellipsis;
}



#curve {
    width: 100%;
    height: 100%;
    display: block;
}

.vline {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-0.5px);
    pointer-events: none;
    opacity: .95;
}

.vline.sel {
    background: var(--teal);
    width: 3px;
}

.vline.jun,
.vline.dec {
    background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .62) 0px, rgba(0, 0, 0, .62) 6px, transparent 6px, transparent 11px);
}

.labelsRow {
    margin-top: 6px;
    position: relative;
    height: 30px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(0, 0, 0, .82);
    font-variant-numeric: tabular-nums;
}

.lbl {
    position: absolute;
    bottom: 0;
    white-space: nowrap;
}

.lbl.jun {
    left: 50%;
    transform: translateX(-50%);    
}

.lbl.dec {
    right: 0;
    text-align: right;
}