/*=========================================
MASB PREMIUM STICKY CHECKOUT
=========================================*/

.masb-sticky-placeholder{
    display:none;
    width:100%;
}

#masb-sticky-checkout{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;

    padding:18px 24px;

    transition:none;
}

#masb-sticky-checkout.is-fixed{

    position:fixed;

    left:0;

    right:0;

    bottom:0;

    margin:0 auto;

    width:100%;

    max-width:1320px;

    transform:none;

    z-index:9999;

    box-shadow:0 -8px 20px rgba(0,0,0,.10);

}

#masb-sticky-checkout.is-stop{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

}

.masb-bottom-left,
.masb-bottom-right{

    display:flex;
    align-items:center;
    gap:18px;

}

@media (max-width:768px){

    #masb-sticky-checkout{

        flex-direction:column;
        align-items:stretch;
        gap:14px;

    }

    .masb-bottom-left,
    .masb-bottom-right{

        width:100%;
        justify-content:space-between;

    }

}
#masb-sticky-checkout-clone{

    position:fixed;

    left:50%;

    transform:translateX(-50%);

    bottom:20px;

    width:calc(100% - 40px);

    max-width:1320px;

    z-index:99999;

    background:#fff;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.12);

    display:none;

}

#masb-sticky-checkout-clone.show{

    display:flex;

}

@media(max-width:767px){

    #masb-sticky-checkout-clone{

        left:0;

        right:0;

        bottom:0;

        width:100%;

        max-width:100%;

        transform:none;

        border-radius:18px 18px 0 0;

    }

}