/* Base Alert Style */
.alert {
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 5px;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  color: white;
}

 


 
.alert {
    background: #ffe5e5;
    padding: 10px;
    display: flex;
    position: relative;
    border: solid 1px #edbebe;
    margin-bottom: 10px;
    border-radius: 0;
    color: red;
    flex-wrap: wrap;
}

.alert .closebtn {
    order: 1;
    position: absolute;
    right: 10px;
    font-size: 28px;
    line-height: normal;
    top: 0;
    cursor: pointer;
}

.success {
    background: #c1f3c1;
    border: solid 1px #abd7a4;
    color: green;
}

.info {
    border: solid 1px #92b7d5;
    background: #c9e7ff;
    color: #157bcf;
    
}

.warning {
    background: #ffe1b6;
    border: solid 1px #ff9800;
    color: #ff9800;
}