﻿
.alert {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    font: normal normal bold 17px/22px Lato;
    letter-spacing: 0px;
    height: 72px;
    display: flex;
    align-items: center;
    min-width: 450px;
    justify-content: center;
    z-index:99999;
    margin-bottom: 0px;
}

.alert-dismissible .btn-close {
    top: 28px;
    right: 9px;
    padding: 0.45rem 0.45rem;
}

.alert-success {
    --bs-alert-color: #038B00;
    --bs-alert-bg: #CCE8CC;
    --bs-alert-border-color: #CCE8CC;    
    color: #038B00;      
}

.alert-danger {
    --bs-alert-color: #A4382E;
    --bs-alert-bg: #F5DAD7;
    --bs-alert-border-color: #F5DAD7;
    color: #A4382E;   
}

/* Estilos para la pantalla de menor tamaño */
@media screen and (max-width: 500px) {
    .alert {
        min-width: 90%;
    }
}