﻿.cart
{
    position: relative;
    display: block;
}
cart-items
{
    display: block;
}
.cart-title
{
    margin-bottom: 2rem;
}
.is-empty .cart-title
{
    display: none;
}
@media(min-width: 820px)
{
    .cart-title
    {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2.5rem;
    }
    .is-empty .cart-title
    {
        display: none;
    }
}
.cart-warnings
{
    display: none;
    text-align: center;
}
.is-empty .cart-warnings
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cart-empty-text
{
    display: none;
}
.is-empty .cart-empty-text
{
    display: block;
}
.cart-login-title
{
    margin-top: 2.5rem;
}
.is-empty .cart-contents, .is-empty .cart-footer
{
    display: none;
}
.main-cart-footer
{
    padding-top: 0;
}
.main-cart-footer.is-empty
{
    padding: 0;
}
.cart-footer
{
    margin-left: auto;
}
.cart-footer .discounts
{
    margin-bottom: 1rem;
}
@media(min-width: 820px)
{
    .cart-footer
    {
        display: flex;
        justify-content: space-between;
        gap: var(--grid-vertical-spacing);
    }
    .cart-footer .cart-blocks
    {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .cart-footer .cart-note
    {
        display: flex;
        flex-direction: column;
        width: 35rem;
    }
}
.cart-note
{
    display: block;
    height: fit-content;
    margin-bottom: 2rem;
}
.cart-note .field-input
{
    height: 100%;
}
.cart-note .text-area
{
    resize: vertical;
    border: 1px solid var(--color-border);
    margin-top: .5rem;
    min-height: 150px;
}
@media(min-width: 820px)
{
    .cart-note
    {
        margin-bottom: 0;
    }
}
.totals
{
    display: flex;
}
.totals .totals-subtotal, .totals .totals-subtotal-value
{
    margin-bottom: 0;
}
.totals .totals-subtotal-value
{
    margin-left: 1rem;
}
@media(min-width: 820px)
{
    .totals
    {
        justify-content: flex-end;
    }
}
.tax-note
{
    display: block;
    margin: 1rem 0 1.5rem auto;
}
@media(min-width: 820px)
{
    .tax-note
    {
        text-align: right;
    }
}
.cart-ctas
{
    max-width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
    text-align: center;
}
.cart-ctas button
{
    width: 100%;
    margin-bottom: .5rem;
}
@media(min-width: 540px)
{
    .cart-ctas
    {
        margin-bottom: 1rem;
    }
}
@media(min-width: 820px)
{
    .cart-ctas
    {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        max-width: 20rem;
        width: 100%;
        gap: 1rem;
        margin-left: .625rem;
        margin-bottom: .5rem;
    }
}
.cart-update-button
{
    margin-bottom: 1rem;
}
@media(min-width: 820px)
{
    .cart-update-button
    {
        margin-bottom: 0;
        margin-right: .5rem;
    }
}
.cart-dynamic-checkout-buttons
{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}
@media(min-width: 820px)
{
    .cart-dynamic-checkout-buttons
    {
        max-width: 20rem;
    }
}
.cart-dynamic-checkout-buttons .shopify-cleanslate li
{
    flex-basis: 100%!important;
}
.cart-checkout-button
{
    max-width: 100%;
}
@media(min-width: 820px)
{
    .cart-checkout-button
    {
        max-width: 20rem;
    }
}
.cart-footer-wrapper+.shopify-section .stacked-component.theme-light
{
    padding-top: 0;
}
.discounts-discount
{
    display: flex;
    align-items: center;
}
.discounts-discount svg
{
    color: var(--color-primary);
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5rem;
}
.discounts-discount-position
{
    justify-content: center;
}
@media(min-width: 820px)
{
    .discounts-discount-position
    {
        justify-content: flex-end;
    }
}