/* Caja para el mensaje de alerta */
.alerta {
    padding: 30px;
    background-color: #f44336;
    color: white;
    border-radius: 23px;
    font-weight: 700;
    opacity: 0.83;
    transition: opacity 0.6s;
}

.alerta.exito {
    background-color: #04AA6D;
}

.alerta.info {
    background-color: #2196F3;
}

.alerta.advertencia {
    background-color: #ff9800;
}

/* Botón de cerrar el mensaje */
.botonCerrar {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* Cuando se mueve el ratón fuera del botón de cerrar */
.botonCerrar:hover {
    color: black;
}