@charset "UTF-8";
/* CSS Document */
body
{
	font-family:"Helvetica Neue";
	font-size:12px;
}

a {
  text-decoration: underline;
  color: blue;
  cursor:pointer;
}

.moneda
{
	text-align:right;
}

#datos-finales {
width: 960px;
margin: 0px auto;
height: 100px;
}

#cliente, #productos, #totales, #formaFacturar, #editar-cliente, #tipoFactura
{
	border:1px #ccc solid;
	width:900px;
	margin:0px auto;
	/*padding:30px;*/
	padding: 10px 20px;
	overflow:hidden;
}

#totales, #formaFacturar
{
	width:476px;
	float:left;
	margin:20px 1px;
	height:310px;
	padding:0;
}

#cliente div, #productos div, #totales div, #formaFacturar div, #editar-cliente div {
width: 40%;
float: left;
margin: 2px 10px;
height: 28px;
}

#listado-productos {
    height: auto !important;
}

input[type="text"] {
border: 1px solid #ccc;
width: 225px;
padding: 5px;
}

label {
    width: 120px;
    display: block;
    float: left;
    text-align: right;
    margin-right: 7px;
    margin-top: 5px;
}

.check-enfermedad label {
    width: 83px;
    display: block;
    float: right;
    text-align: left;
    margin-right: 7px;
    margin-top: 5px;
}

input#BuscarCliente, input#BuscarClienteCelular {
background-image: url("../images/lupa.png");
background-repeat: no-repeat;
border: 0;
background-color: #fff;
/* color: #fff; */
width: 19px;
    margin-top: 0px;
}


input[type="button"] {
  border-radius: 0;
  background-color: #8ec63f;
  border: 0;
  /* height: 25px; */
  width: 54px;
    margin-top: 14px;
  color: #fff;
  -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
  text-transform: capitalize;
  font-family: 'Open Sans', sans-serif;
    font-weight: 100;
  font-size: 15px;
  float:right;
}

.submit {
height: 30px;
font-weight: 800;
width: 103px !important;
padding: 0 5px;
text-transform: uppercase;
}

select {
width: 225px;
border: 1px #ccc solid;
}

div#listado-productos {
clear: both;
height: auto;
}


div#fomrproductos {
width: 100% !important;
height: 100% !important;
overflow: hidden;
}

#totales div, #formaFacturar div
{
	width:92%;
	  padding-top: 10px;
}

textarea {
width: 220px;
height: 54px;
border: 1px #ccc solid;
}

#respuesta-productos, #listado-productos
{
	width:100% !important;
	margin-top: 10px;
}

table#respuesta-productos td, th {
border: 1px #ccc solid;
}

