﻿* {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 9px;
    background: Transparent;
    padding: 0px;
    margin: 0px;
}


.textoCampo_Valida {
    font-family: tahoma,arial,helvetica;
    font-size: 14px;
    font-weight: bold;
    width: 10px;
    height: 12px;
    float: left;
    color: Red;
    background-color: Transparent;
}

.textoCampo_Valida2 {
    font-family: tahoma,arial,helvetica;
    font-size: 14px;
    font-weight: bold;
    width: 10px;
    height: 12px;
    float: left;
    color: Red;
    background-color: White;
}

.textoCampo_Normal {
    float: left;
}

#contenedor {
    width: 100%;
    height: 100%;
    background-color: White;
    top: auto;
    position: relative;
    box-sizing: border-box;
}

#menu_cabecera {
    width: 100%;
    background-color: White;
    height: auto;
    float: none;
    /*top: 0;*/
    left: 0;
    position: relative;
    z-index: 3;
}

#area_cabecera {
    float: none;
    clear: both;
    width: 100%;
    height: 80px;
    background-color: White;
}

#menu_cabecera .menu_general {
    float: left;
    clear: none;
    width: 55%;
    height: 70px;
}


#menu_cabecera .menu_soporte {
    float: none;
    clear: both;
    width: 100%;
    height: 35px;
    background-color: transparent;
}

#menu_cabecera .fila_menu {
    float: none;
    clear: both;
    margin-left: 15px;
    width: 100%;
    height: 35px;
    margin-top: 20px;
    background-color: transparent;
}

    #menu_cabecera .fila_menu nav {
        width: 100%;
        margin: 0;
        background-color: transparent;
    }

        #menu_cabecera .fila_menu nav ul {
            list-style: none;
            margin: 0;
            background-color: transparent;
        }

        #menu_cabecera .fila_menu nav li {
            float: none;
            position: relative;
            min-width: 110px;
        }

        #menu_cabecera .fila_menu nav ul > li {
            float: left;
            background-color: transparent;
        }

        #menu_cabecera .fila_menu nav ul li a {
            font-family: Open Sans, Arial, Helvetica, Sans-Serif;
            font-size: 14px;
            background-color: transparent;
            display: block;
            color: Gray;
            padding: 10px 12px 8px 12px;
            text-decoration: none;
            transition: all 0.4s;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box; /* Hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
        }

            #menu_cabecera .fila_menu nav ul li a:hover {
                background-color: #E6F2EB;
                color: #619340;
            }

        #menu_cabecera .fila_menu nav ul ul {
            display: none;
            position: absolute;
            min-width: 260px;
            width: auto;
            z-index: 5;
            background-color: White;
            transition: all 0.8s;
            border-radius: 2px;
            border-left: 1px solid #C1C1C1;
            box-shadow: 1px 1px 4px #A4A4A4;
        }

        #menu_cabecera .fila_menu nav li li {
            min-width: 240px;
            width: auto;
        }

        #menu_cabecera .fila_menu nav ul li ul li a {
            font-family: Open Sans, Arial, Helvetica, Sans-Serif;
            font-size: 13px;
            background-color: transparent;
            display: block;
            color: Gray;
            padding: 10px 12px 8px 12px;
            text-decoration: none;
            transition: all 0.4s;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box; /* Hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
        }

        #menu_cabecera .fila_menu nav ul li:hover > ul {
            display: block;
        }




  


.detalle {
    margin: 0 auto;
    width: 974px;
    background-color: White;
    min-height: 680px;
    height: auto
}

.detalles {
    width: 100%;
    background-color: White;
    min-height: 680px;
    height: auto
}

#piepagina {
    margin: 0 auto;
    width: 974px;
    min-height: 50px;
    height: auto;
}

#publicidad {
    float: left;
    width: 100%;
    background-color: Transparent;
    color: #0033CC;
    height: 282px;
}

#top_publicidad {
    float: left;
    position: relative;
    background-color: Transparent;
    width: 100%;
    height: 282px;
}

#top_publ_lados {
    float: left;
    position: relative;
    background-color: Transparent;
    width: 2%;
    height: 282px;
}


/* Estilo básico para la galería */
figure {
    margin: 0;
}

#gallery {
    max-width: 976px;
    margin: auto;
    overflow: hidden;
    position: relative;
    height: 282px; /* Ajusta esta altura según sea necesario */
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%; /* Ajusta la altura al 100% del contenedor principal */
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ajusta la altura al 100% del contenedor principal */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .gallery-item img {
        width: 100%;
        height: 100%; /* Asegura que las imágenes llenen el contenedor */
        object-fit: cover; /* Ajusta la imagen para cubrir el contenedor sin distorsión */
        display: block;
    }

    .gallery-item.active {
        opacity: 1;
    }

/* Navegación de la galería */
.gallery-navigation {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 20px);
    margin: 0 10px;
    position: absolute;
    top: 92%;
    transform: translateY(-50%);
}

.nav-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 1px 1px;
    cursor: pointer;
    font-size: 30px;
    border-radius: 5px;
}

    .nav-button > span {
        font-size: 30px;
    }

    .nav-button:hover {
        background-color: #5C5C5C;
    }


#menu_gral {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 300px;
}

#separacion {
    float: left;
    width: 100%;
    background-color: Transparent;
    color: #0033CC;
    height: 40px;
}

#separa_uno {
    float: left;
    width: 100%;
    position: relative;
    background-color: Transparent;
    color: #0033CC;
    height: 20px;
}

#separa_unos {
    float: left;
    width: 100%;
    position: relative;
    background-color: Transparent;
    color: #0033CC;
    height: 20px;
}

.separa_dos_B {
    float: left;
    width: 100%;
    position: relative;
    background-color: Transparent;
    height: 282px;
}

#sprtec_buscar {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 150px;
}

    #sprtec_buscar .sprtec_esp1 {
        background-color: Transparent;
    }

    #sprtec_buscar .sprtec_ttl1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Green;
        font-size: 16px;
        font-weight: normal;
    }

    #sprtec_buscar .sprtec_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #sprtec_buscar .sprtec_txt {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        font-size: 14px;
        font-weight: normal;
        height: 22px;
    }

#sprtec_resultado {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 450px;
}

#marketing1_fondo1 {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Menu2.jpg') repeat-x top;
    color: #0033CC;
    height: 60px;
}

    #marketing1_fondo1 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo1 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 12px;
        font-weight: bold;
    }

    #marketing1_fondo1 .fondo_esp1 {
        background-color: Transparent;
    }


