input[type="file"] {
    font-size: 11px;
}

.attribute-item {
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
}

.attribute-item button {
    margin-left: 0px;
}

.app-btn-danger {
    color: #FFFFFF;
}

/**********File Inputs**********/
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
}

.iborrainputfile {
    font-size:10px !important;
    font-weight:normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 0;
}

/* style 7 */

.inputfile-7 + label {
    color: #ec9b1b;
}

.inputfile-7 + label {
    border: 1px solid #ec9b1b;
    background-color: #fff;
    padding: 0;
}

.inputfile-7:focus + label,
.inputfile-7.has-focus + label,
.inputfile-7 + label:hover {
    border-color: #d47e03;
}

.inputfile-7 + label span,
.inputfile-7 + label strong {
    padding: 0.625rem 1.25rem;
}

.inputfile-7 + label span {
    width: 50% !important;
    height: 42px !important;
    min-height: 2em;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    position: absolute;
    background-color: #edfdf6;
    display: flex;
    align-items: center;
    text-align: center;
    color: #0a5936;
    font-weight: 600;
    border: 1px solid #0a5936;
    border-top-left-radius:5px;
    border-bottom-left-radius: 5px;
}

.inputfile-7 + label strong {
    color: #8C8C8C;
    background-color: white;
    font-weight: 100;
    font-size: 14px;
    position: absolute;
    right: 0;
    height: 42px;
    display: flex;
    align-items: center;
    width: 50%;
    border: 1px solid #0a5936;
    border-top-right-radius:5px;
    border-bottom-right-radius: 5px;
    margin-right: 2px;
    overflow: hidden;
}

.inputfile-7:focus + label strong,
.inputfile-7.has-focus + label strong,
.inputfile-7 + label:ahover strong {
    background-color: #39b5b5;
    color: #15a362;
    transition: 1s background-color;
    font-weight: 500;
    transition: 1s font-weight;
}
.file-container  {
    position: relative;
}

.file-container label  {
    margin-bottom: 30px;
}

.file-upload {
    height:35px; 
    max-width: 100px;
    margin:0 auto;
}

.file-error {
    font-weight: bold; color: #FF0000;
}

.file-delete {
    margin-left: 20%;
}
.input-group .input-group-addon {
    border-radius: 0.375rem;
    border: 1px solid #e7e9ed;
    background-color: #fff;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-group-addon:first-child {
    border-right: 0;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 85%;
    margin-bottom: 0;
}
        /* Estilos personalizados para el Wizard */
        .wizard-steps {
            display: flex;
            justify-content: space-between; /* Distribuye el espacio equitativamente entre los ítems */
            margin-bottom: 1rem;
            position: relative;
            padding: 0 0px; /* Añadimos un padding para que los círculos no toquen el borde */
        }

        .wizard-step-item {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centra el círculo y la etiqueta dentro de su espacio */
            position: relative;
            z-index: 2; /* Para que los círculos estén por encima de las líneas */
            /* Eliminamos flex: 1; para que justify-content: space-between haga su trabajo */
        }

        .wizard-step-circle {
            width: 27px;
            height:27px;
            border-radius: 50%;
            background-color: #e9ecef; /* Color por defecto */
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #fff;
            z-index: 0;
            border: 0px solid #adb5bd;
            transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }

        .wizard-step-label {
            margin-top: 0.5rem;
            font-size: 0.9em;
            color: #6c757d;
            text-align: center;
        }

        /* Línea de conexión base (gris) */
        .wizard-steps::before {
            content: '';
            position: absolute;
            top: 13px; /* Ajusta para centrar verticalmente con el círculo (40px/2 - 2px/2) */
            left: 20px; /* Coincide con el padding del contenedor wizard-steps */
            right: 20px; /* Coincide con el padding del contenedor wizard-steps */
            height: 2px;
            background-color: #dee2e6;
            z-index: 0; /* Asegura que esté detrás de los círculos */
        }

        /* Estilos para el paso activo */
        .wizard-step-item.active .wizard-step-circle {
            background-color: #0d6efd; /* Color primario de Bootstrap */
            border-color: #0d6efd;
            color: #fff;
            z-index: 2;
        }

        /* Estilos para el paso completado */
        .wizard-step-item.completed .wizard-step-circle {
            background-color: #0d6efd; /* Color success de Bootstrap */
            border-color: #0d6efd;
            color: #fff;
        }

        .wizard-step-item.completed .wizard-step-circle i {
            font-size: 1.2em; /* Tamaño del icono de check */
        }

        /* Línea de progreso (azul) */
        .wizard-progress-line {
            position: absolute;
            top: 13px; /* Igual que la línea base para superponerse */
            left: 20px; /* Coincide con el padding del contenedor wizard-steps */
            height: 2px;
            background-color: #0d6efd; /* Color primario de Bootstrap */
            z-index: 1; /* Para que esté por encima de la línea base */
            width: 0%; /* Empezará sin ancho y se llenará */
            transition: width 0.4s ease-in-out; /* Animación de llenado */
        }

        /* Contenido de los pasos del formulario */
        .form-step-content {
            display: none; /* Ocultar todos los pasos por defecto */
        }

        .form-step-content.active {
            display: block; /* Mostrar el paso activo */
        }

