/* @override 
	http://localhost/widetech(plana)/css/style.css */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,200,700);


:root {
    --main: #0A4F10; /*Orange*/
    --mainDark1: #8CC63F; /*Orange*/
    --mainDark2: #000; /*Black*/
    --mainLight: #ffffff; /*white*/
    --secLight: #c8c8c8; /*light gray*/

    --mainGray: #242627;
    --dark: #616466; /*Gray*/
    --dark1: rgba(19,53,59,.04);
    --dark5: rgba(19,53,59,.3);
    --dark7: rgba(19,53,59,.7);
    --main5: rgba(68,68,69,.5);
    --light5: rgba(255,255,255,.5);
    --light7: rgba(255,255,255,.7);
    --light9: rgba(255,255,255,.9);
    --sec: #f2f2f2;

    --fontH: 'Roboto', sans-serif; /* Font Headings*/
    --fontP: 'Roboto', sans-serif; /* Font paragraphs*/
    --bold: 700;
    --normal: 400;
    --light: 200;

    --footerBg: transparent;

    --inputBg: #242627; /* light blue */
    --inputBorder: 1px solid var(--borderGen);
    --inputBorderHover: 1px solid var(--mainGray);
    --inputText: #616466;
    --link1: #cccccc; /* gray */
    --link2: #fff;
    --borderGen: #525152;
    --error: #e57373;
    --focus: #f6f6f6;
    --disabled: #ccc;
    --shadow: 1px 1px 2px rgba(0,0,0,.3);
    --ratio: 10px;

    --inicio-bg: url(../img_julio/inicio-bg.png) no-repeat bottom center var(--mainLight);
    --inicio-img: url(../img_julio/inicio-img.png) 5vw 60vh no-repeat;
    --login-bg: url(../img_julio/login-bg.png) no-repeat;
    --dashboard-header: url(../img_julio/dashboard-header.png) repeat-x;
    --dashboard-bg: url(../img_julio/dashboard-bg.jpg) var(--mainDark2);
    --dashboard-bg-mobile: url(../img_julio/dashboard-bg-mobile.jpg) var(--mainDark2);
    
    --menuLat-bg: url(../img_julio/interna-menu-bg.jpg) var(--mainDark1) no-repeat left bottom;
}
/* @group Reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}



article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

    nav ul {
        list-style: none;
    }

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}


/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

ol, ul, li {
    list-style: none;
}
/* @end */

/* @group GENERAL */

html {
    font: 300 normal 16px var(--fontP);
}

body {
    display: block;
}

section {
    text-align: center;
}

.Gnl {
    background: var(--inicio-img);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

footer {
    text-align: center;
    font-size: 0.8em;
}

    footer a {
        text-decoration: underline;
        display: inline-block;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 2px;
    }

        footer a:hover {
        }

    footer h3 {
        margin-bottom: 10px;
        color: var(--link1);
    }
/* @end */

/* @group inicio */

/* @group header */
#inicio header {
    background: url(../img_julio/inicio-logo.png) no-repeat;
    background-size: 160px;
    min-height: 80px;
    text-align: center;
    margin: 20px 20px 0px 20px;
}

.menuIdioma {
    display: inline-block;
    position: absolute;
    right: 2%;
    top: 20px;
}

    .menuIdioma nav > ul {
    }

    .menuIdioma nav ul li a {
        display: block;
        padding: 15px;
        background-color: var(--dark5);
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
        text-decoration: none;
        z-index: 2;
        -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.53);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.53);
        opacity: 1;
        font-weight: bold;
        color: var(--mainLight);
    }

    .menuIdioma nav ul li ul li {
        opacity: 0;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        margin-top: -45px;
        z-index: 1;
        padding: 5px;
    }

        .menuIdioma nav ul li ul li a {
            background-color: var(--dark5);
            color: var(--mainLight);
            padding: 10px 5px;
        }

            .menuIdioma nav ul li ul li a:hover {
                background-color: var(--dark5);
                color: var(--mainLight);
            }

    .menuIdioma nav ul li:hover ul li {
        opacity: 1;
        position: relative;
        top: auto;
        z-index: 1;
        margin-top: 5px;
        margin-bottom: 5px;
    }
