/** Shopify CDN: Minification failed

Line 364:7 Unexpected "and"

**/
.preorder-store-modal[hidden] {
    display: none;
}

.preorder-deposit {
    margin-top:40px;
    margin-bottom:40px;
}

.preorder-store-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}
.pac-container {
    z-index: 20000 !important;
}

.preorder-store-modal__overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;

    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
}

.preorder-store-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(1100px, 100%);
    max-height: calc(100dvh - 48px);

    overflow-y: auto;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.preorder-store-modal__header {
    position: sticky;
    top: 0;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 24px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.preorder-store-modal__header h2 {
    margin: 0;
}

.preorder-store-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    padding: 0;

    border: 0;
    background: transparent;

    color: #000;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.preorder-store-modal__locator {
    min-height: 500px;
    padding: 24px;
}

.preorder-store-modal__confirmation {
    position: sticky;
    bottom: 0;
    z-index: 3;

    padding: 20px 24px;
    border-top: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.preorder-store-modal__confirmation p {
    margin: 0 0 8px;
}

.preorder-store-modal__confirmation .button {
    margin-top: 12px;
}

html.preorder-store-modal-open,
html.preorder-store-modal-open body {
    overflow: hidden;
}

@media screen and (max-width: 749px) {
    .preorder-store-modal {
        align-items: stretch;
        padding: 0;
    }

    .preorder-store-modal__dialog {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .preorder-store-modal__header {
        padding: 16px;
    }

    .preorder-store-modal__locator {
        min-height: 450px;
        padding: 12px;
    }

    .preorder-store-modal__confirmation {
        padding: 16px;
    }
}

/* =====================================================
   Preorder form layout
===================================================== */

.preorder-deposit__panel[hidden] {
    display: none;
}

.preorder-deposit__panel {
    margin-top: 20px;
}

/* Space between each form field */
.preorder-deposit__panel > .form-control {
    margin: 0;
}

.preorder-deposit__panel >
.form-control +
.form-control {
    margin-top: 24px;
}

/* Space between labels and controls */
.preorder-deposit__panel .block-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Ensure all dropdowns align */
.preorder-deposit__panel .select {
    display: block;
    width: 50%;
}

/* =====================================================
   Selected store
===================================================== */

.preorder-deposit__selected-store {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px;
    row-gap: 4px;

    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
}

.preorder-deposit__selected-store[hidden] {
    display: none;
}

.preorder-deposit__selected-store
[data-preorder-store-name] {
    grid-column: 1;
    display: block;
}

.preorder-deposit__selected-store
[data-preorder-store-address] {
    grid-column: 1;
    display: block;
    line-height: 1.5;
}

.preorder-deposit__selected-store
[data-preorder-store-change] {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
}

/* =====================================================
   Checkout button and validation message
===================================================== */

.preorder-deposit__panel[data-preorder-button] {
    width: auto;
    margin-top: 28px;
}

.preorder-deposit__message {
    margin: 10px 0 0;
    color: #c62828;
    font-weight: 600;
}

.preorder-deposit__message[hidden] {
    display: none !important;
}

/* =====================================================
   Mobile
===================================================== */

@media screen and (max-width: 749px) {
    .preorder-deposit__panel >
    .form-control +
    .form-control {
        margin-top: 20px;
    }

    .preorder-deposit__selected-store {
        grid-template-columns: 1fr;
    }

    .preorder-deposit__selected-store
    [data-preorder-store-change] {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
        margin-top: 8px;
    }

    .preorder-deposit__panel[data-preorder-button] {
        margin-top: 24px;
        width: 100%
    }
}

@media screen and (max-width: 999px) {
    .preorder-deposit__panel .select {
        display: block;
        width: 100%;
    }

    .preorder-deposit__panel [data-preorder-button] {
        width: 100%;
    }
}

.preorder-deposit__panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    margin-bottom: 24px;
    /* padding-top:30px; */
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
}

.preorder-deposit__panel-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.preorder-deposit__collapse {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;

    color: #333;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.preorder-deposit__collapse:hover {
    border-color: #333;
    background: #f4f4f4;
}

.preorder-deposit__collapse:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.preorder-deposit button[data-preorder-button] {
    margin-top:20px;
}

.preorder-deposit button.button-preorder, button.store__confirmation, button.preorder-button {
    --button-background: var(--button-background-primary) / var(--button-background-opacity, 1);
    --button-text-color: var(--button-text-primary);
    --button-outline-color: var(--button-background-primary);
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--rounded-button);
    background-color: rgb(var(--button-background));
    color: rgb(var(--button-text-color));
    text-align: center;
    font-size: var(--text-base);
    letter-spacing: var(--text-letter-spacing);
    padding-block-start: var(--spacing-4-5);
    padding-block-end: var(--spacing-4-5);
    padding-inline-start: var(--spacing-10);
    padding-inline-end: var(--spacing-10);
    font-weight: 700;
    line-height: 1.6;
    transition: background-color .15s ease-in-out, color .15s ease-in-out, box-shadow .15s ease-in-out;
    display: inline-block;
    position: relative;
}

.preorder-deposit button.button-preorder:hover, button.store__confirmation:hover, button.preorder-button:hover {
    filter: brightness(120%) !important;
}

@media and screen (min-width: 1024px){
    .preorder-deposit__panel .form-control button {
        padding-block-start: var(--spacing-4);
    }
}
