.support-main-title {
  font-size: 36px
}

.support-help-group {
  font-size: 30px;
}

.support-help-page {
  font-size: 24px;
}

.form-check-input,
.form-check-label {
    display: inline-block;
    vertical-align: middle;
}
.form-check-item {
    display: block;
}

textarea { resize: none; }


.caja{

	display: none,
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #f2f2f2;
    text-align: center;
    line-height: 50px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #f2f2f2;
    text-align: center;
    line-height: 30px;
}

.bigicon {
    font-size: 35px;
    color: #2e6da4;
}


body {
	background-color: #fdfefe; 
}

#wrap {
  
  background-color: #F2F2F2; 
  margin-bottom: 50px;
  margin-top: 50px;
}

label {
    display: block;
    font: 1rem 'Fira Sans', sans-serif;
}

input,
label {
    margin: .4rem 0;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */

   .modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('/nc_vz_website_payment_tickets/static/src/img/ajax-loader.gif') 
                50% 50% 
                no-repeat;
  }
  
  /* When the body has the loading class, we turn
     the scrollbar off with overflow:hidden */
  body.loading .modal {
      overflow: hidden;   
  }
  
  /* Anytime the body has the loading class, our
     modal element will be visible */
  body.loading .modal {
      display: block;
  }  

.centered-table {
    text-align: left;
}

.centered-table td,
.centered-table th {
    text-align: left;
}

.custom-button-container {
    text-align: center;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust the gap to your preference */
}

/* Payment ticket tables — responsive (info + details) */
.table-payment-wrapper {
    width: 100%;
    margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .table-payment-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #table_info.table-payment-responsive {
        min-width: 1100px;
    }

    #table_details.table-payment-responsive {
        min-width: 1350px;
    }
}

