/* Line Title */ 
.line-title-con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.line-title {
    text-align: center;
    font-weight: var(--weight);
    color: var(--text);
    font-size: var(--size);
    line-height: 1.65;
    max-width: 80%;
}

.ltr .line-title{
    line-height: 1.4;
}

.line-title::selection{
    background: var(--text);
    color: var(--bg);
}

.line-title-dvider{
    flex: 1;
    min-width: 20px;
    background: var(--text);
    margin-top: 5px;
    height: var(--dvider-width);
    border-radius: var(--dvider-radius);
}
