﻿/*nueva versión taquilla zzp octubre 2015 - MODERNIZADA SIN TABLAS*/
/*mantiene todas las clases originales + soporte para layout flex/moderno*/

/*============================================================*/
/* 1. ESTILOS GLOBALES Y FONDO (SE MANTIENE IMAGEN ORIGINAL) */
/*============================================================*/
.body_taquillaszp {
    margin: 0px;
    font-family: "TitilliumWeb-Regular", "Open Sans", arial, sans-serif;
    font-size: 14px;
    color: #333;
    position: relative;
    /* Imagen de fondo original solicitada */
    background-image: url('./graficas/fondo_nx.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/*============================================================*/
/* 2. NUEVOS ESTILOS PARA LAYOUT SIN TABLAS (MODERNIZACIÓN)   */
/*============================================================*/

/* Contenedor principal tipo flex - fondo transparente para ver imagen */
.modern-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    background: transparent; /* Cambiado de rgba(255,255,255,0.95) a transparent */
}

/* Header moderno - fondo semi-transparente para ver imagen de fondo */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 13rem;
    max-height: 15rem;
}

/* Menú de navegación moderno - SIN línea gris */
.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
    background: transparent; /* Cambiado de rgba(0,0,0,0.6) a transparent */
    border-bottom: none; /* Elimina completamente la línea gris */
    justify-content: flex-end;
}

/* Contenido principal moderno - fondo semi-transparente */
.main-content {
    flex: 1;
    min-height: 400px;
    padding: 40px 20px;
    display: grid;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    max-width: 40em;
    margin: auto;
}

/* Footer dinámico moderno - fondo semi-transparente */
.footer-dynamic {
    margin: auto;
    padding: 20px;
	text-align: center;
    /* border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(238, 238, 238, 0.5);
    background: rgba(255, 255, 255, 0.85);*/    
}

/* Footer de seguridad moderno - fondo semi-transparente */
.security-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: none;
}

/* Ajuste para el contenido dinámico que viene del servidor */
.main-content > form, 
.main-content > div:first-child {
    width: 100%;
    max-width: 1200px;
}