/* @end */

#inicio {
    background: var(--inicio-bg);
    height: 100vh;
    width: 100vh;
    background-size: cover;
    background-position: center center;
}

    /* @group section */
    #inicio section {
    float: right;
        margin-right: 3%;
        text-align: center; 
        background: #fffffff0;
        border-radius: var(--ratio);
        padding: 30px 50px;
        box-shadow: none;
        width: 250px; 
    }
}

    #inicio section h1 {
        font-size: 24px;
        color: var(--mainDark1);
        margin-bottom: 20px;
        display: block;
        font-family: var(--fontH);
        font-weight: var(--bold);
        text-shadow: none;
        margin-top: 20px;
        text-transform: uppercase;
    }

        #inicio section h1 strong {
            color: var(--mainDark1);
            text-transform: uppercase;
        }

    #inicio section form {
        display: block;
    }

        #inicio section form ul {
            display: inline-block;
        }

        #inicio section form input {
            font-family: var(--fontP);
            width: 100%; /*  */
            height: 42px;
            font-size: 1em;
            color: var(--mainDark2);
            display: inline-block; /*  */
            box-sizing: border-box;
        }

            #inicio section form input#TxtUser {
                background: none;
                padding-left: 20px;
                border: 1px solid var(--mainDark2);
                margin: auto;
                margin-top: 20px;
                margin-bottom: 10px;                
                border-radius: var(--ratio);
            }

            #inicio section form input#TxtPass {
                background: none;
                padding-left: 20px;
                border: 1px solid var(--mainDark2);
                margin: auto;
                margin-bottom: 10px;
                border-radius: var(--ratio);
            }

            #inicio section form input[Type="submit"] {
                color: var(--mainLight);
                font-weight: var(--bold);
                background: var(--main);
                
                margin: auto;
                padding-right: 25px;
                padding-left: 25px;
                height: 42px;
                border-radius: var(--ratio);
                box-sizing: border-box;
                width: 100%;
                border: 1px solid var(--mainLight);
            }

            #inicio section form input[Type="submit"]:hover {
                background: var(--mainDark1);
                border: 1px solid var(--main);
            }

        #inicio section form .recordar {
            color: var(--mainDark2);
            margin: 15px auto;
            text-align: left;
        }

        #inicio section form input[Type="checkbox"] {
            width: auto;
            margin-right: 5px;
            display: inline-block;
            margin-top: 0;
        }

        #inicio section form label {
            color: var(--mainDark2);
            font-size: 0.9em;
            font-family: var(--fontP);
        }

    #inicio .fecha {
        display: block;
        font-size: 1.1em;
        height: auto;
        padding-bottom: 30px;
        color: var(--mainDark1);
    }

        #inicio .fecha h1 {
            font-family: var(--fontH);
            font-size: 60px;
            font-weight: bold;
            margin-bottom: -15px;
            color: var(--mainDark1);
            margin-top: 0;
        }

        #inicio .fecha h3 {
            font-weight: bold;
            display: inline-block;
            font-family: var(--fontH);
            text-shadow: none;
            text-transform: lowercase;
        }

    #inicio footer {
        position: fixed;
        bottom: 0;
        display: block;
        left: 0;
        right: 0;
        font-family: var(--fontP);
    }

        #inicio footer a, #inicio footer h3 {
            color: var(--link1);
            text-shadow: var(--shadow);
        }
/* @end */

/* @end */
/* @group dashboard */
#dashboard {
    background: var(--dashboard-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 100vh;
}

    #dashboard .Gnl {
    }

    #dashboard header {
        /*background: var(--main5);
        border-bottom: 3px solid var(--borderGen);*/
        padding-bottom: 20px;
    }

    #dashboard section {
        margin-top: 8%;
        margin-bottom: 8%;
    }

    #dashboard .titulo {
        color: var(--mainDark2);
        display: inline-block;
        width: 60%;
        text-align: right;
        float: right;
        height: 100%;
        line-height: 70px;
        padding-right: 20px;
        text-shadow: var(--shadow);
    }

.titulo h1 {
    font-size: 25px;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle !important;
    line-height: 30px;
    font-family: var(--fontH);
    text-transform: capitalize;
}

