/** Shopify CDN: Minification failed

Line 107:0 Unexpected "}"

**/
/* ================================
   COMFIDELLE Sticky ATC
================================ */

/* Sticky container */
.sticky-atc{
    position:fixed;

    left:14px;
    right:14px;
    bottom:14px;

    z-index:9999;

    background:transparent;
    border:none;
    box-shadow:none;

    padding:0;

    opacity:0;
    pointer-events:none;

    transform:translateY(20px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.sticky-atc.is-visible{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.sticky-atc.is-visible{

    opacity:1;

    transform:translateY(0);

    pointer-events:auto;

}

.sticky-atc__inner{

    width:100%;
    max-width:540px;

}

.sticky-atc__button{
  font:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    width:100%;
    height:42px;

    text-transform:uppercase;
    letter-spacing:inherit;
}

.sticky-atc__divider{

    opacity:.45;

}

.sticky-atc__text,
.sticky-atc__price{
    font:12px;
    letter-spacing: inherit;
    line-height: inherit;
}

.sticky-atc__price{
    text-transform:none;
}

@media (min-width:768px){
    .sticky-atc{
        display:none;
    }
}

/* Hide sticky when drawer is open */
.js-drawer-open .sticky-atc,
.drawer-open .sticky-atc,
.modal-open .sticky-atc,
.js-modal-open .sticky-atc{
    opacity:0 !important;
    pointer-events:none !important;
    transform:translateY(20px) !important;
}
}