#ventana-modal {
    background: rgba(0, 0, 0, 0.85) none repeat scroll 0 0;
    display: table;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(5px);
}
#ventana-modal .centrado {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#ventana-modal .centrado .caja {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
    -o-box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 0 0 5px rgba(0,0,0,0.2);
    margin: 0 auto;
    max-width: 520px;
    padding: 30px;
    position: relative;
    width: 90%;
    border-radius: 5px;
}
#ventana-modal .centrado .caja .titulo {
    color: #fff;
    line-height: 32px;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}
#ventana-modal .centrado .caja .titulo .cerrar {
    color: #ffffff;
    cursor: pointer;
    font-size: 26px;
    height: 32px;
    line-height: 32px;
    margin: -30px -30px 0 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    background: red;
    border-radius: 0 5px;
}
#ventana-modal .centrado .caja .titulo .cerrar .fas {
	font-size: 24px;
}
#ventana-modal .centrado .caja .contenido {
    padding: 10px;
}

#notificador {
    bottom: 5px;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 5px;
    z-index: 9999;
}
#notificador .notificacion {
    background: #FFFFFF;
    display: list-item;
    font-weight: 500;
    list-style: none outside none;
    margin: 10px 0 0;
    padding: 15px 5px 15px 54px;
    position: relative;
    text-align: center;
    max-width: 256px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
    overflow: hidden;
}
#notificador .notificacion .ico {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 48px;
}
#notificador .notificacion .ico:before {
    position: absolute;
    font-size: 18px;
    margin: -9px 0 0 -9px;
    left: 50%;
    top: 50%;
	color: #fff;
}
#notificador .notificacion .cerrar {
    background: #f0f0f0 none repeat scroll 0 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 48px;
    overflow: hidden;

}
#notificador .notificacion .cerrar span {
    color: #e74c3c;
    font-size: 16px;
    left: -8px;
    margin: -8px 0 0 -8px;
    position: absolute;
    top: 50%;
}
#notificador .notificacion:hover .cerrar {
    opacity: 1;
}
#notificador .notificacion:hover .cerrar span {
    left: 50%;
}
#notificador .notificacion.info .ico {
    background-color: #4EA5CD;
}
#notificador .notificacion.info .ico:before {
	content: "\f0a4";
}
#notificador .notificacion.error .ico {
    background-color: #E84A3A;
}
#notificador .notificacion.error .ico:before {
    content: "\f088";
}
#notificador .notificacion.warning .ico {
    background-color: #F3C60C;
}
#notificador .notificacion.warning .ico:before {
    content: "\f256";
}
#notificador .notificacion.success .ico {
    background-color: #25AE61;
}
#notificador .notificacion.success .ico:before {
    content: "\f087";
}
#notificador .pantalla-completa {
    color: #ffffff;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999;
    background: url("../imagenes/estructura/transparencia_negra.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 100%;
}
#notificador .pantalla-completa .p-c-cont {
    background: none repeat scroll 0 0 #3498db;
    left: 0;
    margin: -55px 0 0;
    padding: 5px 0;
    position: absolute;
    top: 50%;
    width: 100%;
}
#notificador .pantalla-completa .p-c-cont .mensaje {
    color: #ffffff;
    float: left;
    width: 100%;
    margin-bottom: 5px;
}
#notificador .pantalla-completa .p-c-cont .mensaje span {
    font-size: 18px;
}
#notificador .pantalla-completa .p-c-cont .boton {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin: 10px 0 0;
    min-width: 80px;
    padding: 10px;
}
#notificador .pantalla-completa .p-c-cont .boton:hover {
    background-color: #ecf0f1;
    color: #444444;
}