#dashboard .titulo strong {
    text-transform: uppercase;
}

.logoDashboard {
    width: 230px;
    background: url(../img_julio/dashboard-logo.png) 15% center no-repeat;
    background-size: 150px;
    height: 55px;
    display: block;
    float: left;
    margin: 2px 10px;
}

.logoInterna {
    width: 230px;
    background: url(../img_julio/logo-interna.png) 15% center no-repeat;
    background-size: 150px;
    height: 55px;
    display: block;
    float: left;
    margin: 2px 10px;
}


header .login {
    display: block;
    padding-top: 80px;
    padding-right: 0;
    text-align: right;
    position: static;
    padding-left: 0;
    background: none;
    background-size: 100%;
}

.login .closeX {
    display: inline-block;
    width: 40px;
    margin-right: 20px;
}

    .login .closeX a {
        display: block;
        height: 40px;
        background: url(../img_julio/dashboard-salir-ico.svg) center center no-repeat;
    }

        

.login .user {
    display: inline-block;
    font-size: 14px;
    padding-right: 15px;
    line-height: normal;
    color: var(--mainDark2);
}

    .login .user .fecha {
        font-size: 0.9em;
        color: var(--mainDark2);
    }

nav.lateral {
    float: left;
    position: absolute;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    left: -135px;
    top: 20%;
}

    nav.lateral:hover {
        left: 0px;
    }

    nav.lateral li {
        min-width: 180px;
        vertical-align: middle;
        margin-top: 3px;
    }

    nav.lateral a {
        display: block;
        text-decoration: none;
        color: var(--mainDark2);
        max-width: 120px;
        font-size: 14px;
        text-align: right;
        line-height: 2.5;
        font-weight: bold;
        padding: 15px 50px 15px 15px;
        background-color: var(--mainLight);
        min-height: 35px;
        vertical-align: middle;
        height: 35px;
    }

        nav.lateral a:hover {
            color: var(--mainDark1);
        }

    nav.lateral ul.nivel2 li a {
        display: none;
    }

    nav.lateral li:hover ul.nivel2 li a {
        display: block;
    }


    nav.lateral a#lat {
        background: url(../img_julio/dashboard-ico-lat.svg) 95% no-repeat;
        background-size: 30px;
        background-color: var(--secLight);
        border-radius: 0 10px 0 0;
    }

    nav.lateral a#fechas {
        background: url(../img_julio/dashboard-ico-fechas.svg) 95% no-repeat;
        background-size: 30px;
        background-color: var(--secLight);

    }

    nav.lateral a#_aCMD {
        background: url(../img_julio/dashboard-ico-backoffice.svg) 95% no-repeat;
        background-size: 35px;
        background-color: var(--secLight);
        border-radius: 0 0 10px 0;
    }

    nav.lateral a#lat:hover {
        background: url(../img_julio/dashboard-ico-lat.svg) 95% no-repeat;
        background-size: 35px;
        background-color: var(--mainLight);
    }

    nav.lateral a#fechas:hover {
        background: url(../img_julio/dashboard-ico-fechas.svg) 95% no-repeat;
        background-size: 35px;
        background-color: var(--mainLight);
    }

    nav.lateral a#_aCMD:hover {
        background: url(../img_julio/dashboard-ico-backoffice.svg) 95% no-repeat;
        background-size: 35px;
        background-color: var(--mainLight);
    }

#dashboard footer {
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    text-align: center;
    padding: 0 15px 0 0;
    font-size: .7em;
    background: var(--dark5);
}

    #dashboard footer a, #dashboard footer p, #dashboard footer h3, #dashboard footer p a {
        color: var(--mainLight);
    }

