@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   ESTILOS MODAL ORDEN FORMAL (PDF)
   ==================================== */

.modal-orden-formal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal-orden-formal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

/* Contenedor principal de la orden */
.orden-formal-container {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header del modal */
.orden-formal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
    flex-shrink: 0;
}

.orden-formal-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 900;
}

.orden-formal-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

/* Contenido de la orden (PDF-like) */
.orden-formal-content {
    padding: 1.5rem;
    background: white;
    font-size: 0.95rem;
    flex: 1;
    overflow-y: auto;
    line-height: 1.6;
    min-height: 0;
}

/* Estilos para impresión/PDF */
.orden-documento {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: 'Arial', sans-serif;
}

/* ========== ESTILOS OPTIMIZADOS PARA PDF A4 DE UNA PÁGINA ========== */
.orden-formal-content.pdf-optimizado {
    padding: 0.8rem;
}

.pdf-optimizado .orden-formal-header {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
}

.pdf-optimizado .orden-formal-header h2 {
    font-size: 1.2rem;
    margin: 0 0 0.3rem 0;
}

.pdf-optimizado .orden-formal-header p {
    font-size: 0.75rem;
    margin: 0.1rem 0;
}

.pdf-optimizado .documento-seccion {
    margin-bottom: 0.8rem;
}

.pdf-optimizado .documento-seccion-titulo {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.2rem;
}

.pdf-optimizado .documento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.pdf-optimizado .documento-campo {
    padding: 0.5rem;
    border-left: 2px solid var(--primary);
}

.pdf-optimizado .documento-campo-label {
    font-size: 0.6rem;
    margin-bottom: 0.08rem;
}

.pdf-optimizado .documento-campo-valor {
    font-size: 0.8rem;
}

.pdf-optimizado .documento-tabla {
    margin: 0.6rem 0;
    font-size: 0.75rem;
}

.pdf-optimizado .documento-tabla th {
    padding: 0.4rem;
    font-size: 0.7rem;
}

.pdf-optimizado .documento-tabla td {
    padding: 0.3rem 0.4rem;
}

.pdf-optimizado .detalles-banco {
    padding: 0.6rem;
    margin: 0.6rem 0;
    border-left: 4px solid var(--secondary);
}

.pdf-optimizado .detalles-banco-titulo {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
}

.pdf-optimizado .detalles-banco-grid {
    gap: 0.4rem;
}

.pdf-optimizado .detalles-banco-item {
    padding: 0.3rem;
}

.pdf-optimizado .detalles-banco-label {
    font-size: 0.55rem;
    margin-bottom: 0.05rem;
}

.pdf-optimizado .detalles-banco-valor {
    font-size: 0.75rem;
}

.pdf-optimizado .documento-footer {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    font-size: 0.65rem;
}

/* Encabezado del documento */
.documento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
}

.documento-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.documento-numero {
    text-align: right;
}

.documento-numero-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.documento-numero-valor {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 0.4rem 0.9rem;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    display: inline-block;
    box-shadow: 0 6px 18px var(--primary-18);
}

/* Secciones del documento */
.documento-seccion {
    margin-bottom: 2rem;
}

.documento-seccion-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid de 2 columnas para datos */
.documento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.documento-campo {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.documento-campo-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.documento-campo-valor {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-word;
}

/* Tabla de boletos */
.documento-tabla {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.documento-tabla thead {
    background: var(--primary);
    color: white;
}

.documento-tabla th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.documento-tabla td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.documento-tabla tbody tr:hover {
    background: var(--bg-light);
}

/* Fila de totales */
.documento-tabla-total {
    background: linear-gradient(135deg, var(--primary-10) 0%, var(--primary-05) 100%);
    font-weight: 700;
    border-top: 2px solid var(--primary);
}

/* Detalles bancarios destacados */
.detalles-banco {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    border-left: 6px solid var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.detalles-banco-titulo {
    font-size: 0.9rem;
    color: #92400E;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.detalles-banco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detalles-banco-item {
    background: white;
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.detalles-banco-label {
    font-size: 0.75rem;
    color: #92400E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.detalles-banco-valor {
    font-size: 1rem;
    font-weight: 700;
    color: #78350F;
    font-family: 'Courier New', monospace;
    word-break: break-word;
}

/* Pie del documento */
.documento-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.documento-footer-nota {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Footer del modal con botones */
.orden-formal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f3f4f6 100%);
    border-top: 2px solid var(--border-color);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    justify-content: flex-end;
    flex-shrink: 0;
}

.orden-formal-footer .btn {
    padding: 0.75rem 2rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-md);
}

#btnContinuarOrdenFormal {
    position: relative;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 10px 22px rgba(230, 57, 70, 0.24),
        0 0 0 0 rgba(255, 255, 255, 0.18);
    animation: ordenFormalContinueBuzz 3.2s ease-in-out infinite;
}

#btnContinuarOrdenFormal i {
    animation: ordenFormalContinueArrowBuzz 3.2s ease-in-out infinite;
}

