/* The alert essage box */
.alert {
    /*position: absolute; text-align: center; top: 35px;*/
    position: relative; top: -5px; left: 50px; text-align: center;
    /*position: fixed;
    bottom: 145px;
    right: 40px;*/
    font-family: DejaVu Sans, calibri, georgia, arial;
    /*background-color: #f44336;*/
    color: white;
    opacity: 0.95;
    transition: opacity 2.5s;
    margin-top: 1em;
    margin-left: 0em;
    margin-bottom: 1em;
    border-radius: 0.8em;
    width: 15em;
    z-index:100;
}

.alert.success {background-color: #4CAF50;} /* Green */
.alert.info {color:black;} /* Ref Yellow */
.alert.warning {background-color: #ff9800;} /* Yellow */
.alert.urgent {background-color: #FF0000;} /* Red */
.alert.danger {background-color: #F268CB;} /* Red Orange*/ 
.alert.other {background-color: #e7e7e7; color: black;} /* Gray */ 

.closebtn {
    margin-left: 15px;
    margin-right: 5px;
    color: black;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.4s;
}

.closebtn:hover {
    color: white;
}

.closebtn2 {
    margin-left: 15px;
    margin-right: 5px;
    color: black;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.4s;
}

  .closebtn2:hover {
      color: white;
  }
  
  /* Notes */
  /* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_danger */

div {
  margin-bottom: 15px;
  padding: 4px 12px;
}

.danger {
  background-color: #ffdddd;
  border-left: 6px solid #f44336;
}

.success {
  background-color: #ddffdd;
  border-left: 6px solid #4CAF50;
}

.info {
  background-color: #e7f3fe;
  border-left: 6px solid #2196F3;
}


.warning {
  background-color: #ffffcc;
  border-left: 6px solid #ffeb3b;
}