@media (max-width: 767px) {
    .table-payment-wrapper {
        overflow-x: visible;
    }

    #table_info.table-payment-responsive,
    #table_details.table-payment-responsive {
        width: 100%;
        margin-bottom: 0;
        border: 0;
    }

    #table_info.table-payment-responsive thead,
    #table_details.table-payment-responsive thead {
        display: none;
    }

    #table_info.table-payment-responsive tbody tr,
    #table_details.table-payment-responsive tbody tr {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        column-gap: 0.75rem;
        row-gap: 0;
        margin-bottom: 0.75rem;
        padding: 0.5rem 0.65rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    #table_info.table-payment-responsive tbody tr:nth-child(odd),
    #table_details.table-payment-responsive tbody tr:nth-child(odd) {
        background-color: #f9f9f9;
    }

    #table_info.table-payment-responsive tbody td,
    #table_details.table-payment-responsive tbody td {
        display: block;
        flex: 1 1 100%;
        box-sizing: border-box;
        padding: 0.3rem 0;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left;
        white-space: normal;
    }

    /* Pares de campos en dos columnas (móvil) */
    #table_info.table-payment-responsive tbody td.payment-field-half,
    #table_details.table-payment-responsive tbody td.payment-field-half {
        flex: 1 1 calc((100% - 0.75rem) / 2);
        max-width: calc((100% - 0.75rem) / 2);
    }

    #table_info.table-payment-responsive tbody td:last-child,
    #table_details.table-payment-responsive tbody td:last-child {
        border-bottom: none;
    }

    #table_info.table-payment-responsive tbody td::before,
    #table_details.table-payment-responsive tbody td::before {
        display: block;
        font-weight: 600;
        font-size: 11px;
        color: #555;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }

    #table_info.table-payment-responsive tbody td .form-control,
    #table_details.table-payment-responsive tbody td .form-control,
    #table_details.table-payment-responsive tbody td .select2-container {
        width: 100% !important;
        max-width: 100%;
    }

    #table_info.table-payment-responsive tbody td:nth-child(1)::before { content: "#"; }
    #table_info.table-payment-responsive tbody td:nth-child(2)::before { content: "Método de Pago"; }
    #table_info.table-payment-responsive tbody td:nth-child(3)::before { content: "Banco"; }
    #table_info.table-payment-responsive tbody td:nth-child(4)::before { content: "Clientes"; }
    #table_info.table-payment-responsive tbody td:nth-child(5)::before { content: "Cot. Esp."; }
    #table_info.table-payment-responsive tbody td:nth-child(6)::before { content: "Compañía"; }
    #table_info.table-payment-responsive tbody td:nth-child(7)::before { content: "Monto Doc ($)"; }
    #table_info.table-payment-responsive tbody td:nth-child(8)::before { content: "Fecha de Pago"; }
    #table_info.table-payment-responsive tbody td:nth-child(9)::before { content: "Monto"; }
    #table_info.table-payment-responsive tbody td:nth-child(10)::before { content: "Moneda"; }
    #table_info.table-payment-responsive tbody td:nth-child(11)::before { content: "Tasa (Opcional - USD)"; }
    #table_info.table-payment-responsive tbody td:nth-child(12)::before { content: "Número de Confirmación"; }
    #table_info.table-payment-responsive tbody td:nth-child(13)::before { content: "Nombre del Depositante"; }

    #table_details.table-payment-responsive tbody td:nth-child(1)::before { content: "#"; }
    #table_details.table-payment-responsive tbody td:nth-child(2)::before { content: "Registro Bancario"; }
    #table_details.table-payment-responsive tbody td:nth-child(3)::before { content: "Cliente"; }
    #table_details.table-payment-responsive tbody td:nth-child(4)::before { content: "Pedido"; }
    #table_details.table-payment-responsive tbody td:nth-child(5)::before { content: "Compañía"; }
    #table_details.table-payment-responsive tbody td:nth-child(6)::before { content: "Fac./Cot. Esp."; }
    #table_details.table-payment-responsive tbody td:nth-child(7)::before { content: "Monto Doc ($)"; }
    #table_details.table-payment-responsive tbody td:nth-child(8)::before { content: "Saldo Doc ($)"; }
    #table_details.table-payment-responsive tbody td:nth-child(9)::before { content: "Monto IVA (Bs)"; }
    #table_details.table-payment-responsive tbody td:nth-child(10)::before { content: "Monto a Cobrar"; }
    #table_details.table-payment-responsive tbody td:nth-child(11)::before { content: "Saldo a Favor ($)"; }
    #table_details.table-payment-responsive tbody td:nth-child(12)::before { content: "Moneda"; }
    #table_details.table-payment-responsive tbody td:nth-child(13)::before { content: "Tasa"; }
    #table_details.table-payment-responsive tbody td:nth-child(14)::before { content: "Incluye"; }
    #table_details.table-payment-responsive tbody td:nth-child(15)::before { content: "Nº Talonario"; }

    #table_details.table-payment-responsive tbody td.payment-incluye-cell .form-check {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        margin-top: 0;
    }

    #table_details.table-payment-responsive tbody td.payment-incluye-cell .form-check-item {
        flex: 1 1 calc((100% - 0.75rem) / 2);
        display: flex;
        align-items: center;
        margin-bottom: 0.15rem;
    }

    #table_details.table-payment-responsive tbody td.payment-incluye-cell .form-check-label {
        margin: 0 0 0 0.25rem;
        white-space: normal;
    }

    #table_info.table-payment-responsive tfoot tr,
    #table_details.table-payment-responsive tfoot tr {
        display: block;
        border: none;
        background: transparent;
        box-shadow: none;
        margin-bottom: 0;
        padding: 0;
    }

    #table_info.table-payment-responsive tfoot td,
    #table_details.table-payment-responsive tfoot td {
        display: block;
        border: none;
        padding: 0.5rem 0;
    }

    #table_info.table-payment-responsive tfoot td::before,
    #table_details.table-payment-responsive tfoot td::before {
        display: none;
    }

    #table_info.table-payment-responsive tfoot .button-container,
    #table_details.table-payment-responsive tfoot .button-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    #table_info.table-payment-responsive tfoot .button-container .btn,
    #table_details.table-payment-responsive tfoot .button-container .btn {
        width: 100%;
        margin: 0;
    }
}