#dashboard article {
    display: inline-block;
    vertical-align: middle;
}

    #dashboard article ul {
        min-height: 250px;
        vertical-align: middle;
        display: inline-block;
    }

        #dashboard article ul li {
            display: inline-block;
        }

            #dashboard article ul li a {
                width: 170px;
                text-decoration: none;
                color: var(--mainDark2);
                padding-top: 150px;
                margin: 10px 0px;
                display: block;
                font-weight: normal;
                font-family: font-family: var(--fontH);
                font-size: 1em;
                
            }

                #dashboard article ul li a label {
                    border-radius: var(--ratio);
                    padding: 5px 10px;
                }


            #dashboard article ul li a.imgHelp {
                background: url(../img_julio/dashboard-ico-ayuda.png) center no-repeat;
                background-size: 100px;
            }

            #dashboard article ul li a.imgDispositivos {
                background: url(../img_julio/dashboard-ico-dispositivos.png) center no-repeat;
                background-size: 100px;
            }

            #dashboard article ul li a.imgReportes {
                background: url(../img_julio/dashboard-ico-reportes.png) center no-repeat;
                background-size: 100px;
            }

            #dashboard article ul li a.imgHistory {
                background: url(../img_julio/dashboard-ico-historico.png) center no-repeat;
                background-size: 100px;
            }

            #dashboard article ul li a.imgCursos{
                background: url(../img_julio/dashboard-ico-cursos.png) center no-repeat ;
                background-size: 100px;
            }
            #dashboard article ul li a.imgMisapps{
                background: url(../img_julio/dashboard-ico-misapps.png) center no-repeat ;
                background-size: 100px;
            }

            #dashboard article ul li a.imgHelp:hover {
                background: url(../img_julio/dashboard-ico-ayuda_f2.png) center no-repeat;
                background-size: 90px;
            }

            #dashboard article ul li a.imgDispositivos:hover {
                background: url(../img_julio/dashboard-ico-dispositivos_f2.png) center no-repeat;
                background-size: 90px;
            }

            #dashboard article ul li a.imgReportes:hover {
                background: url(../img_julio/dashboard-ico-reportes_f2.png) center no-repeat;
                background-size: 90px;
            }

            #dashboard article ul li a.imgHistory:hover {
                background: url(../img_julio/dashboard-ico-historico_f2.png) center no-repeat;
                background-size: 90px;
            }

            #dashboard article ul li a.imgCursos:hover{
                background: url(../img_julio/dashboard-ico-cursos_f2.png) center no-repeat ;
                background-size: 90px;
            }
            #dashboard article ul li a.imgMisapps:hover{
                background: url(../img_julio/dashboard-ico-misapps_f2.png) center no-repeat ;
                background-size: 90px;
            }

#dashboard footer a {
    color: var(--Link1);
}

.espacio {
    height: 20px;
}

span#lblFecha {
    display: none;
}
/* @end */
@media screen and (max-height: 360px) {
    #inicio footer, #dashboard footer {
        display: none;
    }

}

@media (min-width: 1700px) {
      #bodyFinal .menuLat {
    background-size: cover !important;
    }
}



@media screen and (max-width: 460px) {
    #inicio footer, #dashboard footer {
        display: contents;
    }

    #inicio section {
        float: none;
        margin: auto;
    }
}


@media screen and (max-width: 660px) {
    #inicio header {
        min-height: 85px;
        text-align: center;
        background-size: contain;
    }

    #inicio {
        background: var(--inicio-bg);
    }

    #inicio header {
      background: url(../img_julio/inicio-logo.png) no-repeat;
      min-height: 200px;
      text-align: center;
      background-size: contain;
    }

    .Gnl {
        background: none;
    }


    #inicio div.Gnl section h1 {
        text-align: center;
    }

    #inicio section form {
        text-align: center;
    }

        #inicio section form input {
            margin-top: 10px;
            margin-left: 10px;
        }

            #inicio section form input[Type="submit"] {
                padding-right: 25px;
                padding-left: 25px;
                height: 50px;
            }

        #inicio section form .recordar {
            text-align: center;
            padding-top: 15px;
            color: var(--mainDark2);
        }

        #inicio section form input[Type="checkbox"] {
            width: auto;
            margin-right: 5px;
            margin-bottom: 0;
            height: auto;
            margin-top: 0;
        }

        #inicio section form label {
            color: var(--mainDark1);
            font-size: 0.9em;
        }

    #inicio section .fecha {
        display: block;
        font-size: 1.2em;
        height: auto;
        padding-bottom: 30px;
    }

        #inicio section .fecha h1 {
            font-size: 50px !important;
            margin-top: 4%;
            margin-bottom: -15px;
            font-weight: bold;
            text-align: center;
            padding: 0;
        }

        #inicio section .fecha h3 {
            font-weight: bold;
            display: block;
            font-size: 0.7em;
            padding-top: 5px;
        }

    #dashboard .titulo {
        padding-right: 10px;
        display: none;
    }

    .titulo h1 {
        line-height: 22px;
        padding-top: 15px;
    }

    .logoInterna {
        content: "";
        height: 75px;
        display: block;
        margin-left: 10px;
        float: left;
        /*width: 140px;*/
    }

    #dashboard {
        background: var(--dashboard-bg-mobile);
    }

        #dashboard section {
            margin-top: 10%;
            margin-bottom: 10%;
        }

        #dashboard article ul li a {
            width: 160px;
            text-decoration: none;
            padding-top: 160px;
            margin-top: 20px;
            display: block;
        }

        #dashboard footer h3, #dashboard footer p, #dashboard footer p a {
            color: var(--link1);
        }
}

