@charset "UTF-8";
/* CSS Document */

/*@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700');

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700');
*/

/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;700;800&display=swap');
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;500;600;700;800&display=swap');

.error{
background-color:  #ECAFAF !important;
    border-color: #BF2C2C !important;
}
   #signature-container {
            position: relative;
            width: 518px;
            height: 250px;
        }

        #signature-pad {
            width: 100%;
            height: 100%;
            border: 1px dashed black;
            touch-action: none;
            user-select: none;
        }

        /* Línea superpuesta */
        .line {
            position: absolute;
            bottom: 19%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #22538C;
        }

/*#signature-pad {
            border: 1px solid #ccc;
            width: 100%;
            max-width: 400px;
            height: 200px;
        }*/


body
{
	/*background-color:#f3f3f3;*/
	background-color:#ecf0f5;
	margin:0;
	height:100%;
	/*font-family: 'Poppins', sans-serif;*/
    font-family: 'Montserrat', sans-serif;
	font-weight:400;
    letter-spacing: -0.5px;
	/*color:#555555;*/
	color:#000000;
}


#todo
{
     width: 100%;
	 height: auto;
	 max-width: 1600px;
	 margin: 0 auto;
	 padding-top: 20px;
	 box-sizing: border-box;
	 padding-left: 70px;
	 padding-bottom: 60px;
}


.LateralIzquierda
{
    padding-left: 20px; 
    width: 300px; 
    min-width: 385px; 
    margin-top: 10px; 
    box-sizing: border-box;
}

.LateralDerecha
{
    padding-left: 30px; 
    margin-top: 10px; 
    padding-right: 20px; 
    
}

#General
{
    margin-left: -15px;
}


