/**{
  box-sizing: border-box;
}*/

.alert-notif{
  border: 1px solid #999;
  border-left: 5px solid #999;
  box-shadow: 0 0 4px #ddd, 0 2px 10px #ddd, 0 2px 20px #ddd;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  transition: 0.5s ease-in;
}

.alert-notif.close{
  transform: translateY(40px);
  background: #fff;
  opacity: 0;
}


.alert-notif>.icon{
  min-width: 40px;
  min-height: 40px;
  
  background-color: #999;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.alert-notif>.icon>.fa{
  line-height: 40px;
}


.alert-notif>.text{
  width: 100%;
  padding: 0 15px;
}

.alert-notif>.text strong{
  color: #333;
}
.alert-notif>.text p{
  color: #666;
  margin: 5px 0;
  font-size: 14px;
}


.alert-notif>.close{
  border: none;
  background: transparent;
  font-size: 16px;
  color: #777;
  outline:none;
  cursor: pointer;
  transition: 0.3 ease-in-out;
}
.alert-notif>.close:hover{
  color: red;
}



/* success alert start */
  .alert-notif-success{
    border: 1px solid #51be56;
    border-left: 5px solid #51be56;
    border-radius: 12px;
  }
  .alert-notif-success>.icon{
    background-color: #51be56;
  }
/* success alert end */



/* warning alert start */
  .alert-notif-warning{
    border: 1px solid #ffc107;
    border-left: 5px solid #ffc107;
    border-radius: 12px;
  }
  .alert-notif-warning>.icon{
    background-color: #ffc107;
  }
/* warning alert end */



/* danger alert start */
  .alert-notif-danger{
    border: 1px solid #ff5722;
    border-left: 5px solid #ff5722;
    border-radius: 12px;
  }
  .alert-notif-danger>.icon{
    background-color: #ff5722;
  }
/* danger alert end */



/* primary alert start */
  .alert-notif-primary{
    border: 1px solid #29B6F6;
    border-left: 5px solid #29B6F6;
    border-radius: 12px;
  }
  .alert-notif-primary>.icon{
    background-color: #29B6F6;
  }
/* primary alert end */