@media screen and (min-width: 1450px) {
    #dashboard article ul li a.imgDispositivos, #dashboard article ul li a.imgReportes,#dashboard article ul li a.imgHistory,
    #dashboard article ul li a.imgHelp, #dashboard article ul li a.imgCursos, #dashboard article ul li a.imgMisapps{
        background-size: 140px;
    }

    #dashboard article ul li a {
        width: 200px;
    }
}


/* @group interna */
#bodyFinal header {
     background: url(../img_julio/interna-bg.jpg) right;
    background-size: 100%;
    min-height: 60px;
}

#bodyFinal .menu {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    height: 10%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 14px;
}

#bodyFinal .menuIco {
    width: 40px;
    height: 50px;
    background: url(../img_julio/interna-menu-ico.svg) center center no-repeat;
    background-size: 30px;
}

#bodyFinal .menuLat {
    height: 100vh;
    width: 220px;
    display: block;
    background: var(--menuLat-bg);
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -220px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    color: var(--mainLight);
}

.menu a {
    color: var(--mainDark2);
    text-decoration: none;
    padding: 5px 15px;
    display: block;
}

#bodyFinal .menu:hover, #bodyFinal .menu:hover .menuLat {
    padding-right: 220px;
    z-index: 10000;
}

.menuLat a {
    display: inline-block;
    padding: 10px 20px 10px 30px;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    background-size: 15px;
}


.menuLat .salir {
    display: block;
    padding: 20px 50px 20px 10px;
    text-align: right;
    background: url(../img_julio/interna-salir-ico.svg) right no-repeat;
    background-size: 30px;
}

    .menuLat .salir:hover {
        display: block;
    padding: 20px 50px 20px 10px;
    text-align: right;
    background: url(../img_julio/interna-salir-ico.svg) right no-repeat;
    background-size: 30px;
        text-decoration: underline;
    }

    .menuLat .salir strong {
        display: block;
    }

#bodyFinal div.Gnl footer {
    display: none;
}

