﻿
/* ============================================
   VARIABLES GLOBALES
   ============================================ */

:root {
    /* Colores principales */
    --color-primary-dark: #002f2a;
    --color-primary: #1e5b4f;
    --primary-mid: #335955;
    --color-primary-light: #2d7563;
    --color-secondary: #046639;
    --accent: #4D6766;
    --light: #EEF2F3;
    --white: #FFFFFF;
    --radius: 14px;
    /* Colores de estado */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-info: #17a2b8;
    /* Colores hover */
    --verde-hover: #007473;
    /* Colores neutros */
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    /* Colores de fondo */
    --bg-body: #f5f5f5;
    --bg-sidebar-gradient-start: #1e5b4f;
    --bg-sidebar-gradient-end: #002f2a;
    --bg-header: #1E5B4F;
    --bg-header-secondary: #e8f5f3;
    /* Sombras */
    --shadow: 0 3px 8px rgba(0,0,0,0.08);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-sidebar: 2px 0 6px rgba(0, 0, 0, 0.15);
    /* Espaciado */
    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem; /* 8px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */
    --spacing-xxl: 3rem; /* 48px */
    /* Dimensiones del layout */
    --sidebar-width: 257px;
    --header-height: 85px;
    --header-secondary-height: 100px;
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Tipografía */
    --font-family-primary: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-secondary: 'Montserrat', sans-serif;
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.25rem; /* 20px */
    --font-size-2xl: 1.5rem; /* 24px */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    /* Border radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
}


/* ============================================
   BODY
   ============================================ */

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-gray-900);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   Loading...
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(30, 41, 59, 0.35);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease-in-out;
}

.loader-card {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.4);
    animation: scaleUp .35s ease;
}


.loader-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid var(--color-primary-dark); /* indigo */
    border-top-color: #d7ba7c;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}


.loader-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.loader-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Header Principal
   ============================================ */

.header-top1 {
    background-color: var(--color-primary-dark) !important;
    color: #fff;
    font-size: 1.2rem;
    z-index: 1030;
}



.nav-link-custom {
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: opacity var(--transition-fast);
}

    .nav-link-custom:hover {
        opacity: 0.8;
    }


.logo-main {
    background-image: url("https://framework-gb.cdn.gob.mx/gobmx/img/logo_blanco.svg") !important;
    top: 0px;
    height: 50px;
    margin: 1px auto 0 auto;
    width: 150px;
    background-repeat: no-repeat;
    background-size: 95%
}


/* ============================================
   Header Secundario
   ============================================ */

.header-top2 {
    background-color: #002622 !important;
    color: #fff;
    font-size: .9rem;
}


/* ==========================================
   BANNER BUSQUEDA
========================================== */

/*FULL*/
.banner-busqueda {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 329px;
    padding-left: 0px;
    padding-top: 32px;
    background: radial-gradient(92.4% 95.08% at 94.27% 92.5%, var(--accent) 12.4%, var(--color-primary-dark) 100%);
}

.textos-banner {
    max-width: 60%;
}

.titulo-banner {
    width: 800px;
    height: 152px;
    padding-left: 80px !important;
    padding-top: 10px !important;
    font-family: var(--font-family-primary);
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 76px;
    color: #FFFFFF;
}



.subtitulo-banner {
    width: 683px;
    height: 44px;
    margin-left: 54px;
    margin-top: 44px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 44px;
    color: var(--white);
}

.img-banner {
    position: absolute;
    width: 676px;
    height: 295px;
    padding-left: 535px;
    padding-top: 121px;
    align-self: flex-end;
    background-image: url(../img/banner-busqueda.png);
    background-repeat: no-repeat;
    background-size: 1000px 350px;
    background-position: right top;
    max-width: 200px;
}

.icon-share {
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='18' cy='5' r='3'/><circle cx='6' cy='12' r='3'/><circle cx='18' cy='19' r='3'/><line x1='8.6' y1='13.3' x2='15.4' y2='17.7'/><line x1='15.4' y1='6.3' x2='8.6' y2='10.7'/></svg>") center/contain no-repeat;
}


@media (max-width: 1910px) {
    .textos-banner {
        max-width: 80%;
    }

    .titulo-banner {
        width: 60%;
        font-size: 2.8rem;        
        
    }

    .subtitulo-banner {
        font-size: 0.7rem;
        margin-left: 55px;
    }

    .img-banner {
        position: absolute;
        width: 676px;
        height: 295px;
        padding-left: 535px;
        padding-top: 121px;
        align-self: flex-end;
        background-image: url(../img/banner-busqueda.png);
        background-repeat: no-repeat;
        background-size: 1000px 350px;
        background-position: right top;
        max-width: 200px;
    }
}
/*LAPTOP*/
@media (max-width: 1468px) {
    .textos-banner {
        max-width: 80%;
    }

    .titulo-banner {
        width: 60%;
        font-size: 2.9rem;       
    }

    .subtitulo-banner {
        font-size: 0.7rem;
        margin-left: 55px;
    }

    .img-banner {
        position: absolute;
        width: 676px;
        height: 295px;
        padding-left: 535px;
        padding-top: 121px;
        align-self: flex-end;
        background-image: url(../img/banner-busqueda.png);
        background-repeat: no-repeat;
        background-size: 1000px 350px;
        background-position: right top;
        max-width: 200px;
    }    
}

