﻿.cart-notification-wrapper {
    .cart-notification-wrapper {
    position: relative;
    transform: translate3d(0, 0, 1px);
    z-index: 3;
}

.cart-notification {
    background-color: rgb(var(--color-background));
    border-color: rgba(var(--color-foreground), 0.2);
    border-style: solid;
    border-width: 0 0 0.1rem;
    padding: 2.5rem 3.5rem;
    position: absolute;
    right: 0;
    transform: translateY(-100%);
    visibility: hidden;
    width: 100%;
    z-index: -1;
}

    .cart-notification.active {
        transform: translateY(0);
        visibility: visible;
        transition: transform var(--duration-default) ease, visibility 0s;
    }

.cart-notification-item {
    display: flex;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.cart-notification-item__image {
    border: 0.1rem solid rgba(var(--color-foreground), 0.03);
    margin-right: 1.5rem;
    object-fit: contain;
}

.cart-notification-item__name {
    margin-top: 0;
    margin-bottom: 0;
}

/* Add other styling rules as needed */

/* For responsiveness */
@media screen and (min-width: 750px) {
    .cart-notification {
        max-width: 36.8rem;
        right: 4rem;
    }
}


/* Default for desktop/tablet */
.cart-item__totals {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    text-align: right;
    white-space: nowrap;
}

/*.cart-item__details .cart-item__name {
    display: block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/

/* On screens smaller than 768px (mobile) */
@media (max-width: 767px) {
    .cart-item__totals {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }
/*
    .cart-item__details .cart-item__name {
        max-width: 150px;
    }*/
}


.cart {
    position: relative;
    display: block;
}

.cart__empty-text,
.is-empty .cart__contents,
cart-items.is-empty .title-wrapper-with-link,
.is-empty .cart__footer,
.is-empty .cart__items {
    display: none;
}

.is-empty .cart__empty-text,
.is-empty .cart__warnings {
    display: block;
}

.cart__warnings {
    display: none;
    text-align: center;
    padding: 3rem 0 1rem;
}

.cart__empty-text {
    margin: 4.5rem 0 2rem;
}

.cart__contents > * + * {
    margin-top: 2.5rem;
}

.cart__login-title {
    margin: 5.5rem 0 0.5rem;
}

.cart__login-paragraph {
    margin-top: 0.8rem;
}

    .cart__login-paragraph a {
        font-size: inherit;
    }

@media screen and (min-width: 990px) {
    .cart__warnings {
        padding: 7rem 0 1rem;
    }

    .cart__empty-text {
        margin: 0 0 3rem;
    }
}

cart-items {
    display: block;
}

.cart__items {
    position: relative;
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart__items--disabled {
    pointer-events: none;
}

.cart__footer {
    padding: 4rem 0 0;
}

.cart__footer-wrapper:last-child .cart__footer {
    padding-bottom: 5rem;
}

.cart__footer > div:only-child {
    margin-left: auto;
}

.cart__footer > * + * {
    margin-top: 4rem;
}

.cart__footer .discounts {
    margin-top: 1rem;
}

.cart__note {
    display: block;
}

    .cart__note label {
        display: flex;
        align-items: flex-end;
        line-height: 1;
        height: 1.8rem;
        margin-bottom: 2rem;
        color: rgba(var(--color-foreground), 0.75);
    }

    .cart__note .field__input {
        padding: 1rem;
    }

@media screen and (min-width: 750px) {
    .cart__items {
        grid-column-start: 1;
        grid-column-end: 3;
        padding-bottom: 4rem;
    }

    .cart__contents > * + * {
        margin-top: 0;
    }

    .cart__items + .cart__footer {
        grid-column: 2;
    }

    .cart__footer {
        display: flex;
        justify-content: space-between;
        border: 0;
    }

    .cart__footer-wrapper:last-child {
        padding-top: 0;
    }

    .cart__footer > * {
        width: 50rem;
    }

        .cart__footer > * + * {
            margin-left: 4rem;
            margin-top: 0;
        }
}


.cart__ctas > *:not(noscript:first-child) + * {
    margin-top: 1rem;
}

.cart__update-button {
    margin-bottom: 1rem;
}

.cart__dynamic-checkout-buttons {
    max-width: 36rem;
    margin: 0 auto;
}

.cart__blocks > * + * {
    margin-top: 1rem;
}

.cart__dynamic-checkout-buttons div[role='button'] {
    border-radius: 0 !important;
}

.cart-note__label {
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 2;
}

.tax-note {
    margin: 2.2rem 0 1.6rem auto;
    text-align: center;
    display: block;
}

.cart__checkout-button {
    max-width: 36rem;
}

.cart__ctas {
    text-align: center;
}

@media screen and (min-width: 750px) {
    .cart-note {
        max-width: 35rem;
    }

    .cart__update-button {
        margin-bottom: 0;
        margin-right: 0.8rem;
    }

    .tax-note {
        margin-bottom: 2.2rem;
        text-align: right;
    }

    [data-shopify-buttoncontainer] {
        justify-content: flex-end;
    }

    .cart__ctas {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
    }
}

discount-remove-button {
    cursor: pointer;
}

discount-input {
    max-width: 400px;
    display: block;
    margin: 0 0 0 auto;
}