input[type='checkbox'] {
    position: relative;
    margin: 6px;
    cursor: pointer;
}

/* Estilo del indicador del checkbox */
input[type='checkbox']:after {
    content: "\2714";
    position: absolute;
    top: -3px;
    font-size: 14px;
    color: #fff;
    visibility: hidden;
    background-color: #007bff;

}



/* Estilo del indicador del checkbox cuando está marcado */
input[type='checkbox']:checked:after {
    visibility: visible;
}

/* Estilo del indicador del checkbox cuando el mouse está sobre él */
input[type='checkbox']:hover:after {
    color: #fff;
}

/* Estilo del checkbox */
input[type='checkbox']:before {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2); /* Sombras interna más ligera */
}

/* Estilo del checkbox cuando está marcado */
input[type='checkbox']:checked:before {
    background-color: #007bff;
    border: 2px solid #007bff;
    box-shadow: none; /* Remover la sombra interna cuando está marcado */
}

/* Estilo del checkbox cuando el mouse está sobre él */
input[type='checkbox']:hover:before {
    border-color: #007bff;
}

input[type='checkbox']:not(:checked):before {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1); /* Aplicar la sombra interna solo cuando está sin marcar */
}

input[data-value][type='date'], input[data-value][type='month'] {
    position: relative;
    color: white;
}

input[data-value][type='date']:before, input[data-value][type='month']:before {
    content: attr(data-date);
    display: inline-block;
    color: black;
    margin-right: 5px;
    width: 100%;
    text-align: right;
    margin-left: 5px;
}

input[data-value][type='date']::-webkit-datetime-edit,
input[data-value][type='date']::-webkit-inner-spin-button,
input[data-value][type='date']::-webkit-clear-button {
    opacity: 0 !important;
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
}

input[data-value][type='month']::-webkit-datetime-edit,
input[data-value][type='month']::-webkit-inner-spin-button,
input[data-value][type='month']::-webkit-clear-button {
    opacity: 0 !important;
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
}

.input-normal {
    border: unset !important;
    cursor: default !important;
    padding-left: 0;
    pointer-events: none;
}

.scroll-x-top {
    min-height: 600px;
    overflow-x: scroll;
    transform: scaleY(-1);
    /**/
    /**/
    /**/
    display: flex;
    flex-direction: column-reverse;
}

.scroll-x-top > div {
    transform: scaleY(-1);
}

.scroll-x-top::-webkit-scrollbar {
    height: 8px;
}

.scroll-x-top::-webkit-scrollbar-thumb {
    background-color: #888;
}

.scroll-x-top::-webkit-scrollbar {
    width: 8px;
    background-color: #f1f1f1;
}

.scroll-x-top * {
    transition: cursor 0.3s ease;
}

.scroll-x-top.grabbing * {
    cursor: grabbing !important;
}

.scroll-x-top.grab * {
    cursor: grab !important;
}

/*====================================================================================================================================*/


.tabla {
    border-collapse: collapse;
    display: table;
    width: 100%;
}

.tabla-row {
    transition: background-color 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    display: table-row;
}

.tabla-row:hover {
    background-color: rgba(240, 240, 240, 0.239);
    cursor: default;
}

.tabla-header {
    font-weight: bold;
    cursor: default;
    color: #8694a3 !important;
    text-transform: uppercase;
}

.celda {
    display: table-cell;
    /*border: 1px solid #ddd;*/
    padding: 5px 5px 8px 5px;
    word-break: break-word;
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    vertical-align: middle;
}

.celda .content {
    display: flex; /* Convertir en un contenedor flex */
    align-items: center; /* Centrar verticalmente el contenido */
}

.celda > div {
    display: inline-flex;
    align-items: center;
}

.tabla-header .celda.celda-fixed:first-child, .tabla-row .celda.celda-fixed:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #FFF;
}

.tabla-header .celda.celda-fixed.celda-shadow, .tabla-row .celda.celda-fixed.celda-shadow {
    box-shadow: -5px 0 5px -4px rgba(0, 0, 0, 0.1) inset;
}

/*====================================================================================================================================*/
.aparataje-btn i {
    margin-right: 5px !important;
}

.aparataje-btn {
    background-color: #3c7d94;
    border: 0 !important;
    outline: 0 !important;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    color: white;
    border-radius: 3px;
    transition: all ease 0.3s;
    cursor: pointer;
    padding: 7px 14px;
    /*border-radius: 30px !important;*/
}

