.wdc-price-breakdown {
    margin: 18px 0;
}

.wdc-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #e2e2e2;
    background: #f7f7f8;
}

.wdc-breakdown-cell {
    position: relative;
    min-height: 78px;
    padding: 12px;
    border-right: 1px solid #e2e2e2;
    text-align: center;
}

.wdc-breakdown-cell:last-child {
    border-right: 0;
}

.wdc-breakdown-label {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.wdc-breakdown-value {
    display: block;
    color: #ee1c25;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.wdc-val-gold-weight {
    color: #111;
}

.wdc-breakdown-value .woocommerce-Price-amount {
    color: inherit;
    font: inherit;
}

.wdc-price-up,
.wdc-price-up .woocommerce-Price-amount {
    color: #159447 !important;
}

.wdc-price-down,
.wdc-price-down .woocommerce-Price-amount {
    color: #ee1c25 !important;
}

@media (max-width: 767px) {
    .wdc-breakdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wdc-breakdown-cell,
    .wdc-breakdown-cell:last-child {
        border-right: 1px solid #e2e2e2;
        border-bottom: 1px solid #e2e2e2;
    }

    .wdc-breakdown-cell:nth-child(2n) {
        border-right: 0;
    }

    .wdc-breakdown-cell:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .wdc-breakdown-label {
        font-size: 13px;
    }

    .wdc-breakdown-value {
        font-size: 16px;
    }
}
