/* VARIABLES GLOBALES */
:root{
    --color-principal-surbit: #33cc99;
    --color-secundario-ds2: #E87400;
}
html
{
    height: 100%;
}
body
{    
    font-family: 'Istok Web', sans-serif;
    height: 100%;
    overflow: hidden;
}
label
{
    /* font-weight: normal; */
}
input:focus
{    
    background-color: ivory;
}
select:focus
{
    background-color: ivory;
}
.noselect 
{
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
/* SCROLL BAR */
/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #666666;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; /* #888; */
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #33CC99; /* #555; */
}
/* FIREFOX SCROLLBAR */
.ffScrollbar
{
    scrollbar-color: #33CC99 #888;
    scrollbar-width: thin; /* ESTABA EN: thin */
    scrollbar-height: thin;
}
/* -- FIN SCROLL BAR -- */
/* ANIMACIÓN TIPO BLINK */
.blinker
{
    animation: blinker 2s linear infinite;
}
@keyframes blinker {
    50% { opacity: 1; }
    20% { opacity: 0; }
}
/* -- FIN : BLINKER -- */
/* TITULOS GENERALES */
.tituloSeccion_tipo1
{
    font-size: 16px;
    color: #333;
}
.tituloCampoGrilla
{
    font-size: 16px;
}
/* PALETA */
.colorSurbit
{
    background-color: var(--color-principal-surbit);
    color: white;
}
.textoColorSurbit
{
    color: var(--color-principal-surbit);
}
.btn-surbit-success {
    color: #fff;
    background-color: var(--color-principal-surbit);
    border-color: #18946d;
}
.btn-surbit-success:hover {
    color: #fff;
    background-color: #18946d;
    border-color: #18946d;
}
.textoResaltado
{
    font-weight: bold;
}
.texto16
{
    font-size: 16px;
}
.colorSecundarioSurbit
{
    background-color: #522398;
    color: white;
}
.colorTextoSecundarioSurbit
{
    color: #522398;
}
.colorFondoPaleta_2
{
    background-color: #236175;
    color: whitesmoke;
}
.colorFondoPaleta_3
{
    background-color: #2F4858;
    color: whitesmoke;
}
.colorFondoPaleta_4
{
    background-color: darkorange;
    color: whitesmoke;
}
.colorTextoDescuento
{
    color: #DEC8A5;
}
.colorTextoRecargo
{
    color: #DEC8A5;
}
.colorRestaurant
{
    background-color: #663366;
    color: white;
}
.colorTextoRestaurant
{
    color: #663366;
}
.colorDelivery
{
    background-color: #E87400;
    color: white;
}
.colorTextoDelivery
{
    color: #E87400;
}
.colorMostrador
{
    background-color: #006666;
    color: white;
}
.colorTextoMostrador
{
    color: #006666;
}
.colorNoVisible
{
    background-color: #ccc;
    color: #666;
}
.entidadSeleccionada
{
    border: 2px solid var(--color-principal-surbit);
}
.textoGenericoVoidRender
{
    font-style: italic;
    font-size: 14px;
    color: whitesmoke;
}
.txt-input-general-ds
{
    padding-top: 3px;
    padding-left: 7px; 
    color: #000;
    border-radius: 4px;
    border: thin solid #ccc;
    height: 32px;
    font-size: 14px;
}
.txt-input-error
{
    border-color: darkred;
}
.txt-input-general-ds::placeholder
{
    color: #888;
}
.txt-input-general-ds:disabled
{
    background-color: #cccccc;
    cursor: not-allowed;
}
.inputGrande
{
    width: 210px !important;
}
.inputMediano
{
    width: 150px !important;
}
.inputIntermedio
{
    width: 112px !important;
}
.inputExtraGrande
{
    width: 280px !important;
}
.inputChico
{
    width: 65px;
}
.inputExtraChico
{
    width: 48px;
}
.infoSpan 
{    
    color: #E87400;
    cursor: pointer;
    font-size: 14px;
}
.infoSpan:hover
{    
    font-weight: bold;    
}
.spanCampoObligatorio
{
    color: #E87400;
    font-size: 10px;
}
.textoCentrado
{
    text-align: center;
}
.textoIzquierda
{
    text-align: left;
}
.textoDerecha
{
    text-align: right;
}
.elementoClickeable
{
    cursor: pointer;
}
.colorTextoErrorSobreFondoOscuro
{    
    color: red;
    font-weight: bold;
}
.textoHoverGenerico
{
    opacity: .75;
}
.textoHoverGenerico:hover
{
    opacity: 1;
}
/* PADDING GENÉRICO HORIZONTAL */
.paddingHorizontalGenerico14
{
    padding-left: 14px!important;
    padding-right: 14px!important;
}
/* LOADER */
.loaderGenerico {
  border: 10px solid #f3f3f3; 
  border-top: 10px solid #33CC99; 
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spinGenerico 2s linear infinite;
}
.loaderSimpleEnTexto {
  display: inline-block;
  border: 3px solid #333; 
  border-top: 3px solid #ccc; 
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spinGenerico 2s linear infinite;
}
@keyframes spinGenerico {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* FIN : LOADER */
/* GRILLAS GENERALES */
.campoEncabezadoGrillaGenerico
{
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background-color: whitesmoke;
}
.campoGrillaMax500
{
    max-width: 500px;
}
.campoGrillaGenerico
{
    font-size: 14px;
    color: #222;
    background-color: white;
}
.filaParGrillaGenerica
{
    background-color: whitesmoke;
}
.avatarEnGrilla
{
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;        
}
.campoSeleccionadoEnGrilla
{
    border-left: 2px solid #33CC99;
    padding-left: 7px;
    font-weight: bold;
    color: #33CC99;
}
.borde-redondeado
{
    border-radius: 7px;
}
.borde-circular
{    
    border-radius: 50%;
}
/* BOTONES GENERALES */
.botonGeneral
{
    background-color: #666;
    display: inline-block;
    color: whitesmoke;
    width: 145px;
    font-size: 14px;
    text-align: center;   
    padding: 7px;
    cursor: pointer;        
    margin-bottom: 7px;
    opacity: 1;
    border: none;
}
.botonGeneral:hover
{
    opacity: .75;
}
.botonGeneral:disabled
{
    color: #ccc;
    cursor: not-allowed;
}
.botonGeneralActivo
{
    background-color: #33CC99;
}
.botonGeneralActivo:hover
{
    opacity: 1;
    cursor: default;
}
.botonGeneralFondoClaro
{
    background-color: whitesmoke;
    color: #333333;
}
.botonGeneralFondoClaro:hover
{
    opacity: 1;
}
.botonIzquierdo
{
    border-radius: 10px 0 0 10px;
}
.botonMedio
{
    border-radius: 0 0 0 0;
}
.botonDerecho
{
    border-radius: 0 10px 10px 0;
}
.botonAislado
{
    border-radius: 10px;
}
.botonCompacto
{
    width: 42px;
}
.botonCompactoBarraInferior
{
    width: 42px;
    margin-bottom: 0;
    padding: 2px 0 0 0;
    font-size: 12px;
}
.botonGeneralBarraInferior
{
    background-color: #33cc99;
    display: inline-block;
    color: whitesmoke;
    width: 220px;
    font-size: 14px;
    text-align: center;
    padding: 2px;
    cursor: pointer;
    border-radius: 10px;
    opacity: 1;
    border: none;
}
.botonGeneralBarraInferior:hover
{
    opacity: .75;
}
.botonChico
{
    height: 32px;
    padding-top: 5px;
}
.botonMediano
{
    width: 180px;
}
.botonGrande
{
    width: 250px;
}
.botonFlexible
{
    width: auto;
    min-width: 145px;
}
.separadorDerechoBoton
{
    border-right: thin solid #000;
}
.panelGeneral
{
    background-color: #666;
    display: inline-block;
    color: whitesmoke;    
    font-size: 16px;
    text-align: center;   
    padding: 10px;
    cursor: pointer;        
    margin-bottom: 7px;
    opacity: 1;    
}
.botonAccionGeneral
{
    background-color: #666;
    color: whitesmoke;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    width: 32px; 
    height: 32px;
    border: none;
    padding-top: 5px;
}
.botonAccionGeneral:hover
{
    cursor: pointer;
    opacity: .85;
}
.botonAccionGeneral:focus
{
    background-color: #33CC99;   
    color: white;
}
.btnAltaRapida
{
    margin-top: 3px;
    width: 28px;
    height: 28px;
    font-size: 14px;
}
.btn36
{
    width: 36px;
    height: 36px;
}
.botonAccionEnGrilla
{
    background-color: #666;
    color: whitesmoke;
    display: inline-block; 
    width: 36px; 
    height: 36px;
    float: right;
    margin-top: 0;
    margin-right: 5px;
    font-size: 18px;
    padding-top: 7px;
    border: thin solid #ccc;
    border-radius: 50%;
    text-align: center;    
}
.botonAccionEnGrilla:hover {
    cursor: pointer;
    opacity: .85;
}
.botonAccionEnGrillaSeleccionado {
    background-color: #33CC99;   
    color: white;
}
.botonAccionEnGrillaDesactivado {
    background-color: #4c4c4c;
    color: #717171;
    cursor: default;
}
.botonAccionEnGrillaDesactivado:hover {
    opacity: 1;
    cursor: default;
}

.botonAccionEnGrillaNuevoElemento
{
    background-color: #666;
    color: whitesmoke;
    display: inline-block; 
    width: 32px; 
    height: 32px;
    font-size: 18px;
    padding-top: 4px;
    /* margin-top: -7px; */
    margin-left: 7px;
    padding-left: 2px;
    border: thin solid #ccc;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}
.botonAccionEnGrillaNuevoElemento:hover
{
    cursor: pointer;
    opacity: .85;
}
.botonAccionEnGrillaSmallSinMargen
{
    width: 26px;
    height: 26px;
    font-size: 14px;
}
.botonAccionEnGrillaSmall
{
    width: 26px;
    height: 26px;
    padding-top: 4px;
    margin-top: -4px;
    font-size: 14px;
}
.botonAccionCampoPopUp
{
    width: 32px;
    height: 32px;
    font-size: 14px;
}
.botonFlotanteDerechaGeneral
{
    display: inline-block;
    position: relative;
    float: right;
}
/* --- FIN : BOTONES GENERALES --- */
/* CAMPOS GENERALES (INPUTS, SELECTS, ETC...) */
.campoChico
{
    width: 90px;
}
.campoExtraChico
{
    width: 48px;
}
.campoIntermedio
{
    width: 120px;
}
.campo150
{
    width: 150px;
}
.campo170
{
    width: 170px;
}
.campoMediano
{
    width: 180px;
}
.campoGrande
{
    width: 240px;
}
.campoExtraGrande
{
    width: 365px;
}
.contenedorTipoEllipsis
{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* --- FIN : CAMPOS GENERALES --- */
/* SOBREESCRIBO TOGGLE OFF DE EWOK TOGGLE */
/* .toggleOff
{
    background-color: #333;
    color: white;
    border-left: solid 8px #ccc;
} */
.colorTextoSurbit
{
    color: #33CC99;
}
.colorFondoSurbit
{
    background-color: #33CC99;
}
.generalLinkBtn
{
    font-size: 14px;
}
.generalLinkBtn:hover
{
    font-weight: bold;
    cursor: pointer;
}
.generalColorSurbit
{
    background-color: #33CC99;
}
.colorTextoLink
{
    color: #004085;
}
/**************************/
/* --- BARRA SUPERIOR --- */
/**************************/
#divBarraSuperior
{
    display: inline-block;
    color: white;
    background-color: #33CC99;
    padding: 10px;
    height: 48px; 
    width: 100%;
    border-bottom: solid thin #333;
}
.divBarraSuperior_NombreApp
{
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    width: 65px;
    margin-left: 49px;
    text-align: center;    
    padding-top: 3px;
}
.divBarraSuperior_BotonSwapMenu
{
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: whitesmoke;
    color: #333;
    padding-top: 6px;
    margin-top: -2px;
    position: absolute;
    cursor: pointer;    
}
.divBarraSuperior_BotonSwapGeneral
{
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #666;
    color: whitesmoke;
    padding-top: 6px;
    margin-top: -12px;
    font-size: 12px;    
    cursor: pointer;    
}
#divBarraSuperior_NombrePuestoTrabajo
{
    display: inline-block;
    position: absolute;
    margin-left: 28px;
    margin-top: -10px;    
    height: 47px;
    padding: 14px;    
    font-size: 14px;
    background-color: #333;
    border: none;
    font-weight: 600;     
    color: white;
    width: 200px;
    text-align: center;
}
/* BOTON NOTIFICACIONES */
.divBarraSuperior_BotonNotificaciones
{
    margin-left: 28px;
}
/* BOTON AYUDAS */
.divBarraSuperior_BotonAyudas
{
    margin-left: 76px;
}
/* BOTON SOPORTE(TIKETS) */
.divBarraSuperior_BotonSoporte
{
    margin-left: 124px;
}
/* BOTON PANTALLA COMPLETA */
.divBarraSuperior_BotonPantallaCompleta
{
    margin-left: 172px;
}
.divBarraSuperior_BotonTecladoEnPantalla
{
    margin-left: 220px;
}
.divBarraSuperior_BotonCuadradoGenerico
{
    display: inline-block;
    text-align: center;
    width: 48px;
    height: 47px;
    background-color: #555;
    color: white;
    padding: 8px;
    margin-top: -10px;
    font-size: 24px;
    position: absolute;
    cursor: pointer;
    border-left: solid thin #ccc;
}
.divBarraSuperior_BotonCuadradoGenerico:hover
{
    background-color: #222;
}
.divBarraSuperior_BotonCuadradoGenericoActivo
{
    color: #33cc99;
}
/* ... */
.divBarraSuperior_ContenedorFlotanteDerecha
{
    display: inline-block;
    float: right;
    position: relative;
    margin-right: 10px;
    margin-top: 0px;
    padding: 7px;
    padding-top: 3px;
    cursor: pointer;
}
.divBarraSuperior_ContenedorFlotanteDerecha:hover
{
    cursor: pointer;
    opacity: .85;
}
.divBarraSuperior_ContenedorFlotanteDerechaNoHover
{
    display: inline-block;
    float: right;
    position: relative;
    margin-right: 10px;
    margin-top: 0px;
    padding: 7px;
    padding-top: 3px;
    cursor: pointer;    
}
.divBarraSuperior_separador
{
    border-right: thin solid #333;
}
.divBarraSuperior_separadorIzquierdo
{
    border-left: thin solid #333;
}
.divBarraSuperior_botonActivo
{
    color: #333;
}
#vPrincipal_contenedorNotificaciones
{
    display: none;
    width: 550px;
    position: absolute;
    left: 152px;
    top: 49px;
    color: whitesmoke;
    background-color: #666;
    padding: 7px;
    border: thin solid #222;
}
.lineaNotificacion
{
    min-height: 36px;
    padding: 3px;
    cursor: pointer;
}
.lineaNotificacion:hover
{
    background-color: black;
}
/* */
.notBitBold_0
{
    font-weight: bold;
}
.notBitBold_1
{
    font-weight: normal;
}
.notBitVisible_0
{
    display: none;
}
.notBitVisible_1
{
    display: inline-block;
}
.bitVisible_0
{
    display: inline-block;
}
.bitVisible_1
{
    display: none;
}
/* CONTENEDOR DE ALERTAS */
#divContenedorAlertas
{
    display: inline-block; 
    position: fixed; 
    /* width: ;  */
    bottom: 48px; 
    /* float: bottom; */
    height: 50px; 
    background-color: transparent;
    color: white;
    padding: 7px;    
}
#divContenedorAlertaCambiarDiaTrabajo
{
    background-color: #333;
    color: whitesmoke;
    padding: 7px;
    border-radius: 3px;
    display: inline-block;
    position: fixed; 
    bottom: 45px; 
    height: 200px;
    width: 100%;
    opacity: .75;
}
#divContenedorAlertaCambiarDiaTrabajo:hover
{
    opacity: 1;
}
/**************************/
/* --- BARRA INFERIOR --- */
/**************************/
#divBarraInferior
{
    display: inline-block; 
    position: fixed; 
    width: 100%; 
    bottom: 0;
    /* float: bottom; */
    height: 48px; 
    background-color: #333;
    color: white;
    padding: 10px 7px 0 7px;
    /* padding-top: 12px; */
    border-top: thin solid #33CC99;
}
/**************************/
/* --- BARRA EVENTOS  --- */
/**************************/
#divBarraEventos
{
    display: inline-block;
    position: absolute;
    top: 48px;
    color: #333;
    background-color: whitesmoke;
    padding: 10px;
    height: 36px; 
    width: 100%;
    border-bottom: solid thin #ccc;    
    opacity: 1;
    /* ANIMACION */
    transition: opacity 600ms, visibility 600ms;
    -webkit-transition: opacity 600ms, visibility 600ms;
    -moz-transition: opacity 600ms, visibility 600ms;
}
/**********************************/
/* --- BARRA LATERAL DERECHA  --- */
/**********************************/
#divBarraLateralDerecha
{
    display: inline-block;
    width: 405px;
    background-color: #333333;
    height: 98%;        
    left: 100%;
    margin-left: 0px;    
    position: absolute;    
    /* ANIMACION */
    transition: 0.25s;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    z-index: 490;
}
#divBarraLateralDerecha_header
{
    border-bottom: solid thin #33CC99;
    height: 52px;
}
.divHeaderBLDResaltada
{
    background-color: #444444;
    font-weight: bold;
}
#divBarraLateralDerecha_titulo
{
    display: inline-block;
    font-size: 18px;
    color: #33CC99;
    padding-left: 9px;
    padding-top: 14px;
}
#divBarraLateralDerecha_btnCerrar
{
    display: inline-block;
    float: right;
    position: relative;
    margin-right: 10px;
    font-size: 18px;
    color: whitesmoke;
    padding-right: 10px;
    padding-top: 15px;
    cursor: pointer;
    opacity: .85;
}
#divBarraLateralDerecha_btnCerrar:hover
{
    opacity: 1;
}
/* IDEA PARA SUBTITULO(NO SE ESTÁ USANDO POR AHORA) */
.divBarraLateralDerecha_subTituloPlataformaExterna
{
    display: inline-block;
    width: 349px;
    text-overflow: ellipsis;
    text-align: center;
    margin-left: 20px;
    margin-top: 27px;
    position: absolute;
    background-color: #333333;
    color: whitesmoke;
    font-size: 14px;
    border-radius: 3px;
    border: thin solid #33cc99;
}
#divBarraLateralDerecha_contenido
{
    display: inline-block;
    height: 600px;
    font-size: 16px;
    color: whitesmoke;
    /* padding-left: 10px;
    padding-top: 12px; */
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}
.divBarraLateralDerecha_tituloSeccion
{
    font-size: 18px;
    color: #33CC99;
}
.divBarraLateralDerecha_botonAccion
{
    background-color: #666;
    color: whitesmoke;
    width: 145px;    
    border-radius: 5px;    
    padding: 10px;
    cursor: pointer;    
    margin-bottom: 7px;
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}
.divBarraLateralDerecha_botonAccion:hover
{
    opacity: .75;
}
.divBarraLateralDerecha_iconoBotonAccion
{
    display: inline-block;
    width: 25px;
    text-align: center;    
}
.divBarraLateralDerecha_textoBotonAccion
{
    display: inline-block;
    width: 90px;
    text-align: center;    
}
.divBarraLateralDerecha_textInput
{
    color: #333;
    padding: 3px;
    /* border-radius: 3px;
    padding: 3px; */
}
.divAnchoCompletoSinBLDVisible
{
    display: inline-block;
    width: 100%;
}
.divAnchoCompletoConBLDVisible
{
    display: inline-block;
    width: calc(100% - 405px);
}
/************************************/
/* --- BARRA LATERAL IZQUIERDA  --- */
/************************************/
#divBarraLateralIzquierda
{
    display: inline-block;
    width: 153px;
    background-color: #333;
    height: 98%;            
    margin-left: -153px;    
    position: absolute;
    /* SCROLL */
    overflow-y: auto;
    overflow-x: hidden;
    /* ANIMACION */
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}
#divBarraLateralIzquierda_ContenedorLogoComercio
{
    display: inline-block;
    width: 153px;
    margin: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    padding: 7px;
}
#divBarraLateralIzquierda_ContenedorNombreComercio
{
    display: inline-block;
    width: 153px;
    margin: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 7px;
    border-bottom: solid thin #444;
    color: white;
    font-size: 12px;
}
.barraLateralIzquierda_botonAccion
{
    display: inline-block;
    color: white;
    margin-left: 10px;
    margin-top: 10px;
}
.barraLateralIzquierda_botonAccion:hover
{
    cursor: pointer;
    color: #33CC99;
}
.barraLateralIzquierda_botonAccionActivo
{
    color: #33CC99;
}
.barraLateralIzquierda_separadorSeccion
{
    display: inline-block;
    color: #ccc;
    margin-left: 10px;
    margin-top: 15px;
}
/***********************************/
/* --- BARRA INFERIOR  --- */
/***********************************/
.divBarraInferior
{
    display: inline-block;
    color: #333;
    font-size: 12px;
    /* background-color: #666; */
    padding: 7px;
    height: 30px; 
    width: 100%;
    top: 100%;
    /* float: bottom; */
    margin-top: -30px;
    position: fixed;
    /* border-top: solid thin #ccc; */
    text-align: center;
}
/* --- CONTENEDOR CENTRAL --- */
#lblTituloSeccion
{
    font-size: 20px;
    padding-top: 1px;
    padding-bottom: 4px;
}
#divContenedorCentral
{
    height: 100%;
    min-height: 100%;        
    width: 100%;
}
#divMenuLateral
{
    vertical-align: top;
    display: inline-block;
    width: 0px;
    height: 100%;    
    background-color: whitesmoke;    
    padding-top: 0px;    
}
.menuSeparator
{
    height: 33px;
}
.divMenuLateral_item
{
    height: 32px;
    padding-top: 6px;        
    padding-left: 10px;
    
}
.divMenuLateral_item:hover
{    
    cursor: pointer;
    font-weight: bold;    
}
.itemSeleccionado
{
    background-color: #33CC99;
    color: whitesmoke;    
}
#divContenedorPrincipal
{
    vertical-align: top;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;    
}
#divContenedorPrincipal_encabezadoDinamico
{
    border-bottom: thin solid #ccc;
    padding-left: 8px;
    padding-top: 10px;
}
#spanNombreEntidadActiva
{
    color: #33CC99;
}
#divContenedorPrincipal_contenidoDinamico
{
    padding: 7px;
}
/* FIN : CONTENEDOR CENTRAL  */
/* -- CONTENEDOR GENERAL SCROLLEABLE -- */
#vGenerico_contenedorDinamicoScrolleable
{
    display: inline-block; 
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    overflow-x: hidden;
}
/* LO MISMO QUE EL ANTERIOR PERO EN FORMATO DE NOMRE DE CLASE */
.vGeneral_contenedorScrolleable
{
    display: inline-block; 
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    overflow-x: hidden;
}
.vGeneral_contenedorScrolleableHYV
{
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: auto;
}
/* --- CONTENEDORES FLOTANTES GENERALES --- */
#contenedorCargando
{
    width: 180px;
    height: 48px;
    display: inline-block;
    text-align: center;    
    background-color: white;
    color: #33cc99;
    border: 1px solid #33cc99;
    border-radius: 5px;
    position: fixed;
    padding-top: 7px;
    top: 0px;
    left: 50%;
    margin-left: -90px;
    visibility: hidden;
    font-size: 12px;
    /* box-shadow: 3px 3px whitesmoke; */
    z-index: 5000;
}
#contenedorErrorInesperado
{
    width: 180px;
    height: 48px;
    display: inline-block;
    text-align: center;    
    background-color: whitesmoke;
    color: darkred;
    padding-top: 12px;
    position: fixed;
    top: 0px;
    left: 50%;
    margin-left: -90px;
    visibility: hidden;
}
#contenedorErrorSistema /*, #contenedorMsgErrorModalAceptarCancelar */
{
    width: 500px;
    height: 48px;
    display: inline-block;
    text-align: center;    
    background-color: whitesmoke;
    color: darkred;    
    padding-top: 12px;
    position: fixed;
    bottom: 25px;
    left: 50%;
    margin-left: -250px;
    visibility: hidden;
    box-shadow: 5px 5px 5px #888888;
}
#contenedorMensajeSistemaOk
{
    width: 240px;
    height: 48px;
    display: inline-block;
    text-align: center;    
    background-color: whitesmoke;
    color: #33CC99;    
    padding-top: 12px;
    position: fixed;
    top: 0px;
    left: 50%;
    margin-left: -120px;
    visibility: hidden;
}
/* FIN : CONTENEDORES FLOTANTES GENERALES */
/* --- CONTENEDORES PARA CAMPOS DE CONFIGURACION --- */
.divLineaConfiguracion
{    
    min-height: 37px;
    margin-bottom: 3px;
    vertical-align: top;
}
.divLineaConfiguracionVCompacta
{
    min-height: 26px;
    margin-bottom: 3px;
    vertical-align: top;
}
.divLineaTextoDerechaIconoVCompacta
{
    display: inline-block;
    vertical-align: top;
    padding: 3px;
    margin-right: 5px;
    max-width: 330px;
}
.divLineaTitulo
{
    margin-bottom: 3px;
}
.divLineaConfiguracionSoloTexto
{    
    /* margin-bottom: 3px; */
    vertical-align: top;
}
.divColumnaNombreParametroPopUpEdicion
{
    display: inline-block;    
    font-weight: bold;
    width: 150px;
    height: 35px;    
    padding-top: 8px;
}
.divColumnaNombreParametroVCompacta
{
    display: inline-block;
    vertical-align: top;    
    width: 135px;
    padding-top: 5px;   
    /* font-weight: normal; */
    font-size: 14px;
}
.divColumnaNombreParametro
{
    display: inline-block;
    vertical-align: top;    
    width: 150px;
    padding-top: 5px;   
    font-weight: bold;
}
.divColumnaNombreParametroChico
{
    display: inline-block;
    vertical-align: top;
    width: 80px;
    padding-top: 5px;
    font-weight: bold;
}
.divColumnaNombreParametroGrande
{
    display: inline-block;
    vertical-align: top;
    width: 220px;
    padding-top: 5px;
    font-weight: bold;
}
.divColumnaNombreParametroNormal
{
    display: inline-block;
    vertical-align: top;
    width: 150px;
    padding-top: 5px;
}
.divColumnaNombreParametroGenerico
{
    display: inline-block;
    vertical-align: top;
    font-weight: bold;        
}
.divColumnaIconoParametro
{
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    width: 32px;
}
.divColumnaValorParametro
{    
    display: inline-block;
    vertical-align: top;    
}
.divColumnaValorParametroSoloTexto
{
    display: inline-block;
    vertical-align: top;
    padding-top: 5px;
    font-size: 14px;
}
.divColumnaValorInfo
{
    display: inline-block;
    width: 210px;
    font-size: 12px;
    margin-bottom: 7px;
    vertical-align: top;
    color: #ffffee;
}
.divColumnaSecundaria
{
    margin-left: 30px;
}
.divColSpan2
{
    width: 295px;    
}
.divColSpan3
{
    width: 400px;    
}
.divColSpan4
{
    width: 660px;    
}
.taCampoConfiguracion
{
    width: 360px;
    height: 150px;
}
.divFilaSeparadoraVCompacta
{
    height: 7px;
}
.divLineaSeparadoraVCompacta
{
    width: 99%;
    display: inline-block;
    border-bottom: #33CC99 thin solid;
    height: 1px;
    margin-bottom: 3px;
}
.divLineaSeparadoraPunteadaVCompacta
{
    width: 99%;
    border-bottom: dashed thin #ccc;
    height: 1px;
    margin-bottom: 3px;
}
/* FIN : CONTENEDORES PARA CAMPOS DE CONFIGURACION ABM */
/* SECCION MI CUENTA */
.btnPasarProduccion
{
    background-color: #522398;
    color: white;
}
.btnPasarProduccion:hover
{
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.textoDemoOk
{
    color: #006666;
}
.textoDemoWarning
{
    color: #E87400;
}
.textoDemoDanger
{
    color: darkred;
}
/* WIZARD, PASOS INSTALACION */
.contenedorPasoInstalacion
{
    display: inline-block;
    border-radius: 50%;
    border: thin solid #ccc;
    color: #ccc;
    width: 28px;
    height: 28px;
    padding: 4px;
    margin-top: 14px;
}
.cpiSeleccionado
{
    background-color: #33CC99;
    color: white;
    font-weight: bold;
}
/* */
/* #vGeneral_ventanaModalWizarda_contenedorMsgError
{
    text-align: center;
    display: none;
}
#vGeneral_ventanaModalWizarda_contenidoMsgError
{
    background-color: whitesmoke;
    color: darkred;    
    padding: 3px;
} */
.vGeneral_contenedorMsgErrorGenerico
{
    text-align: center;
    display: none;
}
.vGeneral_contenidoMsgErrorGenerico
{
    background-color: #fcf0f0;
    color: darkred;    
    padding: 3px;
    border-top: thin solid #b69393;
    border-bottom: thin solid #b69393;
}
/* CLASES PARA SELECCION DE ELEMENTOS POR TIPO DE VENTA */
.vGeneral_tipoVentaRestaurant {}
.vGeneral_tipoVentaDelivery {}
.vGeneral_tipoVentaMostrador {}
/* -- FIN -- */

/* MODALES, GENERAL */
.vGeneral_ventanaModal_contenedorMsgError
{
    text-align: center;
    display: none;
}
.vGeneral_ventanaModal_contenidoMsgError
{
    background-color: whitesmoke;
    color: darkred;    
    padding: 3px;
}

/* CAJAS */
.vCaja_botonOpcionCaja
{
    display: inline-block;
    border-radius: 3px;
    background-color: white;
    color: black;    
    font-size: 14px;        
    margin-bottom: 7px;
    margin-right: 7px;
    text-align: center;
    width: 186px;
    height: 142px;
    cursor: pointer;    
    vertical-align: top;
    position: relative;
    border: solid thin #ccc;
    opacity: .75;
}
.vCaja_botonOpcionCaja:hover
{
    opacity: 1;
}

/* PUESTOS TRABAJO */
.vPuestosTrabajo_btnPuestoTrabajo
{
    display: inline-block;
    width: 170px;
    height: 170px;
    padding: 7px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: white;
    cursor: pointer;
    border: solid thin whitesmoke;
    text-align: center;
    vertical-align: top;
}
.vPuestosTrabajo_btnPuestoTrabajo:hover
{
    border: solid thin #ccc;
    opacity: .85;
}
.vPuestosTrabajo_btnPuestoTrabajo:active
{
    border: solid thin #33CC99;
    opacity: 1;
}
/* CONTENEDOR BOTON DESCARGA APPS */
.vPuestosTrabajo_btnDescargaApps
{
    display: inline-block;
    width: 170px;
    min-height: 170px;
    padding: 7px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: white;
    /* cursor: pointer; */
    border: solid thin whitesmoke;
    text-align: center;
    vertical-align: top;
}
/* MAPAS */
.vPrincipal_contenedorMapa
{
    display: inline-block;
    position: absolute;
    padding: 7px;
    left: 7px;
    top: 55px;
    width: calc(100% - 14px);
    height: calc(100% - 108px); /* 128 y 130 */
    background-color: whitesmoke;
    border: thin solid #33cc99;
    z-index: 500;
}
#vPrincipal_contenedorGMaps
{
    display: inline-block;
    vertical-align: top;
    height: 100%;
    width: 79%;
    background-color: #ddd;
    margin-left: 7px;
}
#vPrincipal_contenedorOpcionesMapa
{
    display: inline-block;
    vertical-align: top;
    height: 100%;
    width: 20%;
    background-color: white;
}
/* BARRA INFERIOR DE EVENTOS */
#vInterfazPrincipal_barraInferiorNotificacionEventos
{
    position: fixed;
    width: 500px;
    height: 52px;
    border-radius: 5px;
    display: inline-block;
    background-color: #333;
    color: whitesmoke;
    top: 100%;
    margin-top: -107px;
    left: 50%;
    margin-left: -250px;
    /* float: bottom; */
    border: thin solid #33CC99;
    opacity: .75;
}
#vInterfazPrincipal_barraInferiorNotificacionEventos:hover
{
    opacity: 1;
}
.vInterfazPrincipal_botonBarraEventos
{
    padding: 5px;
    color: whitesmoke;
    border-right: thin solid #33CC99;
    height: 50px;
    text-align: center;
    display: inline-block;
    min-width: 80px;
    vertical-align: top;
    cursor: pointer;
}
.vInterfazPrincipal_botonBarraEventos:hover
{
    background-color: #33CC99;
    color: white;
}
#vInterfazPrincipal_iconoNotificacionEnLogo
{
    width: 9px;
    height: 9px;
    margin-left: 29px;
    margin-top: 29px;
    display: inline-block;
    background-color: orange;
    border: thin solid white;
    border-radius: 50%;
    position: fixed;
}
/* MI CUENTA */
.miCuenta_fichaSucursalComercio
{
    color: #222;
    display: inline-block;
    width: 380px;
    vertical-align: top;
    background-color: whitesmoke;
    padding-left: 8px;
    padding-top: 7px;
    padding-bottom: 3px;    
    border: solid thin #ccc;
    margin-right: 7px;
    vertical-align: top;
}
.miCuenta_panelModuloSistema
{
    color: #222;
    background-color: white;
    padding: 7px;    
    border: solid thin #ccc;
    border-radius: 5px;
    width: 99%;
    min-height: 90px;
    margin-bottom: 7px;
}
.miCuenta_panelModuloSistemaContratado
{
    display: inline-block;
    background-color: #33CC99;
    color: white;
    border-radius: 3px;
    text-align: center;
    width: 85px;
    margin-left: 3px;
}
.miCuenta_panelModuloSistemaSolicitado
{
    display: inline-block;
    background-color: #522398;
    color: white;
    border-radius: 3px;
    text-align: center;
    width: 85px;
    margin-left: 3px;
}
/* --- */
.popover-title
{
    background-color: #33CC99;
    color: whitesmoke;
    font-weight: bold;
}
/* MONITOREO COCINAS */
.contenedorComandaCocina
{
    display: inline-block;
    vertical-align: top;
    width: 450px;
    border: thin solid #33CC99;
    border-radius: 5px;
    padding: 7px;
    margin-right: 7px;
    margin-bottom: 7px;
    height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
}
.contenedorComandaCocinaConAviso
{
    background-color: #92c9b3;
    color: whitesmoke;
}
.contenedorComandasCocinaTam1
{
    width: 150%;
    height: 120px;
    transform: scale(0.73);
    transform-origin: 0 0;
}
.contenedorComandasCocinaTam2
{
    width: 125%;
    transform: scale(0.84);
    transform-origin: 0 0;
}
.contenedorComandasCocinaTam3
{
    width: 103%;
    transform: scale(0.97);
    transform-origin: 0 0;
}
.contenedorPruebaTouch
{
    width: 119%;
    /* height: 140%; */
    transform: scale(0.84);
    transform-origin: 0 0;
}
/* SECCIÓN TICKETS */
.ticket_contenedorRespuesta
{
    display: inline-block;
    width: 50%;
    padding: 14px;
    border: thin solid whitesmoke;
    margin-bottom: 7px;
}
.ticket_contenedorRespuestaPropia
{
    /* margin-left: 50px; */
    background-color: #CCCCCC;
    color: black;
}
.ticket_contenedorRespuestaSurbit
{
    background-color: #33CC99;
    color: white;
}
/* ALERTIFY */
.alertify-notifier .ajs-message.ajs-success
{
    background-color: #33CC99;
    text-shadow: none;
}
.alertify-notifier .ajs-message.ajs-error
{
    text-shadow: none;
}
/*** PANTALLA DE INICIO ***/
.btnAccionPantallaInicio
{
    display: inline-block;
    border: thin solid whitesmoke;
    border-radius: 7px;
    padding: 14px;
    opacity: .85;
    margin-left: 14px;
    margin-top: 28px;
    width: 140px;
    height: 175px;
    vertical-align: top;
    cursor: pointer;
    color: #33cc99;
    font-weight: bold;
}
.btnAccionPantallaInicio:hover
{
    opacity: 1;
    border-width: 2px;
    border-color: #33cc99;
}
/*** CONTENEDOR TIPS DE CADA VISTA ***/
.contenedorTipsVistaActiva
{
    display: inline-block;
    position: absolute;
    font-size: 14px;
    /* color: whitesmoke;
    background-color: #33CC99; */
    color: black;
    background-color: whitesmoke;
    border-radius: 5px;
    border: thin solid #666666;
    height: 120px;
    width: 900px;
    left: 50%;
    margin-left: -450px;
    top: 100%;
    margin-top: -175px;
    padding: 0px 0px 0px 0px;
}
.contenedorTituloTipsVistaActiva
{
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: whitesmoke;
    background-color: #33CC99;
    padding: 0px 7px 0px 7px;
}
/** VENTA COMPLETA GENÉRICA **/
.vPrincipal_ventaCompletaGenerica
{
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 7px; /* Original: 55 */
    width: calc(100% - 14px);
    height: calc(100% - 60px); /* Original: 108 */
    background-color: whitesmoke;
    border: 2px solid #666666; /* #33cc99; */
    z-index: 500;
}
.estiloFilaImparGrillas {
    background-color: whitesmoke;
}
.estiloFilaParGrillas {
    background-color: white;
}
/* */
.spanEditable_ds2
{
}
.spanEditable_ds2:hover
{
    font-weight: bold;
}
.flexRowContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.flexColumnContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenedorTexto-Cat-Prod {
    display: -webkit-box;
    display: -moz-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.render-ficha-misComercios {
    border: thin solid #ccc;
    border-radius: 3px;
    padding: 3px;
    margin: 10px;
    min-width: 200px;
    position: relative;
}
.comercio-seleccionado {
    border: 1px solid #33CC99;
    box-shadow: 0 0 11px #33CC99;
}

.comercios__label {
    color: black;
    font-weight: 600;
    font-family: "Istok Web", sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
/* Label Demo */
.comercios__label-demo {
    background-color: #ebebeb;
}
/* Label Producción */
.comercios__label-prod {
    background-color: #bfffbf;
}

/*** Logo animado ***/
.contenedor-logo-animado {
    background-color: white;
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*animation: ocultarLogoDs 1s ease forwards;*/
    display: block;
}
.ocultar-logo-animado {
    animation: ocultarLogoDs 1s ease forwards;
    animation-delay: 4s;
}

@keyframes ocultarLogoDs {
    60% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(-1000px);
        display: none;
    }
}
#logoDs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1020px;
}
#logoDs path {
    stroke: transparent;
    stroke-width: 3px;
    fill: transparent;
}
#logoDs path:nth-child(1) {
    stroke-dasharray: 664px;
    stroke-dashoffset: 664px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(2) {
    stroke-dasharray: 727px;
    stroke-dashoffset: 727px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(3) {
    stroke-dasharray: 490px;
    stroke-dashoffset: 490px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(4) {
    stroke-dasharray: 875px;
    stroke-dashoffset: 875px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(5) {
    stroke-dasharray: 886px;
    stroke-dashoffset: 886px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(6) {
    stroke-dasharray: 513px;
    stroke-dashoffset: 513px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(7) {
    stroke-dasharray: 575px;
    stroke-dashoffset: 575px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
#logoDs path:nth-child(8) {
    stroke-dasharray: 562px;
    stroke-dashoffset: 562px;
    animation: lineEffect 4s ease forwards infinite;
    animation-delay: 0.3s;
}
@keyframes lineEffect {
    40% {
        fill: transparent;
        stroke-dashoffset: 0;
        opacity: 1;
        stroke: #00C78B;
    }
    50%, 60% {
        fill: #00C78B;
        stroke-dashoffset: 0;
    }
    85% {
        opacity: 1;
        stroke: #00C78B;
    }
}
.label-vencido {
    background-color: #333;
}





