.toast-content {
  position: fixed;
  bottom: -100px;
  left: 50%;
  width: 85%;
  max-width: 400px;
  height: 50px;
  padding: 0 15px;
  transform: translateX(-50%);
  background-color: #FFF;
  border-radius: 30px;
  transition: .5s ease;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  -o-transition: .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.toast-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.toast-content.success {
  background-color: var(--green);
  color: #FFF;
}

.toast-content.error {
  background-color: var(--red);
  color: #FFF;
}