/*TABLET*/
@media (max-width: 992px) {

    .banner-busqueda {
        display: flex;
        flex-direction: column; 
        justify-content: flex-start;
        width: 100%;
        min-height: 330px;
        height: auto;
        padding: 40px 5% 0 5%; 
        background: radial-gradient(92.4% 95.08% at 94.27% 92.5%, var(--accent) 12.4%, var(--color-primary-dark) 100%);
        position: relative; 
        overflow: hidden;
    }

    .textos-banner {
        max-width: 100%;
        z-index: 2;
        order: 1;
        text-align: center;        
        padding-bottom: 220px;
    }

    .titulo-banner {
        width: 100% !important;
        max-width: 800px;
        height: auto !important;
        padding: 0 !important;
        font-weight: 700;
        font-size: clamp(28px, 6vw, 56px);
        line-height: 1.2;
        color: #FFFFFF;
    }

    .img-banner {
        position: absolute;
        bottom: 0; 
        right: 50%;
        transform: translateX(50%); 
        width: 100%;
        max-width: 600px;
        height: 400px; 
        padding: 0 !important;
        padding-left: 50px;
        background-image: url(../img/banner-busqueda.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom; 
        order: 2;
    }

   
}

/*MOBIL*/

@media (max-width: 480px) {
   
    .banner-busqueda {
        display: flex;
        flex-direction: column; 
        justify-content: flex-start; 
        width: 100%;
        min-height: 330px;
        height: auto;
        padding: 40px 5% 0 5%; 
        background: radial-gradient(92.4% 95.08% at 94.27% 92.5%, var(--accent) 12.4%, var(--color-primary-dark) 100%);
        position: relative; 
        overflow: hidden;
    }

    .textos-banner {
        max-width: 100%;
        z-index: 2;
        order: 1;
        text-align: center;        
        padding-bottom: 220px;
    }

    .titulo-banner {
        width: 100% !important;
        max-width: 800px;
        height: auto !important;
        padding: 0 !important;
        font-weight: 700;
        font-size: clamp(28px, 6vw, 56px);
        line-height: 1.2;
        color: #FFFFFF;
    }

    .img-banner {
        position: absolute; 
        bottom: 0; 
        right: 50%; 
        transform: translateX(50%); 
        width: 100%;
        max-width: 500px;
        height: 200px; 
        padding: 0 !important;
        padding-left:50px;
        background-image: url(../img/banner-busqueda.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom; 
        order: 2;
    }

    .ms-auto {
        margin-left: 0 !important;
    }

}

/* ==========================================
  TAB PRINICPAL BUSCADOR
========================================== */


*, *::before, *::after {
    box-sizing: border-box;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none; 
    margin: 0;
    padding: 0;
    width: 100%;
    background: #E0E0E0;
}

.tabsbuscador {
    flex: 1;    
    text-align: center;
    padding: 14px 0; 
    font-size: 20px;
    font-weight: 600;
    color: #666; 
    cursor: pointer;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .tabsbuscador.active {
        color: #ffffff;
        background: #2D5653;
        border-bottom: 1px solid #FFFFFF;
    }

    .tabsbuscador:hover {
        color: #FFFFFF;
        background: #2D5653;
        border-bottom: 1px solid #6C757D;
    }

@media (max-width: 600px) {

    .tabs {
        flex-direction: column; 
    }

    .tabsbuscador {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }
}



.tab_container {
    border: 1px solid #CED4DA;
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #FFFFFF;
}

.tab_content {
    /* padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
    font-size: 1.2em;*/
    display: none;
    /*border: 1px solid #CED4DA;*/
}

.title_tab_content {
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.title_tab {
    width: 1326px;
    height: 51px;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #161A1D;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.sub_title_tab {
    width: 1326px;
    height: 27px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #767676;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}


/* ==========================================
   CARD BÚSCADOR
========================================== */


.bg-white {
    --bs-bg-opacity: 1;
    background-color: var(--white) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow);
}


.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 40px;
    padding: 5px 10px;
    border: 1px solid #e5e5e5;
    flex: 1;
}

    .search-input-wrapper:hover {
        border-color: #d0d0d0;
    }

.search-icon {
    font-size: 20px;
    opacity: 0.6;
    margin-right: 10px;
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 16px;
    outline: none;
    color: #333;
}


.btn-search {
    padding: 10px 28px;
    background: var(--white);
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
}




/* ==========================================
   CARD RESULTADO BÚSQUEDA
========================================== */

.contenedor-result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 1327px;
    height: 278px;
    /* Dentro del diseño automático */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.contenedor-datos {
    /* Frame 1618874006 */
    /* Diseño automático */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 48px;
    gap: 10px;
    width: 1326px;
    height: 48px;
    background: #335955;
    border-radius: 0px 0px 16px 16px;
    /* Dentro del diseño automático */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.contenedor-datos-footer {
    align-items: flex-start;
    padding: 18px 48px;
    background: #335955;
    border-radius: 0px 0px 16px 16px;
    /* Dentro del diseño automático */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    max-width: 100%;
    margin: auto;
}


.card-header .info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-mid);
    font-size: 14px;
}

.card-header .icon {
    font-size: 16px;
}

.card-header .dot {
    width: 4px;
    height: 4px;
    background: #aaa;
    border-radius: 50%;
}


.card-title {
    margin-top: 15px;
    color: var(--primary-mid);
}


.card-description {
    margin-top: 12px;
    line-height: 1.5;
    color: var(--accent);
}


.card-tags {
    margin-top: 5px;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.comments {
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}



.tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tag {
    background: var(--light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #3d4d4d;
}

.btn-more {
    border: none;
    background: var(--light);
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}


.card-footer {
    margin-top: 20px;
    background: var(--primary-mid);
    height: 60px;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    color: var(--white);
    gap: 12px;
}



.view-button {
    
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-button i {
    line-height: 1;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.view-button:hover {
    text-decoration: none;
    color: var(--white);
    background: rgba(255,255,255,0.12);
    
}


.icon i {
    padding-top: 5px;
    font-size: 20px;
    width: 20px;
    height: 20px;
    align-items: center;
    gap: 6px;
}


@media (max-width: 600px) {
    .card {
        padding: 16px;
    }

    .card-footer {
        height: 70px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        margin-left: -16px;
        margin-right: -16px;
    }

    
}

/* --- END CARD RESULTADO BUSQUEDA --- */



/* ==========================================
   PAGINACIÓN
========================================== */
.pagination {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: Arial, sans-serif;
    padding: 15px 0;
    justify-content: center;
}

    .pagination .page-link {
        color: var(--color-primary-dark) !important;
        border: none !important;
        background: transparent !important;
        font-size: 15px;
        text-decoration: none;
    }

    /* --- Página activa --- */
    .pagination .page-item.active .page-link {
        background: var(--color-primary-dark) !important;
        color: var(--white) !important;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- Deshabilitado --- */
    .pagination .page-item.disabled .page-link {
        opacity: 0.4 !important;
        pointer-events: none;
    }

    /* ---- ANTERIOR ---- */
    .pagination .page-item[area-label="Previous"] .page-link span[area-hidden="true"]::before {
        content: "Anterior";
        font-weight: 600;
        text-decoration: underline;
        font-size: 15px;
    }

    .pagination .page-item[area-label="Previous"] .page-link span[area-hidden="true"] {
        font-size: 0 !important; /* oculta flecha ‹ */
    }


    /* ---- SIGUIENTE ---- */
    .pagination .page-item[area-label="Next"] .page-link span[area-hidden="true"]::before {
        content: "Siguiente";
        font-weight: 600;
        text-decoration: underline;
        font-size: 15px;
    }

    .pagination .page-item[area-label="Next"] .page-link span[area-hidden="true"] {
        font-size: 0 !important; /* oculta flecha › */
    }

    .pagination .page-link::after {
        content: '' !important;
    }


/* ==========================================
   FOOTER GOBMX
========================================== */

.footer-gobmx {
    background-color: #0A4B3C;
    color: white;
    padding: 3rem 2rem;
    font-family: Arial, sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 2000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 100fr 100fr 100fr;
    gap: 10rem;
}

/* Columnas */
.footer-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Logo */
.logo-gobmx {
    width: 160px;
    height: auto;
}

/* Títulos */



.footer-col h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.8rem 0;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1.2rem 0 0.8rem 0;
    color: white;
}

    .footer-col h4:first-of-type {
        margin-top: 0;
    }

/* Texto */
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    color: white;
    opacity: 0.9;
}

/* Listas */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

/* Links */
.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.9;
}

    .footer-col a:hover {
        text-decoration: underline;
        opacity: 1;
    }

/* Enlace Leer más */
.footer-col p a {
    text-decoration: underline;
    font-weight: normal;
}

/* Denuncia */
.denuncia {
    color: white;
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* Redes sociales */
.redes {
    display: flex;
    gap: 0.8rem;
    margin: 0.5rem 0 1.5rem 0;
}

.icon-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .icon-red:hover {
        transform: translateY(-2px);
        background-color: #f0f0f0;
    }

    .icon-red svg {
        width: 16px;
        height: 16px;
        fill: #0A4B3C;
    }

/* ============================================
   Contacto 079 - Logo arriba, texto a la derecha
   ============================================ */
.contacto {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
}

    /* Contenedor del logo y 079 */
    .contacto .logo-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

        .contacto .logo-group img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .contacto .logo-group strong {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

    /* Texto a la derecha */
    .contacto p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        color: white;
        opacity: 0.9;
        flex: 1;
    }


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .logo-gobmx {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .footer-gobmx {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
        align-items: center;
    }

        .footer-col ul {
            width: 100%;
            text-align: center;
        }

    .redes {
        justify-content: center;
    }

    .contacto {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-gobmx {
        padding: 1.5rem 1rem;
    }

    .logo-gobmx {
        width: 150px;
    }

    .contacto strong {
        font-size: 1.8rem;
    }
}
/*EMD FOOTER*/

.hr-soft {
    border: none;
    border-top: 1px solid #f2ecec; /* Gris suave */
    margin: 15px 0;
    width: 100%;
}



/* ==========================================
   VISTA PREVIA EXPEDIENTE
========================================== */

/*BEGIN CSS NEW STYLE*/

/* HEADER */
.page-header {
    padding: 20px 40px;
    /*border-bottom: 1px solid #ddd;
        background: #fff;*/
}

.back-btn {
    display: inline-block;
    margin-bottom: 10px;
    color: #007473;
    text-decoration: none;
}

h1 {
    margin: 0;
    font-size: 24px;
}

.subtext {
    color: #555;
    margin-top: 5px;
}

.meta span {
    margin-right: 15px;
    font-size: 13px;
    color: #666;
}

/* TABS */
.tabs-detail-container {
    border-bottom: 1px solid #9e9e9e;
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: flex-end; /* Alinea los tabs al fondo */
}

.tabs-detail {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    margin-bottom: -1px; /* Baja el ul para que toque la línea */
}

.tab-detail {
    padding: 12px 24px;
    border: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e; /* Agrega borde inferior */
    border-radius: 12px 12px 0 0;
    background: #fff;
    font-size: 16px;
    color: #444;
    cursor: pointer;
}

    .tab-detail.active {
        font-weight: bold;
        color: #000;
        border-color: #9e9e9e;
        background: #f9f9f9;
        border-bottom: 1px solid #f9f9f9; /* Tapa la línea solo en el tab activo */
    }

.section-title {
    padding: 20px 40px 5px;
    font-size: 22px;
}

/* PDF VIEWER */
.pdf-viewer {
    width: 90%;
    margin: 20px auto;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
}

.pdf-toolbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

    .pdf-toolbar button {
        background: #f1f1f1;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

.pdf-content img {
    width: 100%;
    display: block;
}

/* CONTENT BOX */
.box {
    background: #fff;
    padding: 20px 40px;
    margin: 20px auto;
    width: 90%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

    .box h3 {
        margin-top: 0;
    }



/* COMMENTS LIST */
.comments-list {
    width: 90%;
    margin: 20px auto;
}


/* Estilos del contenedor */
.contenedor-comentarios {
    padding: 1rem 1.5rem;
    width: 300px;
    height: 400px;
    
    color: #333;
    font-family: sans-serif;
    text-align: justify;
    line-height: 1.3;
    overflow: auto;
}

    .contenedor-comentarios p:not(:last-child) {
        margin-bottom: 1rem;
    }

    
    .contenedor-comentarios::-webkit-scrollbar {
        width: 8px;
    }

    
    .contenedor-comentarios::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .contenedor-comentarios::-webkit-scrollbar-thumb:active {
        background-color: #999999;
    }

    .contenedor-comentarios::-webkit-scrollbar-thumb:hover {
        background: #b3b3b3;
        box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    }

    
    .contenedor-comentarios::-webkit-scrollbar-track {
        background: #e1e1e1;
        border-radius: 4px;
    }

    .contenedor-comentarios::-webkit-scrollbar-track:hover,
    .contenedor-comentarios::-webkit-scrollbar-track:active {
        background: #d4d4d4;
    }




.comment {
    background: #F3F3F3;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.author {
    font-weight: bold;
    font-size: 14px;
    color: #444;
}

.comment p {
    margin-top: 5px;
}

.commentario-item-info {    
    display: block;
    margin-top: 5px; 
}

    .commentario-item-info small {
        display: inline-block;
        margin-bottom: 5px;
        color: #767676;
        font-size: 13px;
    }

    .commentario-item-info .ver {
        color: #002F2A !important;
        text-decoration: none;
        font-size: 15px;
        display: inline-block;
        align-items: center;
        font-weight: bold !important;
    }

  


    
.required-fields {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 24px;
    display: block;
}

.error-msg {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

.required-fields {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 24px;
    display: block;
}

    .required-fields span {
        color: #dc2626;
    }

.required {
    
    color: red;
    margin-right: 3px;
}


/* Radio buttons */
.radio-option {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 6px;
}

    .radio-option:hover {
        background-color: #f9fafb;
    }

    .radio-option input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        cursor: pointer;
        accent-color: #1e5b4f;
    }

    .radio-option label {
        font-size: 14px;
        color: #161a1d;
        cursor: pointer;
        margin: 0;
    }


.kt-radio-inline {
    padding: 0 0;
}

    .kt-radio-inline .kt-radio {
        display: inline-block;
        margin-right: 15px;
        margin-bottom: 5px;
    }

        .kt-radio-inline .kt-radio:last-child {
            margin-right: 0;
        }

.fa-circle-user {
    color:#d0cccc;
}

.hr-coment {    
    border: 1px solid #DDDDDD;
    margin: 15px 0;
    width: 100%;
}

.contenedor-comentarios {    
    max-height: 500px;    
    overflow-y: auto;    
    width: 100%;    
    padding: 10px;
}


.ARCHV-label-comentario {
    font-size: 15px !important;
    color: var(--neutro-900);
    font-weight: bold !important;
}


.tooltip-contenido-icono {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tooltip-contenido {
    position: relative;
    display: inline-block; 
}

.tooltip-icon {
    cursor: pointer;
    font-weight: bold;
    color: #224497;    
}

.custom-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-90%);
    background-color: #EDF2FE;
    color: #224497;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border: 1px solid #224497;
}


    .custom-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 90%;
        transform: translateX(-50%);
        border-width: 8px;
        border-style: solid;
        border-color: #224497 transparent transparent transparent;
    }


.tooltip-contenido:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
}


.tooltip-contenido:hover .tooltip-icon {
    cursor: pointer;
}



.card-btn-enviar {
    gap: 2px; 
    width: 100%;
}


.captcha-container-enviar {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .card-btn-enviar {
        text-align: center;
        justify-content: center;
    }

    .btn-Primary {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        font-size: 16px;
        justify-content: center !important;
    }

    
    @media (max-width: 350px) {
        .g-recaptcha {
            transform: scale(0.77);
            -webkit-transform: scale(0.77);
            transform-origin: 0 0;
            -webkit-transform-origin: 0 0;
        }
    }
}

/*END  CSS NEW STYLE*/


/*CONTENEDORES background-color*/

.bg-white {
    --bs-bg-opacity: 1;
    background-color: var(--white) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow);
}


.bg-line-tranparente  {
    padding: 20px 40px;
    width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
}


/*TITULOS*/

.title-data {        
    gap: 4px;    
    height: 12px;
    font-weight:bold;
}


/* Botón seleccionar */
.btn-Primary {
    background-color: var(--color-primary-dark);
    border: 1px solid var(--verde-700);
    color: var(--color-white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    justify-items: end;
    margin-top: 20px;
}


    .btn-Primary:hover {
        margin-top: 20px;
        background: var(--verde-hover);
        color: var(--color-white);
        padding: 10px 15px;        
        border-radius: 6px;
        cursor: pointer;
        gap: 6px;
    }

.btn-Primar i {
    line-height: 1;
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-top: 15px;
}



.card-btn {
    height: 60px;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;    
    justify-content: space-between;
    align-items: center;
}


.error {
    color: red;
    font-weight: 400;
}

.hd-hide {
    display: none;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.requerido:after {
    content: " *";
    color: red;
}

.flechasubeobaja {
    cursor: pointer
}

.mapadiv {
    width: 70%;
    margin: auto;
}

    .mapadiv path {
        fill: #BABBC2;
        stroke: #DFE0EA;
        stroke-width: 2px;
    }

    .mapadiv :hover {
        fill: #9e7b36;
    }

#visualization_wrap {
    position: relative;
    height: 410px;
}

#visualization {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


.trmitesSI {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
}

.botonfault {
    border: solid 1px #007473;
    background-color: #007473;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}




.btn-search:hover {
    background: #2a615d;
    color: white;
}

.breadcrumb-item {
    font-size: 13px;
    font-weight: 500;
}

    .breadcrumb-item > i {
        font-size: 18px;
        padding-left: .5rem;
    }

    .breadcrumb-item > a {
        color: #53575a !important;
        text-decoration: underline #808080;
    }

.titulo-ficha {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #154746;
}

.titulo-numeber-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #154746;
}

.tamano-font-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
}

.trmitesSmall {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
}

.titulo-ficha > span {
    font-weight: 500
}

.btn-cnartys {
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    background-color: #007473;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 1px;
}

.btn-cnartys-bold {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    background-color: #154746;
    margin-top: 20px;
}

.btn-cnartys-link {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    color: #154746;
    background-color: #ffffff;
}

.btn-cnartys:hover {
    color: #808080;
    background: #154746;
}

.btn-cnartys-gray {
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    background-color: #6c757d;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 1px;
}

    .btn-cnartys-gray:hover {
        color: #ffffff;
        background: #606366;
    }

.footer-cnartys {
    background-color: #002622 !important;
    color: #fff;
}

.footer-cnartys-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.footer-cnartys-enlaces {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none !important;
}

    .footer-cnartys-enlaces:hover {
        color: #e6e6e6;
        text-decoration: underline !important;
    }

.footer-pleca {
    background-color: #fff;
    background-image: url(https://framework-gb.cdn.gob.mx/gobmx/img/pleca.svg);
    background-repeat: repeat-x;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px;
    background-color: #ffffff;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
}

ul.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #53575a;
}

    ul.breadcrumb li {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #53575a;
    }

        ul.breadcrumb li + li:before {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #53575a;
            padding: 2.7px 4.7px 2.7px 6px;
            content: ">";
        }

        ul.breadcrumb li a {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            text-decoration: underline;
            color: #53575a;
        }

            ul.breadcrumb li a:hover {
                text-decoration: underline;
            }

        ul.breadcrumb li + li:before {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: normal;
            text-align: left;
            color: #53575a;
            padding: 2.7px 4.7px 2.7px 6px;
            content: ">";
        }


.div-menu-left {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
}

.card-acordion {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
}

.card-header-acordion {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: #f6f6f6;
}

.btn-link-acordion {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: rgba(39, 39, 41, 0.12);
    text-decoration: none;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%);
}



#container {
    width: 600px;
    margin: 0 auto;
}

.txt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #53575a;
}

.item-search-result {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex !important;
}

.item-title-search-result {
    font-size: 15px !important;
    color: #007473;
    text-decoration: none !important;
    background-color: transparent;
    font-weight: bold;
    line-height: 1.5;
}

/*    .item-title-search-result:hover {
        font-size: 15px !important;
        color: ##002622;
        text-decoration: none;
        background-color: transparent;
        font-weight: bold;
        line-height: 1.5;
        cursor: pointer;
    }
*/
.item-description-search-result {
    font-size: 12px !important;
    margin-top: 10px;
    text-align: left;
}

.item-description-black-search-result {
    font-size: 12px !important;
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
}

.item-description-red-search-result {
    background-color: #925E78;
    color: #FFFFFF;
    font-size: 12px !important;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
    font-weight: bold;
}

.item-hr {
    padding: 0px !important;
    margin: 0px !important;
    border-top: 2px solid #E6E6EB;
}

.item-link-search-result {
    font-size: 12px !important;
    color: #007473;
    text-decoration: underline;
    background-color: transparent;
    font-weight: bold;
}

    .item-link-search-result:hover {
        font-size: 12px !important;
        color: #002622;
        text-decoration: underline;
        background-color: transparent;
        font-weight: bold;
    }

.btn-search-result {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}


.item-hide-element {
    display: none;
}

}

