@charset "UTF-8";
#md-subscribe-wizard {
    max-width: var(--global-content-width, 1280px);
    padding-left: var(--global-content-edge-padding);
    padding-right: var(--global-content-edge-padding);
    padding-top: var(--global-kb-spacing-xxl, 5rem);
    padding-bottom: var(--global-kb-spacing-xxl, 5rem);
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
}

.wizard-page-title .wizard-step-title {
    margin: 0 auto 2rem;
}

#wizard-progress {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
#wizard-progress .wizard-progress-item {
    flex: 1;
    position: relative;
    text-align: left;
    padding: 0.5rem 0 0;
}
#wizard-progress .wizard-progress-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: var(--global-palette9);
    border-radius: 0.25rem;
    z-index: -1;
}
#wizard-progress .wizard-progress-item p {
    font-size: var(--text-size-90);
    margin: 0.25rem 0 0;
    padding: 0;
}
#wizard-progress .wizard-progress-item.is-done:before {
    background-color: #ffdace;
}
#wizard-progress .wizard-progress-item.is-current:before {
    background-color: var(--global-palette1);
}

.wizard-cart-holder {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin: 0;
    border-radius: 0.5rem;
    padding: 0;
}
.wizard-cart-holder .md-steps {
    width: 70%;
}
.wizard-cart-holder .md-steps.full-width {
    width: 100%;
}
.wizard-cart-holder .md-step.checkout-step {
    width: 60rem;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
}
.wizard-cart-holder .wizard-order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 30%;
}
.wizard-cart-holder .wizard-order-sidebar.sidebar-hide {
    display: none;
}
.wizard-cart-holder .wizard-order-sidebar > * {
    width: 100%;
    border: 1px solid var(--global-border-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    background-color: var(--global-palette8);
}
.wizard-cart-holder .wizard-order-summary h2 {
    font-size: var(--text-size-300);
    margin: 0 0 1rem;
}
.wizard-cart-holder .order-summary-content {
    margin-bottom: 1rem;
}
.wizard-cart-holder .order-summary-content:empty {
    display: none;
}
.wizard-cart-holder .order-summary-content .order-summary-empty {
    margin: 0;
    font-size: var(--text-size-100);
    color: var(--global-palette5, #666);
}
.wizard-cart-holder .order-summary-content .order-summary-panel {
    font-size: var(--text-size-100);
    color: var(--global-palette3, #1a1a1a);
}
.wizard-cart-holder .order-summary-content .order-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.wizard-cart-holder .order-summary-content .order-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.wizard-cart-holder .order-summary-content .order-summary-line--subscription {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.wizard-cart-holder .order-summary-content .order-summary-line--subscription:last-child {
    border-bottom: none;
}
.wizard-cart-holder .order-summary-content .order-summary-line-body {
    flex: 1;
    min-width: 0;
}
.wizard-cart-holder .order-summary-content .order-summary-line-title {
    display: block;
    font-size: var(--text-size-100);
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}
.wizard-cart-holder .order-summary-content .order-summary-line-meta {
    margin: 0.35rem 0 0.75rem;
    font-size: var(--text-size-90);
    color: var(--global-palette5, #666);
    font-weight: 400;
    line-height: 1.35;
}
.wizard-cart-holder .order-summary-content .order-summary-line-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--text-size-100);
}
.wizard-cart-holder .order-summary-content .order-summary-line-edit {
    color: var(--global-palette1);
    font-weight: 600;
    text-decoration: none;
}
.wizard-cart-holder .order-summary-content .order-summary-line-edit:hover {
    text-decoration: underline;
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove {
    padding: 0;
    border: none;
    background: transparent;
    color: var(--global-palette5, #666);
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove:hover {
    color: var(--global-palette3);
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.wizard-cart-holder .order-summary-content .order-summary-line-prices {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}
.wizard-cart-holder .order-summary-content .order-summary-line-prices--row {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.wizard-cart-holder .order-summary-content .order-summary-price-compare {
    display: block;
    color: var(--global-palette5, #888);
    font-size: var(--text-size-100);
    font-weight: 500;
    text-decoration: line-through;
}
.wizard-cart-holder .order-summary-content .order-summary-price-current {
    display: block;
    font-size: var(--text-size-300);
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    background: none;
}
.wizard-cart-holder .order-summary-content .order-summary-line--simple .order-summary-line-title {
    font-weight: 600;
    font-size: var(--text-size-100);
}
.wizard-cart-holder .order-summary-content .order-summary-item-qty {
    opacity: 0.8;
    margin-left: 0.25rem;
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--global-palette5, #666);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: color 0.2s, background 0.2s;
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove-icon:hover {
    color: var(--global-palette1);
    background: rgba(0, 0, 0, 0.06);
}
.wizard-cart-holder .order-summary-content .order-summary-line-remove-icon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.wizard-cart-holder .order-summary-content .order-summary-divider {
    height: 0;
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.wizard-cart-holder .order-summary-content .order-summary-divider.order-summary-divider--strong {
    border-top-color: rgba(0, 0, 0, 0.12);
    margin: 1.25rem 0 1rem;
}
.wizard-cart-holder .order-summary-content .order-summary-fees {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.wizard-cart-holder .order-summary-content .order-summary-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 0.35rem;
    border-radius: 50%;
    background: var(--global-palette1);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
    cursor: help;
}
.wizard-cart-holder .order-summary-content .order-summary-totals {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.wizard-cart-holder .order-summary-content .order-summary-totals--grand {
    margin-top: 0;
}
.wizard-cart-holder .order-summary-content .order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0;
    font-size: var(--text-size-100);
}
.wizard-cart-holder .order-summary-content .order-summary-total {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: clamp(1.35rem, 1.2vw, 1.75rem);
}
.wizard-cart-holder .order-summary-content .order-summary-total .order-summary-label,
.wizard-cart-holder .order-summary-content .order-summary-total .order-summary-value {
    font-weight: 700;
}
.wizard-cart-holder .wizard-size-guide {
    border: none;
    display: none;
}
.wizard-cart-holder .wizard-size-guide.is-visible {
    display: block;
}
.wizard-cart-holder .wizard-size-guide h3 {
    font-size: var(--text-size-200);
    margin: 0 0 1rem;
}
.wizard-cart-holder .wizard-size-guide table {
    font-size: var(--text-size-90);
    margin-bottom: 0;
}
.wizard-cart-holder .wizard-size-guide table tr {
    border-bottom: 1px solid var(--global-border-color);
}
.wizard-cart-holder .wizard-size-guide table tr:last-child {
    border-bottom: none;
}
.wizard-cart-holder .wizard-size-guide table td {
    padding: 0.5rem 0;
}

.physical-products-holder,
.woocommerce ul.products li.product,
.mdigi-wc-product-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.physical-products-holder + .physical-products-holder,
.woocommerce ul.products li.product + .physical-products-holder,
.mdigi-wc-product-grid__items + .physical-products-holder {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--global-border-color);
}
.physical-products-holder .product-card,
.woocommerce ul.products li.product .product-card,
.mdigi-wc-product-grid__items .product-card {
    width: 100%;
    background-color: var(--global-palette9);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.physical-products-holder .product-card .physical-product-card-media,
.woocommerce ul.products li.product .product-card .physical-product-card-media,
.mdigi-wc-product-grid__items .product-card .physical-product-card-media {
    padding: 0;
    margin: 0;
    line-height: 0;
}
.physical-products-holder .product-card .physical-product-card-media img,
.woocommerce ul.products li.product .product-card .physical-product-card-media img,
.mdigi-wc-product-grid__items .product-card .physical-product-card-media img {
    display: block;
    width: 100%;
    height: auto;
}
.physical-products-holder .product-card .physical-product-card-content,
.woocommerce ul.products li.product .product-card .physical-product-card-content,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content {
    padding: 1.5rem;
}
.physical-products-holder .product-card .physical-product-card-content h3,
.woocommerce ul.products li.product .product-card .physical-product-card-content h3,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content h3 {
    font-size: var(--text-size-200);
    margin: 0 0 0.5rem;
}
.physical-products-holder .product-card .physical-product-card-content p,
.woocommerce ul.products li.product .product-card .physical-product-card-content p,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content p {
    font-size: var(--text-size-100);
    margin: 0 0 0.5rem;
}
.physical-products-holder .product-card .physical-product-card-content p:last-child,
.woocommerce ul.products li.product .product-card .physical-product-card-content p:last-child,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content p:last-child {
    margin-bottom: 0;
}
.physical-products-holder .product-card .physical-product-card-content p.price,
.woocommerce ul.products li.product .product-card .physical-product-card-content p.price,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content p.price {
    font-size: var(--text-size-300);
    font-weight: 600;
    margin: 0;
}
.physical-products-holder .product-card .physical-product-card-content button.md-view-product-details,
.physical-products-holder .product-card .physical-product-card-content a.product-card-details-link,
.woocommerce ul.products li.product .product-card .physical-product-card-content button.md-view-product-details,
.woocommerce ul.products li.product .product-card .physical-product-card-content a.product-card-details-link,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content button.md-view-product-details,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content a.product-card-details-link {
    border: none;
    padding: 0.25rem 0;
    text-decoration: underline;
    text-align: left;
    color: var(--global-palette3);
    background: none;
    font-size: var(--text-size-100);
    font-weight: 600;
    transition: text-decoration-offset 0.2s ease;
    display: inline-block;
}
.physical-products-holder .product-card .physical-product-card-content button.md-view-product-details:hover,
.physical-products-holder .product-card .physical-product-card-content a.product-card-details-link:hover,
.woocommerce ul.products li.product .product-card .physical-product-card-content button.md-view-product-details:hover,
.woocommerce ul.products li.product .product-card .physical-product-card-content a.product-card-details-link:hover,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content button.md-view-product-details:hover,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content a.product-card-details-link:hover {
    text-decoration-offset: 0.2rem;
    color: var(--global-palette1);
    background: none;
    box-shadow: none;
}
.physical-products-holder .product-card .physical-product-card-content .product-variations,
.woocommerce ul.products li.product .product-card .physical-product-card-content .product-variations,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content .product-variations {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}
.physical-products-holder .product-card .physical-product-card-content .product-variations li,
.woocommerce ul.products li.product .product-card .physical-product-card-content .product-variations li,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content .product-variations li {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    max-width: 2.5rem;
    aspect-ratio: 1/1;
    border-radius: 0.25rem;
}
.physical-products-holder .product-card .physical-product-card-content .product-variations li.variation-option-active,
.woocommerce ul.products li.product .product-card .physical-product-card-content .product-variations li.variation-option-active,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content .product-variations li.variation-option-active {
    border: 2px solid var(--global-palette1);
}
.physical-products-holder .product-card .physical-product-card-content .product-variations li:hover,
.woocommerce ul.products li.product .product-card .physical-product-card-content .product-variations li:hover,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content .product-variations li:hover {
    transform: scale(1.1);
}
.physical-products-holder .product-card .physical-product-card-content .product-card-button,
.woocommerce ul.products li.product .product-card .physical-product-card-content .product-card-button,
.mdigi-wc-product-grid__items .product-card .physical-product-card-content .product-card-button {
    width: 100%;
    margin-top: 1rem;
}
.physical-products-holder .product-card:not([data-product-type=variable]):hover .physical-product-card-content p.price,
.woocommerce ul.products li.product .product-card:not([data-product-type=variable]):hover .physical-product-card-content p.price,
.mdigi-wc-product-grid__items .product-card:not([data-product-type=variable]):hover .physical-product-card-content p.price {
    color: var(--global-palette1);
}
.physical-products-holder .product-card:not([data-product-type=variable]):hover .physical-product-card-content .product-card-button,
.woocommerce ul.products li.product .product-card:not([data-product-type=variable]):hover .physical-product-card-content .product-card-button,
.mdigi-wc-product-grid__items .product-card:not([data-product-type=variable]):hover .physical-product-card-content .product-card-button {
    background-color: var(--global-palette4);
}

body.has-md-product-qv {
    overflow: hidden;
}

.md-product-qv {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.md-product-qv[hidden] {
    display: none !important;
}

.md-product-qv__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.md-product-qv__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 56rem;
    max-height: min(90vh, 44rem);
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.md-product-qv__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    flex: 1;
    min-height: 0;
}

.md-product-qv__content {
    padding: 2rem 2rem 2.25rem;
    overflow-y: auto;
    background: #fff;
}

.md-product-qv__title {
    font-size: var(--text-size-300);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.md-product-qv__description {
    font-size: var(--text-size-100);
    line-height: 1.5;
    margin: 0 0 1.25rem;
}
.md-product-qv__description:empty, .md-product-qv__description[hidden] {
    display: none;
}

.md-product-qv__section {
    padding-top: 1.25rem;
    border-top: 1px solid var(--global-border-color);
}
.md-product-qv__section[hidden] {
    display: none !important;
}

.md-product-qv__section-title {
    font-size: var(--text-size-100);
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.md-product-qv__wysiwyg {
    font-size: var(--text-size-100);
    line-height: 1.5;
}
.md-product-qv__wysiwyg p {
    margin: 0 0 0.5rem;
}
.md-product-qv__wysiwyg p:last-child {
    margin-bottom: 0;
}
.md-product-qv__wysiwyg ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.md-product-qv__wysiwyg li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0 0 0.5rem;
    font-size: var(--text-size-100);
    line-height: 1.45;
}
.md-product-qv__wysiwyg li:last-child {
    margin-bottom: 0;
}
.md-product-qv__wysiwyg li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.4em;
    width: 0.45rem;
    height: 0.2rem;
    border: solid currentColor;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

.md-product-qv__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.md-product-qv__list li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0 0 0.5rem;
    font-size: var(--text-size-100);
    line-height: 1.45;
}
.md-product-qv__list li:last-child {
    margin-bottom: 0;
}
.md-product-qv__list li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0.4em;
    width: 0.45rem;
    height: 0.2rem;
    border: solid currentColor;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

.md-product-qv__media {
    position: relative;
    background: var(--global-palette9);
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.md-product-qv__media--has-img .md-product-qv__img {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.md-product-qv__img[hidden] {
    display: none !important;
}

.md-product-qv__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--global-palette3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease;
}
.md-product-qv__close:hover, .md-product-qv__close:focus-visible {
    background: #fff;
    outline: 2px solid var(--global-palette1);
    outline-offset: 2px;
}

.md-product-qv__close-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: -0.15em;
}

@media (max-width: 782px) {
    .md-product-qv {
        padding: 1rem;
        align-items: flex-end;
    }
    .md-product-qv__dialog {
        max-height: 95vh;
        border-radius: 1.25rem 1.25rem 0 0;
    }
    .md-product-qv__grid {
        grid-template-columns: 1fr;
    }
    .md-product-qv__media {
        order: -1;
        min-height: 12rem;
    }
    .md-product-qv__content {
        padding: 1.5rem;
    }
}
.wizard-step-1-subscriptions .wizard-subscription-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}
.wizard-step-1-subscriptions .wizard-subscription-card {
    border: 1px solid #e3e0de;
    border-radius: 1.5rem;
    background: #fff;
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wizard-step-1-subscriptions .wizard-subscription-card:focus-visible {
    outline: none;
    border-color: var(--global-palette1);
    box-shadow: 0 0 0 2px rgba(252, 108, 63, 0.2);
}
.wizard-step-1-subscriptions .wizard-subscription-card.is-selected {
    border: 2px solid var(--global-palette1);
}
.wizard-step-1-subscriptions .wizard-subscription-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.wizard-step-1-subscriptions .wizard-subscription-frequency {
    display: inline-flex;
    align-items: center;
    height: 2rem;
    padding: 0 0.9rem;
    border: 1px solid var(--global-palette1);
    border-radius: 999px;
    font-size: var(--text-size-90);
    font-weight: 500;
    line-height: 1;
    color: var(--global-palette1);
}
.wizard-step-1-subscriptions .wizard-subscription-selector {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid #b8b3af;
    background: #fff;
    position: relative;
}
.wizard-step-1-subscriptions .wizard-subscription-card.is-selected .wizard-subscription-selector {
    border-color: var(--global-palette1);
}
.wizard-step-1-subscriptions .wizard-subscription-card.is-selected .wizard-subscription-selector::after {
    content: "";
    position: absolute;
    inset: 0.22rem;
    border-radius: 50%;
    background: var(--global-palette1);
}
.wizard-step-1-subscriptions .wizard-subscription-name {
    font-size: var(--text-size-200);
    margin: 0;
}
.wizard-step-1-subscriptions .wizard-subscription-description {
    font-size: var(--text-size-200);
    line-height: 1.45;
    margin: 1rem 0 1.75rem;
    color: #202020;
    max-width: 36ch;
}
.wizard-step-1-subscriptions .wizard-subscription-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.wizard-step-1-subscriptions .wizard-subscription-price {
    margin: 0;
    font-size: var(--text-size-400);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.wizard-step-1-subscriptions .wizard-subscription-billing {
    font-size: 0.62em;
    font-weight: 400;
}
.wizard-step-1-subscriptions .wizard-subscription-save-badge {
    display: inline-flex;
    align-items: center;
    height: 2.2rem;
    padding: 0 0.8rem;
    border-radius: 0.6rem;
    background: #d4e6de;
    color: #017f55;
    font-size: var(--text-size-100);
    font-weight: 600;
    white-space: nowrap;
}
.wizard-step-1-subscriptions .wizard-subscription-included {
    margin-top: 0.25rem;
}
.wizard-step-1-subscriptions .wizard-subscription-included-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0.35rem 0;
    border: none;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: inherit;
}
.wizard-step-1-subscriptions .wizard-subscription-included-toggle:focus-visible {
    border-radius: 0.25rem;
}
.wizard-step-1-subscriptions .wizard-subscription-included-toggle:focus {
    outline: none;
    box-shadow: none;
}
.wizard-step-1-subscriptions .wizard-subscription-included-label {
    margin: 0;
    font-size: var(--text-size-200);
    font-weight: 600;
}
.wizard-step-1-subscriptions .wizard-subscription-chevron {
    flex-shrink: 0;
    width: 0.9rem;
    height: 0.9rem;
    border-right: 2px solid var(--global-palette1);
    border-bottom: 2px solid var(--global-palette1);
    transform: rotate(45deg);
    margin-right: 0.15rem;
    transition: transform 0.2s ease;
}
.wizard-step-1-subscriptions .wizard-subscription-included-toggle.is-open .wizard-subscription-chevron {
    transform: rotate(-135deg);
    margin-top: 0.35rem;
}
.wizard-step-1-subscriptions .wizard-subscription-included-panel {
    padding-top: 0.5rem;
}
.wizard-step-1-subscriptions .wizard-subscription-features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wizard-step-1-subscriptions .wizard-subscription-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: var(--text-size-100);
}
.wizard-step-1-subscriptions .wizard-subscription-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}
.wizard-step-1-subscriptions .wizard-subscription-features li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .wizard-step-1-subscriptions .wizard-subscription-grid {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    .wizard-step-1-subscriptions .wizard-subscription-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
}

.wizard-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}
.wizard-navigation button {
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--global-palette1);
    color: var(--global-palette9);
}
.wizard-navigation button.action-back {
    background-color: rgba(0, 0, 0, 0);
    color: var(--global-palette3);
    border: 1px solid var(--global-palette3);
}
.wizard-navigation button.action-back:hover {
    box-shadow: none;
    background-color: var(--global-palette4);
    color: var(--global-palette9);
    border-color: var(--global-palette4);
}
.wizard-navigation button.action-skip {
    background-color: var(--global-palette4);
    color: var(--global-palette9);
    margin-right: 1rem;
    border: 1px solid var(--global-palette4);
}
.wizard-navigation button.action-skip:hover {
    background-color: rgba(0, 0, 0, 0);
    color: var(--global-palette3);
    border-color: var(--global-palette4);
    box-shadow: none;
}
.wizard-navigation .wizard-navigation-buttons-forward.is-hidden {
    display: none;
}

.wizard-checkout-form {
    --md-checkout-gap: 1.5rem;
    --md-checkout-card-border: #dfdfdf;
    --md-checkout-row-border: #ececec;
}
.wizard-checkout-form .woocommerce {
    margin: 0;
}
.wizard-checkout-form form.checkout {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr);
    gap: var(--md-checkout-gap);
    align-items: start;
}
.wizard-checkout-form .md-checkout-layout {
    width: 100%;
}
.wizard-checkout-form #customer_details,
.wizard-checkout-form #order_review_heading,
.wizard-checkout-form #order_review,
.wizard-checkout-form .md-checkout-right {
    min-width: 0;
}
.wizard-checkout-form #customer_details {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
}
.wizard-checkout-form .woocommerce-additional-fields {
    display: none;
}
.wizard-checkout-form #order_review_heading {
    display: none;
}
.wizard-checkout-form #order_review {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    float: none;
    clear: none;
    margin-top: 0;
    padding-left: 0;
}
.wizard-checkout-form .woocommerce-checkout-review-order {
    width: 100%;
    float: none;
    max-width: none;
}
.wizard-checkout-form .md-checkout-right {
    display: flex;
    flex-direction: column;
    gap: var(--md-checkout-gap);
    width: 100%;
}
.wizard-checkout-form .md-card,
.wizard-checkout-form .md-order-summary-card,
.wizard-checkout-form .md-payment-card {
    background: #fff;
    border: 1px solid var(--md-checkout-card-border);
    border-radius: 1.125rem;
    padding: 1.625rem;
}
.wizard-checkout-form .md-checkout-left .md-card + .md-card {
    margin-top: var(--md-checkout-gap);
}
.wizard-checkout-form .md-order-summary-card {
    margin-bottom: 0;
    width: 100%;
}
.wizard-checkout-form .md-order-summary-card table.shop_table {
    border-top: none;
    margin: 0;
}
.wizard-checkout-form .md-order-summary-card table.shop_table thead {
    display: none;
}
.wizard-checkout-form .md-payment-card {
    width: 100%;
}
.wizard-checkout-form .md-card h2,
.wizard-checkout-form #order_review_heading {
    font-size: clamp(2rem, 2.25vw, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}
.wizard-checkout-form .woocommerce-billing-fields > h3,
.wizard-checkout-form .woocommerce-shipping-fields > h3 {
    display: none;
}
.wizard-checkout-form .woocommerce form .form-row {
    padding: 0;
    margin: 0 0 0.95rem;
}
.wizard-checkout-form .woocommerce form .form-row-first,
.wizard-checkout-form .woocommerce form .form-row-last {
    width: calc(50% - 0.5rem);
}
.wizard-checkout-form .woocommerce form .form-row label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    color: var(--global-palette3);
}
.wizard-checkout-form .woocommerce form .form-row .required {
    color: var(--global-palette1);
    font-weight: 600;
}
.wizard-checkout-form .woocommerce form .form-row input.input-text,
.wizard-checkout-form .woocommerce form .form-row select,
.wizard-checkout-form .woocommerce form .form-row textarea {
    width: 100%;
    min-height: 3rem;
    border: 1px solid #d8d8d8;
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.7rem 0.875rem;
    font-size: 1rem;
    line-height: 1.35;
}
.wizard-checkout-form .woocommerce form .form-row input.input-text:not(:-moz-placeholder-shown), .wizard-checkout-form .woocommerce form .form-row select:not(:-moz-placeholder-shown), .wizard-checkout-form .woocommerce form .form-row textarea:not(:-moz-placeholder-shown) {
    color: var(--global-palette3);
}
.wizard-checkout-form .woocommerce form .form-row input.input-text:not(:placeholder-shown),
.wizard-checkout-form .woocommerce form .form-row select:not(:placeholder-shown),
.wizard-checkout-form .woocommerce form .form-row textarea:not(:placeholder-shown) {
    color: var(--global-palette3);
}
.wizard-checkout-form .woocommerce form .form-row textarea {
    min-height: 6.5rem;
}
.wizard-checkout-form .woocommerce form .form-row input.input-text:focus,
.wizard-checkout-form .woocommerce form .form-row select:focus,
.wizard-checkout-form .woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--global-palette1);
    box-shadow: 0 0 0 2px rgba(252, 108, 63, 0.12);
}
.wizard-checkout-form .woocommerce form .form-row.woocommerce-invalid input.input-text,
.wizard-checkout-form .woocommerce form .form-row.woocommerce-invalid select,
.wizard-checkout-form .woocommerce form .form-row.woocommerce-invalid textarea {
    border-color: #cc3c3c;
}
.wizard-checkout-form .woocommerce form .form-row.woocommerce-validated input.input-text,
.wizard-checkout-form .woocommerce form .form-row.woocommerce-validated select {
    border-color: #58a27c;
}
.wizard-checkout-form #ship-to-different-address {
    margin: 0;
    font-size: inherit;
}
.wizard-checkout-form #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    margin: 0;
}
.wizard-checkout-form #ship-to-different-address-checkbox,
.wizard-checkout-form .woocommerce form .form-row input[type=checkbox] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--global-palette1);
}
.wizard-checkout-form .woocommerce-checkout-review-order-table {
    margin: 0;
    border: 0;
}
.wizard-checkout-form .woocommerce table.shop_table thead th {
    background: transparent;
    border-top: 0;
    border-bottom: 1px solid var(--md-checkout-row-border);
    padding: 0 0 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--global-palette5);
}
.wizard-checkout-form .woocommerce table.shop_table tbody td,
.wizard-checkout-form .woocommerce table.shop_table tbody th,
.wizard-checkout-form .woocommerce table.shop_table tfoot td,
.wizard-checkout-form .woocommerce table.shop_table tfoot th {
    background: transparent;
    border-top: 1px solid var(--md-checkout-row-border);
    padding: 0.85rem 0;
}
.wizard-checkout-form .woocommerce table.shop_table th {
    font-weight: 600;
}
.wizard-checkout-form .woocommerce table.shop_table .product-name {
    font-weight: 500;
}
.wizard-checkout-form .woocommerce table.shop_table .cart-subtotal td,
.wizard-checkout-form .woocommerce table.shop_table .order-total td,
.wizard-checkout-form .woocommerce table.shop_table .order-total th {
    font-weight: 700;
}
.wizard-checkout-form .woocommerce table.shop_table .order-total td,
.wizard-checkout-form .woocommerce table.shop_table .order-total th {
    font-size: var(--text-size-100);
    line-height: 1.05;
    letter-spacing: -0.02em;
    padding-top: 1rem;
}
.wizard-checkout-form .md-payment-card #payment {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}
.wizard-checkout-form .woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    margin: 0 0 1rem;
    border: 0;
}
.wizard-checkout-form .woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--md-checkout-card-border);
    border-radius: 0.75rem;
    background: #fdfdfd;
}
.wizard-checkout-form .woocommerce-checkout #payment ul.payment_methods li.wc_payment_method + li.wc_payment_method {
    margin-top: 0.75rem;
}
.wizard-checkout-form .woocommerce-checkout #payment div.payment_box {
    background: transparent;
    padding: 0.75rem 0 0;
    margin: 0;
}
.wizard-checkout-form .woocommerce-checkout #payment div.payment_box::before {
    display: none;
}
.wizard-checkout-form .woocommerce-checkout #payment .wc-stripe-elements-field,
.wizard-checkout-form .woocommerce-checkout #payment .StripeElement {
    border: 1px solid #d8d8d8;
    border-radius: 0.5rem;
    background-color: #fff;
    min-height: 2.9rem;
    padding: 0.7rem 0.875rem;
    box-shadow: none;
}
.wizard-checkout-form .woocommerce-checkout #payment .wc-stripe-elements-field:focus-within,
.wizard-checkout-form .woocommerce-checkout #payment .StripeElement--focus {
    border-color: var(--global-palette1);
    box-shadow: 0 0 0 2px rgba(252, 108, 63, 0.12);
}
.wizard-checkout-form .woocommerce-checkout #payment .wc-stripe-elements-field iframe {
    min-height: 1.2rem !important;
}
.wizard-checkout-form .woocommerce-checkout #payment .wc-stripe-save-source {
    margin-top: 0.85rem;
}
.wizard-checkout-form .woocommerce-checkout #payment .wc-stripe-save-source label {
    font-size: 0.92rem;
    line-height: 1.35;
}
.wizard-checkout-form .woocommerce-checkout #payment .form-row.place-order {
    padding-top: 0.25rem;
    margin-top: 1rem;
    margin-bottom: 0;
    border-top: none;
}
.wizard-checkout-form .woocommerce-checkout #payment #place_order {
    width: 100%;
    min-height: 3.25rem;
    border-radius: 0.55rem;
    border: 1px solid var(--global-palette1);
    background: var(--global-palette1);
    color: var(--global-palette9);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 1rem 0 0;
}
.wizard-checkout-form .woocommerce-checkout #payment #place_order:hover {
    background: var(--global-palette4);
    border-color: var(--global-palette4);
}
.wizard-checkout-form .woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
    font-size: var(--text-size-90);
    line-height: 1.45;
    color: var(--global-palette3);
}
.wizard-checkout-form .woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
    color: var(--global-palette1);
    text-decoration: none;
}
.wizard-checkout-form .woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a:hover {
    text-decoration: underline;
}
.wizard-checkout-form .woocommerce-checkout .woocommerce-privacy-policy-text {
    display: none !important;
}
.wizard-checkout-form .woocommerce-checkout .md-checkout-age-terms {
    margin-top: 0 !important;
    margin-bottom: 0;
    font-size: var(--text-size-90);
    line-height: 1.45;
    color: var(--global-palette3);
}
.wizard-checkout-form .woocommerce-checkout .md-checkout-age-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
}
.wizard-checkout-form .woocommerce-checkout .md-checkout-age-terms input[type=checkbox] {
    flex-shrink: 0;
    margin: 0.15rem 0 0;
    accent-color: var(--global-palette1);
}
.wizard-checkout-form .woocommerce-checkout .md-checkout-age-terms a {
    color: var(--global-palette1);
    text-decoration: none;
}
.wizard-checkout-form .woocommerce-checkout .md-checkout-age-terms a:hover {
    text-decoration: underline;
}
.wizard-checkout-form .woocommerce-billing-fields,
.wizard-checkout-form .woocommerce-shipping-fields,
.wizard-checkout-form .woocommerce-checkout-review-order-table,
.wizard-checkout-form #payment {
    margin-bottom: 1.5rem;
}
@media (max-width: 980px) {
    .wizard-checkout-form form.checkout {
        grid-template-columns: 1fr;
    }
    .wizard-checkout-form #order_review_heading,
.wizard-checkout-form #order_review {
        grid-column: 1;
        grid-row: auto;
    }
    .wizard-checkout-form #order_review {
        margin-top: 0;
    }
}
@media (max-width: 680px) {
    .wizard-checkout-form .woocommerce form .form-row-first,
.wizard-checkout-form .woocommerce form .form-row-last {
        width: 100%;
    }
    .wizard-checkout-form .md-card,
.wizard-checkout-form .md-order-summary-card,
.wizard-checkout-form .md-payment-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }
    .wizard-checkout-form .woocommerce table.shop_table .order-total td,
.wizard-checkout-form .woocommerce table.shop_table .order-total th {
        font-size: 2.1rem;
    }
}
@media screen and (min-width: 1025px) {
    .wizard-checkout-form form.checkout .col2-set {
        float: none;
        clear: both;
        width: 100%;
    }
}