#marketing1_fondo2 {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Marketing2.jpg') repeat-x top;
    color: #0033CC;
    height: 290px;
}

    #marketing1_fondo2 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo2 .fondo_fnd2 {
        float: left;
        background-color: Transparent;
        text-align: center;
    }

    #marketing1_fondo2 .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo2 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 42px;
        font-weight: bold;
    }

    #marketing1_fondo2 .fondo_menu2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 20px;
        font-weight: bold;
    }

    #marketing1_fondo2 .fondo_menu3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 30px;
        font-weight: normal;
    }

    #marketing1_fondo2 .fondo_menu4 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 20px;
        font-weight: normal;
    }

    #marketing1_fondo2 .fondo_menu5 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 12px;
        font-weight: normal;
    }

    #marketing1_fondo2 .fondo_menu6 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 16px;
        font-weight: normal;
    }

    #marketing1_fondo2 .fondo_menu7 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: normal;
    }

    #marketing1_fondo2 .fondo_menu7 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: BOLD;
    }

    #marketing1_fondo2 .fondo_menu8 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 26px;
        font-weight: normal;
    }

#marketing1_fondo3 {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 560px; /*330px*/ /*410px*/ /*420px*/ /*430px*/ /*500px*/ /*Cambio_No.69: AINL 09-08-2023 */
}

#marketing1_fondoContct /**/ {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 580px;
}


#marketing1_fondo_Inicio {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 410px; /*330px*/
}

#marketing1_fondo_Info {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 410px; /*330px*/ /*410px*/
}

#marketing1_fondo3 .fondo_fnd1 {
    float: left;
    background-color: Transparent;
}

#marketing1_fondo3 .fondo_esp1 {
    width: 100%;
    position: relative;
    background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
    height: 65px; /*70px*/
}

#marketing1_fondo3 .fondo_esp2 {
    width: 22%;
    position: relative;
    background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
    height: 65px; /*70px*/
}


#marketing1_fondo3 .fondo_menu {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: Green;
    padding: 20px 10px 10px 10px;
    font-size: 24px;
    font-weight: normal;
}

#marketing1_fondo3 .fondo_inst {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    padding: 20px 10px 10px 10px; /*14px 0 0 0*/ /*Cambio_No.77: AINL 10-08-23*/
    color: #5C5C5C;
    font-size: 14px; /**/
    font-weight: normal;
}

#marketing1_fondo3 .fondo_menu2 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0;
    padding: 0;
    color: Green;
    font-size: 14px;
    font-weight: normal;
}

#marketing1_fondo3 .fondo_fndtest {
    position: relative;
    float: left;
    width: 22%;
    height: 0px;
    background-color: Transparent;
    padding: 24px 10px 10px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#marketing1_fondo3 .fondo_fndtest2 {
    position: relative;
    float: left;
    background-color: Transparent;
    width: 78%;
    height: auto;
    padding: 20px 0 0 0; /*20px 0 0 0*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#marketing1_fondo3 .fondo_texto1 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0;
    padding: 0;
    color: #5C5C5C;
    font-size: 12px;
    font-weight: normal;
}

#marketing1_fondo3 .fondo_textarea { /*Cambio_No.42: AINL 01-08-23*/ /*Cambio_No.58: AINL 08-08-23*/
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    font-size: 12px;
    resize: none;
    color: #5C5C5C;
    padding: 14px 10px 10px 10px;
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#marketing1_fondo3 .fondo_texto2 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0;
    padding: 0;
    color: Green;
    font-size: 20px; /*20px*/
    font-weight: bold;
    text-align: center;
}

/*Cambio_No.66: AINL 09-08-2023*/
#marketing1_fondo3 .fondo_texto3 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0;
    padding: 0;
    color: green;
    font-size: 14px;
    font-weight: bold;
}

#marketing1_fondo3 .fondo_texto4 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0;
    padding: 0;
    color: Green;
    font-size: 12px;
    font-weight: bold;
}

#marketing1_fondo3 .ColumnaTablaError {
    font-family: tahoma,arial,helvetica;
    font-size: 12px;
    font-weight: bold;
    color: red; /*Gray*/ /*Cambio_No.22: AINL 17-07-23*/
    background-color: Transparent;
}

/*Cambio_No.70: AINL 09-08-23*/
#marketing1_fondo3 .fondo_leyenda {
    float: none;
    clear: both;
}

#marketing1_fondo4 {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Marketing4.jpg') repeat-x top;
    color: #0033CC;
    height: 80px;
}

    #marketing1_fondo4 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo4 .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo4 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 16px;
        font-weight: bold;
    }

#marketing1_fondo5 {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Marketing5.jpg') repeat-x top;
    color: #0033CC;
    margin-top: 15px;
    height: 60px;
}

    #marketing1_fondo5 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo5 .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo5 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 11px;
        font-weight: normal;
    }

#marketing1_fondo5B {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Marketing4.jpg') repeat-x top;
    color: #0033CC;
    height: 60px;
}

    #marketing1_fondo5B .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo5B .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo5B .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 11px;
        font-weight: normal;
    }

#marketing1_fondo6 {
    width: fit-content;
    margin: 15px auto 0 auto; /* centrado horizontal y margen arriba */
    background-color: white;
}

    #marketing1_fondo6 .fondo_fnd1 {
        position: relative;
        float: left;
        background-color: transparent;
    }

    /*Estilos de Solicitud de Contratación*/

    #marketing1_fondo6 .fondo_fndtest {
        position: relative;
        float: left;
        width: 22%;
        height: 0px; /*auto*/
        background-color: Transparent;
        padding: 24px 10px 10px 10px; /*Cambio_No.45: AINL 01-08-23*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #marketing1_fondo6 .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 78%;
        height: 50px; /*auto*/
        padding: 20px 0 0 0; /*20px 0 0 0*/ /*Cambio_No.45: AINL 01-08-23*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #marketing1_fondo6 .fondo_leyenda {
        float: none;
        clear: both;
    }

    #marketing1_fondo6 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo6 .fondo_fnd2 {
        float: left;
        background-color: Transparent;
        text-align: center;
    }

    #marketing1_fondo6 .fondo_esp1 {
        width: 100%;
        position: relative;
        background-color: Transparent;
        height: 65px; /*20px*/ /*70px*/ /*Cambio_No.45: AINL 01-08-23*/ /*Cambio_No.56: AINL 07/08/2023*/
    }

    #marketing1_fondo6 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 20px 10px 10px 10px; /*14px 0 0 0*/ /*Cambio_No.45: AINL 01-08-23*/
        color: Green;
        font-size: 24px; /**/
        font-weight: normal;
    }

    #marketing1_fondo6 .fondo_inst {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 20px 10px 10px 10px; /*14px 0 0 0*/ /*Cambio_No.77: AINL 10-08-23*/
        color: #5C5C5C;
        font-size: 14px; /**/
        font-weight: normal;
    }

    #marketing1_fondo6 .fondo_submenu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: Green;
        font-size: 16px;
        font-weight: normal;
    }

    #marketing1_fondo6 .fondo_texto1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: #5C5C5C;
        font-size: 12px;
        font-weight: normal;
    }

    #marketing1_fondo6 .fondo_texto2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: #5C5C5C;
        font-size: 14px; /*12px*/ /*Actualizacion_No.04: AINL 21-07-23*/
        font-weight: normal;
        text-align: left;
    }

    #marketing1_fondo6 .fondo_texto3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: #5C5C5C;
        font-size: 9px;
        font-weight: normal;
        text-align: left;
    }

    #marketing1_fondo6 .fondo_texto4 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: Green;
        font-size: 12px;
        font-weight: normal;
        text-align: left;
    }

    #marketing1_fondo6 .fondo_texto5 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: #5C5C5C;
        font-size: 12px;
        font-weight: normal;
        vertical-align: middle;
    }

    #marketing1_fondo6 .fondo_texto6 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: #5C5C5C;
        font-size: 12px;
        font-weight: bold;
    }

    #marketing1_fondo6 .ColumnaTablaError {
        font-family: tahoma,arial,helvetica;
        font-size: 12px;
        font-weight: bold;
        color: red; /*Gray*/ /*Cambio_No.22: AINL 17-07-23*/
        background-color: Transparent;
    }

    #marketing1_fondo6 .fondo_ttl3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: #5C5C5C;
        font-size: 10px;
        font-weight: normal;
    }