.portal-content {
    padding-left: 30px;
    padding-right: 30px;
}



.tabs {
    /*width: 680px;*/
    /*height: 360px;*/
    height: auto;
    /*padding: 30px 20px;
    background: #f5f5f5;
    box-shadow: 5px 5px 10px 5px #ccc;
    overflow: hidden;*/
}

    .tabs .tab-header {
        float: left;
        width: 180px;
        height: 100%;
        padding: 50px 0px;
    }

        .tabs .tab-header > div {
            /*height: 50px;*/
            /*line-height: 50px;*/
            /*font-size: 16px;
            font-weight: 600;*/
            color: #888;
            cursor: pointer;
            padding-left: 10px;
        }

            .tabs .tab-header > div:hover,
            .tabs .tab-header > div.active {
                color: #00acee;
            }

        .tabs .tab-header div i {
            display: inline-block;
            margin-left: 10px;
            margin-right: 5px;
        }

    .tabs .tab-content {
        position: relative;
        height: 100%;
        overflow: hidden;
        border-left: 1px solid #ccc;
    }

        .tabs .tab-content > div > i {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: #555;
            color: #f5f5f5;
            font-size: 25px;
            font-weight: 600;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
        }

        .tabs .tab-content > div {
            /*position: absolute;*/
            height: auto;
            text-align: center;
            padding: 40px 20px;
            top: -200%;
            transition: all 500ms ease-in-out;
        }

            .tabs .tab-content > div.active {
                top: 0px;
            }

    .tabs .tab-indicator {
        position: absolute;
        width: 4px;
        height: 50px;
        background: #00acee;
        left: 198px;
        top: 80px;
        transition: all 500ms ease-in-out;
    }

