/*
Author : Denver Kunaka;
Name : Custom styles;
Version: 1.1.1;

*/
  .close{
    color: white;
    position: absolute;
    right: 5px;
    top:5px;
    cursor: pointer
  }
  #success,#danger, #warning{
    padding: 0.8rem;
    font-size: 1.2rem;
     position: fixed;
    height: auto;
    max-width: 320px;
    width: 100%;
    left: calc((100% - 320px)/2);
    bottom: -100px;
    z-index: 4;
    border-radius: 0.4rem;
    display: none;
    padding: 0.4rem;
  }
  #success{
    color: #155724;
      background-color: #d4edda;
      border-color: #c3e6cb;
  }
  #danger{
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  }
  #warning{
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  }
  /* LOADING & DARKEN PAGE  */
  #darken-load{
  position: fixed;
  top:0;
  left:0;
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  z-index: 5;
}
#processing{
  position: fixed;
  top:calc((100% - 50px)/2);
  left:calc((100% - 50px)/2);
  width: 50px;
  height: 50px;
  border:2px solid blue;
  background: white;
  z-index: 6;
}