:root {
    --primary-color: #f05032;
    /*--primary-color: #75fb7e;*/
}

html {
    font-size: 19px;
}

.same-size {
    min-width: 350px;
    max-width: 350px;
}

/* CSS By SIZE*/
@media (min-width: 991px) {
    .navbar-nav_prog {
        margin-left: 35%;
    }

    .nav-item_prog {
        padding-left: 20px;
    }

    .card_prog {
        width: 190px;
        display: inline-block;
        height: 300px;
    }

    #mobile-filter {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 19px;
    }

    .navbar-nav_prog {
        margin-left: 20%;
    }

    .nav-item_prog {
        padding-left: 10px;
    }

    .card_prog {
        width: 230px;
        display: inline-block;
        height: 300px;
        margin-bottom: 10px;
    }

    #mobile-filter {
        display: none;
    }
}

@media (min-width: 568px) and (max-width: 767px) {
    .navbar-nav_prog {
        margin-left: 20%;
    }

    .nav-item_prog {
        padding-left: 10px;
    }

    .card_prog {
        width: 205px;
        display: inline-block;
        height: 300px;
        margin-bottom: 10px;
    }

    .fa-circle {
        font-size: 15px;
    }

    #mobile-filter {
        display: none;
    }
}

@media (max-width: 567px) {
    .navbar-nav_prog {
        margin-left: 0%;
    }

    .nav-item_prog {
        padding-left: 10px;
    }

    /*  #sidebar {
    width: 100%;
    padding: 10px;
    margin: 0;
    float: left;
  }*/

    #products {
        width: 100%;
        padding: 5px;
        margin: 0;
        float: right;
    }

    .card_prog {
        width: 230px;
        display: inline-block;
        height: 300px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .list-group-item {
        padding: 3px;
    }

    .offset-1 {
        margin-left: 8%;
    }

    .filter {
        display: block;
        margin-left: 70%;
        margin-top: 2%;
    }

    /*#sidebar {
    display: none;
  }*/

    #mobile-filter {
        padding: 10px;
    }
}
/* CSS By SIZE*/

.textNavBar {
    /*font-size: 0.9rem !important;*/
    font-size: 15px;
    font-weight: 600 !important;
    /* padding-right: 24px;*/
}