/* Regla especial para #datos-form que estaba dentro de tr .cuerpo_tzp */
.main-content #datos-form,
.cuerpo_tzp > #datos-form {
    background-color: rgba(255, 255, 255, 0.95);
    width: max-content;
    padding: 2rem 6rem;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-content-pay {
    flex: 1;
    min-height: 400px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Para responsive: en móviles se muestra en 1 columna */
@media (max-width: 768px) {
    .main-content-pay {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 15px;
    }
}
form[name="datos-form"] > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Ajuste para el contenido del logo del cliente */
.logo_cliente_tzp {
    background: transparent;
}

/*============================================================*/
/* 3. CLASES ORIGINALES COMPLETAMENTE PRESERVADAS (sin cambios) */
/*============================================================*/

.logo_cliente {
    width: 300px;
}

.logo_zona_tzp {
    height: 49px;
    width: 115px;
}

.ancho_tabla_tzp {
    margin: auto;
    width: 90%;
}

.menu_tzp {
    height: 44px;
    text-align: right;
    padding-right: 20px;
}

/* Color corporativo #15a48d aplicado a botones y elementos importantes */
.fondo_btnup_tzp {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    text-align: center;
    height: 26px;
    padding-top: 9px;
    padding-right: 40px;
    padding-bottom: 9px;
    padding-left: 60px;
    text-decoration: none;
    margin-right: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

a:hover.fondo_btnup_tzp {
    background-color: #0d7a68;
    border: 1px solid #0d7a68;
    color: #FFF;
}

.fondo_btnup_new_tzp {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    text-align: center;
    height: 26px;
    padding-top: 9px;
    padding-right: 20px;
    padding-bottom: 9px;
    padding-left: 40px;
    text-decoration: none;
    background-image: url(/tiendas_c/plantillas/plantillanx/graficas/administracion.png);
    background-repeat: no-repeat;
    background-position: 10px center;
    display: inline-block;
}

a:hover.fondo_btnup_new_tzp {
    background-color: #0d7a68;
    border: 1px solid #0d7a68;
    color: #FFF;
}

.cuerpo_tzp {
    padding-top: 40px;
    padding-bottom: 40px;
}

.texto_normal {
    font-family: "Open Sans", arial;
    color: #1E789A;
    font-size: 13px;
    font-style: italic;
    text-decoration: none;
}

.titulo_tzp {
    font-size: 22px;
    font-style: normal;
    color: #333;
    font-family: arial;
    text-align: left;
}

.fila_forma_pago {
    height: 45px;
    font-weight: bold;
}

.fila_forma_pago1 {
    font-weight: bold;
}

.texto_id_obligatorio {
    font-size: 10px;
}

.texto_campo {
    font-family: "Open Sans", arial;
    color: #1E789A;
    font-size: 13px;
    font-style: italic;
    text-decoration: none;
    font-weight: bold;
}

.campo_text {
    width: 90%;
    height: 33px;
    font-size: 12px;
    line-height: 1.42857;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px 0px 0px 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .7s, -webkit-box-shadow ease-in-out .7s;
    -o-transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 6px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
}

.campo_text:focus {
    border-color: #15a48d;
    outline: 0px none;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(21, 164, 141, 0.6);
    background-color: #FDFDFD;
}

.tabla_forma_pago {
    padding-top: 45px;
    width: 100%;
    padding-bottom: 45px;
}

.campo_lista_despl {
    font-size: 12px;
    line-height: 1.42857;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 5px 0px 0px 5px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .7s, -webkit-box-shadow ease-in-out .7s;
    -o-transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 6px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
    margin-right: 10px;
}

.boton {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    width: 50%;
    cursor: hand;
    height: 38px;
}

a:hover.boton {
    background-color: #0d7a68;
}

.pie_pagina_tzp {
    margin: auto;
    padding-top: 20px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #EEEEEE;
    padding-bottom: 20px;
}

/*============================================================*/
/* 4. TODAS LAS CLASES RESTANTES (PRESERVADAS SIN MODIFICAR)  */
/*============================================================*/

.linea_tzp {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #EEEEEE;
    height: 60px;
    padding: 0 10px;
}

.label_tzp_fr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    color: #1E789A;
    text-decoration: none;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.anchocld_tzp {
    height: 25px;
}

.resp_tzp_fr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    padding-left: 5px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 7px;
}

.fondopag_tzp {
    /* background-color: #EEEEEE; */
    padding-right: 20px;
    padding-left: 20px;
    width: 30%;
    padding-bottom: 10px;
}

.labelRight_tzp_fr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: right;
    padding-right: 10px;
}

.respRight_tzp_fr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    padding-left: 5px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 7px;
    text-align: right;
}

.textpq_tzp {
    font-family: "Open Sans", arial;
    font-size: 11px;
    font-style: italic;
    color: #000;
    text-decoration: none;
    height: 25px;
    padding-top: 10px;
    padding-left: 12px;
}

.tituloform_tzp {
    font-size: 22px;
    color: #333;
    text-decoration: none;
    padding-bottom: 15px;
    font-family: "Open Sans", arial;
}

.tituloprincipal {
    font-size: 22px;
    color: #333;
    text-decoration: none;
    padding-bottom: 15px;
    font-family: "Open Sans", arial;
}

.tabla_encabezado_zp_personas {
    padding-top: 30px;
    padding-bottom: 30px;
}

.celda_tabla_encabezado_zp_personas {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #EEEEEE;
    height: 60px;
}

.celda_tabla_zp_personas {
    padding-top: 10px;
    padding-bottom: 10px;
}

.texto_forma_autenticacion_zp_personas {
    font-size: 15px;
    color: #1E789A;
    display: block;
    font-style: normal;
    font-weight: normal;
    padding-left: 15px;
    border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    background-image: url(/tiendas_c/plantillas/plantillanx/graficas/fondo_botones_zp.png);
    background-repeat: repeat-x;
    border: 1px solid #EEEEEE;
}

.celda_tabla_encabezado_medios_pago {
    font-family: arial;
    font-size: 12px;
    color: #006;
    /* background-color: #FFF; */
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #F4F4F4;
    padding-top: 10px;
}

