
	#root.aj::after{
		content:"";
		position:absolute;
		top:0;
		left:0;
		display:block;
		width:0%;
        height: 3px;
        border-radius: 2px;
        box-shadow: 4px 0px 14px 0px rgb(93, 201, 206);
		background:rgb(12,123,125);
		background:linear-gradient(180deg, rgba(12,123,125,1) 0%, rgba(26,185,154,1) 100%);
		transition: all ease-in-out 0.3s;
		z-index: 500;
		animation:rootaj ease-in-out 1s infinite;
	}
	@keyframes rootaj{
		0%{left:0%;width:0%;}
		25%{width:50%;}
		100%{left:100%;width:0%;}
	}
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
        /*background: green;*/
        border-radius: 6px;
    }
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        /*background: rgba(25, 184, 155, 0.44); */
        background: #676767;
        border-radius: 4px;
        transition: all ease-in-out 0.3s;
    }
    body.oscuro ::-webkit-scrollbar-thumb {
        background: #353434;
    }
    ::-webkit-scrollbar-thumb:hover {
        opacity: 0.8;
    }
    
    a{
        color: #FFF;
        text-decoration: none;
        /*-webkit-tap-highlight-color: transparent; */
    }
    div,p,h1,h2,h3,h4,h5,span{
        cursor: default;
    }
    a * {
        cursor: pointer;
    }


    /* LOGIN */
    #root.vlogin{
        overflow-y: auto;
    }
    #login{
        position: relative;
        top: 260px;
        left: 10vw;
        width: 80vw;
        text-align: center;
    }

	.vlogin #login{
		display:block;
        animation: entradaLogin ease-in-out 0.7s;
    }
    @keyframes entradaLogin {
        0% {
            top: 360px;
            opacity: 0;
        }
        100%{
            top: 260px;
            opacity: 1;
        }
    }

    #login>div{
        overflow: hidden;
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 320px;
        min-height: 210px;
        text-align: left;
    }
    #login .identificacion,
    #login .autenticacion{
        position: absolute;
        top: 0;
        left: 0%;
        width: 100%;
        height: 250px;
        opacity: 1;
        transition: all ease-in-out 0.3s;
    }
    #login .autenticacion{
        left: 100%;
        opacity: 0;
    }
    #login.autenticar .identificacion{
        left: -100%;
        opacity: 0;
    }
    #login.autenticar .autenticacion{
        left: 0%;
        opacity: 1;
    }

    #login form{
        text-align: right;
    }
    #login label{
        left: 10px;
        text-transform: uppercase;
    }
    #login .autenticacion input[type="text"]{
        display: none;
    }
    #login input[type="submit"].btn{
        width: auto;
        height: auto;
        margin-right: 3px;
    }
    #login h3{
        font-size: 16px;
        line-height: 17px;
        color: #535353;
        margin: 0 0 3px 10px;
        text-align: left;
    }
    #login h4{
        color: #535353;
        font-size: 14px;
        line-height: 15px;
        margin: 0 0 23px 10px;
        text-align: left;
    }
    body.oscuro #login h3,
    body.oscuro #login h4{
        color: #c5c5c5;
    }
    #login form a{
        float: left;
        display: block;
        font-size: 13px;
        line-height: 35px;
        text-transform: uppercase;
        color: #535353;
        padding: 0 10px;
    }
    body.oscuro #login form a{
        color: #bdbdbd;
    }

    #root.aj #login form a{
        display: none;
    }






    /* Aplicación */
    #root.vapp .logo{
        top: 13px;
        left: 7%;
        width: 83px;
        margin: 0 0 0 0px;
    }
    #root.vapp>header{
        position: relative;
        z-index: 150;
    }
    #root.vapp>header h2{
        top: 22px;
        right: 7%;
        padding: 0;
        text-align: right;
    }
    #root.vapp>header h2>span{
        right: 0;
    }
    #root.vapp>header h2>span:last-of-type{
        top: 18px;
    }
    
	#root.vapp>header h2>span:last-of-type::before{
        opacity: 0;
	}

    #app{
        position:absolute;
        top:113px;
        left:0;
        bottom:0;
        right:0;
        text-align: center;
        display:none;
        /*overflow-y: auto;
        overflow-x: hidden;*/
        background-color: #dcdcdc;
        background: linear-gradient(25deg, #e6e6e6 46%, #dcdcdc 100%);
        z-index: 100;
    }
    body.oscuro #app{
        background-color: #202020;
        background: linear-gradient(25deg, #151515 46%, #2b2b2b 100%);
    }
    .vapp #app{
        display:block;
        animation: entradaApp ease-in-out 0.7s;
    }
    @keyframes entradaApp {
        0% {
            top: 100vw;
            opacity: 0;
        }
        100%{
            top: 117px;
            opacity: 1;
        }
    }
    #app>header{
        position: fixed;
        top: 69px;
        left: 0;
        width: 100vw;
        padding: 10px 5%;
        box-sizing: border-box;
        text-align: left;
        z-index: 15;
    }
    #app>header{
        position: fixed;
        top: 69px;
        left: 0;
        width: 100vw;
        padding: 10px 0;
        box-sizing: border-box;
        text-align: left;
        z-index: 150;
    }
    #app img#imgarco{
        position: fixed;
        top: 111px;
        left: 0;
        z-index: 75;
        width: 100% !important;
        height: 26px;
        animation: entradaTopeApp ease-in-out 0.7s;
    }
    
    body.oscuro #app img#imgarco{
        filter: invert(1);
    }
    
    @keyframes entradaTopeApp {
        0% {
            left: -100vw;
            top: calc(100vw - 74px);
            width: 300vw;
            height: 120px;
        }
        100%{
            left: 0;
            top: 111px;
            width: 100vw;
            height: 26px;
        }
    }
    #app>header .masopciones{
        position: absolute;
        right: 5px;
        top: 9px;
        width: 30px;
        height: 40px;
        background:#d2d2d2 url(/imagenes/puntitos.svg) center center no-repeat;
        background-size: 3px;
        cursor: pointer;
        z-index: 50;
    }
    body.oscuro #app>header .masopciones{
        background-color: #d1d1d2;
        filter: invert(1);
    }
    #app>.cont{
        width: 100%;
        height: 100%;
        padding-top: 25px;
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #app .funciones_especiales{
        display: none;
        margin-top: 25px;
    }
    #app .funciones_especiales.on{
        display: block;
    }
    #app nav>ul{
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #app nav>ul>li{
        margin-bottom: 10px;
    }
    
    #app .mesaparticular{
        display: inline-block;
        width: 180px;
        padding: 12px 20px;
        background-color: gray;
        background: linear-gradient(32deg, gray 46%, rgb(167, 167, 167) 100%);
        border-radius: 10px;
        margin-top: 25px;
        box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    }
    body.oscuro #app .mesaparticular{
        background-color: #484848;
        background: linear-gradient(32deg, #484848 46%, rgb(117, 117, 117) 100%);
    }
    #app .mesaparticular label{
        color: #ffffff;
    }
    body.oscuro #app .mesaparticular label{
        color: #d4d4d4;
    }
    #app .mesaparticular input{
        margin: 9px 0;
    }
    #app>.cont>section, #app>.cont>section.locales>article>*{
        position: relative;
        width: 100%;
        padding: 10px 5%;
        box-sizing: border-box;
        /*text-align: left;*/
        z-index: 10;
        animation: entradaSecciones ease-in-out 1.3s;
    }
    #app>.cont>section.locales>article{
        text-align: left;
    }
    @keyframes entradaSecciones {
        0% {
            padding-top: 45px;
        }
        100%{
            padding-top: 10px;
        }
    }
    #app>header h1{
        position: relative;
        color: #884d7b;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        padding: 0 5%;
        animation: entradaSaludo ease-in-out 1s;
    }
    body.oscuro #app>header h1{
        color:#e0a3d3;
    }
    @keyframes entradaSaludo {
        0% {
            opacity: 0;
            top: 35px;
        }
        100%{
            opacity: 1;
            top: 0px;
        }
    }
    #app label{
        color:#888888;
        font-weight: 400;
    }
    body.oscuro #app label{
        color:#d4d4d4;
    }
    #app .locales{
        padding: 35px 0 10px;
        animation: entradaInterior ease-in-out 1.1s;
    }
    @keyframes entradaInterior {
        0% {
            padding-top: 135px;
        }
        100%{
            padding-top: 35px;
        }
    }
    #app .locales h2{
        color:#f76681;
        margin: 7px 0 1px;
        font-size: 18px;
        line-height: 20px
    }
    #app .locales address{
        color:#7294a2;
        font-size: 16px;
        line-height: 16px;
        margin-top: 5px;
        font-style: normal;
    }

    #app .mesas{
        text-align: center;
    }
    #app .mesas ul{
        list-style: none;
        margin: 10px 0 0;
        padding: 0;
        font-size: 0;
        /*text-align: center;*/
    }
    #app .mesas li{
        position: relative;
        display: inline-block;
        width: 83px;
        background-color: gray;
        background: linear-gradient(32deg, gray 46%, rgb(167, 167, 167) 100%);
        border-radius: 22px;
        overflow: hidden;
        margin: 7px 5px;
        box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
        color: rgba(255, 255, 255, 0.85);
        font-size: 18px;
        line-height: 18px;
        font-weight: 600;
        letter-spacing: 0.07em;
        padding: 13px 0 65px;
        border-radius: 6px;
        cursor: pointer;
        transition: all ease-in-out 0.3s;
    }
    body.oscuro #app .mesas li:not(.listo):not(.pendiente){
        background-color: #484848;
        background: linear-gradient(32deg, #484848 46%, rgb(117, 117, 117) 100%);
    }
    #app .mesas li:hover{
        transform: scale(1.08);
    }
    #app .mesas li::before{
        content: " ";
        background: url(/imagenes/urna.svg) center 38px no-repeat;
        background-size: 23px;
        opacity: 0.3;
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
    }
    #app .mesas li::after{
        content: "Sin cargar";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        font-size: 10px;
        line-height: 20px;
        letter-spacing: 0.03em;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        background-color: rgba(255, 255, 255, 0.1);
    }
    #app .mesas li.listo{
        background-color: #2db561;
        background: linear-gradient(32deg, rgba(45,181,97,1) 46%, rgb(9, 220, 90) 100%);
    }
    #app .mesas li.listo::before{
        content: " ";
        background: url(/imagenes/check.svg) center 33px no-repeat;
        background-size: 23px;
    }
    #app .mesas li.listo::after{
        content: "Cargada";
    }
    #app .mesas li.pendiente{
        background-color: #ff804e;
        background: linear-gradient(32deg, #ff804e 46%, #ff976e 100%);
    }
    #app .mesas li.pendiente::before{
        content: " ";
        background: url(/imagenes/pendiente.svg) center 38px no-repeat;
        background-size: 23px;
    }
    #app .mesas li.pendiente::after{
        content: "Pendiente";
    }

    #app .msj_off{
        display: none;
        width: 80%;
        max-width: 800px;
        box-sizing: border-box;
        margin: 45px 0 0;
        background: rgba(78, 198, 255, 0.4);
        background: linear-gradient(32deg, rgb(117 200 208 / 50%) 46%, rgba(78, 198, 255, 0.25) 100%);
        padding: 20px 23px;
        border-radius: 20px 5px;
        box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
        text-align: center;
    }
    #app .msj_off.on{
        display: inline-block;
    }
    /*body.oscuro #app .msj_off{
        background: rgb(78, 198, 255, 0.4);
    }*/
    #app .msj_off p{
        display: inline-block;
        margin: 0;
        color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        line-height: 21px;
        text-align: left;
        text-shadow: 1px 2px 2px rgb(121, 174, 191);
    }
    body.oscuro #app .msj_off p{
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 2px 2px rgb(0, 0, 0);
    }
    #app .msj_off p>span{
        white-space: nowrap;
    }
    
    #app .carga{
        height: 190px;
        overflow: hidden;
        box-sizing: border-box;
        opacity: 1;
        text-align: center;
        transition: padding ease-in-out 0.3s, height ease-in-out 0.3s, opacity ease-in-out 0.3s;
    }
    #app .carga.oculto{
        padding: 0 5%;
        height: 0px;
        opacity: 0;
        animation: none;
    }
    #app .carga.completa::after{
        content: "¡Muchas gracias! :D";
        position: absolute;
        left: 0;
        top: 115px;
        width: 100%;
        text-align: center;
        color: #6f6f6f;
        font-size: 19px;
        font-weight: 600;
        animation: agradecimiento ease-in-out 1.4s;
    }
    body.oscuro #app .carga.completa::after{
        color: #d4d4d4;
    }
    @keyframes agradecimiento {
        0% {
            top: 155px;
            opacity: 0;
        }
        100%{
            top: 115px;
            opacity: 1;
        }
    }
    #app .carga h2{
        text-align: center;
        color: #6f6f6f;
        margin: 10px 0;
        font-size: 18px;
        font-weight: 500;
    }
    
    body.oscuro #app .carga h2{
        color:#d4d4d4;
    }
    .carga .progreso {
        display: inline-block;
        width: 100%;
        max-width: 350px;
        text-align: left;
        background: #e2e2e2;
        border-radius: 8px;
        font-size: 0;
        line-height: 40px;
        overflow: hidden;
        box-shadow: inset 0px 0px 25px #c1c1c1;
    }
    body.oscuro .carga .progreso{
        background: #1d1d1d;
        box-shadow: inset 0px 0px 25px #333333;
    }
    .carga .progreso>.relleno {
        display: inline-block;
        vertical-align: middle;
        height: 40px;
        font-size: 16px;
        color: #FFF;
        background-color: #2db561;
        background: linear-gradient(0deg, rgb(32, 173, 86) 0%, rgb(39, 187, 96) 50%, rgb(32, 173, 86) 100%);
        text-align: center;
        overflow: hidden;
        transition: all ease-in-out 1s;
    }
    .carga.completa .progreso>.relleno {
        width: 100%!important;
        background-color: rgb(45, 181, 97, 0.55);
        background: linear-gradient(0deg, rgba(32, 173, 86, 0.55) 0%, rgba(39, 187, 96, 0.55) 50%, rgba(32, 173, 86, 0.55) 100%);
        transition: background-color ease-in-out 1s;
    }
    .carga.completa .progreso>.relleno::after{
        content: "Carga completa";
        text-transform: uppercase;
        display: inline-block;
        width: 100%;
        height: 40px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    .carga .progreso>.relleno>span::after{
        content: "%";
    }
    .carga.completa .progreso>.relleno>span{
        display: none;
    }
    .carga .progreso>.pendiente {
        display: inline-block;
        vertical-align: middle;
        height: 40px;
        background-color: #ff804e;
        background: linear-gradient(0deg, #f77b4b 0%, #f78d64 50%, #f77b4b 100%);
        transition: all ease-in-out 1s;
    }
    .carga.completa .progreso>.pendiente {
        display: none;
    }
    .carga .error {
        color: #ff804e;
        text-align: center;
        font-size: 14px;
        display: none;
    }
    .carga .error.on {
        display: block;
    }
    .carga .error p{
        margin: 17px 0 0;
    }
    .carga .error a.btn{
        margin-top: 8px;
    }
    #root.aj .carga .error a{
        opacity: 0.4;
        cursor: default;
    }
    #login>.contacto, #app>.cont>.contacto{
        text-align: center;
        padding: 50px 5%;
        animation: entradaContacto ease-in-out 1.7s;
    }
    @keyframes entradaContacto {
        0% {
            padding-top: 85px;
        }
        100%{
            padding-top: 50px;
        }
    }
    .contacto h2{
        color:#6f6f6f;
        margin: 0 0 10px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
    }
    body.oscuro .contacto h2{
        color: #afafaf;
    }
    .contacto a{
        display: inline-block;
        width: 155px;
        line-height: 40px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.03em;
        color:#FFFFFF;
        text-shadow: 0px 0px 8px #006b00;
        background-color: #47c555;
        border: solid 1px #3fb54c;
        box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    }
    .contacto a::before{
        content: " ";
        display: inline-block;
        vertical-align: middle;
        width: 29px;
        height: 23px;
        margin-bottom: 2px;
        background: url(/imagenes/whatsapp.svg) left center no-repeat;
        background-size: 72px;
    }
    
    /* Flotantes */
    .flotante{
        display: none;
        position: absolute;
        top: 20px;
        left: 23px;
        min-width: 150px;
        background-color: #363636;
        box-shadow: 0px 0px 8px #000;
        margin: 0;
        padding: 5px 0;
        list-style: none;
        border-radius: 2px;
        overflow: hidden;
        text-align: left;
        animation: flotAnim ease-in-out 0.3s;
        /*transition: all ease-in-out 0.3s;*/
    }
    body.oscuro .flotante{
        box-shadow: 0px 0px 8px #c9c9c9;
    }
    @keyframes flotAnim{
        0%{opacity:0;max-height: 0px;}
        100%{opacity:1;;max-height: 150px;}
    }
    .flotante.derecha{
        left: auto;
        right: 23px;
        text-align: right;
    }
    .flotante.on{
        display: block;
    }
    .flotante a:not(.btn)/*,#app>nav a:not(.btn)*/{
        display: block;
        padding: 10px 25px;
        text-decoration: none;
        white-space: nowrap;
        transition: all ease-in-out 0.25s;
    }
    .flotante a:not(.btn){
        font-size: 14px;
        color: #98989e;
        font-weight: 500;
    }
    .flotante a:not(.btn):hover, .flotante li.activo>a:not(.btn)/*, #app>nav a:not(.btn):hover*/{
        background-color: #303030;
    }
    
    /* Encabezado */
    
    
    
    /* Cuerpo principal */
    main{
        position: relative;
        display:block;
        margin-top: 55px;
        color: #FFF;
        height: calc(100vh - 55px);
        overflow-y: scroll;
        z-index: 49;
        overflow: hidden;
        width: 100%;
    }
    
    
    /* Avisos del sistema */
    
    #avisos{
        position: fixed;
        bottom: 0px;
        left: 15px;
        right: 15px;
        z-index: 400;
    }
    #avisos>article{
        position: relative;
        left: 0px;
        margin-bottom: 15px;
        width: auto;
        height: auto;
        padding: 15px 17px;
        box-sizing: border-box;
        color: #FFF;
        background-color: #363636;
        box-shadow: 0px 0px 10px #000;
        border-radius: 22px;
        font-size: 13px;
        animation: msjaviso ease-in-out 0.5s;
        z-index: 10;
        /*transition: left linear 0.2s;*/
    }
    #avisos>article[data-icono="ok"],
    #avisos>article[data-icono="advertencia"],
    #avisos>article[data-icono="precaucion"],
    #avisos>article[data-icono="info"]{
        padding-left: 60px;
    }
    #avisos>article::after{
        content: " ";
        display: block;
        clear: both;
    }
    @keyframes msjaviso {
        0%	{top: 75px;margin-top: -75px;}
        100%{top: 0px;margin-top: 0px;}
        
    }
    #avisos>article>.icono{
        position: absolute;
        top: calc(50% - 11px);
        left: 18px;
        display: none;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        text-align: center;
        font-size: 16px;
        line-height: 22px;
    }
    .icoOK,
    .icoPrecaucion,
    .icoError{
        position: relative;
        display: inline-block;
        vertical-align: middle;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        margin-right: 10px;
        background-color: #1ab999;
    }
    .icoPrecaucion{
        background-color: #ea9126;
    }
    .icoError{
        background-color: #ff7878;
    }
    
    .icoPrecaucion::before{
        content: " ";
        position: absolute;
        top: 45%;
        left: 25%;
        display: block;
        width: 50%;
        height: 10%;
        background-color: #FFF;
    }
    
    
    
    
    
    
    #avisos>article[data-icono="ok"]>.icono{
        display: block;
        background-color: #1ab999;
    }
    #avisos>article[data-icono="ok"]>.icono::before,
    #avisos>article[data-icono="ok"]>.icono::after,
    .icoOK::before,
    .icoOK::after{
        content: " ";
        position: absolute;
        top: 54.54%;
        left: 22.72%;
        display: block;
        width: 27.27%;
        height: 9.1%;
        background-color: #FFF;
        transform: rotate(45deg);
    }
    #avisos>article[data-icono="ok"]>.icono::after,
    .icoOK::after{
        top: 45.5%;
        left: 36.36%;
        width: 45.5%;
        transform: rotate(-47deg);
    }
    
    
    #avisos>article[data-icono="advertencia"]>.icono{
        display: block;
        background-color: #ffea83;
    }
    #avisos>article[data-icono="advertencia"]>.icono::before{
        content: "!";
        color: #363636;
        font-weight: 600;
    }
    #avisos>article[data-icono="info"]>.icono{
        display: block;
        background-color: #2c759d;
    }
    #avisos>article[data-icono="info"]>.icono::before{
        content: "i";
        font-style: italic;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }
    #avisos>article[data-icono="precaucion"]>.icono{
        display: block;
        background-color: #ff7878;
    }
    
    #avisos>article[data-icono="precaucion"]>.icono::before,
    #avisos>article[data-icono="precaucion"]>.icono::after,
    .icoError::before,
    .icoError::after{
        content: " ";
        position: absolute;
        top: 45.8%;
        left: 27.3%;
        display: block;
        width: 45.8%;
        height: 9.1%;
        background-color: #FFF;
        transform: rotate(45deg);
    }
    #avisos>article[data-icono="precaucion"]>.icono::after,
    .icoError::after{
        transform: rotate(-45deg);
    }
    
    #avisos>article>.cont>div{
        display: inline-block;
        padding: 2px 0;
    }
    #avisos>article>.cont>a{
        color: #98989e;
        float: right;
        margin-left: 15px;
        padding: 2px 0;
    }
    
    
    
    
    
    /* Ventanas */
    
    /* Ventanas flotantes */
    #ventanas{
        position: relative;
        z-index: 185;
    }
    #ventanas>article{
        position: fixed;
        top: 0;
        left: 0;
        /*bottom: 0;
        right: 0;*/
        width: 100vw;
        height: 100%;
        background-color: rgba(0,0,0,0.75);
        text-align: center;
        overflow-y: scroll;
        overflow-x: hidden;
        white-space: nowrap;
        animation: aparecer ease-in-out 0.3s;
    }
    #ventanas>article::-webkit-scrollbar {
        background: #d2d2d2;
    }
    body.oscuro #ventanas>article{
        background-color: rgba(49, 49, 49, 0.75);
    }
    body.oscuro #ventanas>article::-webkit-scrollbar {
        background: #1d1d1d;
    }
    #ventanas>article>div{
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: 400px;
        vertical-align: middle;
        text-align: center;
        white-space: normal;
    }
    #ventanas>article>div>div{
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        /*max-width: 330px;
        min-height: 300px;*/
        box-sizing: border-box;
        /*margin: 5px;
        border-radius: 5px;*/
        text-align: left;
        background-color: #d2d2d2;
        animation: aparecer ease-in-out 0.4s;
    }
    body.oscuro #ventanas>article>div>div{
        background-color: #1d1d1d;
    }
    #ventanas a:not(.btn){
        color: #535353;
    }
    
    body.oscuro #ventanas a:not(.btn){
        color: #a9a9a9;
    }
    #ventanas>article>div>div>header{
        /*margin: 0 5%;*/
        padding: 10px 5%;
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 4px);
        box-sizing: border-box;
        background-color: #d2d2d2;
    }
    body.oscuro #ventanas>article>div>div>header{
        background-color: #1d1d1d;
    }
    #ventanas>article>div>div>footer{
        text-align: right;
        margin: 31px 7%;
    }
    #ventanas>article>div>div>header .cerrar{
        position: absolute;
        top: 36px;
        right: 6%;
        margin: 0;
        width: 40px;
        height: 40px;
        transform: scale(1.2);
    }
    #ventanas>article>div>div>header a.cerrar::before,
    #ventanas>article>div>div>header a.cerrar::after{
        top: 19px;
        left: 12px;
    }
    #ventanas>article>div>div>header>h2{
        display: inline-block;
        margin: 0;
        font-size: 15px;
        line-height: 20px;
        min-height: 20px;
        font-weight: 500;
        cursor: default;
        color: gray;
        vertical-align: top;
        margin-right: 45px;
    }
    #ventanas>article>div>div>header>h2.azul{
        color: rgb(32, 124, 235);
    }
    #ventanas>article.vacio>div>div>header>h2{
        font-size: 0;
        color: transparent;
    }
    #ventanas>article.vacio>div>div>header>h2::before{
        content: " ";
        display: inline-block;
        width: 100px;
        height: 20px;
        background-color: #ececec;
        border-radius: 3px;
    }
    /*#ventanas>article>div>div>div{
        padding: 0 7%;
    }*/
    #ventanas .advertencia{
        padding: 20px;
        background-color: rgba(26, 185, 154, 0.1);
        border-radius: 3px;
        color: rgba(26,185,154,1);
        border: rgba(26, 185, 154, 0.17) solid 1px;
        font-size: 15px;
    }
    #ventanas article h2 {
        color: #1e1e1e;
        text-align: center;
        font-size: 16px;
        line-height: 17px;
        margin: 16px 0 0;
        border-top: solid 1px;
        border-bottom: solid 1px;
        padding: 8px 0;
    }
    #ventanas article label{
        display: block;
        color: #1e1e1e;
        font-weight: 400;
        font-size: 15px;
        line-height: 17px;
        text-align: left;
    }
    body.oscuro #ventanas article label,
    body.oscuro #ventanas article h2{
        color: #dedede;
    }
    #ventanas article label>span{
        display: inline-block;
        vertical-align: middle;
        box-sizing: border-box;
    }
    #ventanas article label>span.id{
        width: 35px;
        padding: 3px;
        background-color: #cdcdcd;
        color: #1e1e1e;
        font-weight:700;
        border-radius:3px;
        margin-right: 10px;
        text-align: center;
        font-size: 16px;
        line-height: 28px;
    }
    #ventanas article label>span.id.letra{
        background-color: #666666;
        color: #dedede;
    }
    #ventanas article label>span.nombre{
        width: calc(100% - 45px);
        padding-right: 10px;
    }
    #ventanas article .dato {
        display: inline-block;
        width: 100%;
        padding-bottom: 16px;
        margin: 6px 0 20px;
        font-size: 15px;
        font-weight: 500;
        color: #211915;
        border-bottom: #eae7e7 solid 1px;
    }
    
    /* Ventana de espera */
    #ventanas .ventanaEspera>div>div{
        max-width: 420px;
    }
    #ventanas .ventanaEspera>div>div>div{
        text-align: center;
    }
    #ventanas .ventanaEspera>div>div::before,
    #ventanas .ventanaEspera>div>div::after{
        content: " ";
        position: absolute;
        top: 86px;
        left: 0;
        display: block;
        width: 100%;
        height: 6px;
        background: transparent;
        z-index: 50;
        transition: all ease-in-out 0.2s;
    }
    #ventanas .ventanaEspera>div>div::before{
        background: #ececec;
    }
    #ventanas .ventanaEspera>div>div::after{
        width: 0%;
        background: #9fa6ff;
        background: linear-gradient(90deg, #54535a 0%, #9fa6ff 35%, #848be4 65%, #54535a 100%);
        box-shadow: 0px 0px 4px #848be4;
        animation: rootaj ease-in-out 1s infinite;
    }
    #ventanas .ventanaEspera p{
        max-width: 250px;
        display: inline-block;
        margin: 30px 0 50px;
    }
    #ventanas .ventanaEspera p{
        max-width: 250px;
        display: inline-block;
        margin: 30px 0 50px;
    }
    

    /* Ventana Mesas */
    #ventanas>article.mesa.on{
        display: block;
    }
    #ventanas>article.mesa>div>div{
        text-align: center;
        /*padding: 0 35px 35px;*/
    }
    #ventanas .mesa h1>span:first-of-type{
        display: block;
        color: gray;
        font-size: 13px;
        line-height: 13px;
        text-transform: uppercase;
    }
    body.oscuro #ventanas .mesa h1>span:first-of-type{
        color: #b1b1b1;
    }
    #ventanas .mesa h1>span:last-of-type{
        display: block;
        color: #f76681;
        font-size: 35px;
        line-height: 35px;
    }
    #ventanas .mesa form{
        text-align: right;
        padding: 90px 35px 35px;
    }
    #ventanas .mesa form>div.categ{
        display: none;
        text-align: right;
        margin-bottom: 12px;
    }
    #ventanas .mesa form>div.categ.on{
        display: block;
    }
    #ventanas .mesa form section{
        text-align: center;
        padding-top: 16px;
    }
    #ventanas .mesa form section>div{
        padding: 6px;
        background-color: rgba(0,0,0,0.1);
        border-radius: 4px;
        margin-bottom: 5px;
    }
    body.oscuro #ventanas .mesa form section>div{
        background-color: rgba(255,255,255,0.1);
    }
    #ventanas .mesa form section>div.msj {
        color: #434343;
        background-color: rgba(0,0,0,0.06);
        padding: 12px 20px;
        text-align: left;
        font-size: 13px;
        line-height: 15px;
        text-shadow: 2px 1px 8px #f2f2f2;
        margin-bottom: 20px;
    }
    body.oscuro #ventanas .mesa form section>div.msj {
        color: #939393;
        background-color: rgba(255,255,255,0.06);
        text-shadow: 2px 1px 8px #161616;
    }
    /*#ventanas .mesa label{
        margin: 0 0 10px;
    }*/
    #ventanas .mesa input:not([type="submit"]){
        width: calc(100% - 90px);
        min-width: 90px;
        margin:10px 0;
        font-size: 32px;
        font-weight: 600;
    }
    #ventanas .mesa input[type="submit"],
    #ventanas .mesa form a.btn{
        width: auto;
        height: auto;
        padding: 10px 26px;
    }
    #ventanas .mesa form a:not(.btn){
        float: left;
        font-size: 13px;
        line-height: 35px;
        text-transform: uppercase;
    }
    
    #ventanas .mesa form>div>div,
    #ventanas .mesa form strong{
        margin-bottom: 15px;
        font-size: 32px;
        font-weight: 600;
    }
    #ventanas .mesa form strong.parcial,
    #ventanas .mesa form strong.sincarga{
        opacity: 0.4;
    }
    #ventanas .mesa form strong.parcial::after,
    #ventanas .mesa form strong.sincarga::after{
        content: "(Suma parcial)";
        display: block;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #b93b3b;
    }
    #ventanas .mesa form strong.sincarga::after{
        content: "(No hay datos cargados)";
    }
    #ventanas .mesa form strong.error{
        color: #b93b3b;
        opacity: 0.4;
    }
    #ventanas .mesa form strong.error::after{
        content: "La cantidad de electores no puede ser mayor a 350";
        display: block;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #b93b3b;
    }
    body.oscuro #ventanas .mesa form>div>div,
    body.oscuro #ventanas .mesa form strong{
        color: white;
    }
    
    #root.aj #ventanas .mesa form a:not(.btn),
    #root.aj #ventanas>article.mesa>div>div>header .cerrar{
        display: none;
    }
    #ventanas .mesa .corregir{
        padding: 14px 10px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
        margin-bottom: 20px;
        text-align: center;
    }
    body.oscuro #ventanas .mesa .corregir{
        background: rgba(0, 0, 0, 0.32);
    }
    #ventanas .mesa .corregir p{
        font-size: 14px;
        margin: 0 0 4px;
        color: #737373;
    }
    body.oscuro #ventanas .mesa .corregir p{
        color: #bdbdbd;
    }
    #ventanas .mesa .corregir a.btn{
        margin: 5px 0;
        padding: 8px 15px;
        font-weight: 400;
    }

    #dialogo .cambio_tema_color h3{
        margin: 22px 0 25px;
        font-size: 17px;
        line-height: 17px;
    }

    /* Acerca de la aplicación */
    #ventanas .acercade{
        display: none;
    }
    #ventanas .acercade.on{
        display: block;
    }
    #ventanas .acercade::before{
        content: "";
        display: inline-block;
        width: 0;
        height: 100vh;
        vertical-align: middle;
    }
    #ventanas .acercade>div {
        height: 0;
        background-color: #FFF;
        width: 90%;
        max-width: none;
        padding-top: 84%;
        background-image: url(/imagenes/acercade.jpg);
        background-size: contain;
        background-position: center bottom;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 2px 10px #000;
    }
    #ventanas .acercade>div>div {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 46px;
        background-color: rgba(0,0,0,0.8)!important;
        text-align: center;
        font-size: 13px;
        line-height: 46px;
        color:#bfbfbf;
    }

    /* Versión PC */
    @media(min-width:780px){
        #root.vapp .logo{
            left: calc(50% - 42px);
        }
        #root.vapp>header h2{
            right: 4%;
        }
        #app .locales{
            display: inline-block;
            width: auto;
        }
        #app .locales header{
            text-align: center;
        }
        #app label{
            display: block;
            text-align: center;
        }
        #ventanas .acercade>div {
            width: 400px;
            padding-top: 377px;
        }
    }