
/*!
 * Nombre del Archivo: default.css
 * Versión: 1.0.0
 * Fecha: 2024-12-09
 * Autor: SILIZE POS
 */


/*#region HTML */

@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/Segoe UI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/Segoe UI Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/Segoe UI Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/Segoe UI Bold Italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

h1 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
}

p.italic {
    font-family: 'Segoe UI', sans-serif;
    font-style: italic;
}


html {
    font-size: 14px;
}

/*@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}*/

html {
    position: relative;
    min-height: 100%;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

form {
    margin: 0;
    padding: 0;
    background: none;
}


/*#endregion */

/*#region ANIMATION */


.animate_container {
    /* display: inline-block;*/
    overflow: hidden;
}

    .animate_container .animate__animated {
        animation-delay: calc(0.15s * (var(--child-index) - 1)); /* Retrasa cada animación en 1 segundo */
        animation-duration: 1.2s !important; /* Cada animación dura 5 segundos */
    }


/*#endregion */

/*#region CARD */

/* Base styles for a fcard container */

.fcard {
    background-color: #ffffff;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-duration) var(--transition-ease);
    margin: var(--spacing-small) var(--spacing-small) var(--spacing-medium);
    border: var(--border-light);
    padding: var(--spacing-medium);
    box-sizing: border-box;
    max-width: 100%; /* Asegura que la tarjeta no exceda el ancho del contenedor padre */
    display: flex;
    flex-direction: column;
}





    .fcard.fcard-none {
        background-color: transparent !important;
        border-radius: unset !important;
        box-shadow: unset !important;
        border: none !important;
    }

    .fcard.fcard-wb {
        background: var(--background-points);
        background-repeat: no-repeat;
        background-size: cover;
    }




    .fcard .fcard--inline-0 {
        margin-inline: calc(-1*var(--spacing-large));
    }



    /* Section inside a fcard */
    .fcard .fcard-section {
        border-bottom: var(--border-light);
        margin-bottom: var(--spacing-small);
        margin-top: var(--spacing-large);
    }



    /* Header section of a fcard */
    .fcard .fcard--header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: calc(-1 * var(--spacing-medium));
        margin-left: calc(-1 * var(--spacing-medium));
        margin-right: calc(-1 * var(--spacing-medium));
        margin-bottom: var(--spacing-medium);
        border-top-left-radius: var(--border-radius-medium);
        border-top-right-radius: var(--border-radius-medium);
        padding: var(--spacing-small);
    }

        /* Text inside the fcard header */
        .fcard .fcard--header p {
            font-size: var(--font-size-s5);
            font-weight: var(--font-weight-bold);
            opacity: 0.9;
            color: var(--secondary-color-dark);
            margin: 0rem 0rem 0rem 1rem !important;
            padding-right: var(--spacing-medium);
        }

        /* Image inside the fcard header */
        .fcard .fcard--header img {
            margin: 0rem 0.5rem 0rem 0rem !important;
            height: 3.5rem;
            width: 3.5rem;
        }


    .fcard .fcard--body {
        flex-grow: 1;
        max-width: 100%; /* Asegura que la tarjeta no exceda el ancho del contenedor padre */
    }

    .fcard .fcard--footer {
        border-top: var(--border-light);
        margin-top: var(--spacing-large);
        margin-bottom: calc(-0.5*var(--spacing-small));
        padding: var(--spacing-small);
        padding-bottom: 0rem;
    }


    .fcard.fcard--mh30 {
        min-height: 30vh !important;
    }

    .fcard.fcard--mh50 {
        min-height: 50vh !important;
    }

    .fcard.fcard--mh70 {
        min-height: 70vh !important;
    }


    .fcard.fcard--mw30 {
        max-width: 30rem !important;
    }

    .fcard.fcard--mw50 {
        max-width: 50rem !important;
    }

    .fcard.fcard--mw70 {
        max-width: 70rem !important;
    }

    .fcard.fcard--mw80 {
        max-width: 80rem !important;
    }



    /* Colored variant of the fcard header */
    .fcard .fcard--header.fcard--header-colored {
        background: var(--background-iso2);
        background-size: cover;
        background-position: center;
        border-bottom: var(--border);
    }

        /* Text styles for the colored fcard header */
        .fcard .fcard--header.fcard--header-colored p {
            color: var(--primary-color);
            opacity: 1;
        }

        /* Image styles for the colored fcard header (currently redundant, no styles defined) */
        .fcard .fcard--header.fcard--header-colored img {
            /* Additional styles can be added here if needed */
        }