#marketing1_fondo7 {
    float: left;
    width: 100%;
    background: #FFF url('./Imagenes/Fondo_Marketing2.jpg') repeat-x top;
    color: #0033CC;
    height: 220px;
}


    #marketing1_fondo7 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo7 .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo7 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 24px;
        font-weight: bold;
    }

    #marketing1_fondo7 .fondo_menu2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 18px;
        font-weight: bold;
    }

    #marketing1_fondo7 .fondo_menu3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: normal;
    }

#marketing1_fondo8 {
    position: relative;
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-left: 20px;
    background: #FFF url(./Imagenes/Fondo_Marketing2.jpg) repeat-x top;
    color: #0033CC;
    box-sizing: border-box;
    height: 50px;
}

    #marketing1_fondo8 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #marketing1_fondo8 .fondo_esp1 {
        background-color: Transparent;
    }

    #marketing1_fondo8 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 24px;
    }

    #marketing1_fondo8 .fondo_menu2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 18px;
        font-weight: bold;
    }

    #marketing1_fondo8 .fondo_menu3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: normal;
    }

#marketing1_areatrabajo {
    float: left;
    width: 100%;
    margin-bottom:52px;
}

/*Estilos de Solicitud de Contactanos*/

#marketing1_fondo3 .fondo_fndtest3 {
    position: absolute;
    float: left;
    width: 22%;
    height: 10px; /*auto*/
    background-color: Transparent;
    padding: 150px 30px 20px 20px; /*20px 30px 20px 20px*/ /*/*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*Cambio_No.02: AINL 12-07-23 */
/*Actualización_No.01: AINL 18/07/2023*/
/*Actualización_No.04: AINL 20/07/2023*/
/*Actualización_No.05: AINL 20/07/2023*/
.input_cambio {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 240px;
    height: 22px; /*24px*/
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambios {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 220px;
    height: 22px; /*24px*/
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambiologincompra {
    font-size: 12px;
    color: #5C5C5C;
    width: 240px;
    height: 22px;
    background: white;
    padding: 14px 10px 14px;
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambio01 {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 140px;
    height: 22px;
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambio02 {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 450px;
    height: 22px;
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambio03 {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 100px;
    height: 22px;
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input_cambio04 {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 590px; /*650px*/
    height: 22px;
    padding: 14px 10px 14px; /*8px 8px 8px 8px*/ /*12px 10px 20px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*Cambio_No.57: AINL 07-08-23*/
.input_cambioComoEnt {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 240px;
    height: 30px;
    padding: 0 0 0 0; /*14px 10px 14px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.textarea_cambioComoEnt {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 450px;
    height: 161px; /*24px*/ /*24px*/
    padding: 5px 5px 5px 5px; /*14px 10px 14px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.textarea_cambioComoEnter {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 350px;
    height: 161px; /*24px*/ /*24px*/
    padding: 5px 5px 5px 5px; /*14px 10px 14px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.textarea_cambioComoEntmsj {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 350px;
    height: 161px; /*24px*/ /*24px*/
    padding: 5px 5px 5px 5px; /*14px 10px 14px*/
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#suscrip_registro {
    float: left;
    width: 100%;
    background-color: White;
    width: 100%;
    min-height: 600px;
    height: auto;
}


    #suscrip_registro .suscrp_esp1 {
        background-color: Transparent;
    }

    #suscrip_registro .suscrp_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #suscrip_registro .ColumnaTablaError {
        font-family: tahoma,arial,helvetica;
        font-size: 12px;
        font-weight: bold;
        color: Red;
        background-color: Transparent;
    }

    #suscrip_registro .suscrp_ttl1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Green;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
    }

    #suscrip_registro .suscrp_ttl2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Black;
        font-size: 12px;
        font-weight: normal;
    }

    #suscrip_registro .suscrp_ttl3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: #5C5C5C;
        font-size: 10px;
        font-weight: normal;
    }

    #suscrip_registro .suscrp_ttl4 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Blue;
        font-size: 14px;
        font-weight: normal;
        padding: 15px;
        padding-top: 5px
    }

    #suscrip_registro .suscrp_ttl5













    #suscrip_registro .suscrp_txt {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        font-size: 12px;
        font-weight: normal;
        height: 18px;
    }

#suscrip_registros {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 68px;
}

    #suscrip_registros .suscrp_esp1 {
        background-color: Transparent;
    }

    #suscrip_registros .suscrp_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #suscrip_registros .ColumnaTablaError {
        font-family: tahoma,arial,helvetica;
        font-size: 12px;
        font-weight: bold;
        color: Red;
        background-color: Transparent;
    }

    #suscrip_registros .suscrp_ttl1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Green;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
    }

    #suscrip_registros .suscrp_ttl5 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        margin-left: 161px;
        padding: 0;
        color: Green;
        font-size: 24px;
        font-weight: normal;
        text-align: center;
    }

    #suscrip_registros .suscrp_ttl2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Black;
        font-size: 12px;
        font-weight: normal;
    }

    #suscrip_registros .suscrp_ttl3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: #5C5C5C;
        font-size: 10px;
        font-weight: normal;
    }

    #suscrip_registros.suscrp_ttl4 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Blue;
        font-size: 14px;
        font-weight: normal;
        padding: 15px;
        padding-top: 5px
    }

    #suscrip_registros .suscrp_txt {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        font-size: 12px;
        font-weight: normal;
        height: 18px;
    }

#suscrip_publicidad {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 250px;
}

.empresa_informacion td {
    background-color: White;
    color: #0033CC;
}

