
body{
/* 	background:url('../IMAGENES/12.jpg') repeat-x; */
	/*min-height:500px;*/ /*especifica el largo de la pagina lo quite para no estar limitado*/
	font:Arial, Helvetica, sans-serif; /*cargar este tipo de font para todo el body*/
	margin: 0 auto;
	width: 100%;
}

 #fondo{
 background:url(../IMAGENES/13.jpg);
	padding: 400px 100px;
	text-align: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	
	height: 300px;
	max-width: 100%;
	filter:brightness(0.5);
 }

#contenedor {
position: relative;
	margin: 0 auto;
	width: 870px;
	/*background:url('../IMAGENES/fondoOrillas.png') repeat-x;*/
}

/*----------------------------
	CSS3 Animated Navigation
-----------------------------*/


.fancyNav{
	/* Affects the UL element */
	overflow: hidden;
	display: inline-block;
}

.fancyNav li{
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	
	border-right: 1px solid rgba(9, 9, 9, 0.125);
	
	/* Adding a 1px inset highlight for a more polished efect: */
	
	box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-moz-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	
	position:relative;
	
	float: left;
	list-style: none;
}

.fancyNav li:after{

	/* This creates a pseudo element inslide each LI */	
	
	content:'.';
	text-indent:-9999px;
	overflow:hidden;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:1;
	opacity:0;
	
	/* Gradients! */
	
	background-image:-webkit-gradient(linear, left top, right top, from(rgba(168,168,168,0.5)),color-stop(0.5,rgba(168,168,168,0)), to(rgba(168,168,168,0.5)));
	background-image:-moz-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-o-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:-ms-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	background-image:linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
	
	/* Creating borders with box-shadow. Useful, as they don't affect the size of the element. */
	
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	/* This will create a smooth transition for the opacity property */
	
	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
}

/* Treating the first LI and li:after elements separately */

.fancyNav li:first-child{
	border-radius: 4px 0 0 4px;
}

.fancyNav li:first-child:after,
.fancyNav li.selected:first-child:after{
	box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-moz-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	-webkit-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
	
	border-radius:4px 0 0 4px;
}

.fancyNav li:last-child{
	border-radius: 0 4px 4px 0;
}

/* Treating the last LI and li:after elements separately */

.fancyNav li:last-child:after,
.fancyNav li.selected:last-child:after{
	box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
	
	border-radius:0 4px 4px 0;
}

.fancyNav li:hover:after,
.fancyNav li.selected:after,
.fancyNav li:target:after{
	/* This property triggers the CSS3 transition */
	opacity:1;
}

.fancyNav:hover li.selected:after,
.fancyNav:hover li:target:after{
	/* Hides the targeted li when we are hovering on the UL */
	opacity:0;
}

.fancyNav li.selected:hover:after,
.fancyNav li:target:hover:after{
	opacity:1 !important;
}

/* Styling the anchor elements */

.fancyNav li a{
	color: #5d5d5d;
	display: inline-block;
	/*font: 20px/1 Lobster,Arial,sans-serif;*/ /*lo quite porque no me gustaba la fuente*/
	padding: 12px 47px 14px; /*modifica el ancho, largo de los botones*/
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}

.fancyNav a.homeIcon{
	background:url('../IMAGENES/home.png') no-repeat center center;
	display: block;
	overflow: hidden;
	padding-left: 12px;
	padding-right: 12px;
	text-indent: -9999px;
	width: 16px;
}


nav{
	position: relative;	
	margin: -25px auto 0; /*mueve la barra verticalmente de posicion*/
	text-align: center;
	left: -41px;
	top: -26px;
	width: 870px;
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#ffffff;
}

a:hover{
	text-decoration:underline;
}


input.Usuario{
	padding:2px;
	top: 4px;
	left: 680px;
	position: absolute;
	border-radius: 10px;
	height: 21px;
}

span.Bien{
	width: 430px;
	text-align: center;
	color:white;
	padding:2px;
	top: 4px;
	left: 435px;
	position: absolute;
	border-radius: 10px;
	height: 12px;
}

input.Password{
	padding:2px;
	top: 28px;
	left: 680px;
	position: absolute;
	border-radius: 10px;
	height: 21px;
}
/* 
input.button{
	top: 52px;
	left: 790px;
	position: absolute;
	border-radius: 15px;
} */

