/**
 *  toast style
 */

#toastWaka {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
}
#toastWaka i.iconfont{
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 5px;
}
#toastWaka i.icon-success{
    background-image: url(../image/icon_success.png);
}
#toastWaka i.icon-error{
    background-image: url(../image/icon_error.png);
}
#toastWaka span.text{
    font-size: 1.1em;
    color: #eee;
}