.disablePointer {
    pointer-events: none;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

p {
    text-align: justify;
}

.error {
    color: red;
    font-style: italic;
}

    .error option {
        color: black;
    }

.botonAccion {
    color: #18171b;
    border-color: #f2f2f2;
    border-style: solid;
    border-width: 1px;
    background-color: #ea5134;
    padding: 5px 20px 5px 20px;
    font-size: 18px;
}

    .botonAccion:hover {
        box-shadow: 0 0 2px 2px #fff, 0 0 0 3px var(--primary-color);
        background-color: #ea5134;
    }

.botonCancelar {
    color: white;
    border-color: #f2f2f2;
    border-style: solid;
    border-width: 1px;
    background-color: gray;
    padding: 5px 20px 5px 20px;
    font-size: 19px;
}

    .botonCancelar:hover {
        box-shadow: 0 0 2px 2px #fff, 0 0 0 3px gray;
    }

.botonAccionFiltrar {
    color: #f2f2f2;
    border-color: #f2f2f2;
    border-style: solid;
    border-width: 1px;
    background-color: #ea5134;
    padding: 5px 20px 5px 20px;
    font-size: 18px;
    width: 80%;
}

    .botonAccionFiltrar:hover {
        box-shadow: 0 0 2px 2px #fff, 0 0 0 3px var(--primary-color);
        background-color: #ea5134;
    }

.navTab {
    color: #909090;
}

.nav-tabs_Prog {
    border-bottom: none;
}
/* ==Progressbar== */
.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

    .progressbar::before,
    .progress {
        content: "";
        position: absolute;
        top: 60%;
        transform: translateY(-50%);
        height: 4px;
        width: 99%;
        background-color: #dcdcdc;
        z-index: -1;
    }

.progress {
    background-color: var(--primary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .progress-step::before {
        counter-increment: step;
        content: counter(step);
    }

.progress-step-complete::before {
    counter-increment: step;
    content: "";
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 519px) {
    .progress-step::after {
        content: "";
    }
}

.progress-step-active {
    background-color: var(--primary-color);
    color: #f3f3f3;
}

.progress-step-complete {
    background-color: green;
    color: #f3f3f3;
}
/* ==Progressbar== */
/* ==Modal== */
.modal-confirm {
    color: #636363;
}

    .modal-confirm .modal-content {
        padding: 20px;
        border-radius: 5px;
        border: none;
    }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
    }

    .modal-confirm .form-control,
    .modal-confirm .btn {
        min-height: 40px;
        border-radius: 3px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -5px;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: center;
        border-radius: 5px;
        /*font-size: 13px;*/
    }

    .modal-confirm .icon-box {
        color: #fff;
        position: absolute;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -70px;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        z-index: 9;
        background: #f34f34;
        padding: 15px;
        text-align: center;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .modal-confirm .icon-box img {
            font-size: 58px;
            position: relative;
            top: 3px;
        }

    .modal-confirm.modal-dialog {
        margin-top: 10px;
    }

    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #f34f34;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        border: none;
        width: 20%;
    }

        .modal-confirm .btn:hover,
        .modal-confirm .btn:focus {
            background: #b74532;
            outline: none;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.login_header_negro {
    font-family: "Frank Ruhl Libre", serif;
}

.login_header_naranjo {
    font-family: "Frank Ruhl Libre", serif;
    color: #f05032;
}

/* ==Modal== */

/*BORDER DESCRIPTION*/
.border_desc {
    width: 100%;
    box-shadow: rgba(204, 204, 204, 1) 0px 1px 4px, rgb(204, 204, 204) 0px 0px 0px 3px;
    border-radius: 40px 40px;
}

/*MAX tamanio ventana*/
.maxVH {
    min-height: 100vh;
}

/*SIDEBAR CSS*/
/*#sidebar {
  width: 20%;
  padding: 10px;
  margin: 0;
  float: left;
}*/

#products {
    width: 80%;
    padding: 10px;
    margin: 0;
    float: right;
}

.filter {
    display: none;
    padding: 0;
    margin: 0;
}

.ul_side {
    list-style: none;
    padding: 5px;
}

.li_side a {
    color: black;
    text-decoration: none;
}

    .li_side a:hover {
        text-decoration: none;
        color: #ea5134;
    }

.fa-circle {
    font-size: 20px;
}

#red {
    color: #ea5134;
}

#teal {
    color: rgb(69, 129, 129);
}

#blue {
    color: #0000ff;
}

/*FIN SIDEBAR*/

/*CARDS*/
.card_prog {
    width: 250px;
    display: inline-block;
    height: 300px;
    position: relative;
}
/*
.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: none;
}
*/
.card-img-top_prog {
    width: 100% !important;
    height: 210px !important;
    background-color: black;
}

.fixed-size {
    width: 100% !important;
    height: 210px !important;
    overflow: hidden;
    display: flex; /* Activar flexbox */
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
}

    .fixed-size img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Evitar recortes innecesarios */
    }



.card-body_prog p {
    margin: 2px;
}

.card-body_prog {
    padding: 0;
    padding-left: 2px;
}

.card-text_prog {
    font-size: 14px;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    background-color: #ea5134;
    color: white;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    border-radius: 10px;
    font-size: 16px;
}

.a_card {
    color: black;
    text-decoration: none;
}
/*FIN CARDS*/

/* Content Filters BTN*/
.btn_filterTA {
    border-color: #ea5134 !important;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-bottom: none;
}
/* Fin Content Filters BTN*/