/* Main container for the filtered fcard header */
.fcard--header-filter {
    margin-top: calc(-1 * var(--spacing-medium)) !important;
    margin-left: calc(-1 * var(--spacing-medium)) !important;
    margin-right: calc(-1 * var(--spacing-medium)) !important;
    margin-bottom: var(--spacing-medium) !important;
    border-top-left-radius: var(--border-radius-medium) !important;
    border-top-right-radius: var(--border-radius-medium) !important;
    background-color: var(--disabled-color);
}

    /* Header section inside the filtered fcard header */
    .fcard--header-filter .f-header {
        padding: var(--spacing-small);
        background: var(--background-iso1);
        border-top-left-radius: var(--border-radius-medium) !important;
        border-top-right-radius: var(--border-radius-medium) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: var(--border);
        flex-grow: 1;
    }


        /* Images inside the header section */
        .fcard--header-filter .f-header div img {
            height: 1.3rem !important;
            opacity: 1 !important;
        }

        /* Text inside the header section */
        .fcard--header-filter .f-header p {
            flex-grow: 1;
            display: flex;
            align-items: center;
            font-size: var(--font-size-s5);
            font-weight: var(--font-weight-bold);
            opacity: 0.9 !important;
            color: var(--primary-color);
            margin: 0rem 0rem 0rem 0.5rem !important;
        }

    /* Body section of the filtered fcard */
    .fcard--header-filter .f-body {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        padding: 1rem;
        border-bottom: var(--border);
    }

    .fcard--header-filter .f-body-shadow {
        box-shadow: var(--box-shadow-bottom);
        height: 2rem;
        margin-top: -2rem;
    }

    /* Footer section inside the body */
    .fcard--header-filter .f-body .f-footer {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

/* Responsive styles for smaller screens (max-width: 768px) */
@media (max-width: 768px) {
    .fcard--header-filter .f-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-bottom: var(--border);
    }
}








/*#endregion */

/*#region BUTTON */
/* Base Styles for Buttons */
.button {
    /*padding: var(--spacing-small) var(--spacing-medium);*/
    /*  border-radius: var(--border-radius-small);*/
    border-radius: 50vh;
    padding: var(--spacing-medium) var(--spacing-large);
    text-align: center;
    text-decoration: none;
    font-size: var(--font-size-s1);
    border: none;
    line-height: 1.15;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-medium);
    box-shadow: var(--box-shadow-medium);
    transition: background-color var(--transition-duration) var(--transition-ease), box-shadow var(--transition-duration) var(--transition-ease);
}

    /* Small button variant */
    .button.button-sm {
        padding: 0.4rem 0.5rem;
        margin: 0rem;
        border-radius: var(--border-radius-small);
    }

    /* Disabled button styles */
    .button.disabled {
        background-color: var(--disabled-color) !important;
        box-shadow: none !important;
        color: var(--disabled-color-contrast) !important;
        cursor: default;
    }

    /* Button with no shadow */
    .button.button-nshadow {
        box-shadow: none !important;
    }

    /* Hover effect for buttons */
    .button:hover {
        box-shadow: var(--box-shadow-light);
    }

    /* Prevent shadow on hover for NoShadow variant */
    .button.button-nshadow:hover {
        box-shadow: none !important;
    }



    /* Image inside a button */
    .button img {
        max-height: 1.5rem;
        max-width: 1.5rem;
        width: 1.5rem;
        height: auto;
    }

    /* Image size for small buttons */
    .button.button-sm img {
        max-height: 1.2rem;
        max-width: 1.2rem;
        width: 1.2rem;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }







