﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 0px;
    padding-right: 0px;
}

.body-contentGrid {
    padding-left: 50px;
    padding-right: 50px;
}

.body-contentGridChico {
    padding-left: 450px;
    padding-right: 450px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 600px;
}



/*Inicio header*/
.header {
  
    background-color: #F7F3C2;
    color: darkgreen !important;
    position: relative; /* Agregado para permitir el posicionamiento absoluto de los elementos hijos */
}

.row1 {
    height: 25px;
    padding: 2px; /* Añade un pequeño espacio interno */
    font-size: 12px;
    font-family: LuxoraGrotesk-Regular, Arial, sans-serif;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
}

    .row1 a {
        color: #002C1C;
        text-decoration: none;
        margin-left: 15px;
    }

    .row1 span {
        color: #002C1C; /* Color del texto diferente si es necesario */
        margin-right: 20px;
    }

    .row1 a:hover {
        color: red; /* Cambia el color al pasar el ratón por encima */
        cursor: pointer;
    }

.large-screen-links {
    display: flex; /* Utiliza flexbox para alinear elementos en fila */
}

.small-screen-links {
    display: none; /* Oculta los enlaces en pantallas grandes */
}

.boton-cerrar {
    background-color: darkgreen; /* Color de fondo */
    color: white; /* Color del texto */
    border: none; /* Eliminar borde */
    padding: 8px 20px; /* Espaciado interno */
    text-align: center; /* Alinear texto al centro */
    text-decoration: none; /* Eliminar subrayado */
    display: inline-block; /* Mostrar como elemento en línea */
    font-size: 16px; /* Tamaño de fuente */
    border-radius: 5px; /* Bordes redondeados */
    cursor: pointer; /* Cambiar cursor al pasar el mouse */
}

    .boton-cerrar:hover {
        background-color: darkcyan; /* Color de fondo al pasar el mouse */
    }

.row2 {
    background-image: url('../images/banner_portal.jpg');
    background-size: auto 100%; /* La imagen se ajustará verticalmente y mantendrá su altura original */
    background-position: right top; /* La imagen se ajustará a la derecha y mantendrá la esquina superior */
    background-repeat: no-repeat;
    padding: 50px; /* Aumentamos el padding para aumentar la altura */
    background-color: #0C3022;
    font-size: 16px;
    font-family: LuxoraGrotesk-Light, Arial, sans-serif;
}

    .row2 a {
        color: white !important;
        text-decoration: none;
    }

        .row2 a:hover,
        .row2 a:active, /* Agrega este estilo para el estado activo (clic) */
        .row2 a:focus { /* Agrega este estilo para el estado enfocado (por ejemplo, al navegar con el teclado) */
            color: #F7F3C2 !important;
            text-decoration: underline !important; /* Puedes subrayar el texto para indicar que ha sido clicado o está enfocado */
        }


 

.logo {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 70px;
    height: 70px;
}

.content {
    padding: 20px; /* Añade espacio interno al contenido específico de la página */
}

label {
    font-size: 13.5px !important;
    color: #002C1C !important;
    font-family: LuxoraGrotesk-Light !important;
    text-align:right;
}

.Ellabel {
    font-size: 13px !important;
    color: #002C1C !important;
    font-family: LuxoraGrotesk-Regular !important;
    text-align: center;
}

.EllabelTracking {
    font-size: 18px !important;
    color: green !important;
    font-family: LuxoraGrotesk-Light !important;
    text-align: center;
}

.EllabelMedium {
    font-size: 14px !important;
    color: #002C1C !important;
    font-family: LuxoraGrotesk-Bold !important;
    text-align: center;
}

.headerChild {
    background-color: #F7F3C2;
    color: #002C1C !important;
}

.rowChild {
    height: 75px;
    padding: 15px; /* Añade un pequeño espacio interno */
    font-size: 15px;
    font-family: LuxoraGrotesk-Regular, Arial, sans-serif;
    display: flex;
    justify-content: flex-start;
    background-color: #FCFCF6 !important;
}



/*FIN header*/
/* Estilo para el panel */
#pnlPopup {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #888;
    padding: 10px;
    z-index: 1;
}

/*Inicio para los grids de bootstrap*/
.IconHeaderColor {
    color: #002C1C !important;
}

.IconCommandColor {
    color: #002C1C !important;
}

.EditForma {
    font-family: LuxoraGrotesk-Light, Arial, sans-serif;
    color: #002C1C !important;
    font-size: 13px !important;

}



