.toast-notification{
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  min-height: 50px;
}

.toast-notification-type-info{
  background: #ffeed7;
  border: 1px solid #ffbb42;
}

.toast-notification-icon, .toast-notification-close{
  display: flex;
  align-items: center;
}

.toast-notification-icon{
  max-width: 15%;
}

.toast-notification-close{
  max-width: 10%;
}

.toast-notification-type-info .toast-notification-icon i{
  color: #ffbb42;
}

.toast-notification-icon i{
  font-size: 3.2rem;
}

.toast-notification-close i{
  color: #515151;
}

.toast-notification-body {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toast-notification-title{
  font-size: 1.2rem;
  font-weight: 700;
}

.toast-notification-body p{
  margin: 0;
  line-height: 20px;
}

.toast-notification-message{
  font-size: 0.9rem;
  color: #444;
  line-height: 1.2rem !important;
  padding-top: 4px;
}

/* .toast-notification-slider{
  display: none; 
  width: 300px;
  height: 150px;
  background: #3498db;
  color: white;
  text-align: center;
  line-height: 150px;
  position: absolute;
  bottom: 0;
} */

@media (min-width: 768px) {
  .toast-notification {
    margin: 10px 0px;
  }

  .toast-notification-message{
    font-size: 0.7rem;
  }

  .toast-notification-title{
    font-size: 1rem;
  }
}