.aparataje-btn-radio {
    background-color: #3c7d94;
    border: 0 !important;
    outline: 0 !important;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    color: white;
    transition: all ease 0.3s;
    cursor: pointer;
    padding: 7px 14px;
    border-radius: 30px;
}

.aparataje-btn-aparataje-btn-radio i {
    margin-right: 5px !important;
}

.link2 {
    cursor: pointer !important;
}

.form2 {
    background: #FFF;
}


/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/


.table-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Columnas ajustables */
    grid-gap: 0 10px; /* Espacio entre las celdas */
}

.table-data {
    padding: 3px;
    /* border: 1px solid #ddd;*/
}

.table-data > label > :first-child {
    margin-top: 3px;
    /* border: 1px solid #ddd;*/
}

.table-container label {
    margin-bottom: 0;
}

/*.flag-icons {
    display: flex;
    flex-wrap: wrap;
}

.flag-icon {
    width: 30px;
    height: 30px;
    margin: 5px;
    background-size: cover;
    border-radius: 50%;
    overflow: hidden;
}*/

.svg-container {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(221 221 221 / 54%);
    border-radius: 100%;
    overflow: hidden;
}

.svg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tooltip-button {
    position: relative;
}

.tooltip-title {
    z-index: 2000;
    position: absolute;
    background-color: #000;
    color: #fff;
    padding: 7px 8px;
    font-weight: 400 !important;
    white-space: normal;
    display: none;
    visibility: hidden;
    font-size: 12px;
    border-radius: 3px;
    text-align: center;
    /* z-index: 1;*/
    /* transition: all ease-out 0.03s; */
    width: max-content;
    max-width: 120px; /* Ancho máximo deseado */
    word-wrap: break-word; /* Dividir palabras en varias líneas */
}

.tooltip-title::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 6px; /* Cambiado a un valor más delgado */
    border-color: var(--border-color);
    bottom: -10px;
    z-index: 1;
    left: var(--left-dinamic);
    transform: translateX(-50%) rotate(180deg); /* Invertir la flecha */
}


/*#progress-Bar {*/
[id^="progress-box-Bar-"] {
    width: 100%;
    height: 15px;
    background-color: #f7f7f7;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 6px 5px 0 rgb(173 181 189/40%);
    margin: 5px 0;
}

#progress-BarInner {
    display: inline-block;
    width: 0%;
    height: 100%;
    background-color: #36b4e6;
    color: #fafafa;
    animation: all ease .3s;
    text-align: right;
    padding-right: 10px;
}

/*#progress-Bar-Percentage {*/
[id^="progress-Bar-Percentage"] {
    display: inline-block;
    width: 0%;
    height: 100%;
    background-color: #36b4e6;
    color: #fafafa;
    animation: all ease .3s;
    text-align: right;
    padding-right: 10px;
}

.s3-upload-object input {
    display: none;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-color: transparent !important;
    position: absolute;
    opacity: 0;
}

.selected-element {
    cursor: pointer;
}

.btn-icono {
    background-color: #017D94;
    color: #fff;
    padding: 5px 10px !important;;
    border-radius: 25px !important;;
    cursor: pointer;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    margin-left: 10px
}

.btn-icono i, .btn-icono2 i {
    font-size: 16px !important;
    margin-left: 10px;
}

.btn-icono-lite {
    /*background-color: #f8f8f8;*/
    background-color: #f3f3f3;
    /*color: #191919;*/
    color: #333333;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px !important;
    margin-bottom: 0;
    cursor: pointer;
}

.btn-icono2 {
    background-color: #fff;
    color: #292929 !important;
    border-radius: 25px !important;;
    padding: 5px 10px !important;;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    margin-left: 10px
}

input:checked + .slider {
    background-color: #5cb85c !important;
}

@media screen and (max-width: 900px) {
    .btn-icono span, .btn-icono2 span {
        display: none;
    }

    .btn-icono i, .btn-icono2 i {
        margin-left: 0;

    }
}


@keyframes jumpEffect {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.container-items {
    display: flex;
    flex-direction: column;
}

.w-spacing {
    flex-grow: 1;
    height: auto;
}

.h-spacing {
    flex-grow: 1;
    height: auto;
}

#sinresultado {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    height: auto;
}

