﻿.w3-contenedor:after,.w3-contenedor:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,.w3-cell-row:before,.w3-cell-row:after,
.w3-contenedor{padding:0.01em 12px;width: 340px;}
.w3-panel{padding:0.01em 16px;margin-top:16px!important;margin-bottom:16px!important;width: 400px; height: 110px;}

.w3-win8-lime {
	color: #6b8600;
	background-color: #c5e17f;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-green {
	color: #39710a;
	background-color: #90d48f;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-emerald {
	color: #006000;
	background-color: #72d072;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-teal {
	color: #007777;
	background-color: #80e6e3;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-cyan {
	color: #1271aa;
	background-color: #a5d9f5;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-blue {
	color: #2544cc;
	background-color: #7faaff;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-cobalt {
	color: #002ea1;
	background-color: #80a7ee;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-indigo {
	color: #5000cc;
	background-color: #ad7fff;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-violet {
	color: #7b00cc;
	background-color: #cc80ff;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-pink {
	color: #b132a6;
	background-color: #f9b6dc;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-magenta {
	color: #a21254;
	background-color: #ee90b8;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-crimson {
	color: #79131c;
	background-color: #d87386;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-red {
	color: #931a00;
	background-color: #f28d80;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-orange {
	color: #c15600;
	background-color: #ffb77f;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-amber {
	color: #a67507;
	background-color: #f8c982;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-yellow {
	color: #a89d00;
	background-color: #eee891;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-brown {
	color: #573a1a;
	background-color: #9b7b58;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-olive {
	color: #4b6044;
	background-color: #a2b59b;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-steel {
	color: #394859;
	background-color: #8395a5;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-mauve {
	color: #5e476a;
	background-color: #a58bbd;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-taupe {
	color: #66563d;
	background-color: #b9a580;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-sienna {
	color: #7b4022;
	background-color: #c5896d;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

.w3-win8-azulosc {
	color: #001258;
	background-color: #465aa0;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

* {
	font-family: 'Montserrat', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start; /* Lo mueve hacia la parte superior */
	padding-top: 100px; /* Ajuste fino para que no quede pegado arriba */
	z-index: 9999;
}
.loader {
	width: 50px;
	height: 50px;
	border: 5px solid #0073e6;
	border-top: 5px solid #ffffff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loader-container p {
	font-size: 16px;
	color: #0073e6;
	margin-top: 10px;
}
/* para los formularios */
.container_formularios {
	max-width: 600px;
	margin: auto;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	text-align: left; /* Esto asegurará que el texto dentro del contenedor esté alineado a la izquierda */
}

	.container_formularios label {
		display: block;
		font-weight: bold;
		margin-top: 10px;
		text-align: left; /* Asegura que los labels estén alineados correctamente */
	}

.label-pequeno {
	font-size: 11px; /* Tamaño más pequeño */
	font-weight: normal; /* Opcional, para que no sea en negrita */
	color: #666; /* Un tono más suave, si lo deseas */
}

.container_formularios input,
.container_formularios select {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-align: left; /* Asegura que el texto dentro de los campos esté alineado */
	display: block; /* Asegura que los inputs estén en bloque y alineados */
}

.container_formularios h2 {
	text-align: center;
	color: #007BFF;
}

.container_formularios .form-section {
	margin-bottom: 15px;
}

.container_formularios input:focus,
.container_formularios select:focus {
	border: 2px solid #007BFF !important; /* Azul oscuro */
	outline: none; /* Quita el contorno predeterminado */
}

.container_formularios .btn {
	border-style: none;
	border-color: inherit;
	border-width: medium;
	width: 100%;
	background: #007bff;
	color: white;
	padding: 10px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	top: 0px;
	left: 0px;
}

	.container_formularios .btn:hover {
		background: #0056b3;
	}

#container_formulario input[type="text"]:focus {
	border: 2px solid #003366 !important;
	outline: none;
}

.container_botones i {
	transition: transform 0.3s ease-in-out;
}

	.container_botones i:hover {
		transform: scale(1.2);
	}

.btn {
	position: relative;
	padding-left: 40px; /* Espacio para el icono */
}

	.btn::before {
		content: "\f2c1"; /* Código del icono bx-save */
		font-family: "Boxicons";
		position: absolute;
		left: 10px; /* Ajusta la posición del icono */
		font-size: 18px;
	}


#myBtn {
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: red; /* Set a background color */
	color: white; /* Text color */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	border-radius: 10px; /* Rounded corners */
	font-size: 18px; /* Increase font size */
}

	#myBtn:hover {
		background-color: #3e65ff; /* Add a dark-grey background on hover */
	}