.hide-item {
    display: none;
}

.kt-checkbox-list {
    padding: 0 0;
}

    .kt-checkbox-list .kt-checkbox {
        text-align: left;
        display: block;
    }

.form-group label {
    font-size: 1rem;
    font-weight: 400;
}

.kt-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .kt-checkbox > input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

input[type="radio"], input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

button, input {
    overflow: visible;
}

.btn-brand {
    color: #fff;
    background-color: #007473;
    border-color: #007473;
    color: #ffffff;
}

    .btn-brand:hover {
        color: #fff;
        background-color: #00abfb;
        border-color: #00a3ee;
    }

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

user agent stylesheet
input[type="checkbox" i] {
    background-color: initial;
    cursor: default;
    appearance: checkbox;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border: initial;
}

user agent stylesheet
input {
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: textfield;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
    -webkit-rtl-ordering: logical;
    cursor: text;
    margin: 0em;
    font: 400 13.3333px Arial;
    padding: 1px 2px;
    border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}

.kt-checkbox:hover > input:not([disabled]):checked ~ span, .kt-checkbox > input:checked ~ span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.kt-checkbox > input:checked ~ span {
    border: 1px solid #c8cfdd;
}

.kt-checkbox > input:checked ~ span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: none;
}

.kt-checkbox > span {
    border: 1px solid #d1d7e2;
}

