#toast-js{
    min-height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0px 15px 24px 18px #000;
    padding: 0 20px 0 45px;
    font-weight: 500;
    font-family: Arial, sans-serif;
    z-index: 1000;
    width: 100%;
    box-sizing:border-box;
    background-repeat: no-repeat;
    background-position: 12px center;
}

#toast-js > p{
    font-size: 14px;
    display: table-cell;
    vertical-align: middle;
    height: 60px;
}

    #toast-js.error{
        color: rgba(255, 255, 255, .85);
        background-color: rgba(183, 28, 28, .9);
        background-image: url(../images/error.svg);
    }

    #toast-js.success{
        color: rgba(255, 255, 255, .85);
        background-color: rgba(76, 175, 82, .9);
        background-image: url(../images/success.svg);
    }

    #toast-js.warning{
        color: rgba(0, 0, 0, .54);
        background-color: rgba(240, 217, 9, .9);
        background-image: url(../images/warning.svg);
    }

    #toast-js.info{
        color: rgba(255, 255, 255, .85);
        background-color: rgba(33, 152, 243, .9);
        background-image: url(../images/info.svg);
    }

    #toast-js.debug{
        color: rgba(255, 222, 87, .85);
        background-color: rgba(69, 133, 182, .95);
        background-image: url(../images/debug.svg);
    }
