.site-wide-fulfillment__container {
    display: flex;
    flex-direction: column;
    gap: var(--space-x3);
}

.fulfillment-select-container {
    display: flex;
    gap: var(--space);
    width: 100%;
}

.fulfillment-option {
    position: relative;
    display: grid;
    grid-template-areas: "title button" "value button";
    grid-template-columns: 1fr auto;
}

.fulfillment-option__title {
    grid-area: title;
    font-size: var(--theme-font-size-minus-2);
}

.fulfillment-option__button-wrapper {
    grid-area: button;
}

.fulfillment-option .ui-loader--overlay {
    min-height: 0;
}

.fulfillment-option__value {
    grid-area: value;
    font-weight: var(--theme-font-weight-medium);
}