/* el menú en si mismo */
  .mi-menu  {
    border-radius: 5px;
    list-style-type: none;
    margin: 0 auto; /* si queremos centrarlo */
    padding: 0;
    /* la altura y su ancho dependerán de los textos */
    height: 40px; 
    width: 962px;
    /* el color de fondo */
    background: #fff;
    background: -moz-linear-gradient(#fff,#ccc);
    background: -webkit-linear-gradient(#fff,#ccc);
    background: -o-linear-gradient(#fff,#ccc);
    background: -ms-linear-gradient(#fff,#ccc);
    background: linear-gradient(#fff,#ccc);
	
  }

  /* si es necesario, evitamos que Blogger de problemas con los saltos de línea cuando escribimos el HTML */
  .mi-menu  br { display:none; }

  /* cada item del menu */
  .mi-menu  li {
    display: block;
    float: left; /* la lista se ve horizontal */
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .mi-menu li a {
    border-left: 1px solid #ccc;
    border-right: 1px solid #666;
    color: #666;
    display: block;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; 
	letter-spacing:-0.5px; 
    font-size: 13px;
    font-weight: bold;
    line-height: 28px;
    padding: 0 14px;
    margin: 6px 0;
    text-decoration: none;
    /* animamos el cambio de color de los textos */
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
  }
  /* eliminamos los bordes del primer y el último */
  .mi-menu li:first-child a { border-left: none; }
  .mi-menu li:last-child a{ border-right: none; }
  /* efecto hover cambia el color */
  .mi-menu li:hover > a { color: Green; }

  /* los submenús */
  .mi-menu ul {
    border-radius: 0 0 5px 5px;
    left: 0;
    margin: 0;
    opacity: 0; /* no son visibles */
    position: absolute;
    top: 40px; /* se ubican debajo del enlace principal */
    /* el color de fondo */
    background: #efefef;
    background: -moz-linear-gradient(#efefef,#ccc);
    background: -webkit-linear-gradient(#efefef,#ccc);
    background: -o-linear-gradient(#efefef,#ccc);
    background: -ms-linear-gradient(#efefef,#ccc);
    background: linear-gradient(#efefef,#ccc);
    /* animamos su visibildiad */
    -moz-transition: opacity .25s ease .1s;
    -webkit-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
  }
  /* son visibes al poner el cursor encima */
  .mi-menu li:hover > ul { opacity: 1; }

   /* cada un ode los items de los submenús */
  .mi-menu ul li {
    height: 0; /* no son visibles */
    overflow: hidden;
    padding: 0;
    /* animamos su visibildiad */
    -moz-transition: height .25s ease .1s;
    -webkit-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
  }
  .mi-menu li:hover > ul li {
    height: 36px; /* los mostramos */
    overflow: visible;
    padding: 0;
  }
  .mi-menu ul li a {
   		border: none;
	  border-bottom: 1px solid #111;
	  margin: 0;
	  padding: 10px 20px;
	  width: 135px;
	  line-height: 10px;
  }
  /* el último n otiene un borde */
  .mi-menu ul li:last-child a { border: none; }

.centrado
{
	text-align:center;
}

.negrilla
{
	font-weight:bold;
}

.caja-dashboard {
  float: left !important;
  width: 28% !important;
  height: 175px !important;
  border: 1px #efefef solid;
  border-radius: 10px;
  margin: 1% !important;
  padding: 0 0px;
}

.caja-dashboard h3 {
  margin: 7px 0;
  text-align: center;
  border-bottom: 1px #efefef solid;
}

.actual, .meta {
  font-size: 40px;
  /* line-height: 40px; */
  float: left !important;
  width: 30% !important;
  margin-top: 20px !important;
}

.slash {
  width: 10px !important;
  float: left !important;
  font-size: 40px;
  margin-top: 20px !important;
}

.actual {
  text-align: right;
}

.pesos
{
	font-size: 18px;
	margin-top: 7px !important;
	text-align:right;
	width: 90% !important;
}

.meta
{
	color:green;
}

.tabla div 
{
	width: 100% !important;
  margin: 0 !important;
  height: auto !important;
  line-height: 10px;
}

.tabla div div {
  border: 1px #efefef solid;
  width: 32% !important;
  float: left !important;
  margin:0 !important;
  height:20px !important;
}

.tabla div div div {
  border: 0px #efefef solid;
  width: 100% !important;
  height:20px !important;
}

.dia {
  font-size: 10px;
  line-height: 25px;
}

.barra-avance {
  background-color: green;
}

.numeroFactura
{
	font-weight:bold;
	font-size:14px;
}

div#caja-zonas, div#caja-dias {
  height: auto !important;
}

.mi-menu li ul {
  padding-left: 10px;
  padding-right: 10px;
}

h2 {
  width: 900px;
  margin: 20px auto 0;
  background-color: #8ec63f;
  padding: 10px 30px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

#tit-modificar
{
	display:none;
}

h3
{
	width:416px;
	margin: 0px 0;
  background-color: #8ec63f;
  padding: 10px 30px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

#btagregar
{
	height:auto !important;
}

h4 {
  width: 100%;
margin: 0px 0px 10px;
background-color: #8EC63F;
padding: 10px 0;
color: #FFF;
font-family: "Open Sans",sans-serif;
border-radius: 10px;
text-align: center;
}

.check-enfermedad label {
    width: 315px;
}

.check-tipopiel
{
	width:100% !important;
}

.check-tipopiel label
{
	width: 90%;
    float: right;
    text-align: left;
}

.acnetipopiel {
    width: 40%;
    float: left;
    margin: 2px 5%;
	height:auto !important;
}

.preguntas
{
	height:auto !important;
	clear:both;
	width:100% !important;
	margin-top:40px;
}

.clearfix {
	float: none !important;
    clear: both;
    width: 100% !important;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.botonlargo {
    width: 220px !important;
}

.preguntas h4 {
    width: 85%;
}

.check-tipopiel, .check-enfermedad {
    margin-bottom: 19px !important;
}

input[type="radio"] {
    width: 20px;
    height: 29px;
}

input[type="checkbox"] {
    width: 24px;
    height: 25px;
}

.check-enfermedad div {
    width: 100% !important;
}

.center
{
	text-align:center;
}

.derecha
{
	text-align:right;
}

td {
    padding: 2px 8px;
}

.menu_bar {
	display:none;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'FalconMasters';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.camposeguimiento {
    width: 45% !important;
    float: left !important;
        height: 26px !important;
}


.descargar
{
	width: 100px;
    padding-top: 20px;
    margin: 0 auto;
}

#descargar
{
	background-image: url(../images/descargar.png);
    width: 100px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 17px;
	display: block;
}

.contenedorfactura
{
	width:800px;
	margin:10px auto;
}

#factura h2 {
    margin-top: 0;
}


div#factura {
    width: 960px;
    margin: 30px auto;
	border: 1px #ccc solid;
}

span.clientenom {
    margin-bottom: 10px;
    /* padding-bottom: 10px; */
    display: block;
    font-weight: bold;
    font-size: 16px;
}

.logo
{
	width:200px;
	margin:0 auto;
}

div#respuesta {
    height: 20px !important;
}

.camposeguimiento textarea {
    height: auto !important;
}

#distribucion
{
	font-size: 18px;
}

#numfacturas
{
	font-size:18px;
}

.progreso {
    width: 80% !important;
    height: 10px !important;
    margin: 10px 20px !important;
    border: 1px solid #000;
}


.bien
{
	background-color:green;
}

.regular
{
	background-color:yellow;
}

.mal
{
	background-color:red;
	
}

div#progresoventas, div#progresoclientes, div#progresopromedio{
    margin: 0 !important;
    height: 10px !important;
}

.linkDetalleVentas
{
	cursor:pointer;
}

#detalleVentas
{
	display:none;
}

div#detalleVentas {
    float: none;
    clear: both;
    height: auto !important;
	    width: 100% !important;
}


.datosCliente
{
	font-weight:bold;
	font-size:14px;
}

.negrilla
{
	font-weight:bold;
}

div#ventas, div#clientes, div#zonas, div#paquetes, div#tabproductos {
    height: auto !important;
    width: 100% !important;
}


.tab-content {
    float: none;
    width: 100% !important;
    height: auto !important;
}

div#indicadores {
    width: 100% !important;
	height: auto !important;
}

#indicadores img {
    max-width: 100%;
}
#ventasDia table, #tabproductos table, #paquetes table {
    font-size: 11px;
}

div#ventas-mes, div#promedio, div#clientes-mes {
    height: 48px;
}

#loading
{
	top:0;
	left:0;
	width:100%;
	height:100vh;
	position:fixed;
	display:none;
	background-color:rgba(0,0,0,0.6);
	z-index:10;
}

.contenidoloading
{
	margin:0 auto;
	width: 200px;
    height: 134px;
	top:200px;
	position:relative;
}

.totalesfactura {
    font-weight: bold;
    font-size: 18px;
}