/* ALERT */
.ms-response {
    width: 100%;
    display: grid;
}
.ms-response > div.success {
    height: 45px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    align-items: center;
    font-size: 15px;
    text-align: center;
    transform-origin: top;
    animation: 5s msgResponse ease-out forwards;
    border-radius: 2px;
    margin-top: 30px;
}

.ms-response > div.success {
    color: #fff;
    background-color: #28a745;
    border: none;
}
/* .ms-response > div.error {
    color: #fff;
    background-color: #DC3545; 
    border: none;
} */
@keyframes msgResponse {
    0% {
        padding: 12px 20px;
        height: auto;
        transform: translateY(5px);
        opacity: 0;
        margin-top: 30px;
    }
    10% {
        transform: translateY(0px);
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    99% {
        padding: 12px 20px;
        height: auto;
        transform: translateY(0px);
        margin-top: 30px;
    }
    100% {
        padding: 0px;
        height: 0px;
        transform: translateY(5px);
        opacity: 0;
        margin-top: 0px;
    }
}