#empresa_informacion {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: 300px;
}


    #empresa_informacion .informacion_ttl1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: Green;
        font-size: 24px;
        font-weight: normal;
        text-align: center;
        background-color: White;
    }

    #empresa_informacion .informacion_txt1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0 auto;
        padding: 0;
        color: #3462A0;
        font-size: 14px;
        font-weight: normal;
        background-color: Transparent;
    }

    #empresa_informacion .informacion_esp1 {
        background-color: Transparent;
    }

    #empresa_informacion .informacion_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #empresa_informacion .informacion_fnd2 {
        background-color: Transparent;
        text-align: center;
    }

    #empresa_informacion .informacion_fnd3 {
        background-color: Transparent;
        text-align: left;
    }

#top_cabecera {
    margin: 0 auto;
    padding: 0;
    color: #EEEEEE;
    background: #FFF url('./Imagenes/Fondo_Cabecera.jpg') repeat-x top;
    height: 81px;
    z-index: 0;
}

#top_cabecera_2 {
    margin: 0 auto;
    padding: 0;
    color: #EEEEEE;
    background-color: White;
    height: 70px;
    z-index: 0;
}
    #top_cabecera_2 .fila_menu {
        float: none;
        clear: both;
        margin-left: 15px;
        width: 100%;
        height: 35px;
        margin-top: 20px;
        background-color: transparent;
    }

        #top_cabecera_2 .fila_menu nav {
            width: 100%;
            margin: 0;
            background-color: transparent;
        }

            #top_cabecera_2 .fila_menu nav ul {
                list-style: none;
                margin: 0;
                background-color: transparent;
            }

            #top_cabecera_2 .fila_menu nav li {
                float: none;
                position: relative;
                min-width: 110px;
            }

            #top_cabecera_2 .fila_menu nav ul > li {
                float: left;
                background-color: transparent;
            }

            #top_cabecera_2 .fila_menu nav ul li a {
                font-family: Open Sans, Arial, Helvetica, Sans-Serif;
                font-size: 14px;
                background-color: transparent;
                display: block;
                color: Gray;
                padding: 10px 12px 8px 12px;
                text-decoration: none;
                transition: all 0.4s;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box; /* Hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
            }

                #top_cabecera_2 .fila_menu nav ul li a:hover {
                    background-color: #E6F2EB;
                    color: #619340;
                }

            #top_cabecera_2 .fila_menu nav ul ul {
                display: none;
                position: absolute;
                min-width: 260px;
                width: auto;
                z-index: 5;
                background-color: White;
                transition: all 0.8s;
                border-radius: 2px;
                border-left: 1px solid #C1C1C1;
                box-shadow: 1px 1px 4px #A4A4A4;
            }

            #top_cabecera_2 .fila_menu nav li li {
                min-width: 240px;
                width: auto;
            }

            #top_cabecera_2 .fila_menu nav ul li ul li a {
                font-family: Open Sans, Arial, Helvetica, Sans-Serif;
                font-size: 13px;
                background-color: transparent;
                display: block;
                color: Gray;
                padding: 10px 12px 8px 12px;
                text-decoration: none;
                transition: all 0.4s;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box; /* Hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
            }

            #top_cabecera_2 .fila_menu nav ul li:hover > ul {
                display: block;
            }


#top_menu {
    margin: 0 auto;
    padding: 0;
    color: #EEEEEE;
    background: #FFF url('./Imagenes/Fondo_Menu.jpg') repeat-x bottom;
    float: none;
    position: relative;
    top: 0px;
    height: 35px;
    width: 974px;
}

#top_logos {
    margin: 10px 5% 0 5%;
    padding: 0;
    background-color: Transparent;
    float: none;
    position: relative;
    height: 70px;
    width: 100%;
}

#top_logos_1 {
    float: left;
    height: 70px;
    width: 15%;
}

#top_menu_gral {
    float: left;
    background-color: Transparent;
    height: 70px;
    width: 717px;
    text-align: right;
    vertical-align: text-bottom;
}

    #top_menu_gral .top_menu_gral_2 {
        float: right;
        background-color: Transparent;
    }

    #top_menu_gral .menu_gral_ttl1 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        color: White;
        font-size: 10px;
        font-weight: bold;
    }

#menu_inicio {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 18px;
    margin: 0 auto;
    padding: 0;
    background-color: Transparent;
    float: none;
}

    #menu_inicio .menu_opc {
        font-family: Arial Rounded MT Bold, Verdana, Helvetica, Sans-Serif;
        font-size: 14px;
        font-weight: normal;
        margin: 0 auto;
        padding: 0;
        background-color: Transparent;
        top: 4px;
        left: 10px;
        float: none;
        position: relative;
    }

    #menu_inicio .menu_sistema {
        font-size: 12px;
        margin: 0 auto;
        padding: 0;
        background-color: Transparent;
        float: left;
        position: relative;
        top: 7px;
        left: 4px;
    }

.ventanaSubMenus {
    float: none;
    position: relative;
    top: 8px;
    width: 150px;
    height: 200px;
    z-index: 10;
    border-style: none;
    border-color: Black;
    border-width: thin;
    visibility: hidden;
    background-color: #5C5C5C;
    cursor: pointer;
}

#menu_gral .menu_det_div {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 33%;
    height: 100%;
    top: 20px;
    left: 20px;
}

#menu_gral .menu_det_ttl1 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: Black;
    font-size: 12px;
    font-weight: bold;
}

#menu_gral .menu_subdet_div {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
}

#menu_gral .menu_subdet_div {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 100%;
    height: 30px;
    top: 10px;
    left: 10px;
}

#menu_gral .menu_det_ttl2 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    margin: 0 auto;
    padding: 0;
    color: Black;
    font-size: 12px;
    font-weight: normal;
}


#separa_uno .menu_sep_div {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 100%;
    height: 20px;
    top: 0px;
    left: 0px;
    text-align: right;
}

#separa_unos .menu_sep_div {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 100%;
    height: 20px;
    top: 0px;
    left: 0px;
    text-align: right;
}

#separa_uno .menu_sep_ttl1 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: #5C5C5C;
    font-size: 11px;
    font-weight: normal;
    text-align: right;
}

#separa_unos .menu_sep_ttl1 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: #5C5C5C;
    font-size: 11px;
    font-weight: normal;
    text-align: right;
}

#separa_unos .menu_sep_ttl2 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: Green;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}

#separa_uno .menu_sep_ttl2 {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    background-color: Transparent;
    color: Green;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}

#separa_dos {
    background-color: Transparent;
    float: left;
    position: relative;
    width: 100%;
    height: 20px;
    top: 0px;
    left: 0px;
    text-align: right;
}

.columna_nombre {
    background-color: #DCEAFB;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
}


.columna_dato_1 {
    background-color: White;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    text-align: left;
    font-size: 10px;
}

.columna_dato_2 {
    background-color: #DCDCDC;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    text-align: left;
    font-size: 10px;
}

.columna_numero_1 {
    background-color: White;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    text-align: right;
    font-size: 10px;
}

.columna_numero_2 {
    background-color: #DCDCDC;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    text-align: right;
    font-size: 10px;
}

/*Cambio_No.05: AINL 13-07-23 */