@keyframes ordenFormalContinueBuzz {
    0%, 70%, 100% {
        transform: translateX(0) scale(1);
        box-shadow:
            0 10px 22px rgba(230, 57, 70, 0.24),
            0 0 0 0 rgba(255, 255, 255, 0.18);
    }
    74% {
        transform: translateX(-2px) scale(1.012);
    }
    78% {
        transform: translateX(2px) scale(1.02);
        box-shadow:
            0 12px 28px rgba(230, 57, 70, 0.3),
            0 0 0 3px rgba(255, 255, 255, 0.16),
            0 0 16px rgba(255, 255, 255, 0.22);
    }
    82% {
        transform: translateX(-2px) scale(1.012);
    }
    86% {
        transform: translateX(2px) scale(1.016);
        box-shadow:
            0 12px 28px rgba(230, 57, 70, 0.28),
            0 0 0 2px rgba(255, 255, 255, 0.14),
            0 0 12px rgba(255, 255, 255, 0.18);
    }
    90% {
        transform: translateX(0) scale(1);
        box-shadow:
            0 10px 22px rgba(230, 57, 70, 0.24),
            0 0 0 0 rgba(255, 255, 255, 0.18);
    }
}

@keyframes ordenFormalContinueArrowBuzz {
    0%, 70%, 100% {
        transform: translateX(0);
        opacity: 0.94;
    }
    78%, 86% {
        transform: translateX(4px);
        opacity: 1;
    }
}

.btn-descargar {
    background: linear-gradient(135deg, var(--secondary) 0%, #FBBF24 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(232, 86, 59, 0.2);
}

.btn-descargar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 86, 59, 0.35);
}

.btn-descargar:active {
    transform: translateY(0);
}

