/* Country-aware delivery time in the cart summary and side cart. */

.msi-checkout-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    font-size: 13.5px;
    line-height: 1.45;
}

.msi-checkout-delivery i {
    flex: 0 0 auto;
    font-size: 15px;
    --fa-primary-color: var(--msi-accent, #266b5a);
    --fa-secondary-color: var(--msi-accent, #266b5a);
    --fa-secondary-opacity: .38;
}

.msi-checkout-delivery strong {
    font-weight: 600;
}

/* At checkout the time comes from the shipping method label instead, so the
   standalone line is only for the side cart. Scoped to the checkout root
   rather than to a summary id, because the cart table is rendered more than
   once there (#cfw-cart-summary and #cfw-mobile-cart-summary). The side cart
   lives outside #cfw, so it keeps its line. */
#cfw .msi-checkout-delivery {
    display: none !important;
}

/* Delivery time appended to the shipping method label */
.msi-ship-time {
    opacity: .7;
}
