.hr {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #707070;
}

.hr::after {
    content: "";
    flex: 1;
    height: 0.1px;
    background-color: #dad8d8;
    margin-left: 10px; /* space between text and line */
}

.hide {
    display: none;
}