/* Only the actual product selling-price row receives this attribute. */
.productsummary__pricing > [data-mfd-percentage-savings]::after {
    content: attr(data-mfd-percentage-savings);
    display: inline-block;
    vertical-align: middle;
    margin: 4px 0 4px 10px;
    padding: 5px 9px;
    border-radius: 3px;
    background: #166534;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
}
@media (max-width: 480px) {
    .productsummary__pricing > [data-mfd-percentage-savings]::after {
        display: table;
        margin: 7px 0 3px;
    }
}
