.toast-alert {
  left: 50%;
  z-index: 500;
  width: 350px;
  padding: 12px;
  position: fixed;
  overflow-y: auto;
  min-height: 48px;
  max-height: 108px;
  text-align: center;
  padding-top: 16px;
  background-color: white;
  transition: 0.6s ease-in-out;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: translate(-50%, -1000%);
  font-family: 'Hind', sans-serif;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.toast-alert.visible {
  transform: translate(-50%, -5%);
}

.toast-alert p {
  margin: 0px;
  font-size: 16px;
  line-height: 23px;
}

.toast-alert p::first-letter{
  text-transform: capitalize !important;
}

.toast-alert.success-alert {
  color: #62A262;
  background-color: #E1F7E1;
}

.toast-alert.error-alert {
  color: #DE1E1E;
  background-color: #FCEFEF;
}