.ww-cart-toast {
    position: fixed !important;
    bottom: 24px;
    left: 24px;
    display: flex !important;
    align-items: center !important;
    z-index: 99999;
    font-size: 14px;
    animation: wwToastIn .25s ease-out;
    margin: 0 !important;
}

.ww-cart-toast.is-hiding {
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
}

@keyframes wwToastIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
