.product-discount-rules-section {
    border: 1px solid;
    padding: 5px;
    margin-bottom: 25px;
}

.product-discount-rules {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 15px;
    /*overflow-x: auto;*/
    margin-bottom: 10px;
    justify-content: center;
}

.discount-rule {
    flex: 1 1 200px;
    /*min-width: 20%;*/
    max-width: 23%;
    box-sizing: border-box;
}

.discount-progress-bar {
    background-color: #ddd;
    height: 10px;
    /*border-radius: 5px;*/
    margin-bottom: 5px;
}

.discount-progress {
    background-color: #000;
    height: 100%;
    /*border-radius: 5px;*/
}

.discount-rule-label {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.discount-rule p {
    font-size: 12px;
    color: #333;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.discount-icon-overlay {
    position: relative;
}

.discount-icon-overlay img {
    max-width: none !important;
}

.discount-icon-overlay i,
.discount-icon-overlay img {
    color: #ddd;
    background: none;
    position: absolute;
    transform: translate(-50%, -37%);
    pointer-events: none;
    font-size: clamp(8px, 2vw, 12.5px);

    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 50%;
}

.dbf i {
    /*color: #000;*/
    color: #ffffff;
    background: #000;
}

@media (max-width: 480px) {
    .cart-widget-side {
        width: 320px !important;
    }
}

.discount-icon-overlay:last-of-type {
    margin-right: 10px;
}