.ah-progress-bar-element .p-bar {
    display: inline-block;
    width: 100%;
    border: 2px solid #555;
    height: 23px;
    border-radius: 50px;
    padding: 4px;
}

.ah-progress-bar-element .p-bar-line {
    background-color: #555;
    width: 0%;
    height: 100%;
    border-radius: 50px;
    position: relative;
    transition: width 3.5s ease;
}

.ah-progress-bar-element .p-bar-line .bar-dot {
    position: absolute;
    display: inline-block;
    top: 0;
    left: -3px;
    width: 9px;
    height: 100%;
    border-radius: 50px;
    background-color: #555;
    transform: scale(1.6);
}

.ah-progress-bar-element.ah-progress-bar-labelled .progress-bar-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 10px;
    direction: rtl;
}

.ah-progress-bar-element.ah-progress-bar-labelled .progress-bar-title,
.ah-progress-bar-element.ah-progress-bar-labelled .progress-bar-percentage {
    display: inline-block;
    margin: 0;
}

.ah-progress-bar-element.ah-progress-bar-labelled .progress-bar-title {
    color: #20251f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

.ah-progress-bar-element.ah-progress-bar-labelled .progress-bar-percentage {
    flex: 0 0 auto;
    color: #b77a00;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
}

.ah-progress-bar-element.ah-progress-bar-labelled .p-bar {
    position: relative;
    display: block;
    width: 100%;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50px;
    background-color: #f3f4ee;
    box-sizing: border-box;
    direction: rtl;
}

.ah-progress-bar-element.ah-progress-bar-labelled .p-bar-line {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background-color: #e4e8d6;
}

.ah-progress-bar-element.ah-progress-bar-labelled .p-bar-line .bar-dot {
    inset-inline-end: -3px;
    right: auto;
    left: auto;
}