.celda_tabla_campo_zp_personas {
    padding-top: 15px;
    padding-left: 10px;
    font-weight: bold;
}

.celda_tabla_registro_zpp {
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

.boton_forma_autenticacion_zp_personas {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    width: 50%;
    cursor: hand;
    height: 38px;
}

.texto_olvido_clave_zp_personas {
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #9AC336;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
}

a:hover.texto_olvido_clave_zp_personas {
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #DCEBB8;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
}

.boton_forma_registro_zp_personas {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    width: 50%;
    cursor: hand;
    height: 38px;
}

.tableRollOverEffect_zp_personas {
    background-color: #FFFFFF;
    margin: auto;
    cursor: pointer;
}

.tableRowClickEffect_zp_personas {
    background-color: #FFFFFF;
    margin: auto;
}

.zp_personas {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    width: 100%;
    margin: auto;
    border: 1px solid #00FFFF;
    background-color: #3333FF;
}

.celda_tabla_zp_personas_ovido_clave {
    padding-top: 10px;
    padding-bottom: 10px;
}

.celda_tabla_obtener_clave_encontrado {
    padding-top: 10px;
    padding-bottom: 10px;
}

.tabla_conten_tzp {
    margin: auto;
    width: 90%;
}

.tabla_net_tzp {
    background-color: #E6E6E6;
    margin: auto;
    padding: 15px;
    width: 1000px;
    border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    border-top-width: 10px;
    border-right-width: 1px;
    border-bottom-width: 10px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #F0F0F0;
    border-right-color: #E6E6E6;
    border-bottom-color: #F0F0F0;
    border-left-color: #E6E6E6;
    height: 270px;
}

.celda_logeo_pago {
    font-style: italic;
    font-weight: bold;
    text-align: right;
    padding-right: 5px;
}

.tabla_medio_pago {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    width: 100%;
    align: center;
    margin: auto;
}

.texto_forma_pago {
    font-size: 12px;
    font-family: "Open Sans", arial;
    text-decoration: none;
    font-weight: normal;
    color: #333;
    font-style: italic;
    padding-left: 10px;
    line-height: 30px;
}

.campo_radio_medio_pago {
    padding: 10px;
    font-weight: bold;
}

.celda_tabla_medio_pago {
    font-size: 15px;
    padding: 20px;
    cursor: hand;
    align: center;
    margin: auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #FFF;
}

.tableRollOverEffect1 {
    background-color: #f4f4f4;
    color: #FFF;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    margin: auto;
}

.tableRowClickEffect1 {
    color: #FFFFFF;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    font-size: 15px;
    background-repeat: repeat-x;
    margin: auto;
}

.vinculo_terminos {
    font-size: 12px;
    font-family: arial;
    text-decoration: none;
    font-weight: normal;
    color: #9AC336;
    font-style: italic;
    padding-left: 15px;
}

.boton_forma_pago {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    cursor: hand;
}

.pgos_menu_up {
    font-size: 12px;
    font-family: arial;
    text-decoration: none;
    font-weight: normal;
    color: #9AC336;
    font-style: italic;
    padding-top: 15px;
}

.texto_pequeno {
    font-family: "Open Sans", arial;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    font-style: italic;
}

.tabla_multiregistros {
    padding: 1px;
    width: 100%;
}

.fila_titulo_mr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    text-decoration: none;
    background-color: #F5F5F5;
    padding: 5px;
    color: #333;
    border: 1px solid #DDDDDD;
    height: 35px;
}

.celda_titulo_mr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    text-decoration: none;
    background-color: #F6F6F6;
    padding: 5px;
    color: #333;
    height: 54px;
    border: 1px solid #DDDDDD;
}

.celda_info_mr {
    font-family: "Open Sans", arial;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    text-decoration: none;
    background-color: #FCFCFC;
    padding: 5px;
    color: #333;
    height: 54px;
    border: 1px solid #DDDDDD;
}

.vinculo_no_subrayar {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    text-align: center;
    height: 26px;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    text-decoration: none;
    margin-right: 5px;
}