#cuerpo{
	position: relative;
	margin: 0 auto;
	width: 875px;
	top: 1px;
	left: 0px;
	filter:brightness(0.9);
	/*background:url('../IMAGENES/fondoOrillas.png') repeat-x;*/
}

.cuerpo:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
    background: #000;
    opacity: 0.5;
    z-index: 0;
}

 #div_principal{
position: relative;
width: 870px;
height: 180px;
}

#banner_logo{
position: relative;
top: 0px;
left: 0px;
border-top-left-radius:5px;
border-top-right-radius:5px;
}

#Entrar{
position: relative;
top: -124px;
left: 822px;
color: #FFFFFF;
}

#panel,#flip
{
position: relative;
padding:7px;
text-align:left;
height: 20px;
top: 0 px;
left: 0px;
width: 360px;
}
#panel
{
	display:none;
}
a:link   
{   
 text-decoration:none;  
 color: #FFFFFF; 
}

#div_menu {
float: left;
width: 220px;
}

#div_central {
float: left;
width: 648px;
}

#footer { 
	margin-top: 2px; /* altura en px del footer con valor negativo */ 
	height: 22px; /* Altura del Footer en px*/ 
	clear: both; background: #1C2147; 
	text-align: center; color: #FFFFFF;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	display: block; 
	} 
	
#footer_contacto {
color: #888;
font: 11px/16px Arial, sans-serif;
margin-top: -10px;
text-align: center;
clear: both;
margin-left:1px;
}

.input-group-addon.success {
    color: rgb(255, 255, 255);
    background-color: rgb(92, 184, 92);
    border-color: rgb(76, 174, 76);
}

.input-group-addon.warning {
    color: rgb(255, 255, 255);
    background-color: rgb(240, 173, 78);
    border-color: rgb(238, 162, 54);
}

span.grey {
  background: #cccccc;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-left: 15px;
  text-align: center;
  width: 1.6em;
}

span.orange {
  background: #F39C12;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-left: 15px;
  text-align: center;
  width: 1.6em;
}

span.green {
  background: #5EA226;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-left: 15px;
  text-align: center;
  width: 1.6em;
}

h1{
    margin:auto;
    vertical-align:middle;
}

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
            box-shadow:  0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width:auto;
    padding:0 10px;
    border-bottom:none;
}
    
#ModalFactura {
    position:fixed;
    bottom:-150px;
    margin:0;
}