/* Menu button styles */
.button-menu {
    /* Specialized style for menu buttons */
    height: 6rem;
    width: 8rem;
    padding: var(--spacing-small);
    border-radius: var(--border-radius-medium);
    text-align: center;
    text-decoration: none;
    font-size: var(--font-size-s1);
    border: none;
    line-height: 1.15;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-small);
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    transition: background-color var(--transition-duration) var(--transition-ease), box-shadow var(--transition-duration) var(--transition-ease);
}

    /* Disabled menu button styles */
    .button-menu.disabled {
        background-color: var(--disabled-color) !important;
        box-shadow: none !important;
        color: var(--disabled-color-contrast) !important;
        cursor: default;
    }

    /* Image inside menu buttons */
    .button-menu img {
        height: 2.2rem;
        width: 2.2rem;
    }

    /* Text container inside menu buttons */
    .button-menu div {
        flex-grow: 1;
        overflow: hidden !important;
        word-wrap: anywhere;
        display: flex;
        align-items: center;
        justify-content: center;
    }





/* Success button styles */
.button-success {
    background-color: var(--success-color) !important;
    color: var(--success-color-contrast) !important;
}

/* Danger button styles */
.button-danger {
    background-color: var(--danger-color) !important;
    color: var(--danger-color-contrast) !important;
}

/* Primary button styles */
.button-primary {
    background-color: var(--primary-color-dark) !important;
    color: var(--primary-color-contrast) !important;
}

/* Secondary button styles */
.button-secondary {
    background-color: var(--secondary-color) !important;
    color: var(--secondary-color-contrast) !important;
}

/* Hover effect for success buttons */
.button-success:hover {
    background-color: var(--success-color-dark);
}

/* Hover effect for danger buttons */
.button-danger:hover {
    background-color: var(--danger-color-dark);
}

/* Hover effect for primary buttons */
.button-primary:hover {
    background-color: var(--primary-color-dark);
}

/* Hover effect for secondary buttons */
.button-secondary:hover {
    background-color: var(--secondary-color-dark);
}



.f-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: end;
    padding: 1rem;
}

/*#endregion */

/*#region SCROLLBAR */


/* Estilos para WebKit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
}


::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.30);
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.60);
    }

/* Estilos para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.30) rgba(0, 0, 0, 0.15);
}

/*#endregion */

/*#region PERSONALIZACION BOOTSTRAP */

/* Navbar Toggler */
.navbar-toggler,
.navbar-toggler .navbar-toggler:hover {
    border: none !important;
}

    .navbar-toggler:focus {
        box-shadow: none !important;
        border-color: transparent;
        outline: 0 !important;
    }

/* Dropdown Menu Items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
}

.dropdown-menu .dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--primary-color-contrast);
}

/* Accordion Buttons */
.accordion-button:focus {
    border: 0px solid var(--primary-color) !important;
    box-shadow: none !important;
}

/* Estilos para el botón del acordeón cuando está expandido */
.accordion-button:not(.collapsed) {
    color: var(--primary-color-contrast);
    background-color: var(--primary-color);
}

/* Text Background Info */
.text-bg-info {
    background-color: var(--secondary-color) !important;
    color: var(--secondary-color-contrast) !important;
}

/* Rows */
.row {
    margin: 0;
}
    /* Añadir margen superior a los hijos directos de las filas */
    .row > * {
        margin-top: var(--spacing-small);
    }

/* Paginación */
/* Estilos para el ítem activo de la paginación */
.page-item.active {
    background-color: var(--secondary-color);
}

/* Estilos para el enlace activo de la paginación */
.active > .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Estilos por defecto para los enlaces de la paginación */
.page-link {
    color: var(--primary-color);
}

    /* Hover en enlaces de paginación */
    .page-link:hover {
        color: var(--secondary-color-contrast);
        background-color: var(--secondary-color-dark);
    }

/* Texto Muted Small */
/* Ajustar opacidad para texto con .text-muted-sm */
.text-muted-sm {
    opacity: 0.8;
}