.btn-minus, .btn-plus {
    border: 1px solid #dee2e6;
}
.spinner-input {
    background-color: #F5F4F8;
    padding-left: 20px;
}

#drop-area {
    transition: background-color 0.2s ease-in-out;
}
#drop-area:hover {
    background-color: #f8f9fa;
}

label {
    font-size: 0.9rem;
}

.app-btn-primary {
    background-color: #3C76F2;
}

.app-btn-terciary {
    color: #3C76F2;
}

.btn-selected {
    color: #3C76F2;
    background: #E6F1FD;
    border: 1px solid #bcc1cb;
}

.btn-xs {
    padding: 0px 7px 0px 7px;
    border-radius: 50%;
    color:#FFFFFF;
}

.fs-sm {
    font-size: 90%;
}

.fs-xs {
    font-size: 80%;
}

.modal-dialog.modal-80 {
  max-width: 80%;
}

.select2-container--default {
    width: 100% !important;
}

.bi-pencil, .bi-files, .bi-trash {
    top:0px !important;
}

.nav-link-text {
    padding-left: 20px;
    font-size: 1.2em;
}

.btn:disabled {
    border-color: #dee2e6 !important;
}

/* Botones no activos */
button.nav-link {
  background: #ffffff !important;
  color: #666276 !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: bold;
}

/* Botón activo */
button.nav-link.active {
  background: #3C76F21A !important; /* color con opacidad del 10% */
  color: #3C76F2 !important;
}

.w-35 {
 width: 35%;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e9ecef; /* gris claro */
  color: #333;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.step-circle.active {
  background-color: #0d6efd; /* azul Bootstrap */
  color: white;
}

/* Cambiar color cuando está activo */
.form-check-input:checked {
    background-color: #28a745; /* Verde */
    border-color: #28a745;
}

/* Cambiar color cuando está inactivo */
.form-check-input {
    background-color: #a5a4a4dd; /* Rojo */
    border-color: #a5a4a4dd;
}

/* Asegura que no pierda color al hacer clic */
.form-check-input:focus {
    box-shadow: none;
}

.iframe-desktop {
    transform: scale(1.5);
    transform-origin: top left;
    width: 150%; /* necesario para compensar el scale */
    height: 750px;
    border: none;
}


 .table-custom {
    border-collapse: separate;   /* Permite el border-spacing */
    border-spacing: 0 10px;      /* Espacio vertical entre filas */
  }

  .table-custom td, 
  .table-custom th {
    padding: 12px 16px;          /* Padding interno */
    background: #fff;            /* Fondo para que no se vea transparente */
    border: 1px solid #dee2e6;   /* Borde de cada celda */
  }

  /* Opcional: bordes redondeados por fila */
  .table-custom tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .table-custom tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .format-option {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 5px;
    transition: border-color 0.2s ease;
}

.format-option input + img  {
    border: 1px solid #565758; 
    border-radius: 8px;
}

.format-option input:checked + img {
    border: 2px solid #0d6efd; 
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.6);
}

.format-img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.form-actions-fixed {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff; /* mismo color que tu theme */
    padding: 10px 20px;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: flex-start; /* o space-between si querés separados */
    gap: 10px;
    z-index: 999;
}

.border-dashed {
  border-style: dashed !important;
}