#sticky-checkout-button {
    display: none;
}

.cart-list .cart-product .mb-2.bundle_size {
    margin-top: -1rem;
}
.cart-list .cart-product .mb-2.bundle_color {
    margin-top: -1rem;
}

@media only screen and (max-width: 1023px) {
    #sticky-checkout-button {
        background: #fff;
        bottom: 0;
        box-shadow: rgba(0, 0, 0, 0.125) 0px -4px 8px 0px;
        display: block !important;
        left: 0;
        padding: 10px 15px 0px;
        position: fixed;
        transform: translate3d(0px, 0px, 0px);
        transition: transform 0.3s ease-out 0s;
        width: 100%;
        z-index: 1;
    }

    #sticky-checkout-button.not-visible {
        transform: translate3d(0px, 110%, 0px);
    }

    #sticky-checkout-button .cart-summary {
        display: flex;
        font-weight: 700;
        font-size: 14px;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    #sticky-checkout-button button {
        margin: 0 0 1rem;
        width: 100%;
    }

    #sticky-checkout-button .cta--primary {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    #sticky-checkout-button .btn {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    #sticky-checkout-button.s-container {
        padding-left: 10.5% !important;
        padding-right: 10.5% !important;
    }
}