a:hover.vinculo_no_subrayar {
    background-color: #0d7a68;
    border: 1px solid #0d7a68;
}

#ctl00_cphContenido_lblTotalFacturas {
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    color: #1E789A;
    padding-right: 10px;
    padding-top: 20px;
}

#ctl00_cphContenido_txtTotalFacturas {
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    color: #1E789A;
    padding-right: 10px;
    padding-top: 20px;
}

#ctl00_cphContenido_ctl01_ctlMensajeError_lblMensaje {
    font-size: 10px;
    font-style: italic;
    font-weight: bold;
    color: #F06;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    height: 40px;
}

/*============================================================*/
/* 5. ESTILOS DE LOGIN Y FORMULARIOS (PRESERVADOS)           */
/*============================================================*/

.cuadro_login {
    background-color: rgba(230, 230, 230, 0.95);
    margin: auto;
    width: 800px;
    border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    border-top-width: 10px;
    border-right-width: 1px;
    border-bottom-width: 10px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #F0F0F0;
    border-right-color: #E6E6E6;
    border-bottom-color: #F0F0F0;
    border-left-color: #E6E6E6;
    height: 180px;
    padding-top: 80px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

.label {
    font-family: "Open Sans", arial;
    color: #333;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    text-align: right;
    padding-right: 10px;
}

.labelbold {
    font-family: verdana;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    text-align: right;
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 3px;
    font-weight: bold;
}

.labelbold_Total {
    font-family: verdana;
    font-size: 11px;
    color: #063;
    text-decoration: none;
    text-align: right;
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 3px;
    font-weight: bold;
}

.campos_captura {
    width: 90%;
    height: 30px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.42857;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .7s, -webkit-box-shadow ease-in-out .7s;
    -o-transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    font-style: italic;
}

#identificacionCliente {
    margin: 30px;
}

.table {
    font-family: "Open Sans", arial;
    color: #333;
    font-size: 12px;
    text-decoration: none;
    width: 100%;
    font-style: italic;
    border-top-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-left-style: solid;
    border-top-color: #DDDDDD;
    border-left-color: #DDDDDD;
}

.thead {
    font-weight: bold;
    background-color: #F6F6F6;
    padding: 2px;
    height: 60px;
}

.th {
    background-color: #FCFCFC;
    height: 60px;
    padding: 2px;
}

.td {
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-right-color: #DDDDDD;
    border-bottom-color: #DDDDDD;
    padding: 2px;
}

.th_encabeza {
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-right-color: #DDDDDD;
    border-bottom-color: #DDDDDD;
    padding: 2px;
}

.linkpagar {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    text-align: center;
    height: 26px;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    text-decoration: none;
    margin-right: 5px;
}

a:hover.linkpagar {
    background-color: #0d7a68;
    border: 1px solid #0d7a68;
}

.saldo {
    width: 80px;
    height: 17px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.42857;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .7s, -webkit-box-shadow ease-in-out .7s;
    -o-transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    transition: border-color ease-in-out .7s, box-shadow ease-in-out .7s;
    font-style: italic;
}

.labelbold_Total_izq {
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    color: #1E789A;
    padding-right: 10px;
    text-align: left;
}

.footer {
    font-family: arial;
    font-size: 15px;
    color: #999;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    line-height: 16px;
    padding: 0px 30px;
    font-weight: bold;
}

.px_logo_zona {
    align-items: center;
}

.tamaniologos {
    width: 150px;
}

.pmz_datos_pago_seguro {
    display: flex;
    padding-top: 10px;
    align-items: center;
}

.pmz_espacio_candado {
    float: center;
    padding-top: 3px;
}

.pmz_candado {
    font-size: 3px;
    position: relative;
    border-radius: 3px;
    border: 3.5px solid #AAA;
    border-right-width: 7.5px;
    border-left-width: 7.5px;
    margin: 0 0 6rpx 0;
}

.pmz_paga_segu {
    padding-left: 6px;
}