#divVentanaMensajes {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9;
}

    /*Cambio_No.29: AINL 18-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMensajes .vntMensaje {
        background-color: white;
        border-color: #1b8696; /*#c21118*/
        border-style: solid;
        border-width: 4px; /*3px*/
        color: gray;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        text-align: center; /**/
        font-size: 14px; /*14px*/
        font-weight: bold;
        height: 300px; /*400px*/
        position: fixed; /*fixed*/
        width: 620px; /*600px*/
        z-index: 9;
        float: left; /**/
    }

    #divVentanaMensajes .vntMensajeSombra {
        -ms-opacity: .5;
        background-color: gray;
        border-color: #bbb;
        border-style: solid;
        border-width: 2px;
        display: none;
        filter: alpha(opacity=50); /* Para IE8.0 */
        opacity: .5;
        position: absolute;
        z-index: 9;
    }

    /*Cambio_No.30: AINL 19-07-23*/
    #divVentanaMensajes .espacio6 {
        background-color: #1b8696; /*#c21118*/
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px; /*12px*/
        height: 25px;
        padding: 0 5px 0 10px;
        width: 605px; /*585px*/
    }

    #divVentanaMensajes .vnttitulo {
        background-color: transparent;
        clear: none;
        float: left;
        height: 25px;
        width: 580px; /*540px*/
    }

    /*Cambio_No.30: AINL 19-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMensajes .textotitulo {
        background-color: transparent;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px; /*14px*/ /*24px*/ /*20px*/
        color: white;
        text-align: center; /**/
    }

    #divVentanaMensajes .espacio7F {
        font-size: 14px; /*14px*/
        background-color: transparent;
        clear: both;
        float: none;
        height: 50px; /*40px*/
        margin: 20px 5px 20px 20px;
        padding: 80px 0 0 0; /*0 0 0 0*/
        width: 580px; /*600px*/
        text-align: center; /**/
    }

    #divVentanaMensajes .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 60px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMensajes .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 165px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMensajes .fondo_fndtest {
        position: relative;
        float: left;
        width: 32%;
        height: auto;
        background-color: Transparent;
        padding: 10px 10px 10px 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divVentanaMensajes .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 68%;
        height: auto;
        padding: 2px 0 0 0; /*20px 0 0 0*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divVentanaMensajes .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divVentanaMensajes .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
    }

#divVentanaMantenimiento {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 4;
}

    /*Cambio_No.29: AINL 18-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMantenimiento .vntMensaje {
        background-color: white;
        border-color: #1b8696; /*#c21118*/
        border-style: solid;
        border-width: 4px; /*3px*/
        color: gray;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        text-align: center; /**/
        font-size: 14px; /*14px*/
        font-weight: bold;
        height: 300px; /*400px*/
        position: fixed; /*fixed*/
        width: 620px; /*600px*/
        z-index: 4;
        float: left; /**/
    }

    #divVentanaMantenimiento .vntMensajeSombra {
        -ms-opacity: .5;
        background-color: gray;
        border-color: #bbb;
        border-style: solid;
        border-width: 2px;
        display: none;
        filter: alpha(opacity=50); /* Para IE8.0 */
        opacity: .5;
        position: absolute;
        z-index: 4;
    }

    /*Cambio_No.30: AINL 19-07-23*/
    #divVentanaMantenimiento .espacio6 {
        background-color: #1b8696; /*#c21118*/
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px; /*12px*/
        height: 25px;
        padding: 0 5px 0 10px;
        width: 605px; /*585px*/
    }

    #divVentanaMantenimiento .vnttitulo {
        background-color: transparent;
        clear: none;
        float: left;
        height: 25px;
        width: 580px; /*540px*/
    }

    /*Cambio_No.30: AINL 19-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMantenimiento .textotitulo {
        background-color: transparent;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px; /*14px*/ /*24px*/ /*20px*/
        color: white;
        text-align: center; /**/
    }

    #divVentanaMantenimiento .espacio7F {
        font-size: 14px; /*14px*/
        background-color: transparent;
        clear: both;
        float: none;
        height: 50px; /*40px*/
        margin: 20px 5px 20px 20px;
        padding: 80px 0 0 0; /*0 0 0 0*/
        width: 580px; /*600px*/
        text-align: center; /**/
    }

    #divVentanaMantenimiento .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 60px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMantenimiento .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 165px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMantenimiento .fondo_fndtest {
        position: relative;
        float: left;
        width: 32%;
        height: auto;
        background-color: Transparent;
        padding: 10px 10px 10px 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divVentanaMantenimiento .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 68%;
        height: auto;
        padding: 2px 0 0 0; /*20px 0 0 0*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divVentanaMantenimiento .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divVentanaMantenimiento .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
        /*Botón Whatsapp*/
    }

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

    .float:hover {
        text-decoration: none;
        color: #25d366;
        background-color: #fff;
    }

.my-float {
    margin-top: 16px;
}

/*Efecto01*/

.btn {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    background: white;
    font-size: 28px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 1s;
    &:after,&:before

{
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
}

&:after {
    top: -1px;
    left: -1px;
    border-top: 5px solid black;
    border-left: 5px solid black;
}

&:before {
    bottom: -1px;
    right: -1px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
}

&:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    &:before,&:after

{
    width: 100%;
    height: 100%;
}

}
}

