/**
 * Preliminary shipping-price results (Econt / Speedy / Pigeon), shown next to the
 * shipping method labels on the checkout and (optionally) in the cart.
 */

/* Compact result lines shared by all carriers. */
#mrejanet-econt-shipping-results div,
#mrejanet-speedy-shipping-results div,
#mrejanet-pigeon-shipping-results div {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.3;
}

/* Loading placeholder + empty/error dash. */
.csesm2-precalc-loading {
    letter-spacing: 2px;
    opacity: 0.55;
    animation: csesm2-pulse 1s ease-in-out infinite;
}
.csesm2-precalc-empty {
    opacity: 0.5;
}
@keyframes csesm2-pulse {
    0%, 100% { opacity: 0.25; }
    50%      { opacity: 0.7; }
}

/* Per-carrier logo shown before a non-empty result line. */
#mrejanet-econt-shipping-results .DOOR:not(:empty)::before,
#mrejanet-econt-shipping-results .OFFICE:not(:empty)::before,
#mrejanet-econt-shipping-results .MACHINE:not(:empty)::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 16px;
    margin-right: 6px;
    background: url("/wp-content/plugins/woocommerce-econt/inc/css/images/econt_shipping_logo_dark.svg") no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

#mrejanet-speedy-shipping-results .ADDRESS:not(:empty)::before,
#mrejanet-speedy-shipping-results .OFFICE:not(:empty)::before,
#mrejanet-speedy-shipping-results .APT:not(:empty)::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 16px;
    margin-right: 6px;
    background: url("/wp-content/plugins/woocommerce-speedy/inc/images/speedy_shipping_logo_dark.svg") no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

#mrejanet-pigeon-shipping-results .ADDRESS:not(:empty)::before,
#mrejanet-pigeon-shipping-results .OFFICE:not(:empty)::before,
#mrejanet-pigeon-shipping-results .LOCKER:not(:empty)::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 16px;
    margin-right: 6px;
    background: url("/wp-content/plugins/woocommerce-pigeon-express/inc/assets/pigeon-logo.svg") no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}
