/**
 * Prestaworks AB.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the End User License Agreement(EULA)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://license.prestaworks.se/license.html
 *
 * @author    Prestaworks AB <info@prestaworks.se>
 * @copyright Copyright Prestaworks AB (https://www.prestaworks.se/)
 * @license   https://license.prestaworks.se/license.html
 */

.pwshipit-zipcode,
.pwshipitagentsdisplay {
    margin-block: 0.9375rem;
}
.pwshipit-zipcode {
    display: grid;
    gap: 0.5rem;
    grid-template-areas: 
        "l i"
        ". b";
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(2, auto);
    place-items: center stretch;
}
    @media (min-width: 576px) {
        .pwshipit-zipcode {
            grid-template-areas:
                "l i b";
            grid-template-columns: 1fr auto auto;
            grid-template-rows: 1fr;
        }
    }
    .pwshipit-zipcode label {
        grid-area: l;
    }
    .pwshipit-zipcode input {
        grid-area: i;
    }
    .pwshipit-zipcode button {
        grid-area: b;
        white-space: normal;
    }
    .pwshipit-zipcode * {
        margin: 0;
    }