/*Animacion Programa*/
.animated_prog {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*FIN Animacion Programa*/

.btnEcon {
    padding: 0.75rem;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

    .btnEcon:hover {
        background-color: #3C3C3B;
    }

.btnEcon-disabled {
    padding: 0.75rem;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.3;
}

    .btnEcon-disabled:hover {
        background-color: var(--primary-color);
        color: white;
    }

.btnEconCancel {
    padding: 0.75rem;
    text-decoration: none;
    background-color: #3C3C3B;
    color: #f3f3f3;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
}

    .btnEconCancel:hover {
        background-color: #3C3C3B;
    }

/*
  STEP PROGRESS BAR
*/
.step {
    position: relative;
    text-align: center;
    flex: 1;
    height: 110px;
}

    .step .step-circle {
        width: 50px;
        height: 50px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        background-color: white;
        position: relative;
        z-index: 1;
    }

    .step.completed .step-circle {
        background-color: var(--primary-color);
        color: white;
    }

.step-line-left {
    position: absolute;
    top: 24%;
    left: 50%;
    height: 6px;
    background-color: var(--primary-color);
    z-index: 0;
    width: 51%;
    transform: translateY(-50%);
}

.step-line-right {
    position: absolute;
    top: 24%;
    right: 50%;
    height: 6px;
    background-color: var(--primary-color);
    z-index: 0;
    width: 50%;
    transform: translateY(-50%);
}

.step-line-center {
    position: absolute;
    top: 24%;
    height: 6px;
    background-color: var(--primary-color);
    z-index: 0;
    width: 101%;
    transform: translateY(-50%);
}


.step:last-child .step-line {
    display: none;
}

.icon_color {
    color: #3C3C3B;
}

.icon_color_completed {
    color: #ffffff;
}

/* Responsivo */
@media (max-width: 576px) {

    .step .step-circle {
        width: 40px;
        height: 40px;
    }

    .step-line-left {
        position: absolute;
        top: 19%;
        left: 50%;
        height: 6px;
        background-color: var(--primary-color);
        z-index: 0;
        width: 51%;
        transform: translateY(-50%);
    }

    .step-line-right {
        position: absolute;
        top: 19%;
        right: 50%;
        height: 6px;
        background-color: var(--primary-color);
        z-index: 0;
        width: 50%;
        transform: translateY(-50%);
    }

    .step-line-center {
        position: absolute;
        top: 19%;
        height: 6px;
        background-color: var(--primary-color);
        z-index: 0;
        width: 101%;
        transform: translateY(-50%);
    }
}
/*FIN STEP PROGRESS BAR*/

/*FORM DOCUMENTOS*/
.file-preview {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}

    .file-preview img, .file-preview .file-info {
        max-width: 100px;
        margin-right: 15px;
    }

    .file-preview .file-info {
        font-size: 14px;
    }
/*FIN DOCUMENTOS*/


/*ENTREVISTA*/

/* Ajuste del contenedor del chat */
.chat-container {
    max-width: 600px;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Área de mensajes */
.message-area {
    overflow-y: auto;
    flex-grow: 1;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Globos de mensajes */
.message {
    padding: 10px 15px;
    border-radius: 15px;
    margin: 5px 0;
    max-width: 90%;
}

/* Mensaje enviado */
.received {
    background-color: #f59780;
    color: #ffffff;
    align-self: flex-start;
    border-top-left-radius: 0;
    border: 1px solid #ccc;
}

/* Mensaje recibido */
.sent {
    background-color: #ffffff;
    color: #000;
    align-self: flex-end;
    border-top-left-radius: 0;
    border: 1px solid #ccc;
}

/* Campo de texto y botón */
.input-group {
    width: 100%;
}

.link_Entrevista {
    color: #ffffff;
    font-weight: bold;
}

.calendar-card {
    text-align: left;
}

@media (max-width: 768px) {
    .chat-container, .calendar-card {
        width: 100%;
        margin-top: 20px;
    }
}

.btn_chat {
    color: #fff;
    background-color: #f34f34;
    border-color: #f34f34;
}

.txt_calendar {
    --bs-text-opacity: 1;
    color: #f34f34 !important;
    font-weight: bold;
}
/* ENTREVISTA*/


/* Arreglos tipo UAH FANGULO*/

/* Cambiar color de fondo cuando el acordeón está activo */
.accordion-button:not(.collapsed) {
    background-color: #f06427; /* Naranja claro */
    color: white; /* Texto blanco para contraste */
    border-color: #f06427; /* Bordes también naranjas */
}

    /* Cambiar color de hover cuando está activo */
    .accordion-button:not(.collapsed):hover {
        background-color: #e95b23; /* Naranja más oscuro para hover */
        border-color: #e95b23; /* Ajustar borde al color hover */
    }

/* Cambiar color de ícono */
.accordion-button::after {
    filter: brightness(0) invert(1); /* Cambia el color del icono a blanco */
}


/* Sidebar sin colapsar */
/* Ajustar el ancho del Sidebar */
#sidebar {
    width: 410px;
    transition: all 0.3s ease;
}


    #sidebar.collapsed {
        width: 0;
        overflow: hidden;
    }

@media (max-width: 768px) {
    #sidebar {
        display: none; /* Ocultar el sidebar en móviles */
    }

    /* Mostrar el botón en dispositivos pequeños */
    #sidebarCollapse {
        display: block;
    }
}

/* En pantallas grandes, el sidebar se muestra por defecto */
@media (min-width: 769px) {
    #sidebar {
        display: block; /* Mostrar el sidebar en pantallas grandes */
    }

    #sidebarCollapse {
        display: none; /* Ocultar el botón en pantallas grandes */
    }
}