.sololectura{
     z-index:50;
  background:rgba(255,255,255,0.7);
  border-radius:3px;
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.SubMenu
{
    width:190px;
    height: 100px;
    background-color: #fff;
    border-radius: 30px 30px 0px 0px; 
    position: fixed; 
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -70px;
    color: #fff; 
    font-size: 26px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 10;
    
    -webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.SubMenu.MostrarSubmenu
{
    bottom: 0px;
    
    -webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.SubMenuBoton
{
    width: 50px; 
    height: 50px; 
    background-color: #0068AB; 
    border-radius: 50%; 
    position: absolute; 
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -25px;
    color: #fff; 
    font-size: 26px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: pointer;
    z-index: 11;
}

.BarraSubMenu
{
    width: auto; 
    height: 50px; 
    box-sizing: border-box; 
    background-color: #4E4446; 
    border-radius: 50px; 
    margin-top: 20px; 
    max-width: 360px;
    display: flex;
    justify-content: center;
    gap:10px;
}

.BotonSubMenu
{
    width: 50px; 
    height: 50px; 
    background-color: #4E4446; 
    border-radius: 50px;
    color: #fff; 
    font-size: 26px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    
    -webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.BotonSubMenu:hover
{
    background-color: #0068AB;
    
    -webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.correos
{
	padding: 5px;
	cursor: pointer;
    font-size: 14px;
	color: #000;
	font-weight: 700;
	border-radius: 10px;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.correos:hover
{
	padding: 5px;
	cursor: pointer;
	background-color: #0068AB;
}

.contenedorcorreos
{
	width: auto; 
	background-color: #FFFFFF; 
	padding: 10px; 
	border: 1px solid #ddd; 
	border-radius: 10px; 
	position: absolute; 
	top:0px; 
	box-sizing: border-box; 
	right: 5px; 
	display: flex; 
	flex-direction: column; 
	z-index: 100;
	opacity: 0;
	display: none;
}

.correosmostrar
{
	display: flex;
	opacity: 1;
	top:58px;
	-webkit-transition:All 1s ease;
	-moz-transition:All 1s ease;
	-o-transition:All 1s ease;
}


div.saltopagina
{
      /*display: none; */
}


.ventanaprecio
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.6);
    
    -webkit-transition:All 0s ease;
	-moz-transition:All 0s ease;
	-o-transition:All 0s ease;
}

.ventanaprecio.toggle
{
    top: 0; 
}


.ventanadescuento
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.9);
    
    -webkit-transition:All 0s ease;
	-moz-transition:All 0s ease;
	-o-transition:All 0s ease;
}

.ventanadescuento.toggle
{
    top: 0; 
}


/*
.select2-search__field
{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: -0.5px  !important;
}

.select2-results__options
{
    font-size: 14px !important;
}

.select2-selection
{
  background-color: #fff !important;
  color: #000000 !important;
  padding: 10px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  border: 1px solid #d2d6da !important;
  font-weight: 500 !important;
  letter-spacing: -0.5px !important;
}

.select2-selection:hover
{
    border:1px solid #0068AB !important;
}

.select2-selection:focus
{
    border:1px solid #0068AB !important;
}*/


.boton_venta
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 700;
    border:1px dashed #000;
    border-radius: 50px;
    font-size: 12px;
    color: #000;
    cursor: pointer;
}

.boton_venta_seleccionado
{
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 700;
    border:1px solid #000;
    border-radius: 50px;
    font-size: 12px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}





.tableromovil
{
    padding: 0px;
}


.boton_paginador
{
    width: 30px; 
    height: 30px; 
    display: flex; 
    justify-content: center; 
    align-items: center;  
    font-weight: 600; 
    font-size: 14px; 
    border: 1px solid #dee2e6; 
    border-radius: 10px;
    margin-left: 5px;
    color: #000;
    
     -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
}

.boton_paginador:hover
{
    background-color:#f1f1f1;
    cursor: pointer;
}

.boton_paginador_seleccionado
{
    color: #000;
    border: 0px solid #0068AB;
	background-color: #0068AB;
}






.titulo_seccion
{
	font-size: 23px;
	font-weight: 600;
	color: #42414c;
}

.liga_seccion
{
	font-size: 12px;
	font-weight: 500;
	color: #7E8299;
}


.ContenedorBlanco
{
	width: 100%; 
	height: auto; 
	box-sizing: border-box; 
	font-size: 14px; 
	color: #414242; 
	background-color: #fff; 
	border-radius: 10px; 
	padding: 30px; 
	padding-top: 25px; 
	padding-bottom: 25px;
}



.encabezado_lado_derecho
{
	padding: 0px; 
	display: flex; 
	justify-content: flex-end;
}


.encabezado_lado_izquierdo
{
	padding: 0px; 
	display: flex; 
	justify-content: flex-start;
}


.EncabezadoTablaIzquierda
{
	width: 100%; 
	box-sizing: border-box; 
	font-size: 14px; 
	font-weight: 400; 
	color: #808080; 
	letter-spacing: -0.5px;
}

.EncabezadoTablaDerecha
{
	width: 100%; 
	box-sizing: border-box; 
	font-size: 14px; 
	font-weight: 400; 
	color: #808080; 
	letter-spacing: -0.5px; 
	display: flex; 
	align-items: center; 
	justify-content: flex-end;
}


.FlexDireccion
{
	flex-direction: row;
}



.cargandoprincipal
{
	background: rgba(255,255,255,0.9);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}



.titulo_seccion
{
	font-size: 23px;
	font-weight: 600;
	color: #1f223b;
}


.titulo_tabla
{
	color:#000;
	font-size:18px;
	padding: 15px !important;
	padding-left: 110px !important;
}

.tabla
{
	width: 100%;
	background-color: #fff;
	border-radius: 6px;
	position: relative;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.icono_tabla
{
	position: absolute;
	width: 65px;
	height: 65px;
	background-color: #0068AB;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	top:-20px;
	left: 25px;
}

.icono_tabla > span
{
	color: #000;
	font-size: 24px;
}

.Cargando
{
	top: -110%; 
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 2000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Cargando.toggle
{
    top: 0; 
}


.ventanasuscribir
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.6);
    
}

.ventanasuscribir.toggle
{
    top: 0; 
}



.ventanaeditarcliente
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    
}

.ventanaeditarcliente.toggle
{
    top: 0; 
}


.ventananota
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.8);
    
    -webkit-transition:All 0s ease;
	-moz-transition:All 0s ease;
	-o-transition:All 0s ease;
}