.menuSub a {
    border-style: none;
    padding: 5px;
    margin-left: 45px;
    margin-top: 8px;
    margin-bottom: 5px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.menuLat a.inicio {
    background: url(../img_julio/interna-home-ico.svg) 10px center no-repeat;
    background-size: 12px;

}

.menuLat a.dispositivos {
    background: url(../img_julio/interna-dispositivos-ico.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.fechas {
    background: url(../img_julio/interna-fechas-ico.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.historicos {
    background: url(../img_julio/interna-historico-ico.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.administracion {
    background: url(../img_julio/interna-admin-ico.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.ayuda {
    background: url(../img_julio/interna-ayuda-ico.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.inicio:hover, .menuLat a.dispositivos:hover, .menuLat a.inicio:hover, .menuLat a.fechas:hover, .menuLat a.historicos:hover, .menuLat a.administracion:hover, .menuLat a.ayuda:hover, .menuSub a:hover {
    text-decoration: underline;
}

#dashboard .Container section .contenido article ul li a#videowall img{
    background: url(../img/dashboard-videowall-ico.svg) center top no-repeat;
    background-size: contain;
}


/*hover*/

.menuLat a.inicio:hover {
    background: url(../img_julio/interna-home-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.dispositivos:hover {
    background: url(../img_julio/interna-dispositivos-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.fechas:hover {
    background: url(../img_julio/interna-fechas-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.historicos:hover {
    background: url(../img_julio/interna-historico-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.administracion:hover {
    background: url(../img_julio/interna-admin-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

.menuLat a.ayuda:hover {
    background: url(../img_julio/interna-ayuda-ico_f2.svg) 10px center no-repeat;
    background-size: 12px;
}

#dashboard .Container section .contenido article ul li a#videowall img:hover{
    background: url(../img/dashboard-videowall-ico_f2.svg) center top no-repeat;
    background-size: 90%;
}


#bodyFinal {
    font: 300 normal 11px 'Roboto', Arial, Helvetica, Geneva, sans-serif !important;
}

    #bodyFinal .barra2 {
        font-family: var(--fontP);
        background-color: #bee5c2;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        line-height: normal;
        padding: 5px 4%;
    }

        #bodyFinal .barra2 h3 {
            font-weight: 600;
            font-style: normal;
            display: inline-block;
        }

        #bodyFinal .barra2 form {
            margin: 0;
            padding: 0;
        }

        #bodyFinal .barra2 input {
            border: var(--borderGen);
        }

        #bodyFinal .barra2 a {
            color: var(--dark);
            text-decoration: underline;
        }

            #bodyFinal .barra2 a:hover {
            }
/* @end */

input[type="text"], input[type="password"], textarea, .campo {
    font-size: 11px;
    color: #3b3b3b;
    border: var(--inputBorder);
}



select {
    font-size: 11px;
    color: var(--dark);
    border: var(--inputBorder);
}

.select {
    font-size: 11px;
    color: var(--dark);
    border: var(--inputBorder);
}

.in-pagebar {
    display: block;
    font-size: 11px;
    font-weight: normal;
    text-align: left;
    float: left;
    width: 100%;
    padding: 5px;
    background-color: var(--secLight);
}

    .in-pagebar span#pagetitle {
        color: var(--dark);
        display: block;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
        font-weight: bold;
        float: left;
        text-align: left;
        padding-left: 20px;
        text-indent: 0px;
        padding-top: 10px;
        padding-right: 20px;
        width: auto;
    }

    .in-pagebar div#pagetools {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: normal;
        text-align: left;
        text-indent: 0px;
        padding-top: 4px;
        padding-left: 12px;
        float: left;
        display: block;
        width: auto;
    }

        .in-pagebar div#pagetools td {
            font-weight: normal;
            padding-left: 4px;
            padding-right: 2px;
        }

        .in-pagebar div#pagetools label {
            color: var(--dark);
            font-weight: bold;
        }

.line {
    width: 92%;
    color: var(--error);
}

.CajaTitle {
    background-image: url(../img_julio/bg_dark.gif);
    background-repeat: repeat;
    background-color: var(--mainDark1);
}

.bubbles span {
    background: var(--main);
    !important;
}

.videoBg {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.containerDashboardHST_title{
    background-color: var(--main) !important;
}


/*COMIENZO DIRECTORIO ACTIVO*/

.MicrosoftButton {
    display: inline-flex;
    align-items: center;
    cursor: pointer; /* Cambia el cursor al pasar el ratón */
    background: #F2F2F2 0% 0% no-repeat padding-box !important;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 8px !important;
    opacity: 1;
}

.MicrosoftServerButton {
    display: none !important;
}

.MicrosoftImg {
    width: 20px;
    height: auto;
    margin-right: 5px;
    margin-left: 10px;
}
.LoginSeparator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0; /* Espaciado superior e inferior */
}

.LoginLine {
    flex-grow: 1;
    height: 1px; /* Grosor de la línea */
    background-color: #000; /* Color de la línea */
}

.LoginCircle {
    margin: 0 10px; /* Espaciado a los lados de la O */
    font-size: 24px; /* Tamaño de la O */
}

.LoginMicrosoftText {
    font: normal normal normal 16px/19px Roboto;
    letter-spacing: 0px;
    color: #050505;
    padding:5px;
    margin:5px;
}

.ActiveDirectory{
    margin-bottom:5px;
}

/*FINAL DIRECTORIO ACTIVO*/
