.toastify {
  padding: 15px 20px;
  display: inline-block;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 102;
  height: 45px;
}
.toastify.on {
  opacity: 1;
}
.toast-close {
  background: 0 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.6;
  padding: 0 5px;
  width: 30px;
  height: 30px;
  margin-top: -10px;
  margin-right: -10px;
  margin-left: 8px;
}
.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.toastify-right {
  right: 15px;
}
.toastify-left {
  left: 15px;
}
.toastify-top {
  top: -150px;
}
.toastify-bottom {
  bottom: -150px;
}
.toastify-rounded {
  border-radius: 25px;
}
.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}
.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}
.tSuccess {
  background-color: #508eff;
  background-image: -webkit-linear-gradient(90deg, #508eff 0%, #1d73ff 100%);
  background-image: linear-gradient(90deg, #508eff 0%, #1d73ff 100%);
  color: #fff;
}
.tError {
  background-color: #ec2a2a;
  background: -webkit-linear-gradient(90deg, #ec2a2a 0%, #c71e38 100%);
  background: linear-gradient(90deg, #ec2a2a 0%, #c71e38 100%);
  color: #fff;
}
.tWarning {
  background-color: #ec992a;
  background: -webkit-linear-gradient(90deg, #ec992a 0%, #f08f0a 100%);
  background: linear-gradient(90deg, #ec992a 0%, #f08f0a 100%);
  color: #fff;
}
.tInfo {
  background-color: #ecf5ff;
  background-image: -webkit-linear-gradient(90deg, #ecf5ff 0%, #eaebf0 100%);
  background-image: linear-gradient(90deg, #ecf5ff 0%, #eaebf0 100%);
  color: #455664;
}
@media only screen and (max-width: 360px) {
  .toastify-left,
  .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}