.ventananota.toggle
{
    top: 0; 
}


.ventanasucursal
{
    position: fixed;
    lef: 0px; 
    top: 0; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.8);
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.ventanasucursal.toggle
{
    top: -100%;
}



.ventanabuscarcliente
{
    position: fixed;
    lef: 0px; 
    top: -100%; 
    width: 100%;
    height: 100%; 
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.8);
    
    -webkit-transition:All 0s ease;
	-moz-transition:All 0s ease;
	-o-transition:All 0s ease;
}

.ventanabuscarcliente.toggle
{
    top: 0; 
}


.ocultarabsoluto
{
    left: -100%;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.ocultarabsoluto.toggle
{
    left: 0;
}

.limpiar
{
    clear: both;
}

.Negroticket
{
    color: #000;
}

a
{
	text-decoration: none;
	color: #000;	
}



.VentanaModalVenta
{
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0,0,0,0.8);
	left: -100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	
	-webkit-transition:All 0s ease;
	-moz-transition:All 0s ease;
	-o-transition:All 0s ease;
}

.VentanaModalVenta.toggle
{
	left: 0%;
}

.VentanaModalVentaMostrar
{
	left: 0%;
}

.MarcaTextoHover
{
    background-color: #fff; 
    font-weight: 400;
}

.MarcaTextoHover:hover
{
    background-color: #FFF960; 
    font-weight: bold;
    cursor: pointer;
}

.MarcaTexto
{
    background-color: #FFF960; 
    font-weight: bold;
    cursor: pointer;
}



.FaltaEditar
{
   /* background-color: #ffd7d7; */
	color:red;
    font-weight: 400;
    cursor: pointer;
}
/*
.FaltaEditar:hover
{
    background-color: #FFF960; 
    font-weight: bold;
    cursor: pointer;
}

*/


	
.flexdirection
{
    flex-direction: row;	
}







input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="time"],
textarea
{
  border: none;
  width: 100%;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #000000;
  padding: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border: 1px solid #d2d6da;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}



input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="search"]:focus-visible,
input[type="password"]:focus-visible,
input[type="number"]:focus-visible,
input[type="time"]:focus-visible,
textarea:focus-visible
{
  outline: 2px solid #0068AB;
  border: 1px solid #0068AB;
}


input[type="text"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="time"]:hover,
textarea:hover
{
  border: 1px solid #0068AB;
}




input[type="date"]
{
  border: none;
  width: 100%;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #000000;
  padding: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border: 1px solid #d2d6da;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
}

input[type="date"]:focus-visible
{
  outline: 2px solid #0068AB;
  border: 1px solid #0068AB;
}

input[type="date"]:hover
{
  border: 1px solid #0068AB;
}




.textbox-linea
{
  border: none;
  width: 100%;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  color: #000000;
  padding: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border: 1px solid #d2d6da;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  
}

.textbox-linea:focus
{
  outline: 2px solid #0068AB;
  border: 1px solid #0068AB;
}

.textbox-linea:hover
{
  border: 1px solid #0068AB;
}





	

input[type="checkbox"]
{
    -webkit-appearance: none;
    border: 1px solid #0068AB;
    position: relative;
	outline:0px;
	width:30px;
	height:30px;
	background-color:#fff;
	border-radius: 20px;
}

input[type="checkbox"]:hover
{
    border: 1px solid #0068AB;
	cursor:pointer;
}
 
input[type="checkbox"]:checked
{
    border: 1px solid #0068AB;
    background-color: #0068AB;
	background-image:url(../images/palomita.svg);
	background-repeat:no-repeat;
	background-position:center;
	background-size: 70%;
}




.sombra
{
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.Redondo
{
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
}

.Redondo10
{
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
}

.Alertas
{
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.4);
	z-index:5000;
	display:none;
	justify-content:center;
	align-items:center;
}
.Alertas.toggle
{
	display:flex;
}

.AlertasContenedor
{
	width:65%;
	max-width:480px;
	background-color:#FFFFFF;
	padding:40px;
	text-align:center;
	border-radius: 6px;
}




/* VENTANA MODAL */