/* Labels */
/* Estilos por defecto para etiquetas */
label {
    font-size: var(--font-size-s1);
    font-weight: 400;
    opacity: 0.8;
}

.form-label {
    margin-bottom: 0.1rem !important;
    margin-left: 0.3rem !important;
}

/* Labels Muted */
/* Disminuir opacidad para etiquetas con clase 'muted' */
label.muted {
    opacity: 0.75;
}

/* Select de Formularios */
/* Personalizar estilos de foco para select */
.form-select:focus {
    border: 1px solid var(--primary-color) !important;
    box-shadow: none !important;
}

select.form-select {
    appearance: none !important; /* Elimina el estilo nativo, opcional */
    max-height: 100px !important; /* Ajusta la altura */
    overflow-y: auto !important; /* Permite el desplazamiento si el navegador lo soporta */
}


/* Campos de Entrada */
/* Personalizar estilos de foco para varios tipos de input */
input[type="date"]:focus,
input[type="color"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
    border: 1px solid var(--primary-color) !important;
    box-shadow: none !important;
}


.input-group-text {
    background-color: var(--secondary-color-light);
    opacity: 0.80;
    color: var(--text-color);
    font-size: 0.85rem;
    padding: 0.1rem 0.5rem;
}
/* Input Color */
/* Ajustar estilos para inputs de tipo color */
input[type='color'] {
    -webkit-appearance: none !important;
    margin-top: 0 !important;
    height: calc(1.0em + .75rem + 2px) !important;
    padding: .375rem .75rem !important;
}

/* Textarea */
/* Personalizar estilos de foco para textarea */
textarea[type="text"]:focus {
    border: 1px solid var(--primary-color) !important;
    box-shadow: none !important;
}

/* Checkbox Inputs */
/* Cambiar cursor a puntero para inputs de tipo checkbox */
.form-check-input,
input[type="checkbox"] {
    cursor: pointer !important;
}

    /* Personalizar estilos de foco para inputs de tipo checkbox */
    input[type="checkbox"]:focus,
    .form-check-input:focus {
        border: 1px solid var(--primary-color) !important;
        box-shadow: none !important;
    }

    /* Personalizar estilos para checkbox marcados */
    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }


.form-floating {
    overflow: hidden;
}

    .form-floating label {
        padding: 1rem 0.5rem !important;
        background-color: transparent;
    }
/*#endregion */

/*#region TABLA REORDENABLE */
.reorderableTable .sortableRow .columnOrder {
    cursor: ns-resize !important;
}

.dragging {
    border-bottom: 0.10rem solid var(--primary-color);
    border-top: 0.10rem solid var(--primary-color);
}

    .dragging td {
        opacity: 0.25 !important;
        background-color: var(--primary-color);
    }


.table-maxh-20 {
    max-height: 20vh !important;
}

.table-maxh-30 {
    max-height: 30vh !important;
}

.table-maxh-50 {
    max-height: 50vh !important;
}

.table-maxh-70 {
    max-height: 70vh !important;
}

.table-maxh-90 {
    max-height: 90vh !important;
}

.table-maxh-100 {
    max-height: 100vh !important;
}

/*#endregion */

/*#region BUTTON AVATAR */
.uavatar-button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0;
}

.button-none::after {
    color: #000; /* Cambiar el color de la flecha */
}

.uavatar {
    background-color: var(--background-color);
    border-radius: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    height: 2.7rem;
    width: 2.7rem;
    font-size: 1.1rem;
    box-shadow: var(--box-shadow-light);
}

/*#endregion */

/*#region LANGUAGE SELECTOR */

.button-lang {
    border-radius: var(--border-radius-small);
    text-align: center;
    text-decoration: none;
    font-size: var(--font-size-s1);
    border: var(--border-light) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    background-color: rgba(236, 236, 241,0);
}

    .button-lang img {
        height: 1.8rem;
        width: 3rem;
        margin: 0px;
        padding: 0px;
    }