/* Estilo de botón similar al del accordion */
.nav-link.btn_filterTA {
    background-color: transparent; /* Fondo transparente por defecto */
    color: #f06427; /* Color del texto cuando está inactivo */
    border: 1px solid #f06427; /* Borde de color naranja claro */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Transición suave para hover */
}

    /* Hover - Al pasar el ratón sobre el botón */
    .nav-link.btn_filterTA:hover {
        background-color: #e95b23; /* Naranja más oscuro para hover */
        color: white; /* Texto blanco al hacer hover */
        border-color: #e95b23; /* Borde naranja más oscuro */
    }

    /* Estado activo - Cuando el botón está marcado */
    .nav-link.btn_filterTA.active {
        background-color: #f06427; /* Naranja claro para el fondo cuando está activo */
        color: white; /* Texto blanco para contraste */
        border-color: #f06427; /* Borde naranja claro */
    }

        /* Hover cuando está activo */
        .nav-link.btn_filterTA.active:hover {
            background-color: #e95b23; /* Naranja más oscuro cuando está activo y se hace hover */
            border-color: #e95b23; /* Borde más oscuro */
        }

/* FIN Arreglos tipo UAH FANGULO*/
.from_Message {
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el texto y otros elementos */
}

    .from_Message .check-icons {
        font-size: 0.8rem;
        color: #4caf50; /* Color verde para los checks */
        margin-left: auto; /* Empuja los checks hacia la derecha */
    }

.custom-radio .form-check-input {
    width: 1.0em;
    height: 1.0em;
    margin-top: 0.3em;
    cursor: pointer;
    border: 2px solid #e95b23;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

    .custom-radio .form-check-input:checked {
        background-color: #007bff;
        border-color: #0056b3;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
    }

.custom-radio .form-check-label {
    margin-left: 0.5em;
    font-weight: normal;
    font-size: 1.0em;
}

.table-no-spacing td {
    padding: 0; /* Sin espacio interno */
    margin: 0; /* Sin margen externo */
    border: 1px solid #ddd; /* Línea suave con color gris claro */
    border-width: 0.5px; /* Grosor más fino */
    padding-left: 0.5rem;
}

.table-no-spacing th {
    padding: 0.2rem; /* Espaciado interno mínimo para encabezados */
    border: 1px solid #ddd; /* Mismo estilo para los bordes de encabezados */
    border-width: 0.5px;
    background-color: #f9f9f9; /* Fondo ligeramente diferente para encabezados */
}

.table-no-spacing {
    border-collapse: collapse; /* Unifica los bordes */
    border-spacing: 0; /* Sin espacio entre celdas */
    width: 100%; /* Ocupa todo el ancho disponible */
}

    .table-no-spacing td:last-child {
        padding-left: 0.5rem; /* Margen interno derecho */
    }

.deshabilitado {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
    user-select: none;
}




/*Formas de Pago*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.selectable-image {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .selectable-image:hover {
        transform: scale(1.03);
        /*box-shadow: 0 0 10px var(--primary-color);*/
    }

#modalFormaPagoBody input[type="radio"]:checked + label {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-color);
}

.selected-pago-online {
    background-color: #f0f8ff; /* Color de fondo ligero */
    border: 2px solid #007bff; /* Borde azul */
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2); /* Sombra sutil */
}

.disabled-pago-online {
    pointer-events: none;
    opacity: 0.7;
    background-color: #f0f0f0;
}

    .disabled-pago-online :hover {
        cursor: not-allowed;
    }
/*Formas de Pago*/


/*FINANCIAMIENTO*/

.step-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-number {
    background: #f06427;
    color: white;
    font-weight: bold;
    display: inline-block;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    margin-right: 0.5rem;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.payment-option {
    border: 2px solid #ddd;
    border-radius: 12px;
    width: 160px;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    position: relative;
}

.payment-option input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.payment-option .icon-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #333;
    font-weight: 500;
}

.payment-option i {
    font-size: 28px;
    color: #aaa;
    transition: color 0.2s ease;
}

.payment-option input[type="radio"]:checked ~ .icon-label {
    color: #f06427;
    font-weight: 600;
}

    .payment-option input[type="radio"]:checked ~ .icon-label i {
        color: #f06427;
    }

.payment-option:hover {
    border-color: #f06427;
}