.data-container {
    background: #ffebee;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Cambio_No.34: AINL 21-07-23*/
.leyendaAlarma {
    color: red;
    font-size: 12px;
}

.botonMensaje {
    border: 1px solid blue;
    padding: 14px 10px 14px;
    border-radius: 10px;
    background-color: lightseagreen;
    color: white;
}

/*Cambio_No.39: AINL 27/07/23*/
.maestro {
    color: #5C5C5C;
    font-size: 13px;
    border: 1px solid green;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fondo_texto_test {
    font-size: 13px;
    color: #5C5C5C;
}

.fondo_texto_test_login {
    font-size: 16px;
    color: black;
    padding: 5px
}

.fondo_texto_test_loginurcom {
    font-size: 11px;
    color: white;
    padding: 5px
}

.fondo_texto_test_loginurcom {
    font-size: 11px;
    color: white;
    padding: 5px
}

.fondo_texto_test_loginurcompras {
    font-size: 11px;
    color: white;
    background: transparent;
    padding: 5px;
}



.fondo_texto_titulo {
    color: #5C5C5C;
    font-size: 12px;
}

/*Cambio_No.40: AINL 31-07-23*/
.botonInicio {
    font-size: 13px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 0;
    width: 120px;
    height: 30px;
    border-radius: 10px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

.botonVentana {
    font-size: 13px;
    border: 1px #1a8899; /*#1a8899*/ /*#68bb9c*/
    padding: 0;
    width: 120px;
    height: 30px;
    border-radius: 10px;
    background-color: #1a8899; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

/*Chat*/
/*Cambio_No.86: AINL 22-08-23*/

.openChatBtn {
    /*background-image: url(./Imagenes/Chat/comment.png);*/
    /*background-image: url(./Imagenes/Chat/chat.png);*/
    /*background-image: url(./Imagenes/Chat/customer-service.png);*/
    background-image: url(./Imagenes/Chat/female-service.png);
    background-repeat: no-repeat;
    padding: 30px 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 65px;
    height: 65px;
    z-index: 2;
}

/*.openChat {
    display: none;
    position: fixed;
    bottom: 92px;
    right: 15px;
    height: 320px;
    border-radius: 5px;
    border: 3px solid #1a8899;
    z-index: 2;
    box-sizing: border-box;
}*/

.openChat {
    display: none;
    position: fixed;
    bottom: 92px;
    right: 15px;
    height: 320px;
    border: 3px solid #1a8899;
    padding: 2px 2px;
    font-size: 22px;
    border-radius: 10px;
    box-sizing: border-box;
}

/*.menu_respuesta {
    position: relative;
    color: white;
    background: #1a8899;
    font-size: 14px;
    border-radius: 1.3em;
    border-bottom-left-radius: 0;
    padding: 10px 15px 10px 10px;
    cursor: pointer;
}*/

.mensaje_burbuja {
    color: white;
    font-size: 14px;
    width: 200px;
    text-align: center;
    background-color: #1a8899; /*#1a8899*/
    float: right;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin: 4px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}

.mensaje_burbuja_texto {
    color: black;
    font-size: 14px;
    width: 280px;
    text-align: center;
    background-color: rgb(236, 236, 236); /*#1a8899*/
    float: left;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin: 4px;
    position: relative;
    box-sizing: border-box;
}

.mensaje_burbuja_Padre {
    color: black;
    font-size: 14px;
    width: 280px;
    text-align: center;
    background-color: skyblue; /*#1a8899*/
    float: left;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin: 4px;
    position: relative;
    box-sizing: border-box;
}

.mensaje_burbuja_submenu {
    color: black;
    font-size: 14px;
    width: 280px;
    text-align: center;
    background-color: rgb(236, 236, 236); /*#1a8899*/
    float: left;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin: 4px;
    position: relative;
    box-sizing: border-box;
}

.menuChat {
    position: relative;
    height: 200px;
    width: 310px;
    overflow: auto;
}

#popup_chat {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

    #popup_chat .panel-heading {
        color: green;
        background-color: white;
        border: 2px solid #1a8899;
        padding: 10px 10px 10px 10px;
        font-size: 22px;
        border-radius: 10px;
    }

    #popup_chat .panel-menu {
        position: relative;
        width: 100%;
        color: #5C5C5C;
        background-color: white;
        border: 1px solid #1a8899;
        padding: 10px 10px 10px 10px;
        font-size: 14px;
        cursor: pointer;
    }

    #popup_chat .imgMinimizar {
        float: right;
        padding-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    #popup_chat .imgCerrar {
        float: right;
        padding-left: 0px;
        margin-right: 0;
        margin-top: 0;
        cursor: pointer;
    }

.imgCerrarlupa {
    float: right;
    padding-left: 0px;
    margin-right: 0;
    margin-top: 0;
    align-self: center;
    cursor: pointer;
    display: flex;
}

#popup_chat .imgEntrar {
    float: right;
    padding-left: 16px;
    margin-right: 0;
    margin-top: 0;
}

/*Estilos botones del chat*/

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

button.list-group-item {
    width: 100%;
    text-align: left;
}

a.list-group-item, button.list-group-item {
    color: #5C5C5C;
    font-size: 14px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    font-size: 14px;
    border: 1px solid #1a8899;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, select {
    text-transform: none;
}

button {
    overflow: visible;
}

/*Estilo input del chat*/
.InputPreguntar {
    font-size: 12px; /**/
    color: #5C5C5C;
    width: 240px;
    height: 22px; /*24px*/
    padding: 14px 10px 14px;
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fondo_InputChat {
    float: left;
    background-color: Transparent;
    padding: 10px 10px 10px 10px;
}

#popup_chat .btn {
    background-color: #1a8899;
    color: white;
    padding: 16px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

    #popup_chat .btn:hover, .openChatBtn:hover {
        opacity: 1;
    }

.menu {
    background-color: white;
    float: left;
    width: 30%;
    height: auto;
}

.contenido {
    background-color: white;
    float: left;
    width: 70%;
}




.input {
    width: 50%;
    float: left;
    border: 4px solid red;
    border-radius: 10px;
    background-color: silver;
    padding: 3px 3px 3px 9px;
}

.divh1 {
    width: 100%;
    margin-bottom: 5px;
}

.divh1tck {
    float: left;
    width: 70%;
    margin-bottom: 5px;
    padding: 10px;
}

.divi2 {
    position: relative;
    float: left;
    width: 30%;
    height: 40px
}

.divi3 {
    position: relative;
    float: left;
    width: 70%;
    height: 40%;
}

.divbotnocarrito {
    position: relative;
    float: left;
    width: 100%;
    margin-left: 586px;
}

.divbotnocarritos {
    position: relative;
    float: left;
    width: 30%;
}

.botoniniciocarr {
    font-size: 12px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 4px 7px 2px 4px;
    height: 30px;
    margin-top: 5px;
    width: 150px;
    margin-left: 15px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

.botonIniciocht {
    font-size: 12px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 4px 7px 2px 4px;
    width: 20%;
    height: 30px;
    margin-top: 5px;
    margin-left: 1px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

.botonIniciochtea {
    font-size: 12px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 4px 7px 2px 4px;
    width: 12%;
    height: 30px;
    margin-top: 5px;
    margin-left: 1px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

.botonInicioccarrpago {
    font-size: 12px;
    border: 1px Green;
    padding: 4px 7px 2px 4px;
    height: 25px;
    width: 240px;
    margin-left: 5px;
    margin-right: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green;
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


.botonInicioccarrpagos {
    font-size: 12px;
    border: 1px Green;
    padding: 4px 7px 2px 4px;
    height: 55px;
    width: 240px;
    margin-left: 5px;
    margin-right: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green;
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}




.botonIniciochtlogins {
    font-size: 12px;
    border: 1px Green;
    padding: 4px 7px 2px 4px;
    width: 164px;
    height: 30px;
    margin-top: 5px;
    margin-left: 18px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    background: linear-gradient(339deg, #dceafb, #fff0);
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}





.botonIniciocarrito {
    font-size: 16px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 4px 7px 2px 4px;
    width: 390px;
    height: 30px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

menu ul {
    list-style: none;
}

.menu a {
    display: block;
    font-size: 14px;
    text-align: center;
    border-width: 2px;
    border-style: solid;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #ffffff;
    text-decoration: none;
    color: #191C26;
}


    .menu a:hover {
        background-color: silver;
    }



.li {
    font-display: block;
    font-size: 14px;
    text-align: center;
    border-width: 2px;
    border-style: solid;
    border-radius: 15px;
    color: #191C26;
    width: 29%;
    height: 40px;
    margin-bottom: 15px;
}


#divTicketfondo {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: auto;
}


    #divTicketfondo .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 30px; /*70px*/
        padding-top: 15px;
    }

    #divTicketfondo .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 40px; /*70px*/
        padding-top: 15px;
    }

    #divTicketfondo .fondo_esp3 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 176px; /*70px*/
        padding-top: 15px;
    }

    #divTicketfondo .fondo_fndtest {
        position: relative;
        float: left;
        width: 15%;
        background-color: Transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divTicketfondo .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 85%;
        padding-bottom: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divTicketfondo .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divTicketfondo .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
    }

    #divTicketfondo .divh1 {
        width: 100%;
        margin-bottom: 5px;
    }