.language-selector {
    min-width: 4rem !important;
}

    .language-selector li a img {
        height: auto;
        width: 2.5rem;
        margin: 0px;
        padding: 0px;
    }
/*#endregion */

/*#region BREADCRUMBS */

.breadcrumbs {
    background-color: var(--secondary-color-light);
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

    .breadcrumbs .breadcrumbs-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

        .breadcrumbs .breadcrumbs-content .breadcrumbs-title {
            font-size: var(--font-size-s5);
            font-weight: var(--font-weight-bold);
            letter-spacing: 0.9px;
            opacity: 0.9;
            font-family: Calibri;
            color: var(--primary-color);
            margin: 0rem 0rem 0rem 1rem !important;
        }

        .breadcrumbs .breadcrumbs-content .breadcrumbs-body {
            font-size: var(--font-size-s1);
            margin: 0rem 0rem 0rem 2rem !important;
            display: flex;
            align-items: center;
            vertical-align: middle;
            gap: 0.2rem;
        }

            .breadcrumbs .breadcrumbs-content .breadcrumbs-body .bc-home-icon {
                width: 1.2rem;
                height: 1.2rem;
                margin-inline: 0.2rem;
                margin-top: -0.2rem;
                vertical-align: middle;
                display: inline-block;
            }

            .breadcrumbs .breadcrumbs-content .breadcrumbs-body .bc-separator {
                color: var(--secondary-color-dark);
            }

            .breadcrumbs .breadcrumbs-content .breadcrumbs-body .bc-item {
                padding: 0;
                margin: 0;
                vertical-align: middle;
                color: var(--background-color);
                opacity: 0.4;
            }

                .breadcrumbs .breadcrumbs-content .breadcrumbs-body .bc-item.bc-active {
                    color: var(--secondary-color-dark);
                    opacity: 1;
                }

    .breadcrumbs .breadcrumbs-icon {
        max-height: 5rem;
        max-width: 4rem;
    }


/*#endregion */

/*#region MENU */

.menu-content {
    flex-grow: 1;
    padding: 1rem 1rem;
    margin: 1rem;
    border-top: var(--border-light);
    max-height: calc(100vh - 12rem);   
}

    .menu-content ul {
        list-style-type: none;
        padding-left: 1rem;
    }


.menu-item a {
    display: flex;
    flex-direction:row;
    align-items: center;
    height: 50px;
    padding: 0 1.2rem 0 0;
}

    .menu-item a .menu-prefix {
        text-align: center;
        display: inline-block;   
        margin-right: 0.5rem;
        color: var(--secondary-color-light);
        font-size:0.7rem;
    }
    .menu-item a .menu-prefix img {
       max-height:2rem;
    }
        .menu-item a .menu-prefix img.menu-dot {
            max-height: 0.5rem;
        }

    .menu-item a .menu-title {
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;   
        font-weight: var(--font-weight-bold);
        color: var(--disabled-color);
    }

    .menu-item a .menu-suffix {
        margin-left: 1rem;
    }

    .menu-item a .menu-suffix img {
        max-height: 1rem;    
        transform-origin: center center; /* Centra horizontal y verticalmente */
        transition: transform 0.3s ease; /* Asegura transición para ambos estados */
    }

.menu-suffix img.rotated {
    transform: rotate(180deg);
}




/*#endregion */

/*#region NAVBAR */


/* Estilo principal de la barra de navegación */
.c-navbar {
    border-bottom: var(--border) !important;
    box-shadow: var(--box-shadow-bottom);
    position: fixed;
    width: 100%;
    z-index: 1000 !important;
    height: 4.2rem !important;
    margin-top: 0;
    background: var(--background-iso1);
    background-size: cover;
    background-position: center;
    padding-inline: 1rem;
    display: flex;
    justify-content: space-between;
}

/* Contenedor del cuerpo del navbar */
.c-navbar-body {
    display: flex;
}

/* Estilo del logo o marca dentro del navbar */
.c-navbar .c-navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .c-navbar .c-navbar-brand img {
        height: 2.5rem;
    }


/* Contenedor de contenido del nav*/
.c-navbar .c-navbar-content {
    display: none;
    flex-grow: 1;
    justify-content: end;
    align-items: center;
    gap: 1rem;
    padding-inline: 1rem;
}


/* Botón toggler (oculto por defecto) */
.c-navbar .c-navbar-toggler {
    display: none;
    padding: 0.25rem 0.75rem;
    background-color: transparent;
    border: 1px solid transparent;
}

    .c-navbar .c-navbar-toggler .c-navbar-toggler-icon {
        display: inline-block;
        width: 2.2rem;
        height: 2.2rem;
        vertical-align: middle;
    }


/* Muestra los accesos directos si es superior a */
@media (min-width: 768px) {
    .c-navbar .c-navbar-content {
        display: flex;
    }
}

/* Muestra el botón toggler en pantallas inferiores a */
@media (max-width: 1366px) {
    .c-navbar .c-navbar-toggler {
        display: inline-block;
    }
}

/*#endregion */

/*#region FOOTER */
.footer-main {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4.2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: var(--border);
    background: var(--background-color)
}

.footer-element {
    padding-inline: 1rem;
    display: flex;
    gap: 1rem;
    color: var(--border-color) !important;
}

    .footer-element a {
        color: var(--border-color) !important;
    }

    .footer-element p {
        margin: 0;
    }




@media (max-width: 768px) {
    .can-hide {
        display: none !important;
    }
}
/*#endregion */

/*#region LAYOUT */

.container--rectified {
    padding-top: 4.2rem; /* Define la altura del header */
    padding-bottom: 4.2rem; /* Define la altura del footer */
}

    .container--rectified main {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }


    .container--rectified.ctn--extended {
        display: flex;
        flex-direction: row; /* Asegura que los hijos estén en fila */
        
    }

        .container--rectified.ctn--extended .sidebar {
            background: var(--background-iso2dark);
            width: 20rem !important; 
            min-height: calc(100vh - 8.4rem);          
            position: relative; 
            overflow: hidden; 
            overflow-y: auto;      
        }

        .container--rectified.ctn--extended .ctn--extended--body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }


