/* -------------------------------------------- ATENCION -------------------------------------------- */
#atencion {
  background-color: #E0E0E0 ;
  padding: 2%;
  padding-top: 2%;
  margin-bottom: 2%;
}

.dia {
  display: block;
  font-size: 22px;
  /*margin-bottom: 1%;*/
}

.horario {
  font-size: 17px;
}

/* -------------------------------------------- CONTACTO -------------------------------------------- */

#tit {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 2%;
  color: white;
}

#sub_tit {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-bottom: 2%;
}

@media (max-width: 342px) {
  #tit {
    font-size: 35px;
  }
}

.tit_contacto {
  font-size: 25px;
  text-align: center;
  display: block;
  font-weight: lighter;
}

hr {
  /*margin-top: 0;*/
  border-top: 2px solid #FF3030;
  border-bottom: 1px dashed #FF3030;
  border-left:none;
  border-right:none;
  height: 6px;
 }

#contacto {
  min-height: 100%;
  width: 100%;
  margin-bottom: 2%;
}



.textinput{
  border: none;
  border-bottom: 1px dotted #FFF;
  border-radius: 0;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 0 10px 0;
  box-shadow: none;
  font-size: 18px;
}

.textinput:focus {
  border-bottom: 1px dotted #FF3030;
  box-shadow: none;
}

#boton {
  padding: 2%;
  border: 1px solid #FF3030;
  background-color: rgba(255, 255, 255, 0);
}

#boton:hover {
  background-color: #FF3030;
  border: 1px solid #FFF;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

/* -- PLACEHOLDER -- */

.textinput::-webkit-input-placeholder { color: #47A3FF; }  /* WebKit */
.textinput:-moz-placeholder { color: #47A3FF; }            /* Firefox 18- */
.textinput::-moz-placeholder { color: #47A3FF; }           /* Firefox 19+ */
.textinput:-ms-input-placeholder { color: #47A3FF; }       /* IE 10+ */

textarea.form-control {
    height: 100px;
    border: 1px dotted #FFF;
    color: #FFF;
    background-color: rgba(255, 255, 255, 0);
}

textarea.form-control:focus {
  border: 1px dotted #FF3030;
  box-shadow: none;
}

/* -------------------------------------------- MAPA -------------------------------------------- */

#mapa {
  background-color: #FFF;
}

#mapa_sub_tit {
  font-size: 25px;
  text-align: center;
  display: block;
  margin-bottom: 2%;
}

#mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-bottom: 5%;
}

@media (max-width: 600px){
  #mapa iframe {
    height: 300px;
  }
}
/* -------------------------------------------- FORMULARIO -------------------------------------------- */
.form-container div, .form-container  span{
    font-family: Calibri, Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
}

.form-container ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #999;
}

.form-container :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #999;
   opacity:  1;
}

.form-container ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #999;
   opacity:  1;
}

.form-container :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #999;
}




.form-container .req-input .input-status {
    display: inline-block;
    height: 40px;
    width: 40px;
    float: left;
}
.form-container .input-status::before{
  content: '';
  height:20px;
  width:20px;
  position:absolute;
  top:10px;
  left:10px;
  color:white;
  border-radius:50%;
  background:white;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}

.form-container .input-status::after{
  content: " ";
  height:10px;
  width:10px;
  position:absolute;
  top:15px;
  left:15px;
  color:white;
  border-radius:50%;
  background:#00BCD4;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.form-container .req-input{
  width:100%;
  float:left;
  position:relative;
  background:#00BCD4;
  height:40px;
  display:inline-block;
  border-radius:0px;
  margin:9px 0px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}





.form-container {
/*  margin:20px;*/
  padding:20px;
  border-radius:0px;
  background:#B3E5FC;
  color:#00838F;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.form-container .form-title{
  font-size:25px;
  color:inherit;
  text-align:center;
  margin-bottom:10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}


.form-container .btn.submit-form{
  margin-top:15px;
  padding:12px;
  background:#00BCD4;
  color:white;
  border-radius:0px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}



.form-container .message-box{
  width:100%;
  height:auto;
}

.form-container textarea:focus,.form-container textarea:hover{
  background:#fff;
  outline:none;
  border:0px;
}

