/* 
    CSS driven components.
 */

.line-after {
    position: relative;
    display: inline-block;
}

.line-after::after {
    content: "";
    position: absolute;
    width: 183px;
    height: 4px;
    background-color: #e50695;
    border-radius: 100px;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
}