.HeaderColor {
    background-color: #FCFCF6 !important;
    font-size: 13px !important;
    align-content:center;
}

    .HeaderColor a {
        color: #002C1C !important;
        text-decoration: none;
        font-family: LuxoraGrotesk-Light, Arial, sans-serif;
    }

        .HeaderColor a:hover,
        .HeaderColor a:active, /* Agrega este estilo para el estado activo (clic) */
        .HeaderColor a:focus { /* Agrega este estilo para el estado enfocado (por ejemplo, al navegar con el teclado) */
            color: #262626 !important;
            text-decoration: underline !important; /* Puedes subrayar el texto para indicar que ha sido clicado o está enfocado */
        }
/*fin para los grids de bootstrap*/

/*Inicio footer*/

.footerUp {
    padding-bottom: 0px;
    background: #0B2921;
}

.footerDown {
    background: #0B2921;
}

    .footerDown p {
        margin: 6px 0px;
    }

.divider {
    border-top: 1px solid #F7F3C2; /* Color y grosor de la línea */
    margin: 0px 0; /* Ajusta el margen según sea necesario */
}
.footer-td {
    background-color: #0B2921;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.banner-td {
    width: 50%; /* El td ocupará el 50% del ancho de la pantalla */
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    background-image: url('../images/banner-login.jpg');
   
     background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0B2921;
}
.content-td {
    /* Estilo para el contenido */
   
    width: 50vh;
    padding: 0;
    margin: 0;
    vertical-align: top;
    background-color: #F7F3C2;
}

footer {
    flex: none;
    color: white;
}

    footer a {
        color: #cecaca;
    }

        footer a:hover,
        footer a:focus {
            color: #fff;
        }

    footer h4 {
        margin-top: 32px;
    }

/*fin footer*/

/*INICIO DE FUENTES*/

.fuente-bold {
    font-family: 'LuxoraGrotesk-Bold', Arial, sans-serif;
}

@font-face {
    font-family: 'LuxoraGrotesk-Bold';
    src: url('../fuentes/LuxoraGrotesk-Bold.otf') format('opentype');
}

.fuente-book {
    font-family: 'LuxoraGrotesk-Book', Arial, sans-serif;
}

@font-face {
    font-family: 'LuxoraGrotesk-Book';
    src: url('../fuentes/LuxoraGrotesk-Book.otf') format('opentype');
}

.fuente-light {
    font-family: 'LuxoraGrotesk-Light', Arial, sans-serif;
}

@font-face {
    font-family: 'LuxoraGrotesk-Light';
    src: url('../fuentes/LuxoraGrotesk-Light.otf') format('opentype');
}

.fuente-medium {
    font-family: 'LuxoraGrotesk-Medium', Arial, sans-serif;
}

@font-face {
    font-family: 'LuxoraGrotesk-Medium';
    src: url('../fuentes/LuxoraGrotesk-Medium.otf') format('opentype');
}

.fuente-regular {
    font-family: 'LuxoraGrotesk-Regular', Arial, sans-serif;
}

@font-face {
    font-family: 'LuxoraGrotesk-Regular';
    src: url('../fuentes/LuxoraGrotesk-Regular.otf') format('opentype');
}
/*FIN DE FUENTES*/

.top-menu {
    display: inline-block;
    padding: 0 15px;
    font-size:14px !important;
}




/* Responsive: Portrait tablets and up */
/*pantalla chica*/
@media (max-width: 767px) {
    .banner-td {
        display: none; /* Oculta el td en dispositivos móviles */
    }

    .top-menu {
        background-color: #002C1C !important;
            margin-right: 17px !important;
    }

    
        .top-menu > .navbar-nav > li {
            float: none !important;
           
        }

    .body-content {
        padding: 10px; /* para que no se pegue tanto cuando es celular y deje como que bordes */
    }

    .body-contentGrid {
        padding: 10px; /* para que no se pegue tanto cuando es celular y deje como que bordes */
    }


    .large-screen-links {
        display: none; /* Oculta los enlaces en pantallas pequeñas */
    }

    .small-screen-links {
        display: flex; /* Muestra los enlaces en pantallas pequeñas */
    }

    .rowChild {
        padding-left: 10px;
    }

    label {

        text-align: left;
    }

    .footer-td {
       
        position:fixed;
        
    }

}





/* PANTALLA MEDIANA GRANDE Cambiamos la posición del fondo del encabezado a la izquierda cuando la pantalla sea más pequeña */

@media (max-width: 1369px) {
    
}



/* PANTALLA MEDIANA Cambiamos la posición del fondo del encabezado a la izquierda cuando la pantalla sea más pequeña */

@media (max-width: 992px) {
    .footer-td {
        position: relative;
    }
}





/*pantalla grande*/
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }


    .top-menu {
        float: right !important;
     
       
        background-color: transparent !important;
    }

    .rowChild {
        padding-left: 100px;
    }

    label {
        text-align: right;
    }

    
}
