.jhp-toast {
    position: fixed;
    bottom: -50px;
    font-size: 16px;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 200px;
    transform: translateX(-50%);

    margin: 0 auto;
    text-align: center;
    padding: 1em;
    font-size: 14px;
    color: #fff;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.5s linear 0s, bottom 0.5s ease-in-out 0s;
    border-radius: 2px;
}

.jhp-toast--visible {
    opacity: 1;
    bottom: 50px;
}

.jhp-toast--success {
    background-color: #4caf50;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px;*/
}

.jhp-toast--error {
    background-color: #f44336;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px;*/
}

.jhp-toast--warning {
    background-color: #ff9800;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px;*/
}

.jhp-toast--info {
    background-color: #2196f3;
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px;*/
}