#sinresultado > div {
    font-size: 25px;
    font-weight: 700;
    max-width: 500px;
    width: 100%;
    line-height: normal;
    text-align: center;
}

.tipo-tag {
    color: #fff;
    padding: 2px 10px !important;
    border-radius: 9px !important;
    cursor: pointer;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    margin-left: 10px;
    width: max-content;
}

.tipo-tag1 {
    background-color: #017D94;
}

.tipo-tag2 {
    background-color: #1bbc9b;
}

.btn-normal {
    background-color: #1bbc9b;
    color: #fff;
    padding: 5px 10px !important;
    border-radius: 25px !important;
    cursor: pointer;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    margin-left: 10px;
}

.metadatos::-webkit-scrollbar, #scroll-top::-webkit-scrollbar {
    height: 9px
}

.metadatos::-webkit-scrollbar-track, #scroll-top::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .1);
}

.metadatos::-webkit-scrollbar-thumb, #scroll-top::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 13%);
    border-radius: 5px;
}

.metadatos::-webkit-scrollbar-thumb:hover, #scroll-top::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0 0 0 / 18%);;
}

.shadow-interno-left {
    box-shadow: inset 8px 0 8px -6px rgba(0, 0, 0, 0.3);
}

.shadow-interno-right {
    box-shadow: inset -8px 0 8px -6px rgba(0, 0, 0, 0.3);
}

.shadow-intenro-both {
    box-shadow: inset 8px 0 8px -6px rgba(0, 0, 0, 0.3),
    inset -8px 0 8px -6px rgba(0, 0, 0, 0.3);

}

.pagination-body {
    min-height: 300px;
}

/* Contenedor de la paginación alineado a la derecha */
.pagination-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
}

/* Contenedor interno de la paginación */
.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
}

/* Estilos generales para los botones de paginación */
.pagination-numbers a {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Hover para botones */
.pagination-numbers a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Botón activo */
.pagination-numbers a.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
    pointer-events: none;
}

/* Botones deshabilitados */
.pagination-numbers a.disabled {
    color: #999;
    border-color: #ddd;
    background: #f1f1f1;
    cursor: not-allowed;
}

/* Contenedor de los botones numéricos */
.pagination-numbers .pagination {
    display: flex;
    gap: 5px;
    margin-bottom: 0;
}

.pagination-numbers .pagination a {
    width: 28px;
    padding: 8px 0px;
    text-align: center;
}

/* En dispositivos con un ancho máximo de 768px (móviles) */
@media (max-width: 768px) {
    .pagination {
        border-radius: 0px;
    }

    .pagination-footer {
        justify-content: center;
        margin-top: 10px;
        padding: 7px 0;
        background: #ffffff;
    }

    .pagination-numbers .pagination {
        gap: 0;
    }

    .pagination-numbers {
        width: auto;
        gap: 0;
        padding: 0;
        border: 0.5px solid #dbd2db;
        overflow: overlay;
        font-size: 11px;
    }

    .pagination-numbers a {
        border: unset;
        border-right: 0.5px solid #dbd2db;
        border-radius: 0;
        padding: 8px 10px;
        height: 29px;
    }

    .pagination-numbers .pagination a {
        width: 27px;
    }

    .pagination-main {
        margin-bottom: 25px;
    }
}


/* Contenedor del select */
.custom-select {
    position: relative;
    width: 70px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

/* Elemento visible con la opción seleccionada */
.custom-select .selected {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #fff;
}

/* Contenedor de las opciones */
.custom-select .options {
    position: absolute;
    /*top: 100%;*/
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background: #fff;
    display: none;
    max-height: 150px;
    overflow-y: auto;
    z-index: 100;
}

/* Cada opción */
.custom-select .option {
    padding: 5px 10px;
}

/* Efecto hover en las opciones */
.custom-select .option:hover {
    background: #f0f0f0;
}

/* Cuando el select está abierto (usando la clase suton-open) */
.custom-select.custom-open .options {
    display: block;
}


.tabla-header-sticky {
    font-weight: bold;
    cursor: default;
    color: #8694a3 !important;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: -1px;
    background-color: white;
    z-index: 10;
}

.icon-send-money::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 12h12' stroke='%23DC2626' stroke-width='2' stroke-linecap='round'/><path d='M14 8l4 4-4 4' stroke='%23DC2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M4 5h8v3H4V5zm0 11h6v3H4v-3z' fill='%23DC2626' opacity='0.2'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.icon-receive-money::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M20 12H8' stroke='%2316A34A' stroke-width='2' stroke-linecap='round'/><path d='M10 16l-4-4 4-4' stroke='%2316A34A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M20 5h-8v3h8V5zm0 11h-6v3h6v-3z' fill='%2316A34A' opacity='0.2'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.icon-pdf::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 2C4.9 2 4 2.9 4 4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V8L14 2H6Z' fill='%23E74C3C'/%3E%3Cpath d='M14 2V8H20' fill='%23C0392B'/%3E%3Ctext x='6.5' y='17' font-family='Arial, Helvetica, sans-serif' font-size='6.5' fill='white' font-weight='bold'%3EPDF%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.btn-icono-only {
    border-radius: 5px !important;
}

