
/*__________________________________________________________________________________________________*/
/*______________________________________Messages____________________________________________________*/
/*__________________________________________________________________________________________________*/

#toast_holder {
  position: fixed;
  bottom: 5%;
  left: 0px;
  width: 100%;

          transition: height .4s .6s;
  -webkit-transition: height .4s .6s;
     -moz-transition: height .4s .6s;
      -ms-transition: height .4s .6s;
       -o-transition: height .4s .6s;
  
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}

#toast_holder.show {
          transition: none;
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
}

#toast_holder > div {
  position: relative;
  display: table;
  max-width: 40%;
  min-width: 275px;
  margin: 1.5% auto;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(0, 0, 0, 0.66);
  color: #F5F5F5;
  font-size: 20px;
  font-family: sans-serif;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
  border-radius: 3px;
  text-align: center;
  
          box-shadow: 0px 0px 25px -3px #000;
  -webkit-box-shadow: 0px 0px 25px -3px #000;
     -moz-box-shadow: 0px 0px 25px -3px #000;
      -ms-box-shadow: 0px 0px 25px -3px #000;
       -o-box-shadow: 0px 0px 25px -3px #000;

          transition: opacity .2s, margin .4s .2s,                        transform .2s;
  -webkit-transition: opacity .2s, margin .4s .2s,                -webkit-transform .2s;
     -moz-transition: opacity .2s, margin .4s .2s, transform .2s,    -moz-transform .2s;
      -ms-transition: opacity .2s, margin .4s .2s, transform .2s,     -ms-transform .2s;
       -o-transition: opacity .2s, margin .4s .2s, transform .2s,      -o-transform .2s;
  
  -webkit-transform: scale(.1);
     -moz-transform: scale(.1);   
      -ms-transform: scale(.1);
       -o-transform: scale(.1);
          transform: scale(.1);
       
  opacity: 0;
}

#toast_holder > div.show {
          transition: opacity .5s .1s,                            transform .1s .2s;
  -webkit-transition: opacity .5s .1s,                    -webkit-transform .1s .2s;
     -moz-transition: opacity .5s .1s, transform .2s .1s,    -moz-transform .1s .2s;
      -ms-transition: opacity .5s .1s, transform .2s .1s,     -ms-transform .1s .2s;
       -o-transition: opacity .5s .1s, transform .2s .1s,      -o-transform .1s .2s;
  
  -webkit-transform: scale(1);
     -moz-transform: scale(1);   
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
       
  opacity: 1;
}

#toast_holder > div > div {
  display: table;
}

/* mozilla firefox target only fix */
@-moz-document url-prefix() {
    #toast_holder > div > div {
        display: inline;
    }
}

#toast_holder button {
  float: none;
}

#toast_holder a {
  float: right;
  display: table;
  margin: -8px;
  margin-left: 15px;
  margin-right: -15px;
  text-decoration: none;
  color: #969696;
  height: 18px;
  line-height: 18px;
  overflow: hidden;
  padding: 0 1px;
  transition: color 0.2s ease 0s;
}