.vinculobitacora {
    background-color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
}

.divticketfa {
    position: relative;
    overflow: auto;
    height: 420px;
}

.divticketf {
    position: relative;
    overflow: auto;
    height: 520px;
}

.divticketfA {
    position: relative;
    overflow: scroll;
    height: 630px;
}

.divh2 {
    float: left;
    padding: 5px;
}

.divh2 {
    float: left;
    padding: 10px;
}

.div2s {
    float: left;
    width: 25%;
    padding: 5px;
}

#divMiembroFondo {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: auto;
}

    #divMiembroFondo .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 30px; /*70px*/
        padding-top: 15px;
    }

    #divMiembroFondo .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 40px; /*70px*/
        padding-top: 15px;
    }

    #divMiembroFondo .fondo_esp3 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 176px; /*70px*/
        padding-top: 15px;
    }

    #divMiembroFondo .fondo_fndtest {
        position: relative;
        float: left;
        width: 20%;
        background-color: Transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divMiembroFondo .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 70%;
        padding-bottom: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divMiembroFondo .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divMiembroFondo .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
    }

#lOGIN_Administracion {
    float: left;
    width: 100%;
    background-color: White;
    color: #0033CC;
    height: auto;
}



    #lOGIN_Administracion .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 70%;
        padding-bottom: 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #lOGIN_Administracion .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #lOGIN_Administracion .fondo_fndtest {
        position: relative;
        padding: 8px;
        width: 22%;
        background-color: Transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #lOGIN_Administracion .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 70px; /*70px*/
        padding-top: 15px;
    }

    #lOGIN_Administracion .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 40px; /*70px*/
        padding-top: 15px;
    }

.labelongins {
    display: flex;
    align-items: center;
}

.botonInicioc {
    font-size: 12px;
    border: 1px Green; /*#1a8899*/ /*#68bb9c*/
    padding: 4px 7px 2px 4px;
    width: 250px;
    height: 30px;
    margin-top: 5px;
    margin-left: 1px;
    cursor: pointer;
    border-radius: 5px;
    background-color: Green; /*#1a8899*/ /*#68bb9c*/
    color: white;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; /*hace que el PADDING NO SE SUME AL TAMAÑO DEL DIV, SI NO QUE SE CONSIDERE DENTRO DEL TAMAÑO */
}

.divmarqueting {
    width: 100%;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
    background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
    height: 560px; /*70px*/
    padding-top: 5px;
}

.divmarqueting2 {
    width: 100%;
    position: relative;
    background-color: Transparent;
}


.renglon {
    position: relative;
    width: 100%;
    float: none;
    clear: both;
    border-top-color: White;
    border-top-style: solid;
    border-top-width: 1px;
    height: 50px;
}

.renglonDtl {
    position: relative;
    width: 100%;
    height: auto;
    float: none;
    clear: both;
    border-top-color: White;
    border-top-style: solid;
    border-top-width: 1px;
}

.columna1 {
    position: relative;
    float: left;
    border: 1px solid #000;
    vertical-align: middle;
    padding: 4px,7px 2px,4px;
    width: 5%
}

.columna2tablaservico {
    position: relative;
    float: left;
    background-color: #DCEAFB;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    padding-top: 15px;
    font-size: 12px;
    font-style: italic;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
}

.columna3tablaservios {
    position: relative;
    float: left;
    background-color: #DCDCDC;
    border-right-color: White;
    border-right-style: solid;
    border-right-width: 1px;
    padding-top: 7px;
    vertical-align: middle;
    font-size: 12px;
    font-style: italic;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.coontenedorprincipal {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, black, #dae5df);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.contenedorlogincomp {
    width: 1000px;
    height: auto;
    background: transparent;
    display: flex;
    justify-content: space-around;
    transition: all .5s ease-out;
}


.coontenedorprincipal2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.Bienvenidoslogin {
    display: flex;
    background: transparent;
    align-items: center;
    text-align: center;
}

#mensajeeslogins {
    padding: 16px;
    background: transparent;
}



.loginh2 {
    font-size: 1.7rem;
    padding: 1rem 0;
    background: transparent;
}

.loginh24 {
    font-size: 1.7rem;
    padding: 1rem 0;
    color: black;
    background: transparent;
}

#mensajeeslogins .button {
    padding: 1rem;
    font-weight: 400;
    background-color: #4a4aee;
    border-radius: 2rem;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: .9rem;
    margin-top: 2rem;
    transition: all .3s ease-in;
    color: #fff;
}

    #mensajeeslogins .button:hover {
        background-color: #6464f8;
    }

.crear_cuentalogih2 {
    padding: 2.7rem 0;
    font-size: 16px;
    background: transparent;
}

.sign-up {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.sign-in.active {
    opacity: 1;
    visibility: visible;
}

.sign-up.active {
    opacity: 0;
    visibility: hidden;
}


.span {
    font-size: 12px;
}

.formdiv {
    width: 400px;
    padding: 16px;
    margin: 25px;
    background: linear-gradient(45deg, #008000, #25d366);
}

#divresgistrologin {
    float: left;
    width: 100%;
    background-color: transparent;
    color: #0033CC;
    height: auto;
}


    #divresgistrologin .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 30px; /*70px*/
        padding-top: 15px;
    }

    #divresgistrologin .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 40px; /*70px*/
        padding-top: 15px;
    }

    #divresgistrologin .fondo_esp3 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 176px; /*70px*/
        padding-top: 15px;
    }

    #divresgistrologin .fondo_fndtest {
        position: relative;
        float: left;
        width: 15%;
        background-color: Transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divresgistrologin .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        padding-left: 50px;
        width: 85%;
        padding-bottom: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divresgistrologin .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divresgistrologin .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
    }

.botontransparente {
    background-color: transparent;
    border-color: #FFFFFF;
}

#lOGIN_Administracionlogin {
    float: left;
    width: 100%;
    color: #0033CC;
    height: auto;
}



    #lOGIN_Administracionlogin .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 70%;
        padding-bottom: 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #lOGIN_Administracionlogin .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #lOGIN_Administracionlogin .fondo_fndtest {
        position: relative;
        padding: 8px;
        width: 100%;
        background-color: Transparent;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #lOGIN_Administracionlogin .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        margin-bottom: 5px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 70px; /*70px*/
        padding-top: 15px;
    }

    #lOGIN_Administracionlogin .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 40px; /*70px*/
        padding-top: 15px;
    }

