.flash-container {
  position: absolute;
  top: 105px;
  right: 0px;
  min-width: 500px;
  max-width: fit-content;
}

.flash-container:hover {
  cursor: pointer;
}

.flash-container > section > h5 {
  font-size: larger;
  font-weight: bold;
}

.flash-container > section > .closing-cross {
  position: absolute;
  top: 15px;
  right: 15px;
}

.flash-success,
.flash-error,
.flash-info,
.flash-warning {
  padding: 1.25rem;
  border-radius: 5px 0px 0px 5px;
}

.flash-success {
  background-color: #4caf50;
  color: white;
}

.flash-error {
  background-color: #f44336;
  color: white;
}

.flash-info {
  background-color: #2196f3;
  color: white;
}

.flash-warning {
  background-color: #ff9800;
  color: white;
}