/* Estilos para impresión */
@media print {
    .orden-formal-header,
    .orden-formal-footer,
    .modal-overlay {
        display: none !important;
    }

    .orden-formal-container {
        max-width: 100%;
        box-shadow: none;
        border: none;
    }

    .orden-documento {
        border: none;
        padding: 0;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .orden-formal-container {
        max-height: 95vh;
    }
    
    .orden-formal-header {
        padding: 1.75rem;
    }
    
    .orden-formal-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .modal-orden-formal {
        padding: 0.75rem;
    }
    
    .orden-formal-container {
        max-height: 95vh;
        max-width: 100%;
        border-radius: var(--radius-lg);
    }

    .orden-formal-header {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .orden-formal-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .orden-formal-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .orden-formal-content {
        padding: 1.25rem;
    }

    .documento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .detalles-banco-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .documento-header {
        flex-direction: column;
        gap: 0.875rem;
        align-items: flex-start;
        padding-bottom: 0.875rem;
    }

    .documento-numero {
        text-align: left;
        align-self: flex-start;
    }

    .orden-formal-footer {
        flex-direction: column;
        gap: 0.625rem;
        padding: 1.25rem;
    }

    .orden-formal-footer .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .modal-orden-formal {
        padding: 0.5rem;
    }

    .orden-formal-container {
        max-height: 96vh;
    }

    .orden-formal-header {
        padding: 1.25rem 1rem;
    }

    .orden-formal-header h2 {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }

    .orden-formal-header p {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-bottom: 0.25rem;
    }

    .orden-formal-content {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .documento-header {
        gap: 0.75rem;
        padding-bottom: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .documento-logo {
        font-size: 1.25rem;
    }

    .documento-numero-label {
        font-size: 0.75rem;
    }

    .documento-numero-valor {
        font-size: 1.5rem;
    }

    .documento-seccion-titulo {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .documento-campo {
        padding: 0.625rem;
    }

    .documento-campo-label {
        font-size: 0.7rem;
    }

    .documento-campo-valor {
        font-size: 0.85rem;
    }

    .documento-tabla {
        font-size: 0.8rem;
    }

    .documento-tabla th,
    .documento-tabla td {
        padding: 0.4rem 0.25rem;
    }

    .detalles-banco {
        padding: 0.75rem;
        margin: 0.875rem 0;
    }

    .detalles-banco-titulo {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .detalles-banco-item {
        padding: 0.375rem 0;
    }

    .detalles-banco-label {
        font-size: 0.65rem;
    }

    .detalles-banco-valor {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .documento-footer {
        margin-top: 0.875rem;
        padding-top: 0.875rem;
        font-size: 0.75rem;
    }

    .orden-formal-footer {
        padding: 1rem 0.875rem;
        gap: 0.5rem;
    }

    .orden-formal-footer .btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        min-height: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .orden-formal-footer .btn i {
        margin-right: 0.375rem;
    }
}

@media (max-width: 480px) {
    .modal-orden-formal {
        padding: 0.375rem;
    }

    .orden-formal-header {
        padding: 1rem 0.75rem;
    }

    .orden-formal-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .orden-formal-header p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.15rem;
    }

    .orden-formal-content {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .documento-header {
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .documento-logo {
        font-size: 1rem;
    }

    .documento-numero-label {
        font-size: 0.65rem;
    }

    .documento-numero-valor {
        font-size: 1.25rem;
    }

    .documento-seccion {
        margin-bottom: 0.75rem;
    }

    .documento-seccion-titulo {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
        padding-bottom: 0.25rem;
    }

    .documento-campo {
        padding: 0.5rem;
    }

    .documento-campo-label {
        font-size: 0.65rem;
    }

    .documento-campo-valor {
        font-size: 0.8rem;
    }

    .documento-tabla {
        font-size: 0.75rem;
    }

    .documento-tabla th,
    .documento-tabla td {
        padding: 0.3rem 0.15rem;
    }

    .detalles-banco {
        padding: 0.625rem;
        margin: 0.75rem 0;
    }

    .detalles-banco-titulo {
        font-size: 0.7rem;
        margin-bottom: 0.375rem;
    }

    .detalles-banco-item {
        padding: 0.25rem 0;
    }

    .detalles-banco-label {
        font-size: 0.6rem;
    }

    .detalles-banco-valor {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .documento-footer {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .orden-formal-footer {
        flex-direction: column-reverse;
        padding: 0.75rem;
        gap: 0.375rem;
    }

    .orden-formal-footer .btn {
        width: 100%;
        padding: 0.55rem 0.75rem;
        font-size: 0.75rem;
        min-height: 2rem;
    }

    .orden-formal-footer .btn i {
        margin-right: 0.25rem;
        font-size: 0.85rem;
    }
}

    .documento-numero-valor {
        font-size: 1.3rem;
    }

    .documento-seccion-titulo {
        font-size: 0.95rem;
    }

    .documento-tabla {
        font-size: 0.85rem;
    }

    .documento-tabla th,
    .documento-tabla td {
        padding: 0.5rem;
    }
}

/* ============================================================ */
/* ESTILOS PARA ORDEN FORMAL - UTILIZA VARIABLES DE TEMA       */
/* ============================================================ */

.orden-documento {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue';
    color: var(--text-dark);
    padding: 24px;
    max-width: 100%;
    background: white;
}

/* ============================================================ */
/* ENCABEZADO: Logo + Nombre Organizador + ID Orden            */
/* ============================================================ */

.orden-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}

.orden-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.orden-header-left img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.orden-organizador {
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.orden-header-right {
    text-align: right;
}

.orden-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.orden-id {
    font-weight: 900;
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    color: var(--primary);
    white-space: nowrap;
    margin-bottom: 12px;
}

.orden-fecha,
.orden-hora {
    font-size: 0.8rem;
    color: var(--text-light);
}

.orden-fecha {
    margin-bottom: 2px;
}

/* ============================================================ */
/* SECCIONES: Datos, Resumen, Pago                             */
/* ============================================================ */

.orden-section {
    margin-bottom: 20px;
}

.orden-section-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.orden-section-content {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px;
    font-size: 0.9rem;
}

/* ============================================================ */
/* DATOS DEL CLIENTE                                            */
/* ============================================================ */

.orden-cliente-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-size: 0.9rem;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
}

.orden-cliente-grid > div {
    display: flex;
    flex-direction: column;
}

.orden-cliente-grid > div:nth-child(3) {
    grid-column: 1 / -1;
}

.orden-field-label {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.orden-field-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================================ */
/* RESUMEN DE COMPRA                                            */
/* ============================================================ */

.orden-boletos {
    margin-bottom: 12px;
}

.orden-boletos-list {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
    word-wrap: break-word;
    white-space: normal;
    word-break: normal;
    hyphens: none;
    overflow-wrap: break-word;
}

.orden-totales {
    border-top: 2px solid var(--border-color);
    padding-top: 12px;
}

.orden-subtotal,
.orden-descuento {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.orden-subtotal-label,
.orden-descuento-label {
    color: var(--text-light);
}

.orden-descuento-valor {
    font-weight: 600;
    color: var(--success-dark);
}

.orden-total-bar {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-08) 0%, var(--primary-10) 100%);
    padding: 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.orden-total-valor {
    color: var(--primary);
    font-weight: 900;
}

/* ============================================================ */
/* INFORMACIÓN DE PAGO                                          */
/* ============================================================ */

.orden-pago-item {
    margin-bottom: 10px;
}

.orden-pago-item:last-child {
    margin-bottom: 0;
}

.orden-pago-label {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.orden-pago-valor {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.orden-pago-valor-monospace {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ============================================================ */
/* MENSAJE FINAL (CTA)                                          */
/* ============================================================ */

.orden-mensaje-final {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 8px;
    padding: 18px;
    font-size: 0.95rem;
}

.orden-mensaje-titulo {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.orden-mensaje-texto {
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */

@media (max-width: 640px) {
    .orden-documento {
        padding: 16px;
    }

    .orden-header {
        flex-direction: column;
        gap: 16px;
    }

    .orden-header-left img {
        height: 80px;
    }

    .orden-header-right {
        text-align: left;
        width: 100%;
    }

    .orden-cliente-grid {
        grid-template-columns: 1fr;
    }

    .orden-cliente-grid > div:nth-child(3) {
        grid-column: 1;
    }
}
