body {
  margin: 0;
  padding: 0;
}

/* Floating flash message */
.flash-floating {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  padding: 1rem 2.5rem 1rem 1.5rem;
  animation: slideInRight 0.3s ease-out;
  border-radius: 2px;
}

.flash-floating .flash-close {
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.7;
  user-select: none;
}

.flash-floating:hover .flash-close {
  opacity: 1;
}

.flash-floating.notice {
  border: 1px solid #008000;
  background-color: #75c475;
  color: #014501;
}

.flash-floating.alert,
.flash-floating.error {
  border: 1px solid #ba0000;
  background-color: #f06666;
  color: #6c0000;
}

/*@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}*/