.etiquetasseparadores {
    padding-left: 144px;
    padding-right: 15px;
    background: linear-gradient(180deg, green, transparent);
    height: auto;
    min-height: 35px;
}

#sesioncompra1 {
    float: left;
    width: 100%;
    position: relative;
    background: linear-gradient(182deg,#008000, #7aa301);
    color: #0033CC;
    height: 60px;
}

    #sesioncompra1 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #sesioncompra1 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 12px;
        font-weight: bold;
    }

    #sesioncompra1 .fondo_esp1 {
        background-color: Transparent;
    }

#sesioncompra1_fondo2 {
    float: left;
    width: 100%;
    background: linear-gradient(182deg,#008000, #7aa301);
    color: #0033CC;
    height: 120px;
}

    #sesioncompra1_fondo2 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }

    #sesioncompra1_fondo2 .fondo_fnd2 {
        float: left;
        background-color: Transparent;
        text-align: center;
    }

    #sesioncompra1_fondo2 .fondo_esp1 {
        background-color: Transparent;
    }

    #sesioncompra1_fondo2 .fondo_menu {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 42px;
        font-weight: bold;
    }

    #sesioncompra1_fondo2 .fondo_menu2 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 20px;
        font-weight: bold;
    }

    #sesioncompra1_fondo2 .fondo_menu3 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 30px;
        font-weight: normal;
    }

    #sesioncompra1_fondo2 .fondo_menu4 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 20px;
        font-weight: normal;
    }

    #sesioncompra1_fondo2 .fondo_menu5 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 12px;
        font-weight: normal;
    }

    #sesioncompra1_fondo2 .fondo_menu6 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 16px;
        font-weight: normal;
    }

    #sesioncompra1_fondo2 .fondo_menu7 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: normal;
    }

    #sesioncompra1_fondo2 .fondo_menu7 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 14px;
        font-weight: BOLD;
    }

    #sesioncompra1_fondo2 .fondo_menu8 {
        font-family: Verdana, Arial, Helvetica, Sans-Serif;
        background-color: Transparent;
        margin: 0;
        padding: 0;
        color: White;
        font-size: 26px;
        font-weight: normal;
    }

.etiquetasseparadatos {
    height: 45px;
    padding-left: 144px;
    padding-right: 15px;
    background: linear-gradient(180deg, green, #1a410e);
}

#mseccion_fondo3 {
    float: left;
    width: 100%;
    overflow: auto;
    background-color: White;
    color: #0033CC;
    height: 460px; /*330px*/ /*410px*/ /*420px*/ /*430px*/ /*500px*/ /*Cambio_No.69: AINL 09-08-2023 */
}

.ldvpadremenu {
    width: 100%;
    height: 70px;
    position: relative;
}

.ldvpadremenuavances {
    width: 100%;
    height: 50px;
    position: relative;
}


.contenedormcompras {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 150px;
    max-width: 600px;
    margin: 0 auto;
}

.connh1 {
    font-size: 38px;
    color: #8B0000;
}

.conp {
    padding-top: 38px;
    font-size: 18px;
}

.divticketcontenedor {
    position: relative;
    overflow: auto;
    height: 630px;
}

.divticketcontenedor2 {
    height: 330px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Estilo del slider */
#slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    /* Estilo del punto dentro del switch */
    #slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

    #slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.4s; /* Agregamos una transición para la propiedad transform */
    }

input[type="checkbox"]:checked + #slider:before {
    transform: translateX(24px);
    background-color: #1b8696; /* Movemos el punto a la posición deseada cuando el checkbox está marcado */
}
/* Estilo cuando el switch está activado */

#bodyspiner {
    display: block;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
}

    #bodyspiner img {
        width: 50px;
        height: 50px;
        filter: hue-rotate(220deg);
    }


#divVentanaMensajes2 {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9;
}

    /*Cambio_No.29: AINL 18-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMensajes2 .vntMensaje {
        background-color: white;
        border-color: #1b8696; /*#c21118*/
        border-style: solid;
        border-width: 4px; /*3px*/
        color: gray;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        text-align: center; /**/
        font-size: 14px; /*14px*/
        font-weight: bold;
        height: 300px; /*400px*/
        position: fixed; /*fixed*/
        width: 620px; /*600px*/
        z-index: 9;
        float: left; /**/
    }

    #divVentanaMensajes2 .vntMensajeSombra {
        -ms-opacity: .5;
        background-color: gray;
        border-color: #bbb;
        border-style: solid;
        border-width: 2px;
        display: none;
        filter: alpha(opacity=50); /* Para IE8.0 */
        opacity: .5;
        position: absolute;
        z-index: 9;
    }

    /*Cambio_No.30: AINL 19-07-23*/
    #divVentanaMensajes2 .espacio6 {
        background-color: #1b8696; /*#c21118*/
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px; /*12px*/
        height: 25px;
        padding: 0 5px 0 10px;
        width: 605px; /*585px*/
    }

    #divVentanaMensajes2 .vnttitulo {
        background-color: transparent;
        clear: none;
        float: left;
        height: 25px;
        width: 580px; /*540px*/
    }

    /*Cambio_No.30: AINL 19-07-23*/
    /*Actualizacion_No.05: AINL 21-07-23*/
    #divVentanaMensajes2 .textotitulo {
        background-color: transparent;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px; /*14px*/ /*24px*/ /*20px*/
        color: white;
        text-align: center; /**/
    }

    #divVentanaMensajes2 .espacio7F {
        font-size: 14px; /*14px*/
        background-color: transparent;
        clear: both;
        float: none;
        height: 50px; /*40px*/
        margin: 20px 5px 20px 20px;
        padding: 80px 0 0 0; /*0 0 0 0*/
        width: 580px; /*600px*/
        text-align: center; /**/
    }

    #divVentanaMensajes2 .fondo_esp1 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 60px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMensajes2 .fondo_esp2 {
        width: 100%;
        position: relative;
        margin-top: 1px;
        background-color: Transparent; /*Cambio_No.48: AINL 02-08-23 */
        height: 165px; /*70px*/
        padding-top: 5px;
    }

    #divVentanaMensajes2 .fondo_fndtest {
        position: relative;
        float: left;
        width: 32%;
        height: auto;
        background-color: Transparent;
        padding: 10px 10px 10px 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


    #divVentanaMensajes2 .fondo_fndtest2 {
        position: relative;
        float: left;
        background-color: Transparent;
        width: 68%;
        height: auto;
        padding: 2px 0 0 0; /*20px 0 0 0*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #divVentanaMensajes2 .fondo_fnd1 {
        float: left;
        background-color: Transparent;
    }



    #divVentanaMensajes2 .fondo_leyenda {
        float: none;
        text-align: left;
        clear: both;
    }
