.toast {
  background-color: #0062ac;
  color: white; }
  .toast.success {
    background-color: #68A12B; }
  .toast.warning {
    background-color: #D27E2A; }
  .toast.danger {
    background-color: #b6052a; }
  .toast .toast-header {
    background-color: transparent; }
  .toast .toast-body {
    background-color: rgba(255, 255, 255, 0.2); }

.toast-header, .toast-header .close {
  color: white; }

.toast-header .close {
  text-shadow: none; }

.toast-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around; }
  .toast-header .libelle {
    flex: 1;
    margin: 0 .5rem;
    line-height: 1.25;
    display: flex;
    align-items: center;
    font-weight: bold; }
  .toast-header .aside {
    flex: none; }
  .toast-header .am-icon {
    top: -1px; }
  .toast-header .close {
    margin-left: .5rem;
    position: relative;
    top: -1px; }

.notification-group {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1070;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  padding-bottom: 0.5rem;
  pointer-events: none; }
  .notification-group .toast {
    pointer-events: auto; }
  .notification-group, .notification-group.top {
    justify-content: flex-start; }
  .notification-group.bottom {
    justify-content: flex-end; }
  .notification-group.middle {
    justify-content: center; }
  .notification-group, .notification-group.right {
    right: 0;
    left: auto; }
  .notification-group.left {
    left: 0;
    right: auto; }
  .notification-group.center {
    left: 0;
    right: 0;
    align-items: center; }