.VentanaModal
{
	display:flex;
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.6);
	z-index:1000;
	justify-content:center;
	align-items:center;
	left: -110%;
	
	-webkit-transition:All 0.3s ease;
	-moz-transition:All 0.3s ease;
	-o-transition:All 0.3s ease;
}

.VentanaModal.toggle
{
	left: 0%;
}

.VentanaModalContenedor
{
	width:100%;
	max-width:700px;
	text-align:center;
	border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


/* ALTERNAR FILAS EN TABLAS */
table tr:nth-child(even) td 
{
    /*background-color: #f7f7f7;*/
}
/* *********************** */

.renglon:hover td
{
	background-color:#feffe4;
}

h1
{
	font-size:18px;
}

/* TEXT BOX
.textbox-linea
{
	box-sizing:border-box;  
	width:100%;
	padding:10px;
	border:none;
	border:1px solid #e8edf3;
	font-size:16px;
	color:#000;
	font-family: 'Open Sans', sans-serif;
	font-weight:300;
}
.textbox-linea:hover
{
	outline:none;
}
.textbox-linea:focus
{
	outline:none;
	border:1px solid #ff6c00;
}
*/







.textbox-buscar
{
	box-sizing:border-box;  
	width:100%;
	padding:9px;
	padding-left:20px;
	border:none;
	font-size:16px;
	color:#555555;
	border-bottom: solid #8c1f32 2px;
}
.textbox-buscar
{
	outline:none;
}

.oculta_buscar
{
	width:200px; 
	height:35px; 
	position:absolute;
	margin-left:0px;
	/*margin-left:180px;*/
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.oculta_buscar.toggle
{
	margin-left:0px;
}
/* ****************************** */

/* SELECT */

select
{
	box-sizing:border-box;  
	width:100%;
	padding:15px;
	padding-top: 17px;
	padding-bottom: 17px;
	border:none;
	font-size:14px;
	color:#000;
	font-weight:500;
	border-radius: 10px;
	background: #f5f8fa url(images/chevron.svg);
	background-position:95% center;
    background-repeat: no-repeat;
	background-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
	
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
select:hover
{
	outline:none;
}
select:focus
{
	outline:none;
}

select > option
{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 50px;
}

select:before {
   font-weight: 600;
   padding-right: 5px;
}

/* ****************************** */



.select2
{
    
}
.select2:hover
{
	outline:none;
}
.select2:focus
{
	outline:none;
}

.select2 > option
{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 50px;
}

.select2:before {
   font-weight: 600;
   padding-right: 5px;
}


.sub_titulo
{
	font-size:15px;
	color:#555555;
	font-weight:700;
}

.raya
{
	border-bottom:1px solid #ebebeb;
	width:100%;
}

.contenedor1
{
	float:left;
	width:100%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
  
  
.contenedor2
{
	float:left;
	width:50%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
  
  
.contenedor3
{
	float:left;
	width:33.3333%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor4
{
	float:left;
	width:25%;
	height:auto;
	box-sizing:border-box;
	padding: 10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor5
{
	float:left;
	width:20%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor75
{
	float:left;
	width:75%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor30
{
	float:left;
	width:30%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
    
    -webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.contenedor40
{
	float:left;
	width:40%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
}




.fondo_naranja
{
	background-color:#ff9a24;
}
.fondo_naranja_claro
{
	background-color:#ffc7c8;
}
.fondo_naranja_fuerte
{
	background-color:#aa0003;
}


.fondo_gris
{
	background-color:#4E4446;
}
.fondo_gris_claro
{
	background-color:#fff;
}
.fondo_gris_fuerte
{
	background-color:#23272e;
}



.fondo_azul
{
	background-color:#00bcc3;
}
.fondo_azul_claro
{
	background-color:#23b6c9;
}
.fondo_azul_fuerte
{
	background-color:#1fa3b5;
}

.fondo_amarillo
{
	background-color:#dab326;
}
.fondo_amarillo_claro
{
	background-color:#c9a523;
}
.fondo_amarillo_fuerte
{
	background-color:#b5941f;
}

.fondo_rosa
{
	background-color:#da2677;
}
.fondo_rosa_claro
{
	background-color:#c9236e;
}
.fondo_rosa_fuerte
{
	background-color:#b51f63;
}

.fondo_rojo
{
	background-color:#e41b1e;
}
.fondo_rojo_claro
{
	background-color:#ffc7c8;
}
.fondo_rojo_fuerte
{
	background-color:#aa0003;
}





.fondo_verde
{
	background-color:#0068AB!important;
    color: #fff!important;
}

.fondo_verde:hover
{
	background-color:#23272e!important;
    color: #fff!important;
}




.fondo_color1
{
	background-color: #0068AB;
    color: #fff !important;
    
}
.texto_color1{ color: #0068AB; }

.fondo_color2
{
	background-color: #4E4446;
}
.texto_color2{ color: #4E4446; }


.fondo_verde_claro
{
	background-color:#14aa7b;
}
.fondo_verde_fuerte
{
	background-color:#12996e;
}

.fondo_blanco
{
	background-color:#fff;
}

.box_grande
{
	width:100%;
	height:120px;
	box-sizing:border-box;
	position:relative;
	overflow:hidden;
	border-radius: 10px;
}

.box_grande_contenedor
{
	width:100%;
	height:240px;
	position:absolute;
	
	-webkit-transition:All 0.2s ease;
	-moz-transition:All 0.2s ease;
	-o-transition:All 0.2s ease;
}

.box_grande_contenedor:hover
{
	margin-top:-120px;
}

.minibox_grande
{
	width:100%;
	height:120px;
	float:left;
	box-sizing:border-box;
	padding:20px; 
	display:flex; 
	align-items:center; 
	justify-content:center;
	flex-direction: column;
	position:relative;
	overflow:hidden;
}

.box_grande_link
{
	color:#3A3A3A;
	text-decoration:none;
	font-size:18px;
	font-weight:500;
}

.cuarto_circulo
{
	width:120px;
	height:120px;
	background-color: rgba(0, 0, 0, 0.1);
	position:absolute;
	border-radius:50%;
	top:-60px;
	left:-60px;
}





/* BOTONES */
.boton_color1
{
    padding-top:15px;
	padding-bottom:15px;
	padding-left: 20px;
	padding-right: 20px;
	color:#fff !important;
	font-size:13px;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:50px;
	font-weight: 600;
	cursor: pointer;
    font-weight: 600;
    
    background-color: #0068AB;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_color1:hover
{
    -webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4);
    
    -webkit-transform: translateY(-0.30em);
    transform: translateY(-0.30em);
      
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}




.boton_color2
{
	padding-top:15px;
	padding-bottom:15px;
	padding-left: 20px;
	padding-right: 20px;
	color:#fff;
	font-size:13px;
	background-color:#42414c;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:50px;
	cursor: pointer;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_color2:hover
{
	-webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4);
    
    -webkit-transform: translateY(-0.30em);
    transform: translateY(-0.30em);
      
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}










.boton_listo
{
    width: 100%;
    display: block;
    box-sizing:border-box;
    height: 50px;
    background-color:#16b985;
    border-radius:50px;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton_listo:hover
{
    background-color:#13a275;
}



/* BOTONES */
.boton_rojo
{
    padding-top:15px;
	padding-bottom:15px;
	padding-left: 20px;
	padding-right: 20px;
	color:#fff;
	font-size:13px;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:50px;
	font-weight: 400;
	cursor: pointer;
    
    background-color:#ee534f;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_rojo:hover
{
    background-color:#c53734;
    
    -webkit-transform: translateY(-0.30em);
    transform: translateY(-0.30em);
      
    -webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	-o-transition:all 0.2s ease;
}






.boton_gris
{
	padding-top:10px;
	padding-bottom:10px;
    padding-left: 20px;
    padding-right: 20px;
	color:#FFFFFF;
	font-size:14px;
	background-color:#4d5667;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:50px;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_gris:hover
{
	background-color:#313641;
}


.boton_verde
{
	padding-top:10px;
	padding-bottom:10px;
	color:#FFFFFF;
	font-size:12px;
	background-color:#16b985;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:4px;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_verde:hover
{
	background-color:#13a275;
}


.boton_azul
{
	padding-top:10px;
	padding-bottom:10px;
	color:#FFFFFF;
	font-size:12px;
	background-color:#00bcc3;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:4px;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_azul:hover
{
	background-color:#009494;
}

.boton_negro
{
	padding-top:15px;
	padding-bottom:15px;
	color:#FFFFFF;
	font-size:12px;
	background-color:#40404b;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	border-radius:4px;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_negro:hover
{
	background-color:#000;
}

.boton
{
	padding-top:15px;
	padding-bottom:15px;
	color:#FFFFFF;
	font-size:12px;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	background-color: #525252;
	border-radius: 30px;
	font-weight: 700;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.boton:hover
{
	background-color: #2c2c2c;
}



.fondoboton_guindo
{
	color: #fff;
	background-color:#0068AB;
}

.fondoboton_guindo:hover
{
	background-color:#6e1221;
}


.fondoboton_verde
{
	color: #000000;
	background-color:#8c1f32;
}

.fondoboton_verde:hover
{
	background-color:#c2cb00;
}


.fondoboton_naranja
{
	background-color:#ff9800;
}

.fondoboton_naranja:hover
{
	background-color:#cf7b00;
}


.fondoboton_rojo
{
	background-color:#f44336;
}

.fondoboton_rojo:hover
{
	background-color:#d92f22;
}


.fondoboton_azul
{
	background-color:#00bcd4;
}

.fondoboton_azul:hover
{
	background-color:#0096a9;
}


.fondoboton_gris
{
	background-color:#403f4b;
}

.fondoboton_gris:hover
{
	background-color:#2d2c33;
}




/* ETIQUETAS */
.etiqueta_amarilla
{
	padding:10px;
	color:#FFFFFF;
	font-size:11px;
	background-color:#26c6da;
	text-decoration:none;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.etiqueta_azul
{
	padding:7px;
	color:#0bd8ff;
	font-size:12px;
	background-color:#d6f8ff;
	text-decoration:none;
	border-radius: 10px;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.etiqueta_roja
{
	padding:7px;
	color:#f2416c;
	font-size:12px;
	background-color:#fff5f8;
	text-decoration:none;
	border-radius: 10px;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.etiqueta_verde
{
	padding:7px;
	color:#a2c400;
	font-size:12px;
	background-color:#f5ffce;
	text-decoration:none;
	border-radius: 10px;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}


.etiqueta_naranja
{
	padding:7px;
	color:#fbc737;
	font-size:12px;
    background-color:#fff9e3;
	/*background-color:#fef5d3;*/
	text-decoration:none;
	border-radius: 10px;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

.etiqueta_gris
{
	padding:7px;
	color:#C4C4C4;
	font-size:12px;
    background-color:#EEEEEE;
	/*background-color:#fef5d3;*/
	text-decoration:none;
	border-radius: 10px;
	font-weight: 600;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}

/***********************************************/









.boton_azul_cuadrado
{
	padding-top:10px;
	padding-bottom:10px;
	color:#FFFFFF;
	font-size:12px;
	background-color:#26c6da;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_azul_cuadrado:hover
{
	background-color:#22b3c5;
}




.boton_negro_cuadrado
{
	padding-top:10px;
	padding-bottom:10px;
	color:#FFFFFF;
	font-size:12px;
	background-color:#40404b;
	text-decoration:none;
	display:flex;
	align-items:center;
	justify-content:center;
	align-content:center;
	
	-webkit-transition:All 0.5s ease;
	-moz-transition:All 0.5s ease;
	-o-transition:All 0.5s ease;
}
.boton_negro_cuadrado:hover
{
	background-color:#000;
}



/* ******************************************* */





#top_bar
{
	width:100%;
	max-width: 1130px;
	margin: 0 auto;
    height: 50px;
	display:flex;
	align-items:center;
	justify-content:flex-end;
	box-sizing:border-box;
	padding-right: 10px;
	position: relative;
	padding-left: 70px;
}

#top_bar_titulo
{
	width:100%;
	max-width: 1600px;
	margin: 0 auto;
	height:50px;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	padding-left: 70px;
}

#boton_menu_movil
{
	width: 100px; 
	height: 100px; 
	position: absolute; 
	display: none; 
	justify-content: center; 
	align-items: center; 
	top: -50px; 
	left: -50px; 
	border-radius: 50px; 
	cursor: pointer;
	
	background-color: #0068AB;
}

.boton_top
{
	text-decoration:none;
	float:right; 
	width:50px; 
	height:auto; 
    padding: 0px;
	display:flex; 
	justify-content:center; 
	align-items:center;
}

.boton_top > span
{
	text-decoration:none;
}

.boton_top:hover
{
	/*background-color:#f9fafc; */
}

.circulo
{
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border:1px #ccc solid;
}





.Top
{
    padding-left: 310px;
}


.boton_menu_principal
{
    display: none;
    margin-right: 30px;
    
    -webkit-transition:all 1s ease;
    -moz-transition:all 1s ease;
    -o-transition:all 1s ease;
}




.menu_contenedor
{
    width: 240px; 
    height: 100%;
    background-color: #fff; 
    position: fixed;  
    z-index: 100;
    top: 0px;
    padding: 0px;
    left: 0px;
    
    -webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4);
    
    -webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-o-transition:all 1s ease;
}


.menu_contenedor::-webkit-scrollbar {
  display: none;
}



.menu_contenedor.toggle
{
    left: 0px;
    -webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.4);

    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
}

.cross_menu
{
    position: absolute; 
    top: 10px; 
    right: 14px;
    display: none;
}


.cross_menu_agenda
{
    position: absolute; 
    top: 10px; 
    right: 14px;
    display: none;
}



.menu
{
    padding: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    padding-top: 20px;
    box-sizing: border-box;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}


.boton_menu
{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    padding-left: 25px;
    box-sizing: border-box;
    border-left: 0px solid #0068AB;

    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_menu:hover
{
    background-color: #f3f3f3;
    padding-left: 35px;
    border-left: 5px solid #0068AB;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_menu .icono
{
	font-size: 24px;
	color: #353b46;
}

.boton_menu_hover
{
    background-color: #f3f3f3;
    padding-left: 35px;
    border-left: 5px solid #0068AB;
    
    /*-webkit-box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.2); 
    box-shadow: 5px 5px 22px -7px rgba(0,0,0,0.2);*/
}

.boton_menu_hover span
{
    color: #000;
}

.boton_menu_hover .notificaciones
{
    left: 45px;
}



.texto_boton_menu
{
    margin-left: 15px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    letter-spacing: -0.5px;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}


.boton_menu:hover .texto_boton_menu
{
    margin-left: 25px;
    color: #000;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}


.notificaciones
{
    border-radius: 50%; 
    width: 20px; 
    height: 20px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-color: #FF0004; 
    color: #fff; 
    font-weight: 500; 
    font-size: 12px; 
    position: absolute; 
    top:5px; 
    left: 35px;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_menu:hover .notificaciones
{
    left: 45px;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}







.boton_top
{
    display: flex; 
    align-items: center;
    height: 30px;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.boton_top > span
{
    color: #414242; 
    font-size: 14px; 
    letter-spacing: -0.5px; 
    margin-left: 3px;
    font-weight: 600;
    
    -webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}


#todo
{
	padding-left: 240px;
}

#top_bar
{
	padding-left: 240px;
}

#top_bar_titulo
{
	padding-left: 240px;
}



.Campo_gris
{  
	box-sizing:border-box!important;
	width:100%!important;
	padding:15px!important;
	padding-left: 50px!important;
	border:none!important;
	font-size:16px!important;
	color:#555555!important;
	font-weight:500!important;
	background-color: #f5f8fa!important;
	border-radius: 10px!important;
}
.Campo_gris:hover
{
	outline:none!important;
}
.Campo_gris:focus
{
	outline:none!important;
}


.Campo_gris::-webkit-input-placeholder 
{
    color:    #a1a5b7!important;
}
.Campo_gris:-moz-placeholder 
{
    color:    #a1a5b7!important;
}
.Campo_gris::-moz-placeholder 
{
    color:    #a1a5b7!important;
}
.Campo_gris:-ms-input-placeholder 
{
    color:    #a1a5b7!important;
}







@media only screen and (max-width:1400px)
{
	#todo
	{
		padding-left: 240px;
	}
	
	#top_bar
	{
		padding-left: 240px;
	}

	#top_bar_titulo
	{
		padding-left: 240px;
	}
}




@media only screen and (max-width:1024px)
{
	#todo
	{
		padding-left: 0px;
	}
	
	#top_bar_titulo
	{
		padding-left: 0px;
	}
	
	#top_bar
	{
		padding-left: 0px;
	}
	
	.menu_contenedor
	{
		left: -240px;

		-webkit-transition:all 0.5s ease;
		-moz-transition:all 0.5s ease;
		-o-transition:all 0.5s ease;
	}
	
	.cross_menu
	{
		display: block;
	}
	
	#boton_menu_movil
	{
		display: flex;
	}
	
	.margentopcomanda
	{
		margin-top:20px;
	}
	
	.flexdirection
	{
		flex-direction: row;
	}
	
	.contenedor2
	{
		float:left;
		width:50%;
		height:auto;
		box-sizing:border-box;
		padding:10px;
	}


	.contenedor3
	{
		float:left;
		width:50%;
		height:auto;
		box-sizing:border-box;
		padding:10px;
	}

	.contenedor4
	{
		float:left;
		width:50%;
		height:auto;
		box-sizing:border-box;
		padding:10px;
	}


	.contenedor5
	{
		float:left;
		width:100%;
		height:auto;
		box-sizing:border-box;
		padding:10px;
	}
    
    .tableromovil
    {
        overflow-y: hidden;
        padding-bottom: 150px;
    }
	
}


.SoloPc
{
    display: flex;
}

.SoloMovil
{
    display: none;
}


.BarraSecundaria
{
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 0px; 
    padding: 0px;
}

@media only screen and (max-width:750px)
{
    .img { width: 100% !important; height: auto !important; }
    
    .LateralIzquierda
    {
        padding-right: 20px;
        width: 100%;
    }
    
    .LateralDerecha
    {
        width: 100% !important;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    
    #Barra2
    {
        display: none !important;
    }
    
    #General
    {
        margin-left: 0px;
        margin-top: 20px;
    }
    
    .FlexDireccion
    {
        flex-direction: column;
    }

    .BarraSecundaria
    {
        margin-top: 80px;
    }

    .SoloPc
    {
        display: none;
    }

    .SoloMovil
    {
        display: flex;
    }
    
	.encabezado_lado_derecho
	{
		margin-top: 10px;
		justify-content: center;
	}

	.encabezado_lado_izquierdo
	{
		justify-content: center;
	}

	.flexdirection
	{
		flex-direction: column;	
	}
	
    .oculta_buscar
    {
        margin-left:0px;
    }

    .contenedor2
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }


    .contenedor3
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }

    .contenedor4
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }

    .contenedor5
    {
        float:left;
        width:100%;
        height:auto;
        box-sizing:border-box;
        padding:10px;
    }
	
	.contenedor75
	{
			float:left;
	width:100%;
	height:auto;
	box-sizing:border-box;
	padding:10px;
	}
	
	#top_bar_titulo
    {
        /*padding-left: 30px;*/
        display: block !important;
        height: auto;
        /*padding-right: 15px;*/
    }

}

#contenedornota
{
	padding: 15px;
}

@media print
{
			.saltoDePagina
			{
				display:block;
				page-break-before:always;
			}
   
    .NoImprimir
    {
        display: none;
    }
    
    #resultados
    {
        padding-left: 30px;
    }
    
    #top_bar_titulo
    {
        display: block !important;
        height: auto;
    }
    
    #menu_scroll
    {
        display: none;
    }
	
	#todo
	{
		padding: 0px;
	}
	
	#contenedornota
	{
		padding: 0px;
	}
	
	body
	{
		background-color: #fff;
	}
	
	.tabla
	{
		border:none;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	
	#top_bar
	{
		display: none;
	}
	
	.menu_contenedor
	{
		display: none;
	}
}