/*Clases para las Notificaciones*/

#Notificacion__successful {
    visibility: hidden;
    background-color: #c1f3d6;
    color: #29ab58;
    margin-left: -150px;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 42%;
    bottom: 30px;
    font-size: 17px;
    border-left: 5px solid #29ab58;
    word-wrap: break-word;
}


#Notificacion__Error {
    visibility: hidden;
    background-color: #ffe1e3;
    color: #fb4755;
    margin-left: -150px;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 42%;
    bottom: 30px;
    font-size: 17px;
    border-left: 5px solid #fb4755;
    word-wrap: break-word;
}

#Notificacion__Advertencia {
    visibility: hidden;
    background-color: #f2f5bc;
    color: #f7d600;
    margin-left: -150px;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 42%;
    bottom: 30px;
    font-size: 17px;
    border-left: 5px solid #f7d600;
    word-wrap: break-word;
}





#Notificacion__successful.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#Notificacion__Error.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#Notificacion__Advertencia.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#Notificacion__successful > i,
#Notificacion__Error > i,
#Notificacion__Advertencia > i {
    padding-right: 8px;
}


.Centrar_Contenido {
    display: inline-block;
    align-items: center;
    flex-direction: column;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