.pmz_candado:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: 2.5px solid #AAA;
    width: 12px;
    height: 8px;
    left: 50%;
    margin-left: -6px;
    top: -10px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.pmz_candado:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: 1px solid #AAA;
    border-radius: 2.5px;
    left: 50%;
    top: -1px;
    margin-left: -2.5px;
}

.pmz_paga_seg::before {
    width: 50%;
    float: center;
    padding-top: 5px;
}

.pmz_logo_zona_enca {
    background-image: url("Graficas/logo_zona_encabezado.gif");
    background-repeat: no-repeat;
    width: 40%;
    height: 45px;
    float: center;
}

.boton_pagar {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    cursor: hand;
    margin: 3px;
}

a:hover.boton_pagar {
    background-color: #0d7a68;
}

#forma_1 {
    margin: auto;
    width: 95%;
}

.tabla_seleccion_tarjeta_credito {
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.lista_despl_tc_zpp {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    vertical-align: middle;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #CCC;
    border-radius: 4px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.tabla_tarjeta_credito {
    padding: 15px;
    width: 95%;
    border: 1px solid #EEEEEE;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    background-color: #FAFAFA;
}

.tabla_encabezado_forma_cr {
    font-size: 22px;
    font-style: normal;
    color: #933;
    font-family: arial;
    text-align: left;
}

.tabla_forma_cr {
    margin: auto;
    width: 95%;
}

/*============================================================*/
/* 6. FORMATOS DE CORREO Y PC (PRESERVADOS)                 */
/*============================================================*/

.label_zzp_fr {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.espera_zzp {
    font-size: 13px;
    font-style: italic;
    line-height: 25px;
    font-weight: bold;
    color: #9AC336;
    text-decoration: none;
}

.advertencia_zzp {
    color: #F06;
    font-size: 13px;
    line-height: 25px;
}

.labelrigth_zzp_fr {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: right;
    padding-right: 10px;
}

.titulo_zzp_fr {
    font-family: arial;
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    color: #428BCA;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #CCC;
}

.borde_fr {
    border: 1px dotted #9AC336;
    background-color: rgba(255, 255, 255, 0.3);
}

.resp_zzp_fr {
    font-family: arial;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    color: #428BCA;
    text-decoration: none;
    padding-left: 5px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 7px;
}

.trampita {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 3px;
}

.camposadicio_zzp_fr {
    font-family: arial;
    font-size: 12px;
    font-style: italic;
    color: #333;
    text-decoration: none;
    padding-top: 10px;
}

.campo_oblig_zzp_fr {
    font-family: arial;
    font-size: 10px;
    font-style: italic;
    text-decoration: none;
    padding-top: 10px;
    font-weight: bold;
}

.respright_zzp_fr {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    font-family: arial;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
    color: #1E789A;
    text-decoration: none;
    padding-left: 5px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 7px;
    text-align: right;
}

.boton_imprimir {
    background-color: #15a48d;
    font-size: 12px;
    font-weight: bold;
    font-family: "Open Sans", arial;
    font-style: italic;
    color: #FFF;
    border: 1px solid #15a48d;
    padding-top: 6px;
    padding-right: 15px;
    padding-bottom: 6px;
    padding-left: 15px;
    border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    width: 50%;
    cursor: hand;
    text-decoration: none;
}

.new_contenido_rojo {
    font-size: 12px;
    font-style: italic;
    color: #F06;
    padding-top: 3px;
    padding-bottom: 3px;
    font-weight: bold;
}

.mail_tzp {
    color: #1E789A;
    text-decoration: none;
}

.tabla_form_tzp {
    margin: auto;
    width: 950px;
}

/*============================================================*/
/* 7. MEDIA QUERIES PARA RESPONSIVIDAD                       */
/*============================================================*/

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .logo_cliente_tzp {
        text-align: center;
        height: auto;
        margin-bottom: 10px;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .main-content #datos-form,
    .cuerpo_tzp > #datos-form {
        width: 90%;
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .fondo_btnup_tzp,
    .fondo_btnup_new_tzp {
        padding-right: 20px;
        padding-left: 30px;
        font-size: 10px;
    }
    
    .cuadro_login {
        width: 90%;
        padding-top: 40px;
    }
    
    .tabla_net_tzp {
        width: 90%;
    }
    
    .tabla_form_tzp {
        width: 95%;
    }
    
    .fondopag_tzp {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .main-content #datos-form,
    .cuerpo_tzp > #datos-form {
        width: 95%;
        padding: 0.5rem;
    }
    
    .boton,
    .boton_forma_pago,
    .boton_pagar {
        width: 100%;
    }
    
    .campo_text,
    .campos_captura {
        width: 100%;
    }
}













/* Contenedor principal - Una sola columna secuencial */
.main-content-pay {
    flex: 1;
    min-height: 400px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Eliminar márgenes y paddings de todos los elementos hijos directos */
.main-content-pay > * {
    margin: 0 !important;
    padding: 0 !important;
}

/* Eliminar el <p> que contiene estilos (primer párrafo) */
.main-content-pay > p:first-of-type {
    display: none !important;
}

/* Primera tabla (información del pago) */
.main-content-pay > table:first-of-type {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 15px;
    width: 100%;
    /* background-color: #fff; */
}

/* Segunda tabla (texto de verificación) */
.main-content-pay > table:nth-of-type(2) {
    width: 100%;
}

/* Tabla de encabezado de medios de pago */
.main-content-pay > table.tabla_encabezado_medios_pago {
    width: 100%;
    margin: 0 !important;
}

/* Formulario de medios de pago */
.main-content-pay > form {
    background-color: #fff;
    padding: 20px !important;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    width: 100%;
}

/* Scripts - ocultar */
.main-content-pay > script {
    display: none;
}

/* RESPONSIVE PARA MÓVILES */
@media (max-width: 768px) {
    .main-content-pay {
        padding: 15px;
        gap: 20px;
    }
    
    .main-content-pay > form {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .main-content-pay {
        padding: 10px;
        gap: 15px;
    }
    
    .main-content-pay > form {
        padding: 12px !important;
    }
}


/* Formato de finalizacion */

.card-format {
    min-height: 50vh;
    background-color: #fff;
    max-width: 40em;
    min-width: 40em;
    margin: auto;
    border-radius: 8px;
    padding: 1em 2em;
    color: #535D60;
    font-size: 14px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-section {
    height: auto;
}

.franja-estado {
    height: 40px;
    border-radius: 8px;
    color: #fff;
    margin: 10px 0 1em;
    padding: 0 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.estado-aprobado {
    background-color: #15a48d;;
}

.estado-pendiente {
    background-color: #FFBD06;
}

.estado-rechazado {
    background-color: #E11A1A;
}

.franja-estado > img {
    margin-right: 10px;
    height: 20px;
}

.info-header {
    text-align: left;
    display: grid;
    padding: 5px;
}

.info-header > span {
    margin: 4px 0;
}

.body-section {
    padding: 5px;
}

.title-section {
    padding: 5px 0;
    border-bottom: 1px solid #DDE3F0;
    margin-bottom: 1em;
    font-size: 16px;
}

.summary-section > div {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
}

.footer-section {
    margin: 1em 0;
}

.buttons-section {
    display: flex;
    justify-content: space-evenly;
}

.btn-download {
    background-color: #15a48d;
    color: #fff;
    width: 120px;
    border: 1px solid #15a48d;
    border-radius: 2em;
    padding: 7px 14px;
    font-weight: bold;
}

.btn-download:hover {
    background-color: #fff;
    color: #15a48d;
    border: 1px solid #15a48d;
}

.btn-finish {
    background-color: #fff;
    color: #15a48d;
    border: 1px solid #15a48d;
    width: 120px;
    border-radius: 2em;
    padding: 7px 14px;
    font-weight: bold;
}

.btn-finish:hover {
    background-color: #fff;
    color: #535D60;
    border: 1px solid #707070;
}

.contact-us-section {
    margin: 2em 10px 0;
    font-size: 13px;
    text-align: center !important;
}

.contact-us-section > span {
    color: #166BFC;
}

@media (max-width : 600px) {
    .card-format {
        padding: 1em 0.5em;
    }
}

@media (max-width: 960px) {
	.card-format {
        min-width: 20em;
    }
}