/****************************
 * AJAX add to cart
*****************************/
/* Noti popup (for Wishlist and Add to cart) */
.vii-noti-popup-message {
    position:fixed; bottom:40px; top:auto; left:50%; z-index:10001;
    transform:translateX(-50%); transition:all .5s ease;
    margin:0; box-shadow:0 0 20px 0 rgba(0, 0, 0, .1); line-height:1.5; font-weight:500;
    border-radius:4px; border:1px solid #e0e0e0; background:#fff; padding:20px 30px;
    display:block; opacity:1; width:auto; max-width:calc(100vw - 40px); text-align:center;
    color:var(--vii-color-primary);
}
.vii-noti-popup-message:not(.vii-noti-popup-show) {opacity:0;visibility:hidden;bottom:-100px;}
@media only screen and (max-width:480px) {
    .vii-noti-popup-message {width:100%;}
}