.cl-alert {
    align-items: center;
    background-color: #02002e;
    /* background-color: #2e0000; */ /* Halloween */
    border-radius: 50px;
    box-shadow: 1px 5px 5px #00000052;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 30px;
    width: auto;
    transition-duration: .2s;
    transform: translateY(200px);
}
.cl-alert.appear {
    transform: translateY(0px);
}