.kt-checkbox > span {
    border-radius: 3px;
    background: none;
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-checkbox-list .kt-checkbox {
    text-align: left;
    display: block;
}

.form-group label {
    font-size: 1rem;
    font-weight: 400;
}

.kt-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

user agent stylesheet
label {
    cursor: default;
}

.kt-checkbox > input:checked ~ span:after {
    display: block;
}

.kt-checkbox > span:after {
    border: solid #bfc7d7;
}

.kt-checkbox > span:after {
    content: '';
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 /*rtl:ignore*/ !important;
    -webkit-transform: rotate(45deg) /*rtl:ignore; */;
    transform: rotate(45deg) /*rtl:ignore; */;
}

.kt-radio-list {
    padding: 0 0;
}

    .kt-radio-list .kt-radio {
        display: block;
        text-align: left;
    }

.form-group label {
    font-size: 1rem;
    font-weight: 400;
}

.kt-radio {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .kt-radio > input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

input[type="radio"], input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

button, input {
    overflow: visible;
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.kt-radio > span {
    border: 1px solid #d1d7e2;
}

.kt-radio > span {
    background: none;
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 50% !important;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.kt-radio-list .kt-radio {
    display: block;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    font-weight: 400;
}

.kt-radio {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .kt-radio > input:checked ~ span:after {
        display: block;
    }

    .kt-radio > span:after {
        border: solid #bfc7d7;
        background: #bfc7d7;
    }

    .kt-radio > span:after {
        content: '';
        position: absolute;
        display: none;
        top: 50%;
        left: 50%;
        margin-left: -3px;
        margin-top: -3px;
        width: 6px;
        height: 6px;
        border-radius: 100% !important;
    }

.kt-radio-inline .kt-radio {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 400;
}

.kt-radio {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.content-protesta-inicio {
    margin-left: 150px;
    margin-right: 150px;
}

.item-row-tble {
    background-color: #fff;
    margin-bottom: 2px;
}

.content-protesta-login {
    margin-left: 200px;
    margin-right: 200px;
}

.stylenivelgob {
    margin: 0 15px 0 5px;
    padding: 4px 8px;
    border-radius: 28px;
    color: #fff;
    font-weight: bold;
}

.stylefederal {
    background-color: #925e78;
}

.stylepjfederal {
    background-color: rgba(146, 94, 120, 0.95);
}

.styleplfederal {
    background-color: rgba(146, 94, 120, 0.90);
}

.styleoafederal {
    background-color: rgba(146, 94, 120, 0.85);
}

.styleentidad {
    background-color: #4a964b;
}

.stylepjentidad {
    background-color: rgba(74, 150, 75, 0.95);
}

.styleplentidad {
    background-color: rgba(74, 150, 75, 0.90);
}

.styleoaentidad {
    background-color: rgba(74, 150, 75, 0.85);
}

.stylemunicipio {
    background-color: #a43c13;
}

.stylecabildo {
    background-color: rgba(164, 60, 19, 0.95);
}

.styleoamunicipal {
    background-color: rgba(164, 60, 19, 0.90);
}

.stylefgr {
    background-color: rgba(146, 94, 120, 0.80);
}

.styleojcpj {
    background-color: rgba(146, 94, 120, 0.75);
}

.stylefgentidad {
    background-color: rgba(74, 150, 75, 0.80);
}

.btn-tab-ficha {
    background-color: #f6f6f6;
    border-radius: 0 !important;
    color: #002622 !important;
    width: 100%;
    margin-top: 10px !important;
    line-height: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.boton-div {
    width: 100%
}

.boton-icono-tab {
    float: left;
    font-size: 20px;
    font-weight: bold;
    color: #b38e5b
}

.boton-titulo-tab {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    vertical-align: middle;
    color: #007473;
}

    .boton-titulo-tab i {
        color: #b38e5b;
        font-size: 20px;
        padding-top: 5px;
    }

.signo-pesos {
    color: #b38e5b;
    font-size: 20px;
    padding-top: 5px;
    margin-right: 8px;
}

.card-body-ficha {
    border: 2px solid rgba(0,0,0,.05) !important;
    border-radius: 0 !important;
}

.txt-titulo-interno {
    font-size: 14px;
    font-weight: bold;
}

.btn-cnartys-link-sm {
    font-size: 12px !important;
}

.btn-cnartys-link-interno {
    font-size: 14px !important;
    color: #007473 !important;
    font-weight: bold !important;
    text-decoration: underline !important;
}

.opciones-menu-interno {
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: underline !important;
}

.texto-verde {
    color: #003333 !important;
}

.texto-verde-2 {
    color: #007473 !important;
}

ul li.colorcambiali::marker {
    color: #b38e5b; /* Change the color */
}

.borde-btn-ficha {
    border-bottom: 5px rgba(0, 116, 115, 0.80) solid;
}


.texto-gris {
    color: #53575a;
}

.card-body-ficha-interno {
    border: 1px solid rgba(0, 116, 115, 0.80) !important;
    border-radius: 0 !important;
}

.card-body-ficha-interno-silver {
    border: 1px solid rgba(211,211,211,1) !important;
    border-radius: 0 !important;
}

.secciones-detalle-ficha {
    margin-bottom: 15px;
}

.background-verde {
    background: #007473 !important;
    color: #fff !important;
}

.background-verde-2 {
    background: #043a39 !important;
    color: #fff !important;
}

.background-verde > .tabla-boton > tbody > tr > .boton-titulo-tab, .background-verde > .tabla-boton > tbody > tr > .boton-titulo-tab > i {
    color: #fff !important;
}

.background-verde-2 > .tabla-boton > tbody > tr > .boton-titulo-tab, .background-verde-2 > .tabla-boton > tbody > tr > .boton-titulo-tab > i {
    color: #fff !important;
}

.container-lg-top {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

@media (min-width:1200px) {
    .container-lg-cnartys {
        min-width: 80% !important;
        max-width: 80% !important;
        width: 80% !important;
    }
}

@media (max-width:1200px) {
    .container-lg-cnartys {
        min-width: 100% !important;
        width: 100% !important;
    }
}

.tabla-boton {
    margin: 0 auto;
}

table.table-bordered-dashed > tbody > tr > td, table.table-bordered-dashed > tbody > tr > th {
    border-bottom: 1px dashed #ebebeb !important;
    border-top: 0px !important;
}

table.table-bordered-0 > tbody > tr > td, table.table-bordered-0 > tbody > tr > th {
    border: 0px !important;
}

tr.table-bordered-dashed {
    border-bottom: 1px dashed #ebebeb !important;
    border-top: 0px !important;
}


.selectsi {
    background-color: #219653;
    border-radius: 20px;
    padding: 3px 15px;
    color: #fff !important;
}

.selectno {
    background-color: #c01c22;
    border-radius: 20px;
    padding: 3px 12px;
    color: #fff !important;
}

}

.btn-Circle {
    display: block;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 1px solid red;
}

.selectSastifacionCuenta {
    background: #b38e5b;
}

.rectangulo-item {
    width: auto;
    height: 180px;
    background: #154746;
    color: white;
}

.rectangulo-item-row {
    width: 100%;
    background: #007473;
    color: white;
}

.titulo-negritas-blanco {
    color: white;
}

.border-right-dashed {
    border-right: 2px dashed #007473 !important;
}


.stylefederal-borde {
    border-top: 4px solid #925e78;
}

.stylepjfederal-borde {
    border-top: 4px solid rgba(146, 94, 120, 0.95);
}

.styleplfederal-borde {
    border-top: 4px solid rgba(146, 94, 120, 0.90);
}

.styleoafederal-borde {
    border-top: 4px solid rgba(146, 94, 120, 0.85);
}

.styleentidad-borde {
    border-top: 4px solid #4a964b;
}

.stylepjentidad-borde {
    border-top: 4px solid rgba(74, 150, 75, 0.95);
}

.styleplentidad-borde {
    border-top: 4px solid rgba(74, 150, 75, 0.90);
}

.styleoaentidad-borde {
    border-top: 4px solid rgba(74, 150, 75, 0.85);
}

.stylemunicipio-borde {
    border-top: 4px solid #a43c13;
}

.stylecabildo-borde {
    border-top: 4px solid rgba(164, 60, 19, 0.95);
}

.styleoamunicipal-borde {
    border-top: 4px solid rgba(164, 60, 19, 0.90);
}

.stylefgr-borde {
    border-top: 4px solid rgba(146, 94, 120, 0.80);
}

.styleojcpj-borde {
    border-top: 4px solid rgba(146, 94, 120, 0.75);
}

.stylefgentidad-borde {
    border-top: 4px solid rgba(74, 150, 75, 0.80);
}

.nivel-gobierno-result {
    font-size: .6rem;
}

.select-mostrar-todos {
    border: none;
    background: transparent;
    /*ext-align-last: center;*/
    font-size: 12px !important;
    font-family: 'Montserrat';
    font-weight: bold;
    appearance: none; /* Chrome, Edge, Opera */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    background-image: none;
}

    .select-mostrar-todos:focus-visible {
        outline: none;
        box-shadow: none;
        border: none;
    }

.label-select {
    font-size: 12px !important;
    font-family: 'Montserrat';
}

.div-content-search-avanzada {
    border: none;
    background-color: transparent;
    border-top: 2px solid;
    border-radius: 0px;
    border-color: #BCBFC5;
}

.txt-green {
    color: #007473;
    text-decoration: none;
}

    .txt-green:hover {
        color: #007473;
        text-decoration: none;
    }

.select-green {
    border: none;
    background: transparent;
    border-bottom: 1px solid;
    border-radius: 0px;
    border-color: #007473;
}

.accordion-heading-left {
    padding: 15px;
}

.acordion-txt-title-item {
    color: #053B3A;
    text-decoration: none;
    font-weight: bold;
}

    .acordion-txt-title-item:hover {
        color: #053B3A;
        text-decoration: none;
        font-weight: bold;
    }

.item-menu-left-disabled1 {
    pointer-events: none;
    cursor: default;
    color: #c3bdbd;
}

.pin-green {
    color: #007473;
    font-size: 12px !important;
}

.btn-green-ligth {
    background-color: #daebeb;
    font-size: 12px;
}






@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.navigation {
    width: 350px !important;
    float: none !important;
    text-align: center !important;
    margin: auto;
}


.custom-select {
    position: relative;
    font-family: 'Montserrat';
    font-size: 12px !important;
    padding: 0px !important;
    border: 0px !important;
    font-weight: bold;
    background: none;
}

.select-selected-advanced-table {
    background-color: transparent !important;
    border: none !important;
    background: transparent !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    border-color: #007473 !important;
    color: #53575a;
    padding: 8px 16px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 500;
}

.select-selected-table:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #007473 transparent transparent transparent;
    font-size: 14px !important;
    font-weight: 500;
}

.custom-select select {
    display: none;
}

#chartdiv {
    width: 100%;
    height: 500px;
}

#chartdiv4 {
    width: 100%;
    height: 500px;
}

#chartdiv5 {
    width: 100%;
    height: 500px;
}

.select-selected {
    background-color: transparent !important;
}

    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #53575a transparent transparent transparent;
        margin-left: 5px !important;
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #53575a transparent;
        top: 7px;
    }

.select-items div, .select-selected {
    color: #53575a;
    padding: 8px 16px;
    border: 0px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-size: 12px !important;
}

.select-items {
    font-weight: bold;
    border: 1px solid #ced4da;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: -50px;
    right: 0;
    z-index: 99;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    overflow-y: auto;
    max-height: 400px;
    max-width: 190px;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: transparent !important;
}



.custom-select-advanced-search {
    position: relative;
    font-family: 'Montserrat';
    font-size: 12px !important;
    padding: 0px !important;
    border: 0px !important;
    font-weight: bold;
    background: none;
}

    .custom-select-advanced-search select {
        display: none;
    }

.select-selected-advanced-search {
    background-color: transparent !important;
    border: none !important;
    background: transparent !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    border-color: #007473 !important;
    font-size: 14px;
    font-weight: 500
}

    .select-selected-advanced-search:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #007473 transparent transparent transparent;
        font-size: 14px !important;
        font-weight: 500
    }

    .select-selected-advanced-search.select-arrow-active-advanced-search:after {
        border-color: transparent transparent #007473 transparent;
        top: 7px;
    }

.select-items-advanced-search div, .select-selected-advanced-search {
    color: #53575a;
    padding: 8px 16px;
    border: 0px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-size: 14px !important;
    font-weight: 500
}

.select-items-advanced-search {
    font-weight: bold;
    border: 1px solid #ced4da;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    overflow-y: auto;
    max-height: 400px;
}

.select-hide-advanced-search {
    display: none;
}

.select-items-advanced-search div:hover, .same-as-selected-advanced-search {
    background-color: transparent !important;
}

.custom-select-advanced-search-ef {
    position: relative;
    font-family: 'Montserrat';
    font-size: 12px !important;
    padding: 0px !important;
    border: 0px !important;
    font-weight: bold;
    background: none;
}

    .custom-select-advanced-search-ef select {
        display: none;
    }

.select-selected-advanced-search-ef {
    background-color: transparent !important;
    border: none !important;
    background: transparent !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    border-color: #007473 !important;
    font-size: 14px;
    font-weight: 500
}

    .select-selected-advanced-search-ef:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #007473 transparent transparent transparent;
        font-size: 14px !important;
        font-weight: 500
    }

    .select-selected-advanced-search-ef.select-arrow-active-advanced-search-ef:after {
        border-color: transparent transparent #007473 transparent;
        top: 7px;
    }

