/*MODAL, SE VE CUANDO PROCESA EL ENVIO DEL MENSAJE POR EL FORM DE CONTACTO O PAGO*/
#loadingCharge {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}
/*MODAL, SE VE CUANDO PROCESA EL ENVIO DEL MENSAJE POR EL FORM DE CONTACTO O PAGO*/
/*CUANDO SE ESTA PROCESANDO EL COBRO*/

/*SE MUESTRA CUANDO LA PAGINA AUN NO TERMINA DE CARGAR*/
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.70);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loaderGif {
    width: auto;
    height: auto;
    max-width: 180px;  /* tamaño real máximo */
    max-height: 90px; /* altura real máxima */
    object-fit: contain;
}

.loaderText {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
/*SE MUESTRA CUANDO LA PAGINA AUN NO TERMINA DE CARGAR*/

/*SE EJECUTA CUANDO SE PRECIONA EL BOTON BUSCAR LAS PLANTILLAS*/
#loadingOverlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.loaderGif2 {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
}
.loaderText2 {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
/*SE EJECUTA CUANDO SE PRECIONA EL BOTON BUSCAR LAS PLANTILLAS*/
/*MUESTRA UN GIF INDICANDO QUE ESPERE EL CLIENTE*/
#messageCobro {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999 !important;
    display: none;
    background: rgba(255,255,255,0.8); /* opcional, para que resalte */
    padding: 20px;
    border-radius: 10px;
}
/*MUESTRA UN GIF INDICANDO QUE ESPERE EL CLIENTE*/

#modalModDetails{
	background: rgba(0, 0, 0, 0.7);
	margin: 0px;
	padding: 0px;
	height: auto;
	width: 100%;
	border: thin none #000;
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 100;
	display: none;
	box-sizing: border-box;
}

#modalModDetails #windowModDetails{
	font-family: RobotoCondensed-Regular;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	background:#FFFFFF;
	/*background: linear-gradient(to top, #999, #EFEFEF, #FFF);*/
	margin: 0px;
	padding: 10px;
	height: auto;
	width: 70%;
	border: thin none #000;
	position: absolute;
	left: 18%;
	top: 13%;
	right: 0px;
	bottom: 0px;
	box-shadow: 1px 1px 10px #000;
	overflow: auto;
	word-break: break-all;
	border-radius: 0px;
	background-color: #FFF;
}

#modalModDetails #windowModDetails #closeModDetails{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 25px;
	height: 25px;
	color: #FFF;
	background: #DC3545;
	text-align: center;
	line-height: 25px;
	cursor: pointer;
	font-size: 18px;
	z-index: 2;
	border-radius: 50%;
}