.bottom-alert {
    position: fixed;
    bottom: 0;
    left: 5%;
    width: 90%;
    padding: 15px 30px;
    z-index: 2000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    border-color: rgba(0, 0, 0, .3);
    border-style: solid;
    background-color:#fff ;
}

.bottom-alert.visible {
    transform: translateY(-5%);
}
