.sticky-cart {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    box-shadow: 0 -2px 4px 0 rgba(0,0,0,.16);
    background: white;
    padding: 12px 16px;
    z-index: 99998;
    display: none;
}

.sticky-cart.sc-show {
    display: block;
}

.sc-close {
    background: black;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    bottom: 100%;
    left: 4px;
}

.sc-purchase {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.sc-price {
    font-size: 20px;
    font-weight: 700;
}

.sc-card-product {
    display: flex;
    gap: 16px;
    background: #f4fbfb;
    padding: 16px;
}

.sc-card-title {
    font-size: 16px;
}

.sc-card-price {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

.sc-variation {
    margin-bottom: 16px;
}

.sc-variation:last-child {
    margin-bottom: 0;
}

.sc-variation-name {
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 4px;
}

.sc-variation select {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #555555;
    background-color: #fff;
    border: 1px solid #ccc;
}

.sc-section {
    margin-top: 16px;
}

/*
#n_product #fb-root > .fb-customerchat {
    opacity: 0 !important;
}

#n_product #fb-root .fb_dialog iframe {
    bottom: 80px !important;
}
*/

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

    .sticky-cart.sc-show {
        display: none;
    }
}