.ezone-progress-sold {
    margin: 5px 0;
    height: 20px;;
}

.progress-sold-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.progress-sold-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.progress-sold-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0!important;
    margin-bottom: 0 !important;;
}

.progress-sold-detail {
    width: 100%;
}

.progress-sold-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: #ffbda6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(7, 33, 66, 0.15);
}

/* Thanh tiến độ đầy */
.progress-sold-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(to right, #eb1917, #feab01);
    border-radius: 10px;
    animation: fill-progress 1.5s forwards;
    z-index: 1;
}

/* Icon 🔥 */
.progress-sold-fire {
    background: url('../images/fire.png') no-repeat center;
    background-size: contain;
    width: 18px;
    height: 21px;
    position: absolute;
    left: 3px;
    top: -6px;
    z-index: 2;
}

/* Label số lượng */
.progress-sold-percentage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    z-index: 3;
}

/* Animation */
@keyframes fill-progress {
    from {
        width: 0%;
    }

    to {
        width: var(--progress, 0%);
    }
}