/* The alert message box */
.alert {
  padding: 1vw 2vh;
  color: white;
  margin-bottom: 15px;
  opacity: 1;
  z-index: 500;
  transition: opacity 0.6s;
  position: absolute;
  min-width: 25vw;
  right: 1vw;
}

.confirm {
  padding: 1vw 2vh;
  opacity: 1;
  z-index: 500;
  transition: opacity 0.6s;
  position: absolute;
  min-width: 25vw;
  left: 50%;
  margin-left: -12.5vw;
  background: lightgray;
  color: #0058c9;
  text-align: center;
  margin-top: 36vh;
  border-radius: 10px;
}

.alert.danger,
.confirm.danger {
  background-color: #f44336;
}

.alert.success,
.confirm.success {
  background-color: #04aa6d;
}

.alert.info,
.confirm.info {
  background-color: #2196f3;
}

.alert.warning,
.confirm.warning {
  background-color: #ff9800;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}/*# sourceMappingURL=alertModal.css.map */