/* SS Sale Progress Bar V3 Styles */
.ss-sale-progress-bar-v3 {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.ss-sale-progress-bar-v3-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    background-color: #000000;
}

.ss-sale-progress-bar-v3-background {
    position: absolute;
    top: 0;
    left: -50px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ss-sale-progress-bar-v3-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ss-sale-progress-bar-v3-content-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}
.ss-sale-progress-bar-v3-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    flex-direction: row;
    padding: 16px 16px;
}
.ss-sale-progress-bar-v3-title {
    display: flex;
    flex-direction: column;
    font-size: 44px;
    color: #C7ADFF;
    justify-content: center;
    align-items: flex-start;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -1.76px;
    display: none;
}
.ss-sale-progress-bar-v3-offers {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

.ss-sale-progress-bar-v3-offer-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.ss-sale-progress-bar-v3-offer-note-inner {
    display: flex
;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.ss-sale-progress-bar-v2-offer-note-inner-text {
	flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
}
.ss-sale-progress-bar-v3-offer-note-inner-text {
    flex-shrink: 0;
}
.ss-sale-progress-bar-v3-offer-note-inner-text-before,
.ss-sale-progress-bar-v3-offer-note-inner-text-after {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-sale-progress-bar-v3-progress-bar-inner-progress {
    height: 6px;
    background: #413e48;
    border-radius: 4px;
    width: 100%;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-1-inner {
    height: 6px;
    background: #00A63E;
    width: 100%;
    border-radius: 4px;
}

.ss-sale-progress-bar-v3-offer-box-amount {
    color: #BBBABE;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}
.ss-sale-progress-bar-v3-offer-box-title {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.72px;
}
.ss-sale-progress-bar-v3-progress-bar-inner {
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-1,
.ss-sale-progress-bar-v3-progress-bar-inner-progress-2,
.ss-sale-progress-bar-v3-progress-bar-inner-progress-3 {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 16%;
    transform: translate(0, -50%);
    z-index: 2;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-1 {
    left: 16%;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-2 {
    left: 53%;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-3 {
    left: 80%;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-tick {
    background: #413E48;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 5px;
}
.ss-sale-progress-bar-v3-progress-bar-inner-progress-tick.active {
    background: #016730;
}