.alert button {
    right: 5px;
    position: absolute;
    top: 5px;
    width: 8px;
}
.hide-alert {
    -webkit-animation: fadeOut 1s !important;
    -webkit-animation-fill-mode: forwards !important;
    animation: fadeOut 1s !important;
    animation-fill-mode: forwards !important;
    z-index: -1000 !important;
}


.alert {
    -webkit-animation: fadeIn 1s;
    -webkit-animation-fill-mode: forwards;
    animation: fadeIn 1s;
    animation-fill-mode: forwards;
}
.alert_Error, .alert_Error i {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;

}

.alert_Warning, .alert_Warning i {
    color: #856404;
    background-color: #f9e4a1;
    border-color: #e4d299;
}

.alert_Success, .alert_Success i {
    color: #073984;
    background-color: #cfe2ff;
    border-color: #bbd6fe;
}

.alert_Info, .alert_Info i {
    color: #07697d;
    background-color: #cff4fc;
    border-color: #bbf0fb;
}


@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
        position: fixed;
       
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
        position: fixed;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}