/* Muestra el botón toggler en pantallas inferiores a */
@media (max-width: 1366px) {
    .container--rectified.ctn--extended .sidebar {
        display: none;
    }
}








/*#endregion */

/*#region CANVAS */
.canvas {
    background: var(--background-iso2dark);
}

    .canvas .offcanvas-header {
        border-bottom: var(--border-light);
        background: var(--background-iso1);
        background-size: cover;
        background-position: center;
        box-shadow: var(--box-shadow-bottom);
    }

        .canvas .offcanvas-header img {
            max-height: 3rem;
        }

.canvas-footer {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.canvas-nodata {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 75vh;
}

    .canvas-nodata p {
        color: var(--secondary-color-contrast);
        text-align: center;
    }

    .canvas-nodata img {
        height: 26rem;
        opacity: 0.6;
    }


/*#endregion */

/*#region UTILITIES */

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.flex-row-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}


/*#endregion */

/*#region BODY */
body {
    background-color: var(--background-color-white);
}

.iso-body {
    background: var(--background-iso1);
}

.bubble-body {
    background: var(--background-bubble);
}



/*#endregion */

/*#region PANTALLA ERROR */


.div-err {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 3rem;
}

.fcard.fcard-error {
    max-width: 50rem;
}

    .fcard.fcard-error .e-body {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: center;
        justify-items: center;
    }

    .fcard.fcard-error .e-footer {
        display: flex;
        justify-content: center;
    }

@media (max-width: 768px) {
    .fcard.fcard-error .e-body {
        grid-template-columns: 1fr;
    }
}


/*#endregion */

/*#region ESTADO LICENCIA */


.license-status {
    gap: 0rem;
    align-items: center;
}

    .license-status img {
        height: 1.5rem;
        margin-inline: 0.5rem;
    }

    .license-status p {
        margin-top: 1rem;
        margin-left: 3rem;
        margin-bottom: 0rem;
        opacity: 0.6;
    }


/*#endregion */

























