.select-items-advanced-search-ef div, .select-selected-advanced-search-ef {
    color: #53575a;
    padding: 8px 16px;
    border: 0px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-size: 14px !important;
    font-weight: 500
}

.select-items-advanced-search-ef {
    font-weight: bold;
    border: 1px solid #ced4da;
    border-radius: 5px;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    overflow-y: auto;
    max-height: 400px;
}

.select-hide-advanced-search-ef {
    display: none;
}

.select-items-advanced-search-ef div:hover, .same-as-selected-advanced-search-ef {
    background-color: transparent !important;
}

.text-title-center-height {
    width: 100%;
    text-align: center;
}

.text-title-silver {
    color: #AEB6BF;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 6px;
    border: 2px solid #bbbbbb;
    background-color: #e7e6e7;
    border-radius: 50%;
}

    input[type="radio"]:checked {
        background-clip: content-box;
        background-color: #007473;
        padding: 4px;
    }


.flex {
    display: flex;
    align-items: center;
}


.container {
    display: block;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    /*padding-left: 30px;*/
    padding: 10px;
    cursor: pointer;
    margin: 0px;
}

    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }


.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
}

.container:hover {
    background-color: #DAEBEB;
    border-radius: 10px;
}

.checkbox-custom {
    background-color: #279795;
    color: #fff;
    border-radius: 10px;
}

    .checkbox-custom:hover {
        background-color: #053B3A;
    }


