

/* Sistema de Notificaciones Compactas */
#cocpr-compact-notifs {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
}

.cocpr-notif-compact {
    background: white;
    border-radius: 10px;
    border: 1px solid #2048fa2e;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.btn_verif_pend_noti {
    padding: 10px 20px;
    background: #fff;
    color: #333; 
    border: none;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_verif_pend_noti:hover {
    background: #4CAF50;
    color: #ffffff;
}

/* Clase separada para el estado activo */
.btn_verif_pend_noti.active {
    border: solid 1px #4CAF50;
    background: #4CAF50;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* Opcional: para mantener el hover incluso cuando está activo */
.btn_verif_pend_noti.active:hover {
    background: #45a049; /* Un verde un poco más oscuro */
}

.cocpr-notif-compact:hover {
    border-color:1px solid #2048fa2e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Encabezado compacto */
.cocpr-notif-header {
    background: #f8fafc;
    padding: 10px 15px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cocpr-notif-id {
    background: #3b82f6;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    min-width: 45px;
    text-align: center;
}

.cocpr-notif-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cocpr-status-pendiente {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.cocpr-status-aprobado {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.cocpr-status-rechazado {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.cocpr-status-procesando {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.cocpr-notif-date {
    color: #64748b;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cocpr-notif-amount {
    margin-left: auto;
    color: #059669;
    font-weight: 700;
    font-size: 14px;
    background: #f0fdf4;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

/* Contenido compacto */
.cocpr-notif-content {
    padding: 12px 15px;
}

.cocpr-notif-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.cocpr-notif-col {
    flex: 1;
    min-width: 120px;
}

.cocpr-label {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cocpr-value {
    display: block;
    color: #1e293b;
    font-size: 13px;
    padding: 5px 8px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cocpr-verif-verificado {
    background: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
    color: #059669 !important;
}

.cocpr-verif-pendiente {
    background: #fffbeb !important;
    border-color: #fde68a !important;
    color: #d97706 !important;
}

.cocpr-verif-rechazado {
    background: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
}

/* Botón de confirmar compacto */
.cocpr-btn-confirm {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cocpr-btn-confirm:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.cocpr-btn-confirm:active {
    transform: translateY(0);
}

.cocpr-btn-confirm:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}
.cocpr-btn-desconfirm {
    padding: 8px 16px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cocpr-btn-desconfirm:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cocpr-btn-desconfirm:active {
    transform: translateY(0);
}

.cocpr-btn-desconfirm .icon {
    font-size: 16px;
}
/* Concepto */
.cocpr-notif-concepto {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.cocpr-notif-concepto .cocpr-value {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #0369a1;
    font-size: 12px;
    font-style: italic;
    white-space: normal;
    line-height: 1.4;
}

/* Responsive para móviles */


/* Animación de entrada */
@keyframes cocprSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cocpr-notif-compact {
    animation: cocprSlideIn 0.3s ease;
}



.card_sorteo_brasil {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    page-break-inside: avoid;
}

.input_invisible{
    height: 0px;
    border: none;
    outline: none;
    width:200px; 
    background-color:transparent;
}

.cont_table_listado {
    --tw-space-y-reverse: 0;
    margin-top: 10px;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-radius: 0.75rem;
    overflow-x: auto;
    box-sizing: border-box;
    border-width: 0;
    max-height: 48vh;
    height: auto;
    border-style: solid;
    border-color: #e5e7eb;
    position: relative;
}

.contenedor_tabla_listado{
text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1rem;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    position: sticky;
    top: 0;
    z-index: 2;    
}

.card-header-sorteo-brasil {
    border-bottom: 1px dashed #3498db;
    padding-bottom: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.card-logo-sorteo-brasil {
    width: 60px;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
    margin: 1px auto 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-label-sorteo-brasil {
    font-weight: bold;
    min-width: 55px;
    color: #2c3e50;
}
.detail-value-sorteo-brasil {
    color: #34495e;
    flex-grow: 1;
}
.card-details-sorteo-brasil {
    flex-grow: 1;
    font-size: 10px;
    text-align: left;
}

.detail-row-sorteo-brasil {
    display: flex;
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px dotted #f0f0f0;
}

.card-footer-sorteo-brasil {
    background-color: #f8f9fa;
    margin-top: 8px;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
    border-top: 1px dashed #ddd;
}

.logo-placeholder-sorteo-brasil {
    color: #3498db;
    font-size: 24px;
    font-weight: bold;
    }

    .card-number-sorteo-brasil {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #3498db;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.participant-text-sorteo-brasil {
    color: #e74c3c;
    font-weight: bold;
    font-size: 10px;
}

table{border-collapse:collapse}
div{border-collapse:collapse}
input{border-collapse:collapse}
label{border-collapse:collapse}
.span_tit_submenu {
    display: inline-block;
    flex-grow: 1;
    overflow: hidden;
    font-size: 13px;
    text-align: left;
    color: #000;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input_editar_monto_cuotero {
   width: 100%;
    height: auto;
    border: none;
    outline: none;background-color:transparent;text-align: center;height: 20px;border-radius: 0px 8px 8px 0px;border:none;font-size: 11px;font-weight: bold;padding: 7px 8px 7px;
}
.tit_submenu1 {
    /* border-style: double; */
    background: #9e9e9e12;
    /* border-radius: 10px; */
    /* align-items: center; */
    /* width: 200px; */
    color: #949292;
    /* text-align: center; */
    padding-left: 13px;
    /* border: solid 3px #fff; */
    /* -webkit-border-radius: 200px 200px 200px 200px; */
    /* border: 6px double rgb(255, 255, 255); */
    /* align-items: center; */
    line-height: normal;
    display: flex;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    overflow: hidden;
}
/* Contenedor principal */
.loteamiento-card-container {
  width: 100%;
  margin-bottom: 2rem;
}

/* Wrapper de la tarjeta */
.loteamiento-card-wrapper {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 250px;
  display: flex;
  align-items: flex-end;
  background: #000;
  transition: all 0.5s ease;
}

.loteamiento-card-wrapper:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

/* Contenedor de imagen */
.loteamiento-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loteamiento-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

.loteamiento-card-wrapper:hover .loteamiento-card-img {
  transform: scale(1.1);
}

/* Overlay de gradiente */
.loteamiento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.loteamiento-card-wrapper:hover .loteamiento-card-overlay {
  opacity: 0.9;
}

/* Contenido de la tarjeta */
.loteamiento-card-content {
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* Botón personalizado */
.loteamiento-card-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  float: right;
}

.loteamiento-card-button:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

/* Icono del botón */
.loteamiento-card-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.loteamiento-card-button:hover .loteamiento-card-icon {
  transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .loteamiento-card-wrapper {
    height: 20rem;
    border-radius: 1rem;
  }
  
  .loteamiento-card-content {
    padding: 1rem;
  }
  
  .loteamiento-card-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .loteamiento-card-wrapper {
    height: 18rem;
  }
  
  .loteamiento-card-button {
    width: 100%;
    justify-content: center;
  }
}

/* Efectos de animación adicionales */
@keyframes loteamientoCardAppear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loteamiento-card-container {
  animation: loteamientoCardAppear 0.6s ease-out;
}



.text-primary-700{
        text-decoration: underline;
    --tw-text-opacity: 1;
    color: rgb(0 114 117 / var(--tw-text-opacity, 1));
}


.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.font-semibold {
    font-weight: 600;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}


@media (min-width: 768px) {
    .md\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}


.gap-6 {
    gap: 1.5rem;
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid {
    display: grid
;
}

.mb-6 {
    margin: 1.5rem;
}

.duration-300 {
    transition-duration: 300ms;
}


.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: 
cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.bg-gray-100
 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.rounded-lg {
    border-radius: 0.5rem;
}
.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}


.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.p-2 {
    padding: 0.2rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.p-4 {
    padding: 1rem;
}


.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}



.h-40 {
    height: 10rem;
}

.flex {
    display: flex;
}
.text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.boton_dasa{
    border: 1px solid transparent;color: #ffffff;font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;text-align: center;font-weight: bold;cursor: pointer;height: auto;padding:5px;outline: none;box-shadow: 1px 1px 7px #0000001f;border-radius: 7px;border-style: inherit;
}
.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.leading-5
{
    line-height: 1.25rem;
}
.font-semibold {
    font-weight: 600;
}
.bg-amber-100
 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.rounded-full {
    border-radius: 9999px;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.object-cover {
    object-fit: contain;
}




.h-40 {
    height: 10rem;
}
.h-40 {
    height: 10rem;
}

img, video {
    max-width: 100%;
    height: auto;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}


.input_clave{
    background:transparent;
   border: 1px solid #adadad;
   border-radius: 8px;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   color: #262626;
   font-size: 14px;
   padding: 9px 8px 7px;
   width: 100%;
  
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        .input_clave:focus{
            border: 1px solid var(--color_info);
            outline:none;
        }
        .input_clave::-webkit-input-placeholder{
            color:#999;
            font-weight:300;
            opacity:1;
        }

.input_clave_error{
    background:transparent;
   border: 1px solid red;
   border-radius: 8px;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   color: #262626;
   font-size: 14px;
   padding: 9px 8px 7px;
   width: 100%;
  
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        .input_clave_error:focus{
            border: 1px solid red;
            outline:none;
        }
        .input_clave_error::-webkit-input-placeholder{
            color:#999;
            font-weight:300;
            opacity:1;
        }


.progress {
    height: 35px;
    width: 100%;
    border: 1px solid #dededf;
    border-radius: 5px;
    background-color: #e6f3fa;
    margin-bottom: 15px;
}
 
.progress-bar {
    height: 100%;
    background: #4caf50;
    
    float:left;
    align-items: center;
    transition: width 0.25s;
    border-radius: 5px;
}
 
.progress-bar-text {
    margin-left: 10px;
    font-weight: bold;
    color: #cce7f5;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.input_editar {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: #55acee;
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_editar:after {
content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
    background: url(../icono/ver_pago.png) no-repeat;
    background-size: 14px;

}
.tooltip .tooltiptext {
  visibility: hidden;
width: 120px;
    background-color: #795548;
    color: #fff;
    margin: -29% 0% 0% 150%;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


	.table_blanco_reporte_cheque_anulado {
    width: 100%;
    height: 20px;
    background-color:#ffb49c4d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    font-weight: bold;
    text-align: center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
    cursor: pointer;
}


	.table_blanco_reporte {
    width: 100%;
    height: 20px;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    font-weight: bold;
    text-align: center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
    cursor: pointer;
}	
	.table_gris_reporte {
    width: 100%;
    height: 20px;
    background-color: rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    font-weight: bold;
    text-align: center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
    cursor: pointer;
}	
.div_td_desc{
	width: 100%;
    height: 100%;
    align-items: center;
    display: grid;
    outline: none;
}
@import url(http://fonts.googleapis.com/css?family=Raleway:400,500,700);
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 20px;
 
  cursor: pointer;
  font-size: 15px;
  font-weight:bold;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input_file {
    padding: 15px;
    opacity: 0;
    position: relative;
    cursor: pointer;
    left: -120px;
    z-index: 1;
}
.container_input1 {
    margin: 0 auto;
    border: solid 1px #CCC;
    overflow: hidden;
}
a{
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

a:hover {
    color:#f44336;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.img_icon {
    width: 20px;
    height: 20px;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color:var(--colorbotonmas);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  background: white;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 3.5px;
    left: 3.7px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: white;
}






/* Create a custom radio button */
.checkmark1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark1 {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark1 {
  background-color:var(--colorbotonmas);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark1:after {
  content: "";
  position: absolute;
  display: none;
  background: white;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark1:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark1:after {
 	top: 3.5px;
    left: 3.7px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: white;
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src:url('../fonts/codropsicons/codropsicons.eot');
	src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/codropsicons/codropsicons.woff') format('woff'),
		url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
		url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

.text_descrip{
    background-color: var(--coloracceso);
    width: 40%;
        padding: 7px;
    border-radius: 10px;
    color: #fff;
    font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif; 
}
.table_filtro{
        height: 35px;
    width: 60%;
    margin-top: 10px;
    margin-left: 10px;
    float: left;
    background: var(--colorcabezera_menu);
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
}
 .ancho_tabladetalles{
		width:34cm;
	}

.table_titulo_gral {
	width: 100%;
    height: 20px;
    background-color:var(--colorcabezera_menu);
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		.table_titulo_gral_azul {
	width: 100%;
    height: 20px;
    background-color:#2196f3;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		.table_titulo_gral_rojo {
	width: 100%;
    height: 20px;
    background-color:#f44336;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		
		
		
	.icono_schot_td{
	float: right;
   
}
	.table_titulo {
	width: 100%;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	cursor:pointer;
		}
.cnt_det_1 {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
.table_buscador{
	width: 100%; margin: auto;padding-top: 2%;
}
.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.mapa_menu_style {
position: absolute;
background: #fff;
padding: 10px;
font-family: 'Open Sans', sans-serif;
}
.detalles_mapa{
	    float:left;
        position: relative;
        margin-left: 2%;
        padding: 5px;
        border: none;
        font-size: 9px;
		font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif; 
        color:#333333;
        border-radius: 4px;
        background: #fff;
}
.marker {
display: block;
border: none;
border-radius: 50%;
cursor: pointer;
padding: 0;
}
.texto_marker{    
   text-align: center;
    margin-right: 15%;
    margin-top: 27%;
    font-weight: 900;
	}
	.texto_marker1{    
  width: 300px;
    font-size: 19px;
    height: 100px;
    -webkit-text-stroke: 1px #ffffff;
    position: absolute;
    text-align: -webkit-center;
    top: -30px;
    left: -124px;
    color: #000000;
    font-weight: 900;
	}
.cnt_forms{
    width: 68.4%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.i1{
/* 	background-position: 0 -324px;
    background-size: auto;
    background-repeat: no-repeat;
    display: inline-block;
    height: 20px;
    width: 20px;
	font-style: italic;cursor: pointer;
list-style: none;vertical-align: -0.25em; */
}
.div_icon_explorer{
	height: 38px; width: 38px;top: 110px;justify-content: center;box-shadow: 0 2px 4px #65676b;-webkit-box-shadow:0 2px 4px #65676b; margin-top:50px;border-radius: 50%;align-self: center;display: flex;background-color:#ffffff;align-items: center;cursor: pointer;text-align: inherit;
}
.div_text_explorer{
	font-family: inherit;justify-content: center;box-sizing: border-box;font-size: 9pt;text-align: center;font-weight: bold;color:#ffffff;
	margin-top:5px;width: 100%;display: flex;top: 120px;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
.div_cnt_photo{
	background: rgb(98,66,237);
	background: linear-gradient(107deg, rgba(98,66,237,1) 2%, rgba(132,187,244,1) 98%);
	background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
	border-radius: 8px;
	display: inline-block; 
	height: 300px;
	width: 200px;
	list-style: none;
	cursor: pointer;
	text-align: inherit;
	align-items: center;
flex-direction: column;
border: solid 1px #cecece;
    touch-action: manipulation;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
}
.DivPrincipal{
	top:0px;
	left:0px;
	width:100%;
	height:100%;
    background-size: 500px auto;
	background-image: url("../img/fondosistema.png");
	 background-repeat: no-repeat;
  background-position: 70% 30%;
	    font-family: Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;
}
.menuprincipal{
	top:0;
	left:0;
	right:0;
	display: block;
    width:29%;
}
.menu_m{
   
	font-family: inherit;
	box-sizing: border-box;
	position: relative;
	display: flex;
	z-index: 0;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}
.cnt_v_lotead{
	width:33%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.a_v_lotead{
	display: block; background-color: #fff; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.13); margin-bottom: 20px;cursor: pointer;text-decoration: none;overflow: hidden;border-radius: 3px;height: 200px;
}
.cnt_a_v_lotead{
	width: 100%;height: 100%;overflow: hidden; position: relative;box-sizing: border-box;display: block;
}
.cnt_img_lot{
	    width: 100%; height: 100%;position: relative;display: block;background-size: cover;background-position: 50% 50%;background-repeat: no-repeat;box-sizing: border-box;
	}
	
.cnt_text_lot{
position: absolute;width: 100%;top: 0;left: 0;bottom: 0;right: 0;z-index: 1;
}
.cnt_text_lot_sep{
	font-size: 30px;line-height: 30px;position: absolute;z-index: 5;top: 25%;left: 20%;right: 20%;color: #fff;text-align: center;width: 60%;letter-spacing: -1px;border-bottom: 1px solid rgba(255,255,255,0.5);overflow: hidden;padding-bottom: 5px;
}
.cnt_text_lot_bot{
	background-color: var(--colorcabezera);font-size: 10px;line-height: 11px;color: #fff;padding: 2px 4px;border-radius: 2px;position: absolute;top: 15px;left: 50%;text-transform: uppercase;z-index: 3;-webkit-transform: translateX(-50%);transform: translateX(-50%);
}

.cnt_text_lot_bot1{
	background-color: #09c7a0;font-size: 10px;line-height: 11px;color: #fff;padding: 2px 4px;border-radius: 2px;top: 15px;left: 50%;text-transform: uppercase;z-index: 3;
}
.cnt_text_lot_h3{
	font-size: 18px !important;line-height: 22px !important;font-weight: normal !important;margin: 0;padding: 0 !important;margin: 0 0 0 10% !important;position: absolute;z-index: 3;top: 48%;left: 0;color: #fff;text-align: center;width: 80%;white-space: nowrap;overflow: hidden;
}
.cnt_text_lot_ubic{
	font-size: 11px;font-style: italic;padding-top: 2px;position: absolute;bottom: 30%;left: 0;width: 100%;text-align: center;z-index: 4;color: #fff;
}
.menu_cabezera{
	position:absolute;
	background:var(--colorcabezera);
	width:100%;
	height:55px;
	display:flex;
	align-items:center;
	-webkit-box-shadow:1px 1px 7px #00000052;
    box-shadow:1px 1px 7px #00000052;
}

.cont_sub_menu{
	width:30%;
	    min-height: calc(100vh - 55px);
    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
	background-image: url(../img/fondomenu.png);
	overflow-x:none;
	background-color:#cecece;
}
.con_tit_submenu{
    border-bottom: 1px solid #f2f2f2;
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.con_tit_submenu1{
	/*padding-right: 15px; */
    border-top: 1px solid #f2f2f2; 
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: cente
}
.con_tit_submenu2{
	/*padding-right: 15px; */
   
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: cente
}
.tit_submenu{
	text-align: left;
	align-items: center;
    line-height: normal;
    display: flex;
	color: #333333;
   
    flex-grow: 1;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    overflow: hidden;
}
.span_tit_submenu_1{
	    display: inline-block;
		flex-grow: 1;
    overflow: hidden;
	text-align:left;
	color:#ccb880;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tit_submenu1{
	/*border-style: double; */
    background: #9e9e9e12;
    /* border-radius: 10px; */
    /* align-items: center; */
    /* width: 200px; */
    color: #949292;
    /* text-align: center; */
    padding-left: 13px;
    /* border: solid 3px #fff; */
    /* -webkit-border-radius: 200px 200px 200px 200px; */
    /* border: 6px double rgb(255, 255, 255); */
    /* align-items: center; */
    line-height: normal;
    display: flex;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
}
.span_tit_submenu{
	    display: inline-block;
		flex-grow: 1;
    overflow: hidden;
	text-align:left;
	color:#000;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.span_tit_submenu1{
	display: inline-block;
    text-align: center;
	flex-grow: 1;
    overflow: hidden;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.span_titulo_vistalistado{
	display: inline-block;
	padding-left:15px;
	color:#fff;
	flex-grow: 1;
    font-size: 18px; 
   
	font-weight:bold;
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
.submenu{
	background-color:#fff;
    cursor: pointer;
	display: flex;
    flex-direction: row;
    height: 65px;
    pointer-events: all;
    /*position: relative;*/
	font: inherit;
    vertical-align: initial;
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
}

 .submenu:hover {
 background-color:var(--colorcabezera);
 transform: scale(1.05);
 transition: background-color 1s;
  
}
 .submenu:active {
 background-color:var(--colorcabezera);

}

 .submenu:focus {
 background-color:var(--colorcabezera);

}
.submenu1{
	background-color:#fff;
	display: flex;
    flex-direction: row;
    height: 30px;
    
    /*position: relative;*/
	color:#333333;
	font: inherit;
    font-size: 11px;
    
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
	flex: none;
    align-items: center;
}
.submenu2{
	background-color:#fff;
	display: flex;
    flex-direction: row;
    height: 40px;
	font: inherit;
    font-size: 10px;
    vertical-align: initial;
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
}
.con_ic_submenu{
	
	padding: 0 15px 0 13px;
	flex: none;
    display: flex;
    align-items: center;
	
	
}
.con_img_submenu{
	    height: 49px;
    width: 49px;
	border-radius: 50%;
    background-color:#e6e6e6;
    overflow: hidden;
}
.ic_img_submenu{
	visibility: visible;
   
    opacity: 1;
    display: block;
    transition: opacity .15s ease-out;
   width: 30px;
    height: 30px;
    padding: 10px;
    z-index: 100;
    overflow: hidden;
    -webkit-user-drag: none;
}

.ic_menu_img{
	width: 36px;
    padding: 2px;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
    border-radius: 50px;
    border: solid 3px  var(--colorfondoblanco);
    height: 36px;
    /* filter: hue-rotate(556deg);  */
}

.ic_menu_img1{
	width: 36px;
    padding: 2px;
    outline: none;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 50px;
    border: solid 3px  var(--colorfondoblanco);
    height: 36px;
    /* filter: hue-rotate(556deg);  */
}
.modalemergente{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width:100%;
	height:100%;
	background-color: var(--colorfondoblanco);
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    z-index: 1050;
    display: block;
    overflow: hidden;
    outline: 0;
	overflow-x: hidden;
    overflow-y: hidden;
    /* padding-right: 17px; */
}
.modal_body {
	width: 100%;
    height: 100%;
    background-color: var(--colorfondoblanco);
   
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 14px;
}
.modal_header{
    
   -webkit-box-shadow:1px 1px 7px #00000052;
    box-shadow:1px 1px 7px #00000052;
    width: 100%;
    height: 55px;
	position:absolute;
	background-color:var(--colorcabezera);
	text-align: left;
	align-items: center;
    line-height: normal;
    display: flex;
}
.content_emergente_p{

}



.input_atras {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
   background:var(--colorbotonatras);
   border-radius:50%;
   -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    outline: none;
        height: 35px;
    width: 35px;
	 position: relative;
  overflow: hidden;
}
.modal_body1 {
 width: 100%;
 height: 350px;
       min-height: 650px;
    font-weight: 500;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
	 background:var(--colorfondoblanco);
}
.input_mas {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	 -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotonmas);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	/*  position: relative; */
  overflow: hidden;
}
.input_eliminar {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotoneliminar);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_photo {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotonphoto);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_guardar {
    border: none;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotonmas);
    border-radius: 30px;
    outline: none;
    height: 36px;
	cursor:pointer;
    width: 46%;
	float:left;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 -webkit-border-radius: 200px 200px 200px 200px;
    border: 5px double rgb(255, 255, 255);
}



.input_guardar1 {
    border: none;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotonmas);
    border-radius: 20px;
    outline: none;
    height: 28px;
	cursor:pointer;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 -webkit-border-radius: 15px;
    border: 2px double rgb(255, 255, 255);
}


.input_cancelar {
    border: none;
	cursor:pointer;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotoncancelar);
    border-radius: 30px;
    outline: none;
    height: 36px;
    width: 46%;
	float:right;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-border-radius: 200px 200px 200px 200px;
    border: 5px double rgb(255, 255, 255);
}
.cont_opciones{
	right: 4px;
	outline: none;
	background-color: var(--dropdown-background);
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 rgba(var(--shadow-rgb),.26),0 2px 10px 0 rgba(var(--shadow-rgb),.16);
    padding: 9px 0;
}
.cont_buscador{
	background: aliceblue;
    width: 100%;
    text-align: left;
    height: 35px;
    align-items: center;
    line-height: normal;
    display: flex;
	 outline: none;
    border-radius: 40px;
}

.bus_text{
cursor: text;
    width: 90%;
    border: none;
    background: transparent;
    height: 20px;
    outline: none;
    margin: 0px auto;
    font-size: 15px;
    font-weight: bold;
    padding: 08px 8px 8px 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}




 .input_1_1{
    border: 1px solid #efefef;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #262626;
    font-size: 14px;
    padding: 9px 8px 7px;
    width: 100%;
    /* margin-left: 4px; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
         }
		 .input_1_1:focus{
         	border:1px solid var(--colorcabezera);
         	outline:none;
         }
         .input_1_1::-webkit-input-placeholder{
         	color:#999;
         	font-weight:300;
         	opacity:1;
         }

.ul_opciones{
	padding: 0;
    margin: 0;
	  outline: none;
	list-style: none;
}
.li_opciones{
	opacity: 1;
	position: relative;
	  outline: none;
	  text-align: -webkit-match-parent;
}
.span_opciones{
	margin-left: 82%;
}

.li_div_opciones{
	padding-left: 24px; 
    cursor: pointer;
	padding-left: 24px;
    padding-bottom: 9px;
    padding-top: 9px;
	background-color: var(--dropdown-background);
    font-weight: 700;
	color:#4a4a4a;
	font-weight:700px;
    outline: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

     .table_4 {
     border-top-left-radius:6px;
	 border-top-right-radius: 6px;
     width: 98%;
	margin-top:70px;
    height: 20px;
    background-color: #208084;
    font-size: 12px;
     font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 font-weight:bold;
	text-align:center;
    color: #fff;
    border-radius: 2px;
	
		
		}
		.td_titulo{
			width:33.3%;
			height:35px;
		}
		.td_detalles{
		
				width:33.3%;
			height:35px;
			font-size:11px;
			padding:0px 5px 0px 5px;
		text-align:center;
			vertical-align:middle;
        }
       
				.table_5 {
	width: 100%;
    height: 20px;
    background-color: #fff;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #808080;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	cursor:pointer;
		}

	
			.table_5_1 {
	width: 100%;
    height: 20px;
    background-color: #fff;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #808080;
	font-weight:bold;
	text-align:center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
	cursor:pointer;
		}
				.table_gris {
	width: 100%;
    height: 20px;
    background-color: rgba(0,0,0,0.05);
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;
	cursor:pointer;
		}

		
		.table_gris:hover {
			background-color:#000;
			border-left:solid 1px #cecece;
			border-right:solid 1px #cecece;
			border-bottom:solid 1px #cecece;
			color: #FFF;
		}

		.table_blanco{
	width: 100%;
    height: 20px;
    background-color: #fff;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;
	cursor:pointer;
		}
		

		.table_blanco:hover {
			background-color:#000;
			border-left:solid 1px #cecece;
			border-right:solid 1px #cecece;
			border-bottom:solid 1px #cecece;
			color: #FFF;
		}
		 .contenedor_tabla{
		    width:98%;
		    height: 400px;
    overflow: auto;
			/* min-height:500px; */
			background-color:#cecece;
			/* overflow-y:scroll; */
			border-bottom: 1px solid #cecece;
		 }
		
.li_div_opciones:hover{
	background-color: var(--colorhover);
}
.cont_emergente_alert{
		width: 30%;
    height: 135px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 3px 4px 4px var(--shadow_emergente_alert);
    border-radius: 3px;
    /* border-top-left-radius: 4px; */
    /* border-top-right-radius: 4px; */
    background-color: #fdfdfd;
	}
	
@media screen and (max-height:768px) {
   
}
@media screen and (max-width:2560px) {
    .inp_consulta_cliente {
    margin-top: 12px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 20px;position: relative;
    }
	.cnt_opciones_busqueda {
    width: 50%;
    margin: auto;
	}
	.search-panel {
	height: 180px;
}

.span_opciones{
	margin-left: 62%;
}
.cont_emergente_alert{
	width: 13%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	/*height: 665px;*/
	    min-height: calc(100vh - 55px);
	height:500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:30%;
}
.cnt_forms{
    width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
width: 24%;
    padding: 5px;
    float: left;
  
    margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
.cnt_v_lotead{
	width:25%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased; 
}
}



@media screen and (max-width:1300px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 20px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}

	.cnt_opciones_busqueda {
    width: 60%;
    margin: auto;
	}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:33%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 57%;
}
.cont_emergente_alert{
	width: 22%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	       min-height: calc(100vh - 55px);
	    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}

.menuprincipal{
    width:30%;
}
.cnt_forms{
    width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:25%;float: left;     margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
}
@media screen and (max-width:1024px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 8px;position: relative;
    }
		.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda {
    width: 70%;
    margin: auto;
	}
.search-panel {
	height: 180px;
}
.cnt_v_lotead{
	width:50%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 52%;
}
.cont_emergente_alert{
	width: 30%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	    min-height: calc(100vh - 55px);
	    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:30%;
}
.cnt_forms{
   width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width: 48%;
    padding: 5px;
    float: left;
    margin-left: auto;
    margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
}
@media screen and (max-width:768px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 329px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
    .tit_contacto{
        color:#fff;font-size: 11px;font-weight: bold;right: 4px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:50%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 77%;
}

.cont_emergente_alert{
    width: 43%;
    height: 133px;
}

 .cont_sub_menu {
        max-height: 70vh; /* Limita la altura al 70% de la pantalla */
        overflow-y: auto; /* Habilita scroll vertical */
        overflow-x: hidden; /* Evita scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Mejor scroll en iOS */
    }
    
    /* Opcional: mejorar visibilidad de los elementos del menú */
    .submenu, .submenu1 {
        min-height: 44px; /* Tamaño mínimo táctil recomendado */
    }
    
    /* Asegurar que los textos no se salgan */
    .span_tit_submenu, .span_tit_submenu_1 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	    width: 38%;
    float: left;
    margin-left: 50px; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 489px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
        color:#fff;font-size: 11px;font-weight: bold;right: 4px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 64%;
}

.cont_emergente_alert{
    width: 70%;
    height: 133px;
}
.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 425px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
       .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 59%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}	
}
@media screen and (max-width: 375px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
			.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
		.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 51%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
	.input_TEXT{
	  font-size: 12px;
    padding-top: 12px;
	}
	
	.input_progress{
	  font-size: 10px;
	}
	.input_ok{
	  font-size: 10px;
	  height: 20px;
    width: 27px;
	}
	.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 320px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
			.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
		.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 45%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
	.input_TEXT{
	  font-size: 12px;
    padding-top: 12px;
	}
	
	.input_progress{
	  font-size: 10px;
	}
	.input_ok{
	  font-size: 10px;
	  height: 20px;
    width: 27px;
	}
	.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}

:root {
  --colorcabezera:#f28235;
  --input_fondo_color1:#f3efcf;
  --colorcabezera_menu:#293a4a;
  --coloracceso:#6a7071;
  --color_emergente_cabezera:#fff;
  --colorfondoblanco:#fff; 
  --colorbotonmas:#FF9800;
  --colorbotonatras:#e4e6eb;
  --colorbotoncancelar:#9E9E9E;
  --colorbotoneliminar:#ff5722;
   --colorbotonphoto:#2196f3;
  --colorfondoemergente:#0000005c;
  --colorhover:#f0f0f0;
  --dropdown-background: #fff;
  --shadow-rgb: 0,0,0;
  --shadow_emergente_alert: #4a484836;
}

     
        .hopc_container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Encabezado */
        .hopc_header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--hopc_secondary-color);
        }
        
        .hopc_header h1 {
            color: var(--hopc_primary-color);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .hopc_header p {
            color: var(--hopc_light-text);
            font-size: 1.1rem;
        }
        
        /* Contenedor de notificaciones */
        .hopc_notifications-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        /* Tarjeta de notificación */
        .hopc_notification-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--hopc_card-shadow);
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 5px solid var(--hopc_secondary-color);
        }
        
        .hopc_notification-card:hover {
            box-shadow: var(--hopc_card-shadow-hover);
            transform: translateY(-3px);
        }
        
        .hopc_notification-card.urgent {
            border-left-color: var(--hopc_danger-color);
        }
        
        .hopc_notification-card.pending {
            border-left-color: var(--hopc_warning-color);
        }
        
        .hopc_notification-card.approved {
            border-left-color: var(--hopc_success-color);
        }
        
        /* Información de la orden */
        .hopc_order-info {
            flex: 1;
        }
        
        .hopc_order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .hopc_order-id {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--hopc_primary-color);
        }
        
        .hopc_order-date {
            color: var(--hopc_light-text);
            font-size: 0.95rem;
        }
        
        .hopc_order-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .hopc_detail-item {
            display: flex;
            flex-direction: column;
        }
        
        .hopc_detail-label {
            font-size: 0.85rem;
            color: var(--hopc_light-text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }
        
        .hopc_detail-value {
            font-weight: 600;
            color: var(--hopc_dark-text);
            font-size: 1.1rem;
        }
        
        .hopc_supplier-name {
            color: var(--hopc_secondary-color);
            font-weight: 600;
        }
        
        .hopc_order-status {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .hopc_status-pending {
            background-color: rgba(243, 156, 18, 0.15);
            color: var(--hopc_warning-color);
        }
        
        .hopc_status-approved {
            background-color: rgba(39, 174, 96, 0.15);
            color: var(--hopc_success-color);
        }
        
        .hopc_status-rejected {
            background-color: rgba(231, 76, 60, 0.15);
            color: var(--hopc_danger-color);
        }
        
        .hopc_status-verified {
            background-color: rgba(52, 152, 219, 0.15);
            color: var(--hopc_secondary-color);
        }
        
        /* Contenedor de botones */
        .hopc_actions-container {
            display: flex;
            gap: 12px;
            margin-left: 25px;
        }
        
        /* Estilos para botones */
        .hopc_action-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        /* Efecto hover único para cada botón */
        .hopc_action-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hopc_action-btn:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            z-index: 10;
        }
        
        /* Botón habilitar */
        .hopc_enable-btn {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
        }
        
        .hopc_enable-btn:hover {
            background: linear-gradient(135deg, #229954, #27ae60);
        }
        
        /* Botón rechazar */
        .hopc_reject-btn {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
        }
        
        .hopc_reject-btn:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
        }
        
        /* Botón verificar */
        .hopc_verify-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }
        
        .hopc_verify-btn:hover {
            background: linear-gradient(135deg, #2980b9, #1f618d);
        }
        
        /* Botón ver detalles */
        .hopc_details-btn {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
        }
        
        .hopc_details-btn:hover {
            background: linear-gradient(135deg, #8e44ad, #7d3c98);
        }
        
        /* Modal para detalles */
        .hopc_modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .hopc_modal-content {
            background-color: white;
            border-radius: 12px;
            width: 90%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .hopc_modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--hopc_light-text);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .hopc_modal-close:hover {
            color: var(--hopc_danger-color);
        }
        
        .hopc_modal-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--hopc_border-color);
        }
        
        .hopc_modal-header h2 {
            color: var(--hopc_primary-color);
            font-size: 1.8rem;
        }
        
        .hopc_order-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .hopc_detail-group h3 {
            color: var(--hopc_secondary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .hopc_items-list {
            margin-top: 20px;
        }
        
        .hopc_items-list h3 {
            color: var(--hopc_secondary-color);
            margin-bottom: 15px;
        }
        
        .hopc_items-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .hopc_items-table th {
            background-color: var(--hopc_primary-color);
            color: white;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .hopc_items-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--hopc_border-color);
        }
        
        .hopc_items-table tr:hover {
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        /* Filtros */
        .hopc_filters {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .hopc_filter-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .hopc_filter-btn {
            padding: 8px 16px;
            background-color: white;
            border: 1px solid var(--hopc_border-color);
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .hopc_filter-btn:hover {
            background-color: #f0f0f0;
        }
        
        .hopc_filter-btn.active {
            background-color: var(--hopc_secondary-color);
            color: white;
            border-color: var(--hopc_secondary-color);
        }
        
        .hopc_search-box {
            padding: 8px 15px;
            border: 1px solid var(--hopc_border-color);
            border-radius: 6px;
            width: 250px;
        }
        
        /* Contador */
        .hopc_counter {
            background-color: var(--hopc_primary-color);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            margin-left: 5px;
        }
        
        /* Estilos generales para la aplicación hopc */
        .hopc_body {
            background-color: #f5f7fa;
            color: var(--hopc_dark-text);
            line-height: 1.6;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .hopc_body * {
            box-sizing: border-box;
        }
        
        
    
        /* Estilos específicos para los botones de gráficos LTSN */
.ltsn-botones-grafico {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ltsn-btn-grafico {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--colorcabezera);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--colorcabezera);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ltsn-btn-grafico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.ltsn-btn-grafico:hover {
    background: linear-gradient(135deg, var(--colorcabezera) 0%, #2a8bc9 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: var(--colorcabezera);
}

.ltsn-btn-grafico:hover::before {
    background: #ffce56;
}

.ltsn-btn-grafico:hover .ltsn-icono {
    transform: scale(1.2);
}

.ltsn-btn-grafico:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ltsn-btn-grafico.ltsn-btn-activo {
    background: linear-gradient(135deg, var(--colorcabezera) 0%, #1e6fa8 100%);
    color: white;
    border-color: var(--colorcabezera);
    box-shadow: 0 0 0 2px rgba(54, 162, 235, 0.3);
}

.ltsn-btn-grafico.ltsn-btn-activo::before {
    background: #ffce56;
}

.ltsn-btn-grafico.ltsn-btn-activo .ltsn-icono {
    animation: ltsn-icono-pulse 1s infinite;
}

.ltsn-icono {
    font-size: 14px;
    transition: transform 0.3s ease;
}




/* Efecto de ondas al hacer clic */
.ltsn-btn-grafico::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1%, transparent 1%);
    background-position: 50%;
    background-size: 15000%;
    opacity: 0;
    transition: background-size 0.5s, opacity 1s;
}

.ltsn-btn-grafico:active::after {
    background-size: 100%;
    opacity: 1;
    transition: 0s;
}

/* Variantes de color para cada tipo de gráfico */
#ltsn-btn-barras {
    border-color: #36a2eb;
    color: #36a2eb;
}

#ltsn-btn-barras:hover, 
#ltsn-btn-barras.ltsn-btn-activo {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: #36a2eb;
}

#ltsn-btn-circular {
    border-color: #ff6384;
    color: #ff0000;
}

#ltsn-btn-circular:hover, 
#ltsn-btn-circular.ltsn-btn-activo {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: #ff6384;
}

#ltsn-btn-dona {
    border-color: #9966ff;
    color: #9966ff;
}

#ltsn-btn-dona:hover, 
#ltsn-btn-dona.ltsn-btn-activo {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-color: #9966ff;
}
   
   