a {
	text-decoration:none;
	color:#333333;
}
#mySidenav a {
    position: absolute;
    left: -70px;
    transition: 0.3s;
    padding: 18px;
    width: 140px;
    text-decoration: none;
    font-size: 17px;
    color: white;
    border-radius: 0 5px 5px 0;
}

#mySidenav a:hover {
    left: 0;
}
#about {
    top: 20px;
    background-color: #1a67bc;
}
#blog {
    top: 80px;
    background-color: #6b0ca8;
}
#projects {
    top: 140px;
    background-color: #f44336;
}
#contact {
    top: 200px;
    background-color: #4CAF50
}
#historico {
    top: 260px;
    background-color: #9ca512
}
#dashboard {
    top: 320px;
    background-color: #1227ef;
}
#notas {
	top: 380px;
	background-color: #f0a30a;
}
#solicitudes {
	top: 440px;
	background-color: #fa6800;
}
#tracking_rec {
	top: 500px;
	background-color: #647687;
}

a:hover {
	text-decoration:none;
	color:#333333;

}
body {
    text-align:center
}
#center {
    margin: 0 auto;
    text-align:left;
}
#alinear_derecha {
	margin: 0 auto;
	text-align: right;
}


.inicio {
	background-image:url('/img/fondo_main.png');
	background-repeat:repeat-x;	
}

.interna {
	background-image:url('/img/fondo_interna.png');
	background-repeat:repeat-x;	
}

.foto_interna_der img {
    border: 1px solid #cccccc;    
    margin-left:15px; 
    margin-bottom:10px;
    margin-top:5px;      
    float:right;
}

.celda_gris_clara {
  background-color: #E6E6E6;
}

.celda_gris_oscura {
  background-color: #E6E6E6;
}


.titulo_seccion_grande {
  font-family: Arial, Helvetica, sans-serif;
  color: #666666;
}

.titulo_vino {
  font-family: Arial, Helvetica, sans-serif;
  color: #97B609;
}
.style13 {
    FONT-FAMILY: Verdana;
	font-size: 9px;
    MARGIN: 1px 1px 1px 4px;
	color: #A2A4A8;
	text-align: right;
	text-decoration: none;
}
.letra_azul {
	FONT-WEIGHT: normal;
    FONT-SIZE: 11px;
    MARGIN: 1px 1px 1px 4px;
    COLOR: #0a00da;
    FONT-FAMILY: Verdana
}
.blanco
{
	FONT-WEIGHT: normal;
    FONT-SIZE: 14px;
    MARGIN: 1px 1px 1px 4px;
    COLOR: #ffffff;
    FONT-FAMILY: Verdana;
}
.Negro
{
	FONT-WEIGHT: normal;
    FONT-SIZE: 13px;
    MARGIN: 1px 1px 1px 4px;
    COLOR: #000000;
    FONT-FAMILY: Verdana;
}
.textos {
	FONT-WEIGHT: normal;
	font-size: 13px;
    MARGIN: 1px 1px 1px 4px;
	color: #444444;
	font-family: Verdana;
}
.textosmenos {
	FONT-WEIGHT: normal;
	font-size: 10px;
    MARGIN: 1px 1px 1px 4px;
	color: #444444;
	font-family: Verdana;
}
.subtitulos {
  font-size: 10pt;
  color: #CB2F2A;
}

.subtitulos_blancos {
  font-size: 10pt;
  color: #ffffff;
  font-family: Tahoma;
  font-size: 9pt;

}


@keyframes cambia-color{
    0%{
        background-position: 0%, 50%;
    }
    
    50%{
        background-position: 100%, 50%;
    }
    
    100%{
        background-position: 0%, 100%;
    }
}


