/* Toast Container */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin: 0 auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 999999999999999;
    /* left: 50%; */
    top: 30px;
    /* transform: translateX(-50%); */
    font-size: 17px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
    left: unset;
    bottom: 2%;
    left: 2%;
    top: unset;
}

.toast.show {
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}

.toast.hide {
    visibility: hidden;
    bottom: 0;
    opacity: 0;
}

.toast.success {
    background-color: #007474;
    color: white;

}

.toast.error {
    background-color: #ef6603;
    color: white;
}

.toast.info {
    background-color: #042e33;
    color: white;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}