@media only screen and (min-width: 601px) {
  .Toastify__toast-container--top-center {
   
    width: 75% !important;
  }
}
@media only screen and (max-width: 600px) {
  .Toastify__toast-container--top-center {
   
    width: 100% !important;
  }
}

.Toastify__toast-body {
  font-size: 14px;
  line-height: 20px;
  padding: 0px;
  width: 100%;
  font-weight: 400;
}
.Toastify__toast {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding-left: 20px !important;
  padding-right: 15px !important;
}
.Toastify__toast-icon {
  display: none !important;
}

.Toastify__toast--success {
  border: 1px solid #19af66 !important;
  background: #19af66 !important;
  color: #fff !important;
}
.Toastify__toast--success::before {
  background-image: url("/images/toater-success.png");
  background-size: 20px 20px;
  display: inline-flex;
  align-self: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 20px;
  content: "";
}

.Toastify__toast--error {
  border: 1px solid #f35746 !important;
  background: #f35746 !important;
  color: #fff !important;
}
.Toastify__toast--error::before {
  background-image: url("/images/alert.png");
  background-size: 20px 20px;
  display: inline-flex;
  align-self: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 20px;
  content: "";
}

.Toastify__toast--warning {
  border: 1px solid #f8bf00 !important;
  background: #f8bf00 !important;
  color: #fff !important;
}
.Toastify__toast--warning::before {
  background-image: url("/images/warning.png");
  background-size: 20px 20px;
  display: inline-flex;
  align-self: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 20px;
  content: "";
}

.Toastify__toast--info {
  border: 1px solid #fafafa !important;
  background: #fafafa !important;
  color: #231f20 !important;
}
.Toastify__toast--info::before {
  background-image: url("/images/information.png");
  background-size: 20px 20px;
  display: inline-flex;
  align-self: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 20px;
  content: "";
}
/* .Toastify__progress-bar--wrp{display: none;} */
