.toastModal {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    z-index: 100;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    overflow: hidden;
}
.toastModal .success,
.toastModal .fail {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    text-align: center;
    z-index: 100;
    /*width: 160px;*/
    /*height: 60px;*/
    padding: 15px;
    /*padding: 22px 0px;*/
    box-shadow: 0px 0px 10px #ccc;
    -webkit-box-shadow: 0px 0px 10px #ccc;
    -moz-box-shadow: 0px 0px 10px #ccc;
}
.toastModal .success i,
.toastModal .fail i{
    margin-right: 5px;
}
.success {
    color: #29B48C;
}
.fail {
    color: #AB2F2C;
}
