#hlm_snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    border-radius: 0px;
    padding: 0 15px;
    position: fixed;
    /* z-index: 1;
    left: 50%;
    bottom: 30px; */
    z-index: 99;
    right: 30px;
    top: 100px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

#hlm_snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.3s, fadeout 0.5s 2.8s;
    animation: fadein 0.3s, fadeout 0.5s 2.8s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 100px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 100px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 100px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 100px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

#hlm_snackbar.show.success {
    background-color: #28a745;
}

#hlm_snackbar.show.error {
    background-color: #dc3545;
}