/* Toasts Container */
.toast-container {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px;
}

/* Types */
.toast-header.bg-primary,
.toast-header.bg-secondary,
.toast-header.bg-success,
.toast-header.bg-danger,
.toast-header.bg-info,
.toast-header.bg-dark {
  color: #fff;
}
.toast-header.bg-warning,
.toast-header.bg-light,
.toast-header.bg-white,
.toast-header.bg-transparent {
  color: #343a40;
}
.toast-header.bg-primary > .close,
.toast-header.bg-secondary > .close,
.toast-header.bg-success > .close,
.toast-header.bg-danger > .close,
.toast-header.bg-info > .close,
.toast-header.bg-dark > .close {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
}
.toast-header.bg-warning > .close,
.toast-header.bg-light > .close,
.toast-header.bg-white > .close,
.toast-header.bg-transparent > .close {
  color: #343a40;
}