.checkmark:after {
    content: "";
    position: absolute;
}

.container input:checked ~ .checkmark:after {
    content: url(../img/cerrar-ficha-w.png);
    position: absolute;
    display: block;
    left: -6px;
    top: 8px;
    height: 0px;
    width: 0px;
    -ms-transform: rotate(45deg);
    transform: rotate(0deg);
    color: white;
    border-width: 0px !important;
    border: none !important;
    font-size: 22px;
    transform: scale(.06);
}

.container .checkmark:after {
    content: url(../img/requisitos-gris.png);
    position: absolute;
    display: block;
    left: -6px;
    top: 8px;
    height: 0px;
    width: 0px;
    -ms-transform: rotate(45deg);
    transform: rotate(0deg);
    color: white;
    border-width: 0px !important;
    border: none !important;
    font-size: 22px;
    transform: scale(.06);
    padding-left: 1.5rem;
}

.container:hover .checkmark:after {
    content: url(../img/requisitos-gris.png);
    border: solid #298B8A;
    border-width: 0 3px 3px 0;
    padding-left: 1.5rem;
}

.eva-arrow-up {
    color: #007473;
}

.eva-arrow-down {
    color: #007473;
}


.icon-body-tab {
    width: 24px !important;
}

.txt-body-tab {
    text-decoration: underline;
    color: #003333 !important;
}

.icon-rs {
    width: 28.3px;
}


.pd-l-0 {
    padding-left: 0px !important;
}

.pd-r-0 {
    padding-right: 0px !important;
}

td.estadistica-inspeccion:first-child {
    width: 15%;
}

.select-custom-pd-l-0 {
    padding-left: 0px;
}

.content-login-responsive {
    max-width: 555px;
    display: flex;
    align-items: center;
    margin: auto;
}

.input-text-form {
    background-color: transparent !important;
    border: none !important;
    background: transparent !important;
    border-bottom: 1px solid !important;
    border-radius: 0px !important;
    border-color: #007473 !important;
    outline: none;
    padding: 10px 0px;
    padding-top: 10px;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
}

.chk-form-checkbox > input:checked ~ span:after {
    border-color: #007473 !important;
}

.modal-header-custom {
    display: -ms-flexbox;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 1rem;
}

.movil-menu {
    display: none;
    width: 30px;
    float: left;
    padding: 5px 0;
    font-size: 2rem;
}

#slide_menu {
    display: none;
    padding: 0px;
    background-color: #002F2A;
    margin: 60px 0;
}

    #slide_menu li {
        text-decoration: none;
        list-style: none;
    }

        #slide_menu li:hover {
            background-color: #2E2E2E;
            box-shadow: inset 0px 0px 50px 0px #848484;
            -webkit-transition: all 300ms linear;
            -ms-transition: all 300ms linear;
            transition: all 300ms linear;
        }

        #slide_menu li a {
            display: block;
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            line-height: 40px;
            font-weight: 500;
        }

        #slide_menu li:hover a {
            padding-left: 25px;
            color: white;
            -webkit-transition: all 200ms linear;
            -ms-transition: all 200ms linear;
            transition: all 200ms linear;
        }

.border-bottom-dashed {
    border-bottom: 2px dashed #007473 !important;
}

.numerostotales > strong {
    color: #007473;
    font-size: 14px
}

.inner-addon {
    position: relative;
}

    .inner-addon .glyphicon {
        position: absolute;
        padding: 10px;
        pointer-events: none;
    }

.left-addon .glyphicon {
    left: 0px;
}

.right-addon .glyphicon {
    right: 0px;
}

.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

.Chatbotbotondefault {
    position: fixed;
    margin: 0 0 0 197px;
    border-radius: 24px;
    box-shadow: 0 4px 6px 0 rgba(130, 136, 148, 0.16), 0 0 2px 0 rgba(130, 136, 148, 0.16);
    background-color: #043a39;
    color: #fff;
    right: 40px;
    bottom: 10%;
    font-weight: Bold;
    font-size: 15px;
    cursor: pointer;
}

#modalchatlayout {
    position: fixed;
    right: 40px;
    bottom: 10%;
    min-width: 370px;
    max-width: 370px;
    display: none;
}

    #modalchatlayout > .headerchatlayout {
        padding: 10px;
        color: #fff;
        background-color: #043a39;
        border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -webkit-border-radius: 4px 4px 0 0;
        box-shadow: 0 4px 6px 0 rgba(130, 136, 148, 0.16), 0 0 2px 0 rgba(130, 136, 148, 0.16);
    }

        #modalchatlayout > .headerchatlayout > h4 {
            font-size: 15px;
            margin: 0 !important;
            font-weight: bold;
            padding: 3px;
        }

    #modalchatlayout > .bodychatlayout {
        padding: 20px 10px;
        box-shadow: 0 4px 6px 0 rgba(130, 136, 148, 0.16), 0 0 2px 0 rgba(130, 136, 148, 0.16);
        border-radius: 0 0 4px 4px;
        -moz-border-radius: 0 0 4px 4px;
        -webkit-border-radius: 0 0 4px 4px;
        background-color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

        #modalchatlayout > .bodychatlayout > .comentario {
            background: #F6F6F6;
            padding: 10px 15px;
            border-radius: 4px 4px 4px 4px;
            -moz-border-radius: 4px 4px 4px 4px;
            -webkit-border-radius: 4px 4px 4px 4px;
            margin-bottom: 10px;
        }

            #modalchatlayout > .bodychatlayout > .comentario > .opcionescomentario {
                background: #fff;
                padding: 5px 5px;
                border-radius: 4px 4px 4px 4px;
                border: 1px solid #007473;
                margin-bottom: 10px;
                cursor: pointer;
            }