.form{    
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    margin: auto;
    margin-top: 40px;
     
    font-family:Tahoma,Arial,Verdana,verdana,arial;
    font-size:11px;
    /*color: #333333;
    background-color:#ffffff;  */ 
    border-color:#c0c0c0;    
    border-style: solid;	
	border-width:1px;
	height:25px; 
    animation: cambia-color 10s linear infinite;
    background: -webkit-linear-gradient(left, #0501bc, #08e8a1);
    background-size: 400% 400%;
	/*font-size:10pt; */
               
     }
.usuml{
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-style: none;
    outline: 0px;
    color: white;
}
.pswml{
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-style: none;
    outline: 0px;
    color: white;
}
     
.boton {
	background-color:#ca342f;
	border-color=#ca342f;
	color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif,verdana,arial;
	font-size:12pt;
	font-weight:bold;
	cursor:hand;
	border-style: solid;
	
}
.button{
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 100;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-style: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    outline: 0px;
    color: white;
    transition: background 300ms;
}
.button:hover{
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
}
::placeholder{
    color: white;
}
.ultimo{    
     
    font-family:Tahoma,Arial,Verdana,verdana,arial;
    font-size:11px;
    color: #333333;
    background-color:#ffffff;   
    border-color:#c0c0c0;    
    border-style: solid;	
	border-width:1px;
	height:20px;  
               
     }
     
     
.boton {
	background-color:#90b8e9;
	border-color:#90b8e9;
	color:#FFFFFF;
	font-family:verdana;
	font-size:11pt;
	font-weight:bold;
	cursor:hand;
	border-style: solid;
}

.menusup {
	text-align: center;
	font-family: Tahoma;
	font-size: 8pt;
	color: #231F20;
}
.azul {
	background-color: #316FE1;
}
.menumain {
	font-family: Tahoma;
	font-size: 10pt;
	color: #FFFFFF;
	text-decoration:none;
}

.menumain:hover {
	font-family: Tahoma;
	font-size: 10pt;
	color: #cccccc;
	text-decoration:none;

}


.separador {
	background-color: #FFFFFF;
}
.style9 {
	background-color: #C0D3F5;
}
.style10 {
	text-align: center;
	background-color: #E6E6E6;
}
.style_amarillo {
	text-align: center;
	background-color: #e3dabd;
}
.style_verdoso {
	text-align: center;
	background-color: #9ce0ce;
}



.style12 {
	background-image: url('/img/fondo_amazon.png');
}

.menuaux {
	font-family: Tahoma;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: right;
	text-decoration:none;
}

.menuaux:hover {
	font-family: Tahoma;
	font-size: 8pt;
	color: #cccccc;
	text-align: right;
	text-decoration:none;
}

.creditos {
	font-family: Tahoma;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: right;
	text-decoration:none;
}
.style_letras {
	FONT-WEIGHT: bold;
	FONT-SIZE: 20px;
	text-align: left;
	color: #001d7e;
	FONT-WEIGHT: bold;
	padding: 4px;
	background-repeat: no-repeat;
	background-position: 3px 3px;
	MARGIN: 1px 1px 1px 4px;
	FONT-FAMILY: Verdana
}
.style101 {
	FONT-WEIGHT: bold;
	FONT-SIZE: 20px;
	text-align: left;
	color: #ffa346;
	FONT-WEIGHT: bold;
	padding: 5px;
	background-repeat: no-repeat;
	background-position: 3px 3px;
	MARGIN: 1px 1px 1px 4px;
	FONT-FAMILY: Verdana
}
.style1_blanco {
	FONT-WEIGHT: bold;
	FONT-SIZE: 25px;
	text-align: left;
	color: #ffffff;
	FONT-WEIGHT: bold;
	padding: 5px;
	background-repeat: no-repeat;
	background-position: 3px 3px;
	MARGIN: 1px 1px 1px 4px;
	FONT-FAMILY: Verdana
}

.style1 {
	FONT-WEIGHT: bold;
    FONT-SIZE: 25px;
	text-align: left;
	color: #00A1ED;
	FONT-WEIGHT: bold;
	padding: 5px;
	background-repeat: no-repeat;
	background-position: 3px 3px;
    MARGIN: 1px 1px 1px 4px;
    FONT-FAMILY: Verdana
}

.style14 {
	color: #A2A4A8;
}
.style15 {
	border-collapse: collapse;
	border: 1px solid #C0C0C0;
}
.style16 {
	font-size: 14pt;
	color: #CB2F2A;
	font-family: Tahoma;
}

.celda_verde {
	font-family: Tahoma;
	font-size: 9pt;
	color: #FFFFFF;
	text-align: center;
	background-color: #97B609;
}
.celda_azul {
	font-family: Calibri;
	font-size: 11pt;
	color: #FFFFFF;
	text-align: center;
	background-color: #0066CC;
}
.celda_gris_oscuro {
	background-color: #c0c0c0;
}
.oscuro{ 
    background-color: #605e5c; 
    color: #f1eded; 
}



#slides_single .slides_container {
	width: 540px; height: auto; overflow: visible !important; display: none;
}
#slides_single .slides_container img {
	display: block;
}
#slides_single .single_slide {
	width: 530px; height: 100px; display: block;
}
#slides_single .single_slide img {
	display: block;
}
#slides_single .pagination {
	margin: 10px -5px 0px !important;
}
#slider-container {
	margin-bottom: 40px;
}
.home-slides-slider {
	background: url("images/patterns/diagonal.png") repeat-x bottom; padding-bottom: 20px; margin-top: -30px; margin-right: -25px; margin-left: -25px;
}
#slides .slides_container {
	width: 960px; overflow: hidden; display: none;
}
#slides .slides_container .single_slide {
	width: 960px; display: block; min-height: 100px;
}
#slides .slide-image {
	height: 290px;
}
.slide-padding {
	padding: 25px !important; width: 930px !important;
}
.slides-js .pagination {
	list-style: none; margin-top: 20px; margin-right: 25px; float: right;
}
.slides-js .pagination li {
	float: left;
}
.slides-js .pagination a {
	background: url("images/navigation/skins/nav-default.png") bottom rgb(255, 255, 255); border-radius: 2px; border: 1px solid rgb(204, 204, 204); width: 20px; height: 20px; text-align: center; color: rgb(102, 102, 102) !important; line-height: 20px; font-size: 10px; font-weight: bold; margin-right: 5px; float: left; display: block; -moz-border-radius: 2px; -webkit-border-radius: 2px; text-shadow: 1px 1px 1px #FFF;
}
.slides-js .pagination a:hover {
	background: url("images/navigation/skins/nav-default-hover.png") bottom rgb(162, 164, 168); border-color: rgb(102, 102, 102); color: rgb(255, 255, 255) !important; text-shadow: none;
}
.slides-js .pagination li.current a {
	background: url("images/navigation/skins/nav-default-hover.png") bottom rgb(162, 164, 168); border-color: rgb(102, 102, 102); color: rgb(255, 255, 255) !important; text-shadow: none;
}
#slides h2 {
	line-height: 1em; margin-top: 0px;
}
.slides-js .pricing-table-wrap {
	margin: 0px !important;
}
#slider_nivo {
	width: 960px; height: 290px; overflow: hidden; position: relative;
}
.nivoSlider {
	position: relative;
}
.nivoSlider img {
	left: 0px; top: 0px; position: absolute;
}
.nivoSlider a.nivo-imageLink {
	margin: 0px; padding: 0px; border: 0px currentColor; left: 0px; top: 0px; width: 930px; height: 100%; display: none; position: absolute; z-index: 6;
}
.nivo-slice {
	height: 100%; display: block; position: absolute; z-index: 5;
}
.nivo-box {
	display: block; position: absolute; z-index: 5;
}
.nivo-directionNav a {
	top: 178px; width: 48px; height: 48px; position: absolute; z-index: 1000; cursor: pointer;
}
.nivo-prevNav {
	opacity: 0.4; transition: opacity 0.2s ease-in-out; -webkit-transition: opacity 0.2s ease-in-out; -o-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; -moz-opacity: 0.4; -khtml-opacity: 0.4; -ms-transition: opacity 0.2s ease-in-out;
}
.nivo-nextNav {
	opacity: 0.4; transition: opacity 0.2s ease-in-out; -webkit-transition: opacity 0.2s ease-in-out; -o-transition: opacity 0.2s ease-in-out; -moz-transition: opacity 0.2s ease-in-out; -moz-opacity: 0.4; -khtml-opacity: 0.4; -ms-transition: opacity 0.2s ease-in-out;
}
.nivo-prevNav:hover {
	opacity: 1; -moz-opacity: 1.0; -khtml-opacity: 1.0;
}
.nivo-nextNav:hover {
	opacity: 1; -moz-opacity: 1.0; -khtml-opacity: 1.0;
}
.nivo-nextNav {
	background: url("/img/nivo-right-arrow.png"); right: 20px;
}
.nivo-prevNav {
	background: url("/img/nivo-left-arrow.png"); left: 20px;
}
.nivo-controlNav a.active {
	font-weight: bold;
}
.nivo-caption {
	background: rgb(0, 0, 0); padding: 0px 20px; left: 0px; width: 100%; height: 40px; bottom: 0px; line-height: 40px; position: absolute; z-index: 8;
}
.nivo-caption p {
	margin: 0px; text-align: left; color: rgb(255, 255, 255) !important; font-size: 14px;
}
.nivo-controlNav {
	list-style: none; padding: 0px; right: 10px; bottom: 10px; position: absolute; z-index: 1000;
}
.nivo-controlNav a {
	background: url("img/bullets.png") no-repeat 4px 0px; width: 13px; height: 12px; color: rgb(153, 153, 153); text-indent: -9999px; overflow: hidden; margin-left: 5px; float: left; cursor: pointer;
}
.nivo-controlNav a.active {
	background-position: -8px 0px; margin-right: -1px; margin-left: 6px;
}
