#hpw-timeline {
    overflow-x: auto;
    padding-bottom: 10px;
}


.hpw-timeline-container ul {
    display: flex;
    justify-content: space-between;
    text-align: center;

}

.hpw-timeline-container ul.dot {
    border-bottom: 3px solid var(--danger-color);
}

.hpw-timeline-container .dot li {
    position: relative;
}

.hpw-timeline-container .dot li div {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #777777;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    bottom: -6px;
}

.hpw-timeline-container .dot li.checked div {
    background: var(--danger-color);
}

.hpw-timeline-container .dot li:last-child:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 5px;
    right: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--danger-color);
    transform: rotate(90deg);
}

.hpw-timeline-container .node.clickable li {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--font-color-middle);
}

.hpw-timeline-container .node li div {
    font-size: var(--font-size-18);
    width: 100%;
}

.hpw-timeline-container .node.clickable li.checked div,
.hpw-timeline-container .node.clickable li:hover div {
    font-size: var(--font-size-22);
    color: var(--danger-color);
    font-weight: bold;
}