.btn-icono-only i {
    margin-left: 0 !important;
}

@media only screen and (max-width: 800px) {
    .selector {
        padding: 0px 10px !important;
    }

    .selector:has(.circle), .selector:has(i[class^="icon-"]) {
        display: flex;
        align-items: center;
        font-size: 0 !important;
    }

    .selector:has(.circle) .circle, .selector:has(i[class^="icon-"]) i[class^="icon-"] {
        margin-right: 0 !important;
    }

    .filtro-component .opciones {
        min-width: max-content;
    }

}

.servicio-tag {
    width: fit-content;
    font-size: 10px;
    padding: 1.5px 7px;
    border-radius: 4px;
    color: #FFF;
    font-weight: 500;
}




.dynamic-form-static .filtro-component_5 .opciones_5 > .option_5 {
    border-radius: 25px;
    margin-bottom: 2px;
}

.dynamic-form-static .filtro-component_5 .opciones_5 > .option_5:hover {
    background-color: #292929;
    border-radius: 25px;
}

.dynamic-form-static .opciones_5 {
    position: unset
}

.dynamic-form-static .filtro-component_5 {
    padding: 0;
}

.dynamic-form-static a.button-submit {
    display: none;
}

.dynamic-form-static :has(> a.button-submit) {
    display: none;
}

.dynamic-form-static {
    padding: 0;
    border-radius: 13px;
    border: 0;
    width: fit-content !important;
}

.dynamic-form-static .filtro-component_5 {
    background-color: #ffff;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 3px rgb(0 0 0 / 5%);
    padding: 3px;
    font-weight: 500;
    font-size: 14px;
    flex-wrap: nowrap;
}


.dynamic-form-static .filtro-component_5 .opciones_5 {
    top: calc(100% + 10px);
    opacity: 1;
    right: 0;
    z-index: 11;
    /*width: 100%;*/
    width: fit-content;
    /*min-width: 200px;*/
    background-color: #131313;
    color: #fff;
    border-radius: 10px;
    transition: all ease 0.2s;
    padding: 10px;
}

.dynamic-form-static .filtro-component_5 .opciones_5 > .option_5 {
    padding: 7px 15px;
    color: #fff;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}
.disablid2 {
    cursor: default !important;
    pointer-events: none;
}

.error-check{

}
input[type='checkbox'].error-check:checked:before {
    background-color: #d9534f !important;
    border: 2px solid #d9534f !important;
    box-shadow: none;
}

input[type='checkbox'].error-check:after {
    background-color: #d9534f !important;
}

 .json-pre {
     background: #0f172a;    /* azul oscuro */
     color: #e5e7eb;         /* gris claro (fallback) */
     padding: 10px 12px;
     border-radius: 8px;
     overflow: auto;
     line-height: 1.35;
     white-space: pre;       /* respetar indentación */
 }
.json-pre .brace   { color: #f59e0b; font-weight: 700; } /* {} [] */
.json-pre .key     { color: #60a5fa; }                  /* "clave" */
.json-pre .string  { color: #22c55e; }                  /* "texto" */
.json-pre .number  { color: #f472b6; }                  /* 123 */
.json-pre .boolean { color: #a78bfa; }                  /* true/false */
.json-pre .null    { color: #eab308; }                  /* null */
.json-pre .colon,
.json-pre .comma   { color: #94a3b8; }                  /* : , */