* {
  padding:0;
  margin:0;
}
body {
  font-family:Verdana, Geneva, sans-serif;
  font-size:14px;
  background-color:#454545;
}
.bg_img {
  background:url(../IMAGENES/7.jpg);
  background-size:cover;
   background-repeat: no-repeat;
  background-attachment:fixed;
  -webkit-filter: blur(7px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:100%;
  z-index:0;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}
.form_wrapper {
  background:#fff;
  width: 880px;
  max-width:100%;
  box-sizing:border-box;
  padding:15px;
  margin:5% auto 0;
  position:relative;
  z-index:1;
  -webkit-box-shadow:0 23px 4px -21px rgba(0, 0, 0, 0.9);
  -moz-box-shadow:0 23px 4px -21px rgba(0, 0, 0, 0.9);
  box-shadow:0 23px 4px -21px rgba(0, 0, 0, 0.9);
}
.form_container {
  padding:7px;
  border:1px dashed #ccc;
}
.form_wrapper h2 {
  font-size:1.5em;
  line-height:1.5em;
  margin:0;
}
.form_wrapper .title_container {
  text-align:center;
  margin:-15px -15px 15px;
  padding:9px 0;
  border-bottom:1px dashed #ccc;
}
.form_wrapper h3 {
  font-size:1.1em;
  font-weight:normal;
  line-height:1.5em;
  margin:0;
}

.form_wrapper h4 {
  font-size: 1.1em;
  font-weight:normal;
  line-height: 1em;
  margin:0;
}
.form_wrapper .row {
  margin:10px -15px;
}
.form_wrapper .row > div {
  padding:0 15px;
  box-sizing:border-box;
}
.form_wrapper .col_three {
  width:33%;
  float:left;
}

.form_wrapper .col_two {
  width:48%;
  float:left;
  
  }
  
.form_wrapper .col_one {
  width:99%;
  float:left;
}

.form_wrapper label {
  display:block;
  margin:0 0 5px;
}
.form_wrapper .input_field, .form_wrapper .textarea_field {
  position:relative;
}
.form_wrapper .input_field > span, .form_wrapper .textarea_field > span {
  position:absolute;
  left:0;
  top:0;
  color:#333;
  height:100%;
  border-right:1px solid #ccc;
  text-align:center;
  width:30px;
}
.form_wrapper .textarea_field > span {
  border-bottom:1px solid #ccc;
  max-height:35px;
}

.form_wrapper input[type="text"], .form_wrapper input[type="date"] , .form_wrapper input[type="number"], .form_wrapper input[type="email"], .form_wrapper input[type="tel"], textarea, select {
  width:100%;
  padding:10px 10px 10px 15px;
  border:1px solid #ccc;
  box-sizing:border-box;
  outline:none;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  transition: all 0.30s ease-in-out;
}
.form_wrapper textarea {
  height:8em;
}
.form_wrapper input[type="text"]:focus, .form_wrapper input[type="email"]:focus, .form_wrapper input[type="tel"]:focus, textarea:focus {
  -webkit-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
  -moz-box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
  box-shadow:0 0 2px 1px rgba(255, 169, 0, 0.5);
  border:1px solid #f5ba1a;
}
.form_wrapper input[type="submit"] {
  background:#f5ba1a;
  height:50px;
  line-height:50px;
  width:100%;
  border:none;
  outline:none;
  cursor:pointer;
  color:#fff;
  font-size:1.2em;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  transition: all 0.30s ease-in-out;
}
.form_wrapper input[type="submit"]:hover, .form_wrapper input[type="submit"]:focus {
  background:#daa106;
}
.credit{
  position:relative;
  z-index:1;
  text-align:center;
  padding:15px;
  color:#f5ba1a;  
}
.credit a{
  color:#daa106;  
}
@media (max-width: 700px) {
.form_wrapper .col_half {
  width:100%;
  float:none;
}
.form_wrapper label {
  margin:10px 0;
	}
	
	.form_wrapper {
	margin-top: 30%;

}
	
	
}

img {
  max-width: 100%;
}


   /* Mark input boxes that gets an error on validation: */
   input.invalid {
      background-color: #ffdddd;
   }
   
#datosForm {
      margin: 100px auto;
      font-family: Raleway;
      padding: 40px;
      width: 70%;
      min-width: 300px;
}
.page {
      display: none;
   }
   
   button {
      background-color: #4CAF50;
      color: #ffffff;
      border: none;
      margin-top: 10px;
      padding: 10px 20px;
      font-size: 17px;
      font-family: Raleway;
      cursor: pointer;
   }
   button:hover {
      opacity: 0.8;
   }
   #prevBtn {
      background-color: #bbbbbb;
   }
   .step {
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbbbbb;
      border: none;
      border-radius: 50%;
      display: inline-block;
      opacity: 0.5;
   }
   .step.active {
      opacity: 1;
   }
   .step.finish {
      background-color: #4CAF50;
   }

section {
  min-height: 100px;
}

section.dark {
  background: #beeeef;
  padding-bottom: 40px;
  position: relative;
}

section.dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: linear-gradient(to right bottom, #beeeef 50%, #fff 50.1%);
}


/* /------------------HEADER---------------/ */
header {
	width: 100%;
	margin-top: 10px;
	background-color: rgb(255 255 255);
}
header h1 {
	margin: 0;
	font-size: 0px;
}
header h1 img {
	height: 100px;
	margin: 1px;
}
header h2, header h3 {
	font-weight: bolder;
	color: rgb(98 98 98);
}
header h2 {
	font-size: 28px;
	margin: 15px 0 0 0;
}
header h3 {
	font-size: 25px;
	margin: 12px 0 0 0;
}
header h4 {
	font-size: 22px;
	margin: 12px 0 0 0;
}

#logo, #titulos {
	display: inline-block;
	vertical-align: top;
}
#logo {
	width: 22%;
}
#titulos{
	width: 50%;
	margin-top: 20px;
}
.wrapp {
	max-width: 1024px;
	min-width: 320px;
	margin: 0 auto;
}