.toast-container {
  position: fixed;
  bottom: -140px;
  height: 70px;
  width: 300px;
  max-width: 400px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right,rgb(229, 226, 226),#fff);
/*  background:  #fff;*/
  padding: 0 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px -4px rgba(100, 100, 100, 0.1);
  border:1px dashed #999;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1500ms ease;
  z-index: 99999 !important;
}

.toast-container img{
  width: 50px  !important;
  height: 50px !important;
  margin-right: 15px;
  margin-top:10px;
}

.toast-container.active {
  bottom: 30px;  
}

.text-content .customer_name  {
/*  color: orange;*/
  display: block;
  line-height: 12px;
  font-size: 14px;
}

.text-content .text-text-2, .text-content .customers_product{
  font-size: 12px;
}

.text-content .time  {
  font-size: 10px !important;
  display: block;
}

@media (max-width: 992px) {
  .toast-container {
    display: none;
  }

}