/*========================================================
        DARK LAYOUT
=========================================================*/

#toast-container > div {
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  filter: alpha(opacity=90);
  max-width: none;
}

#toast-container > div:hover {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
}

.toast {
  background-color: #3490dc;
}

.toast-success {
  background-color: #38c172;
}

.toast-error {
  background-color: #e3342f;
}

.toast-info {
  background-color: #6cb2eb;
}

.toast-warning {
  background-color: #f6993f;
}