.div-content-filtros-avanzados {
    border: none;
    background-color: transparent;
}

.table-notificacion {
    width: 100%;
}

    .table-notificacion td {
        border-top: none !important;
        background-color: #ffffff;
    }

.border-body {
    border: 1px solid rgba(0,0,0,.01);
    box-shadow: 1px 4px 7px 0px rgb(0 0 0 / 75%);
    -webkit-box-shadow: 1px 4px 7px 0px rgb(0 0 0 / 13%);
}

.verfiltros {
    background: #043a39;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn.btn-icon {
    height: 3rem;
    width: 3rem;
}

.btn.btn-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}

.identaropcion {
    margin-left: 20px;
}

.custom-card-destacado {
    min-width: 477.45px !important;
    min-height: 303.91px !important;
}

.custom-card-destacado-m {
    min-width: 375.11px !important;
    min-height: 252.34px !important;
}

.custom-card-destacado-s {
    max-width: 346.95px !important;
    max-height: 238.26px !important;
}

.logo-catalogo-lg {
    max-width: 410px !important;
    background-size: cover;
}

.logo-catalogo-ssm {
    max-width: 200px !important;
    background-size: cover;
}

.logo-catalogo-sm {
    max-width: 250px !important;
    background-size: cover;
}

/* Estilos para las secciones */
.secciones-container {
    width: 100%;
}

.seccion {
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.seccion-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
}

.toggle-icon {
    font-size: 20px;
}

.seccion-content {
    display: none;
    padding: 10px;
}

.styled-input {
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 5px;
    width: 100%; /* Ajusta el ancho según tus necesidades */
    /* Otros estilos personalizados según tu preferencia */
}

/*estilos mios*/

#tabs {
    background-color: #f4f4f4;
    padding: 20px;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab {
    background-color: #007473;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .tab:hover {
        background-color: #2980b9;
    }

.tab-content {
    display: none;
    margin-top: 10px;
}

.subseccion {
    background-color: #62A774;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .subseccion:hover {
        background-color: #c0392b;
    }

.subseccion-content {
    display: none;
    margin-top: 10px;
}

.pregunta {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
}

.respuesta {
    margin-top: 10px;
}

.file-list {
    margin: 5px 0;
    padding: 5px;
    border: 1px solid #ccc;
    background-color: #f4f4f4;
    border-radius: 5px;
}

    .file-list a {
        text-decoration: none;
        color: #333;
    }



.tabla-container {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 10px;
}

.tabla-titulo {
    font-weight: bold;
}

.pregunta {
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 10px;
}

.respuesta {
    margin: 10px 0;
}

.styled-paragraph {
    max-width: 100%;
    word-wrap: break-word;
    white-space: pre-line;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    min-height: 50px; /* Altura mínima */
    background-color: #f0f0f0; /* Color de fondo */
    font-size: 16px; /* Tamaño de fuente */
    line-height: 1.5; /* Espaciado entre líneas */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
    color: #333; /* Color de texto */
}

#miTabla {
    border-collapse: collapse;
    width: 100%;
}

    #miTabla th, #miTabla td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

        #miTabla th.grisObscuro, #miTabla td.grisObscuro {
            background-color: #666; /* Color gris más oscuro para celdas específicas */
            color: white;
            font-weight: normal !important;
        }

        #miTabla th.grisBajito, #miTabla td.grisBajito {
            background-color: #f2f2f2; /* Color gris claro para celdas específicas */
            color: black;
            font-weight: normal !important;
        }

.scrollable-list {
    max-height: 500px; /* Ajusta la altura máxima según tus necesidades */
    overflow-y: auto;
}

.normal {
    color: inherit; /* Utiliza el color de texto por defecto */
    text-decoration: none; /* Sin subrayado */
    cursor: default; /* Cambia el cursor por defecto */
}

    /* Estilo cuando se pasa el cursor */
    .normal:hover {
        text-decoration: underline; /* Subrayado cuando se pasa el cursor */
        cursor: pointer; /* Cambia el cursor al de un enlace */
    }

.styled-paragraph, .styled-paragraph-ingles {
    text-align: justify;
}

nav a {
    text-decoration: none;
    color: white;
}

    nav a:hover {
        text-decoration: underline;
        color: #d4c19c;
    }

nav li {
    display: inline-block;
    height: auto;
    padding: 5px 10px;
    text-align: center;
    position: relative;
}

    nav li:hover {
        text-decoration: underline;
        color: #d4c19c;
    }

    nav li > ul {
        display: none;
    }

.show-sub-menu {
    position: absolute;
    top: 30px;
    left: 0px;
    background-color: white;
}

ul.show-sub-menu {
    padding: 5px;
    width: 250px;
    text-align: left;
}

    ul.show-sub-menu li {
        text-align: left;
    }

a.show-sub-menu::after {
    content: " \25BC";
    font-size: 11px;
}

.custom-inputinit {
    background-color: #FFFCC8;
}

.font-14-px {
    font-size: 14px !important;
}




/* Botón "Compartir" */
.share-btn {
    position: absolute;
    bottom: 15px;
    right: 180px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 52px;
    font-size: 18px;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

    .share-btn:hover {
        background: rgba(255, 255, 255, 0.25);
    }

.share-icon {
    font-size: 20px;
}


.container-lg-tab {
    display: flex;
    flex-direction: column;
    width: 99.6%;
}


/* Móviles - Tabs apilados */
/* Móviles - Tabs apilados (ancho completo) */
@media (max-width: 576px) {
    .tabs-detail-container {
        border-bottom: none;
        padding-left: 0;
        padding-right: 0;
    }

    .tabs-detail {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .tab-detail {
        border-radius: 0;
        border: 1px solid #9e9e9e;
        border-bottom: none;
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        margin-bottom: 0;
    }

        .tab-detail:first-child {
            border-radius: 12px 12px 0 0;
        }

        .tab-detail:last-child {    
            border-radius: 0 0 12px 12px;
            border-bottom: 1px solid #9e9e9e;
        }

        .tab-detail.active {
            background: #f9f9f9;
            border-left: 4px solid #007473;
            font-weight: bold;
        }
}


.titulo-busqueda {
    width: 1278px;
    height: 21px;
    font-family: "Tu Fuente Principal", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px; /* Importante: igual a height para centrado vertical */
    color: #161A1D;
    box-sizing: border-box; /* Para que padding no afecte las dimensiones */
}




