/** Shopify CDN: Minification failed

Line 19:20 Expected identifier but found whitespace
Line 19:22 Unexpected "{"
Line 19:31 Expected ":"
Line 19:49 Expected ":"
Line 20:23 Expected identifier but found whitespace
Line 20:25 Unexpected "{"
Line 20:34 Expected ":"
Line 20:52 Expected ":"

**/
    #md-sticky-atc {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        padding-top: {{ section.settings.pt }}rem;
        padding-bottom: {{ section.settings.pb }}rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(100%);
        transition: all .15s ease-out;
        border-top: 0.1rem solid rgba(var(--color-foreground),.08);
    }
    #md-sticky-atc.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    #md-sticky-atc .page-width-inner {
    }
    .sticky-add-to-cart_select .select__select{
        font-size: 15px;
    }
    #md-sticky-atc .product-content {
        display: flex;
        align-items: center;
        padding-bottom: .5rem;
    }
    #md-sticky-atc .product-content .product__title {
        margin: 0 0 .5rem;
    }
    #md-sticky-atc .product-content .price {
        display: flex;
        align-items: center;
    }
    #md-sticky-atc .product-content img {
        margin-right: .75rem;
    }
    #md-sticky-atc .product-form {
        flex-shrink: 0;
    }
    #md-sticky-atc .product-form .select {
        flex-shrink: 0;
        width: auto;
        flex-grow: 1;
        max-width: 100%;
    }
    #md-sticky-atc .product-form .quantity-input-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }
    #md-sticky-atc .product-form .quantity {
        flex-shrink: 0;
        width: 100%;
    }
    #md-sticky-atc .product-form button[name="add"] {
        flex-shrink: 0;
        flex-grow: 1;
        margin: 0;
    }

    @media (min-width: 375px){
        #md-sticky-atc .product-form .quantity{
            width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
        }
    }

    @media (min-width: 992px) {
        #md-sticky-atc .product-form .select {
            flex-grow: 0;
        }
        #md-sticky-atc .product-form .select {
            max-width: 50%;
        }
        #md-sticky-atc .product-content {
            padding-bottom: 0;
            padding-right: 2rem;
        }
        #md-sticky-atc .product-form .quantity {
            display: flex;
        }
        #md-sticky-atc .product-form button[name="add"] {
            flex-grow: 0;
        }
        #md-sticky-atc .page-width-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    }
    @media (max-width: 800px) {
        #md-sticky-atc {
            display: block;
        }
    }