.form-container .req-input textarea {
  max-width:calc(100% - 50px);
    width: 100%;
    height: 80px;
    border: 0px;
    color: #777;
    padding: 10px 9px 0px 9px;
  float:left;

}
.form-container input[type=text]:focus, .form-container input[type=password]:focus, .form-container input[type=email]:focus, .form-container input[type=tel]:focus, .form-container select{
  background:#fff;
  color:#777;
  border-left:0px;
  outline:none;
}


.form-container input[type=text], .form-container input[type=password], .form-container input[type=email],input[type=tel], form-container select{
  width:calc(100% - 50px);
  float:left;
  border-radius:0px;
  border:0px solid #ddd;
  padding:0px 9px;
  height:40px;
  line-height:40px;
  color:#777;
  background:#fff;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}


/*------------------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

body {
  background-color:#404040;
}

/* -------------------------------------------- HEADER -------------------------------------------- */
#header {
  font-size: 20px;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 5000;
  background-color: #666666;
}

#logo {
  width: 110px;
  height: 100px;
  padding-left: 2%;
}
.tituloweb{
  text-align: left;
  font-size: 22px;
  color: white;
  margin-left: 2%;
  padding-top: 3%;

}


/* ----- MENU ----- */
.navbar{
  border-top: 0;
  border-radius: 0;
  margin: 0;
  background-color: #666666;
}

.dropdown-menu{ background-color: white; }

.dropdown-menu li a{ color: black; }

.navbar-toggle{ color: #fff; }

.dropdown {position:relative}

/* -- TITULO DEL DROPDOWN -- */
.dropdown-header{
  margin-top: 3%;
  margin-bottom: -10px;
  position: relative;
}

.dropdown-header { color: #222222; }

/*  NOSOTROS */

.nosotros  { color: black; }


/* -- RESPONSIVE -- */
@media(max-width:768px){
    #login-dp{
        background-color: inherit;
        color: #fff;
    }
    #login-dp .bottom{
        background-color: inherit;
        border-top:0 none;
    }
}

/* -------------------------------------------- SCROLLBAR -------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #a94442;
}
::-webkit-scrollbar-track {
  background: #222222;
}

/* --------------- ANCLA --------------- */
#flecha {
  float: right;
  position: relative;
  margin-right: 2%;
  margin-left: 2%;
}

.glyphicon-chevron-up:before {
  color: #a94442;
  cursor: pointer;
  font-size: 25px;
}

/* -------------------------------------------- FOOTER -------------------------------------------- */
#footer {
  background-color: #3b5998;
  text-align: center;
  font-size: 14px;
  margin-bottom:-50px;
  height: 20px;
  width: 100%;
  padding: 3%;
  position: relative;;

}
#infofooter {
  background-image: url(../IMg/Fondo.jpg);
  color: white;
  text-align: justify;
  font-size: 14px;
  height: auto;
  border-width: medium;

}

#titulo {
  font-family: "courgette" , helvetica , arial;
  display: block;
  font-size: 40px;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 1%;
}
#nom_empresa {
  color: white; }

#copy { color: #a94442; }

/* -------------------------------------------- redes sociales  -------------------------------------------- */

.btn-instagram{
 background: #f09433;
 background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
 background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
 background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
 color: white;
 border: 5px solid #cc2366;
}
.btn-instagram:hover{
  background: -moz-linear-gradient(45deg, white 0%, white 25%, white 50%, white 75%, white 100%);
  background: -webkit-linear-gradient(45deg, white 0%, white 25%, white 50%, white 75%, white 100%);
  background: linear-gradient(45deg, white 0%, white 25%, white 50%, white 75%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='white', endColorstr='white',GradientType=1 );
  color: #cc2366;
  border: 5px solid #cc2366;
}

.btn-circle {
  width: 50px;
  height: 50px;
  padding: 1px 7px;
  font-size: 30px;
  line-height: 1.33;
  border-radius: 25px;
  outline: none;
  transition: 2s background;
}

.error{
    background-color: #BC1010;
    padding: 0px 0px;
    border-radius: 4px;
    color: red;
    font-weight: bold;
    margin-left:800px;
    margin-top: 800px;
}
