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


/*************************
*******Typography******
**************************/

body {
  background: #ffffff;
  font-family: 'Open Sans',arial;
  color:#4e4e4e;
  line-height: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color:#4e4e4e;
}

h1{
  font-size: 36px;
  color:#fff;
}

h2{
  font-size: 20px;
}

h3{
  font-size: 16px;
  color: #787878;
  font-weight: 400;
  line-height: 24px;
}

h4{
  font-size: 16px;
}

a {
  color: #10436b;
  -webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition:  color 300ms, background-color 300ms;
  transition:  color 300ms, background-color 300ms;
}


hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}
/***/
.btn-color-toogle {
  color: #000;
  background-color: #bfbfbf;
  border-color: #2e6da4;
}
.btn-color-toogle:focus,
.btn-color-toogle.focus {
  color: #000;
  background-color: #bfbfbf;
  border-color: #122b40;
}
.btn-color-toogle:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-color-toogle:active,
.btn-color-toogle.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-color-toogle:active:hover,
.btn-color-toogle.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-color-toogle:active:focus,
.btn-color-toogle.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-color-toogle:active.focus,
.btn-color-toogle.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-color-toogle:active,
.btn-color-toogle.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-color-toogle.disabled:hover,
.btn-color-toogle[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-color-toogle.disabled:focus,
.btn-color-toogle[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-color-toogle.disabled.focus,
.btn-color-toogle[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-secundary .badge {
  color: #337ab7;
  background-color: #fff;
}
/**/
.btn-transparent {
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-transparent:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

a:hover,
a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

.dropdown-menu {
  margin-top: -1px;
  min-width: 180px;
}

.center h2{
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 20px;
}

.media>.pull-left{
  margin-right: 20px;
}

.media>.pull-right{
  margin-left: 20px;
}

body > section {
  padding: 60px 0;
}

.center {
  text-align: center;
  padding-bottom: 55px;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

.lead{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.transparent-bg {
  background-color: transparent !important;
  margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


/*************************
*******Header******
**************************/
.header{
font-size: 20px;
}
#header .search{

  display: inline-block;

}

.navbar>.container .navbar-brand{
  padding: 0px;
  padding-left: 2px;


}

.navbar-inverse .navbar-toggle{
  background-color: #10436b;
}
.top-bar {
  padding: 5px 0;
  /*background: #191919;*/
  background: #fff;
  border-bottom: 3px solid #20ac9f;
  line-height: 28px;

}

.top-number{
  padding-top: 5px;
  font-family:sans-serif;
  font-weight:bolder;
  font-size: 18px;
  color: #00b7af;
  line-height: 12px;
}

.top-number p{
  margin: 0;

}

.social{
  text-align: right;
}

.social-share{
 display: inline-block;
 list-style: none;
 padding: 0;
 margin: 0;
}

ul.social-share li {
  display: inline-block;
}

ul.social-share li a {
  display: inline-block;
  color: #fff;
  background: #00b7af;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 2px;

}

ul.social-share li a:hover {
  background: #fff;
  color: #00b7af;
}

.search i {
  color: #e91e63;
}

input.search-form{
  background: transparent;
  border: 0 none;
  width: 60px;
  padding: 0 10px;
  color: black;
  -webkit-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
}

input.search-form::-webkit-input-placeholder{
  color: transparent;
}

input.search-form:hover::-webkit-input-placeholder {
  color: #fff;
  font-weight:bolder;
}

input.search-form:hover {
  width: 180px;
}

#feature {
  background: #f2f2f2;
  padding-bottom: 40px;
}

.features{
  padding: 0;
}

.feature-wrap {
  margin-bottom: 35px;
  overflow: hidden;
}

.feature-wrap h2{
  margin-top: 10px;
}

.feature-wrap .pull-left {
  margin-right: 25px;
}

.feature-wrap i{
  font-size: 48px;
  height: 150px;
  width: 110px;
  margin: 3px;
  border-radius: 20%;
  line-height: 150px;
  text-align:center;
  background: #ffffff;
  color: #c52d2f;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  float: left;
  margin-right: 25px;
}

.feature-wrap i:hover {
  background: #c52d2f;
  color: #fff;
  box-shadow: inset 0 0 0 5px #c52d2f;
  -webkit-box-shadow: inset 0 0 0 5px #c52d2f;
  border: 3px solid #c52d2f;
}

/*en caso de estar desactivado*/
.feature-wrap .modelo-0 i{
  background: #ffffff;
  color: #c52d2f;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  float: left;
  margin-right: 25px;
}

.feature-wrap.modelo-0 i:hover {
  background: #c52d2f;
  color: #fff;
  box-shadow: inset 0 0 0 5px #c52d2f;
  -webkit-box-shadow: inset 0 0 0 5px #c52d2f;
  border: 3px solid #c52d2f;
}

/*en caso de estar activado*/
.feature-wrap.modelo-1 i{
  background: #ffffff;
  color: #377d39;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
  float: left;
  margin-right: 25px;
}

.feature-wrap.modelo-1 i:hover {
  background: #377d39;
  color: #fff;
  box-shadow: inset 0 0 0 5px #377d39;
  -webkit-box-shadow: inset 0 0 0 5px #377d39;
  border: 3px solid #377d39;
}


#recent-works .col-xs-12.col-sm-4.col-md-3{
  padding: 0;
}

#recent-works{
    padding-bottom: 0px;
    background-color:#f2f2f2;
}

.recent-work-wrap {
  position: relative;
}

.recent-work-wrap img{
  width: 100%;
}

.recent-work-wrap .recent-work-inner{
  top: 0;
  background: transparent;
  opacity: .8;
  width: 100%;
  border-radius: 0;
  margin-bottom: 0;
}

.recent-work-wrap .recent-work-inner h3{
  margin: 10px 0;
  text-transform: capitalize;
}

.recent-work-wrap .recent-work-inner h3 a{
  font-size: 24px;
  color: #fff;
}

.recent-work-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  background: #10436b;
  color: #fff;
  vertical-align: middle;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
  padding: 30px;
}

.recent-work-wrap .overlay .preview {
  bottom: 0;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

.recent-work-wrap:hover .overlay {
  opacity: 1;
}

#services {
  background: #000 url(../images/services/bg_services2.png);
  background-size: cover;
}

#services .lead,
#services h2{
  color: #fff;
}

.services-wrap {
  padding: 40px 30px;
  background: #fff;
  border-radius: 4px;
  margin: 0 0 40px;
}

.services-wrap h3 {
  font-size: 20px;
  margin: 10px 0;
}

.services-wrap .pull-left {
  margin-right: 20px;
}

#middle {
  background: #f2f2f2;
}

.skill h2{
  margin-bottom: 25px;
}

.accordion h2{
  margin-bottom: 25px;
}

.panel-default{
  border-color: transparent;
}

.panel-default>.panel-heading,
.panel{
  background-color: #ffffffe6;
  border:0 none;
  box-shadow: 0px 3px 5px 3px rgba(0,0,0,0.48);
-webkit-box-shadow: 0px 3px 5px 3px rgba(0,0,0,0.48);
-moz-box-shadow: 0px 3px 5px 3px rgba(0,0,0,0.48);
}

.panel-default>.panel-heading+.panel-collapse .panel-body{
  background: #fff;
  color: green;
  text-transform: capitalize;
}

.panel-body{
  padding: 20px 20px 10px;
}

.panel-coorp > .panel-heading {
  color: #fff;
  background-color: #73879c;
  border-bottom: #2ee2e9 2.3px solid;
}

.panel-group .panel+.panel{
  margin-top: 0;
  border-top: 1px solid #d9d9d9;

}

.panel-group .panel{
  border-radius: 0;
}

.panel-heading{
  border-radius: 0;
}

.panel-title>a{
  color: #4e4e4e;

}

.accordion-inner img{
  border-radius: 4px;
}

.accordion-inner h4{
  margin-top: 0;
}

.panel-heading.active{
  background: #8bc34a;
}

.panel-heading.active .panel-title>a{
  color:black;
}

a.accordion-toggle  i{
  width: 45px;
  line-height: 44px;
  font-size: 20px;
  margin-top: -10px;
  text-align: center;
  margin-right: -15px;
  background: #c9c9c9;
}

.panel-heading.active a.accordion-toggle i{
  background:  #607d8b;
  color: white;

}

.panel-heading.active a.accordion-toggle.collapsed i{
  background: #607d8b;
  color: #fff;
}

.nav-tabs>li{
  margin-bottom: 0px;
  border-bottom: 1px solid #e6e6e6;
}

.nav-tabs{
  border-bottom: transparent;
  border-right: 1px solid #e6e6e6;
}

.nav-tabs>li>a {
  background: #f5f5f5;
  color: #666;
  border-radius: 0;
  border: 0 none;
  line-height: 24px;
  margin-right:0;
  padding: 13px 15px;

}

.nav-tabs li:last-child{
  border-bottom: 0 none;
}

.nav-stacked>li+li{
  margin-top: 0;
}

.nav-tabs>li>a:hover{
  background: #5bc0de;
  color:#fff;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  border: 0;
  color:#fff;
  background: #10436b;
  position: relative;
}

.nav-tabs>li.active>a:after {
  position: absolute;
  content:  "";
  width: auto;
  height: auto;
  border-style:solid;
  border-color: transparent transparent transparent #10436b;
  border-width: 25px 22px;
  right: -44px;
  top:0;
}

.tab-wrap{
  border:1px solid #e6e6e6;
  margin-bottom: 20px;
}

.tab-content{
  padding: 20px;
}

.tab-content h2{
  margin-top: 0;
}

.tab-content img{
  border-radius: 4px;
}


#content{
  background-color: #f2f2f2;
}
.testimonial h2{
  margin-top: 0;
}

.testimonial-inner {
  color:#858586;
  font-size: 14px;
}

.testimonial-inner .pull-left{
  border-right: 1px solid #e7e7e7;
  padding-right: 15px;
  position: relative;
}

.testimonial-inner .pull-left:after{
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  margin-top: -5px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  border: 1px solid #e7e7e7;
  right: -5px;
  border-left: 0 none;
  border-bottom: 0 none;
}

#partner {
  /*background: url(../images/partners/partner_bg.png) 50% 50% no-repeat;*/
  background-color: black;
  background-size: cover;
}

#partner {
  color: #fff;
  text-align: center;
}

#partner h2,
#partner h3 {
  color: #fff;
}

.partners ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners ul li{
  display: inline-block;
  float: left;
  width: 20%;
}

#conatcat-info{
  background: #fff url(../images/contact.png) no-repeat 90% 0;
  padding: 30px 0;
}
#contact-info{
  color:#000;
}
#contact-info i{
  width: 60px;
  height: 60px;
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;
}

#contact-info h2{
  margin-top: 0;
  font-size: 48pt;
  color: #2196f3;
}



/*************************
********* About Us Page CSS ******
**************************/
#noticias {
  position: relative;
  color:#fff;
  font-weight: bold;
  font-size: 1.2em;
  background: #000;
}

#noticias:before {
  content:"";
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  background: #fff url(../images/partners/bg-post.jpg) 50% 50% no-repeat;
  background-size: cover;
  opacity: .5;
  background-attachment: fixed;
}
.about-us {
  margin-top: 40px;
  margin-bottom: -30px;
  background-color:#f2f2f2;
}

.about-us h2,
.skill_text h2 {
  color:#4e4e4e;
  font-size: 30px;
  font-weight: 600;
}

.about-us p {
  color:#4e4e4e;
}

#carousel-slider {
  position: relative;
}

#carousel-slider .carousel-indicators {
  bottom: -25px;
}

#carousel-slider .carousel-indicators li {
  border: 1px solid #ffbd20;
}

#carousel-slider a i {
  border: 1px solid #777;
  border-radius:50%;
  font-size: 28px;
  height: 50px;
  padding: 8px;
  position: absolute;
  top: 50%;
  width: 50px;
  color:#777;
}

#carousel-slider a i:hover {
  background:#bfbfbf;
  color:#fff;
  border: 1px solid #bfbfbf;
}

#carousel-slider
.carousel-control {
  width:inherit;
}

#carousel-slider .carousel-control.left i {
  left:-25px
}

#carousel-slider .carousel-control.right i {
  right: -25px;
}

#carousel-slider
.carousel-control.left,
#carousel-slider
.carousel-control.right {
  background: none;
}

.skill_text {
  display: block;
  margin-bottom: 60px;
  margin-top: 25px;
  overflow: hidden;
}

.sinlge-skill {
  background:#f2f2f2;
  border-radius: 100%;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  height: 200px;
  position: relative;
  width: 200px;
  text-transform: uppercase;
  overflow: hidden;
  margin: 30px 0;

}

.sinlge-skill p em {
  color: #FFFFFF;
  font-size: 38px;
}

.sinlge-skill p {
  line-height: 1;
}

.joomla-skill,
.html-skill,
.css-skill,
.wp-skill {
  position: absolute;
  height: 100%;
  bottom: 0;
  width:100%;
  border-radius: 100%;
  padding: 70px 0;
  text-align: center;
}


.joomla-skill {
  background: rgb(242,242,242); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 28%, rgba(45,125,164,1) 28%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(28%,rgba(242,242,242,1)), color-stop(28%,rgba(45,125,164,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#2d7da4',GradientType=0 ); /* IE6-9 */
}

.html-skill {
  background: rgb(242,242,242); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 9%, rgba(106,164,47,1) 9%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(9%,rgba(242,242,242,1)), color-stop(9%,rgba(106,164,47,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#6aa42f',GradientType=0 ); /* IE6-9 */
}

.css-skill {
  background: rgb(242,242,242); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 32%, rgba(255,189,32,1) 32%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(32%,rgba(242,242,242,1)), color-stop(32%,rgba(255,189,32,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffbd20',GradientType=0 ); /* IE6-9 */
}

.wp-skill {
  background: rgb(242,242,242); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 19%, rgba(219,54,21,1) 19%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(19%,rgba(242,242,242,1)), color-stop(19%,rgba(219,54,21,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#db3615',GradientType=0 ); /* IE6-9 */
}

.skill-wrap {
  display: block;
  overflow: hidden;
  margin: 60px 0;
}

.team h4 {
  margin-top: 0;
  text-transform: uppercase;
}

.team h5 {
  font-weight: 300;
}

.single-profile-top,
.single-profile-bottom {
  font-weight: 400;
  line-height: 24px;
}

.single-profile-top,
.single-profile-bottom  {
  border: 1px solid #ddd;
  padding: 15px;
  position: relative;
}

.media_image {
  margin-bottom: 10px;
}

.team .btn {
  background:transparent;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 3px;
  padding: 1px 5px;
  text-transform: uppercase;
  border:1px solid#ddd;
  margin-right: 3px;
}


ul.social_icons,
ul.tag {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: block;
}

ul.social_icons li,
ul.tag li {
  display: inline-block;
  margin-right: 5px;
}

ul.social_icons li  a i{
  border-radius: 50%;
  color: #FFFFFF;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  padding: 0;
  text-align: center;
  width: 25px;
  opacity:.8;
}


.team .social_icons .fa-facebook:hover,
.team .social_icons .fa-twitter:hover,
.team .social_icons .fa-google-plus:hover {
  transform: rotate(360deg);
  -ms-transform:rotate(360deg);
  -webkit-transform:rotate(360deg);
  transition-duration:2s;
  transition-property: all;
  transition-timing-function: ease;
  opacity:1;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

.team .social_icons .fa-facebook {
  background: #0182c4;
}

.team .social_icons .fa-twitter {
  background: #20B8FF
}

.team .social_icons .fa-google-plus {
  background: #D34836
}


.team-bar .first-one-arrow {
  float: left;
  margin-right: 30px;
  width: 2%;
}

.team-bar .first-arrow {
  float: left;
  margin-left: 5px;
  margin-right: 35px;
  width: 22%;
}

.team-bar .second-arrow {
  float: left;
  margin-left: 5px;
  width: 21%;
}

.team-bar .third-arrow {
  float: left;
  margin-left: 40px;
  margin-right: 12px;
  width: 22%;
}

.team-bar .fourth-arrow {
  float: left;
  margin-left: 25px;
  width: 20%;
}

.team-bar .first-one-arrow hr {
  border-bottom: 1px solid #2D7DA4;
  border-top: 1px solid #2D7DA4;
 }

.team-bar .first-arrow hr {
  border-bottom: 1px solid #2D7DA4;
  border-top: 1px solid #2D7DA4;
 }

.team-bar .second-arrow hr {
  border-bottom: 1px solid #6aa42f;
  border-top: 1px solid #6aa42f;
}

.team-bar .third-arrow hr {
  border-bottom: 1px solid #FFBD20;
  border-top: 1px solid #FFBD20;

}

.team-bar .fourth-arrow hr {
  border-bottom: 1px solid #db3615;
  border-top: 1px solid #db3615;
}

.team-bar {
  margin-bottom: 15px;
  margin-top: 30px;
  position: relative;
}

.team-bar i {
  border-radius: 50%;
  color: #FFFFFF;
  display: block;
  height: 24px;
  line-height: 24px;
  margin-top: -32px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  width: 24px;
  position: absolute;
}

.team-bar .first-arrow .fa-angle-up {
  background:#2D7DA4;
  margin-left:-33px
 }

.team-bar .second-arrow .fa-angle-down {
  background:#6AA42F;
  margin-left: -33px;
}

.team-bar .third-arrow .fa-angle-up {
  background:#FFBD20;
  margin-left: -32px;
}

.team-bar .fourth-arrow .fa-angle-down {
  background:#db3615;
  margin-left: -32px;
}

.team .single-profile-top:before,
.team .single-profile-top:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.team .single-profile-top:before {
  left:26px;
  bottom: -20px;
  border-width: 10px;
  border-color:#fff transparent transparent transparent;
  z-index: 1;
}


.team .single-profile-top:after {
  left: 25px;
  bottom: -22px;
  border-style: solid;
  border-width: 11px;
  border-color:#ddd transparent transparent transparent;
  z-index: 0;
}

.team .single-profile-bottom:before,
.team .single-profile-bottom:after {
  position: absolute;
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
}

.team .single-profile-bottom:before {
  left:30px;
  top: -20px;
  border-width: 10px;
  border-color: transparent transparent #fff transparent;
  z-index: 1;
}

.team .single-profile-bottom:after {
  left: 29px;
  top: -22px;
  border-style: solid;
  border-width: 11px;
  border-color: transparent transparent #DDD transparent;
  z-index: 0;
}

/***********************
****Service page css****
***********************/

.services {
  padding: 0;
}

.get-started {
  background: none repeat scroll 0 0 #F3F3F3;
  border-radius: 3px;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 18px;
  margin-top: 60px;
}

.get-started h2 {
  padding-top: 30px;
  margin-bottom: 20px;
}

.request {
  bottom: -15px;
  left: 50%;
  position: absolute;
  margin-left: -110px;
}

.request h4 {
  position: absolute;
  width: 220px;
  position:relative;
}

.request h4 a{
  background:#c52d2f;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  border-radius: 3px;
  padding: 5px 15px;
}

.request h4:after {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 12px;
  bottom: -18px;
  content: "";
  height: 0;
  position: absolute;
  right: 13px;
  z-index: -99999;
}

.request h4:before {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 12px;
  bottom: -18px;
  content: "";
  height: 0;
  left: 13px;
  position: absolute;
  z-index: -99999;
}

.clients-area {
  padding: 60px;
}

.clients-comments {
    background-image: url("../images/image_bg.png");
    background-position: center 118px;
    background-repeat: no-repeat;
    margin-bottom: 100px;
}

.clients-comments img {
  background:#DDDDDD;
  border: 1px solid #DDDDDD;
  height: 182px;
  padding: 3px;
  width: 182px;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}

.clients-comments h3 {
  margin-top: 55px;
  font-weight: 300;
  padding: 0 40px;
}

.clients-comments h4 {
  font-weight: 300;
  margin-top: 15px;
}


.clients-comments  h4  span {
  font-weight: 700;
  font-style: oblique;
}



.text-left {
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 15px;
}

/*************************
********* Portfolio CSS ******
**************************/

#portfolio_page {
  margin-top: 115px;
  padding-bottom: 0;
}

.portfolio-items,
.portfolio-filter {
  list-style: none outside none;
  margin: 0 0 40px 0;
  padding: 0;
}

.portfolio-filter > li {
  display: inline-block;
}

.portfolio-filter > li a {
  background: none repeat scroll 0 0 #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
  text-transform: uppercase;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  border: 1px solid #F2F2F2;
  outline: none;
  border-radius: 3px;
}

.portfolio-filter > li a:hover,
.portfolio-filter > li a.active{
  color:#fff;
  background: #c52d2f;
  border: 1px solid #c52d2f;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-items > li {
  float: left;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.portfolio-item {
  margin: 0;
  padding:0;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}


/**************************
********* Pricing Table CSS *
**************************/

.pricing_heading {
  margin-top: 120px
}

.pricing_heading h2,
.pricing_heading p {
  color:#4e4e4e;
}

.pricing-area h1 {
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 15px;
}

.pricing-area span {
  font-weight: 700;
  font-size: 18px;
}

.pricing-area h3,
.pricing-area span  {
  color: #fff;
}

.plan {
  position: relative;
  margin-bottom: 70px;
}

.pricing-area ul {
  background:#FAFAFA;
  padding: 0;
  margin: 0;
}

.pricing-area ul li {
  list-style: none;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.pricing-area ul li:nth-child(even){
  background:#f5f5f5
}

.pricing-area .price-three img,
.pricing-area .price-six img {
  position: absolute;
  right: 15px;
  top: 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three {
  padding:17px 0;
  border-radius:2px 2px 0 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three,
.pricing-area .heading-four,
.pricing-area .heading-five,
.pricing-area .heading-six,
.pricing-area .heading-seven {
  margin-left: -10px
}


.pricing-area .heading-one,
.pricing-area .price-one .plan-action .btn-primary {
  background: #e24f43
}

.pricing-area .heading-two,
.pricing-area .price-two .plan-action .btn-primary {
  background:#27AE60;
}

.pricing-area .heading-three,
.pricing-area .price-three .plan-action .btn-primary {
  background: #f39c12;
}

.pricing-area .heading-four,
.pricing-area .price-four .plan-action .btn-primary {
  background: #5c5c5c
}

.pricing-area .heading-five,
.pricing-area .price-five .plan-action .btn-primary {
  background: #5c5c5c
}

.pricing-area .heading-six,
.pricing-area .price-six .plan-action .btn-primary {
  background: #e24f43
;
}

.pricing-area .heading-seven,
.pricing-area .price-seven .plan-action .btn-primary {
  background: #5c5c5c
}

.pricing-area .bg{
 background: #fafafa
}

.pricing-area .heading-one h3:before {
  border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-two h3:before {
  border-color: #1f8c4d transparent transparent;
}

.pricing-area .heading-three h3:before {
  border-color: #d4880f transparent transparent;
}

.pricing-area .heading-four h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area .heading-five h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area .heading-six h3:before {
  border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-seven h3:before {
  border-color: #424242 transparent transparent;
}

.pricing-area h3:before {
  border-color: #D4880F transparent transparent;
  border-radius: 5px 0 0 0px;
  border-style: solid;
  border-width: 12px;
  content: "";
  height: 0;
  left: 4px;
  position: absolute;
  top: 78px;
  width: 0;
  z-index: -999;
}

.small-pricing h3:after {
  height:94px;
}

.small-pricing h3:before {
  top: 74px;
}

.plan-action {
  height: 40px;
}

.pricing-area .plan-action .btn-primary {
  position: relative;
  padding:5px 20px;
  color: #fff
;
  margin-top: 5px;
}

.pricing-area .plan-action .btn-primary:before {
  border-color: #E24F43 transparent transparent;
  border-radius: 5px 0 0 0;
  border-style: solid;
  border-width: 12px;
  bottom: -12px;
  content: "";
  height: 0;
  left: -9px;
  position: absolute;
  width: 0;
  z-index: -1;
}

.pricing-area .plan-action .btn-primary:after {
  border-color: #E24F43 transparent transparent;
  border-radius: 5px 0 0 0;
  border-style: solid;
  border-width: 12px;
  bottom: -12px;
  content: "";
  height: 0;
  position: absolute;
  right: -9px;
  width: 0;
  z-index: -1;
}

.pricing-area .price-two .plan-action .btn-primary:before,
.pricing-area .price-two .plan-action .btn-primary:after {
  border-color: #1f8c4d transparent transparent;
}

.pricing-area .price-three .plan-action .btn-primary:before,
.pricing-area .price-three .plan-action .btn-primary:after {
  border-color: #d4880f transparent transparent;
}

.pricing-area .price-four .plan-action .btn-primary:before,
.pricing-area .price-four .plan-action .btn-primary:after,
.pricing-area .price-five .plan-action .btn-primary:before,
.pricing-area .price-five .plan-action .btn-primary:after,
.pricing-area .price-seven .plan-action .btn-primary:before,
.pricing-area .price-seven .plan-action .btn-primary:after  {
  border-color: #424242 transparent transparent;
  right: -9px;
}

.pricing-area .price-six .plan-action .btn-primary:before,
.pricing-area .price-six .plan-action .btn-primary:after {
  border-color: #bf4539 transparent transparent;
  right: -9px;
}


/*************************
********* Contact Us CSS ******
**************************/

.gmap-area {
  background-image: url("../images/map.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}

.gmap-area .gmap iframe {
  border-radius: 50%;
  height: 400px;
  width: 450px;
}

.gmap{
    border: 10px solid #f6f5f0;
    border-radius: 10%;
    height: 400px;
    width: 450px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.gmap-area .map-content ul {
  list-style: none;
}

.gmap-area .map-content address h5{
  font-weight: 700;
  /* font-size: 16px; */
}

#contact-page{
  padding-top: 0;
}

#contact-page .contact-form
.form-group label {
  color: #4E4E4E;
  font-size: 16px;
  font-weight: 300;
}

.form-group .form-control {
  padding: 7px 12px;
  border-color:#f2f2f2;
  box-shadow: none;
}

textarea#message{
  resize: none;
  padding: 10px;
}

#contact-page .contact-wrap {
  margin-top: 20px;
}

/*********************
****blog page css*****
**********************/

.widget {
  margin-bottom: 60px;
  padding-left: 0;
}

.single_comments {
  margin-bottom: 20px;
}

.single_comments img {
  float: left;
  margin-right: 10px;
  margin-top: 5px;
}

.single_comments p {
  margin-bottom: 0;
}

.widget .entry-meta span {
  display: inline-block;
  margin-right: 10px;
}

.widget h3 {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog_category{
  list-style:none;
  margin:0;
  padding:0;
}

.blog_category li{
  float:none;
  margin-bottom:20px;
  text-transform: capitalize;
}

.blog_category li a {
  background:#f5f5f5;
  border-radius: 4px;
  color: #888;
  display: inline-block;
  padding: 5px 15px;
}

.blog_category li a:hover{
  background:#03a9f4;
  color: #fff;
}

 .badge:before {
  border-color: transparent transparent transparent #03a9f4;
  border-style: solid;
  border-width: 10px;
  bottom: -8px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  z-index: -99999;
}

.badge {
  background-color: #03a9f4;
  border-radius: 5px;
  color: #ff;
  padding: 8px;
  position: relative;
  left: 60px;
  top: -18px;
  font-weight: normal;
}

.blog_archieve {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

.blog_archieve li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.blog_archieve li:first-child {
  padding-top: 0;
}

ul.gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.gallery li {
  display: block;
  width: 60px;
  padding: 0;
  margin: 0 4px 4px 0;
  float: left;
}

ul.faq {
  list-style: none;
  margin: 0;
}

ul.faq li {
  margin-top: 30px;
}

ul.faq li:first-child {
  margin-top: 0;
}

ul.faq li span.number {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #34495e;
  color: #fff;
  font-size: 24px;
}

ul.faq li > div {
  margin-left: 70px;
}

ul.faq li > div h3 {
  margin-top: 0;
}


.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-item {
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.blog .blog-item .img-blog {
  border-radius: 5px;
  margin-bottom: 45px;
}

.blog .blog-item .blog-content {
  padding-bottom: 25px;
  text-align: justify;
}

.blog .blog-item .blog-content h2 {
  margin-top: 0;
  font-size: 30px;
}

.readmore{
  margin-top: 0;
}

.blog .blog-item .blog-content h3 {
  color: #858586;
  margin-bottom: 40px;
  /* font-weight: 300 */}

.blog .blog-item .blog-content h4 {
  font-size: 14px;
}

.post-tags {

}

.blog .blog-item .entry-meta {
  border-radius: 5px;
  overflow: hidden;
}

.blog .blog-item .entry-meta > span {
  background: #f5f5f5;
  border-top: 1px solid #fff;
  display: block;
  font-size: 1.2em;
  overflow: hidden;
  padding: 3px;
  text-align: left;
}

#publish_date {
  background: #8bc34a;
  border-bottom: 5px solid #607d8b;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 5px 0;
  text-align: center;
}

.blog .blog-item .entry-meta > span {
  color: #ccc;
}

.blog .blog-item .entry-meta > span a {
  font-size: 12px;
  margin-left: 3px;
  font-weight: 300;
  color: #888;
}
/*
ul.pagination > li > a {
  border: 1px solid #F1F1F1;
  margin-right:5px;
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 14px;
}

ul.pagination > li > a i{
  margin-left:5px;
  margin-right:5px;
}

ul.pagination > li.active > a,
ul.pagination > li:hover > a {
  background-color: #10436b !important;
  border-color: #c52d2f !important;
  color: #fff;
} */

.search_box {
  background-image: url("../images/search_icon.png");
  background-position: 314px 15px;
  background-repeat: no-repeat;
  border-color: #DEDEDE;
  height: 48px;
  outline: medium none;
  box-shadow: none;
}

.form-control:focus {
  box-shadow:none;
  outline: 0 none;
}


ul.tag-cloud,
ul.sidebar-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-cloud li{
    display: inline-block;
    margin-bottom: 3px;
}

.tag-cloud li a {
  background: #f5f5f5;
  color: #888;
  border: 0;
  border-radius: 4px;
  padding: 8px 15px;
}

.tag-cloud li a:hover{
  background:#c52d2f;
  color: #fff;
}

.sidebar-gallery li{
  display: inline-block;
  margin: 0 10px 10px 0;
}

.sidebar-gallery li a {
  border-radius: 4px;
  display: inline-block;
}


.papers,.papers:before,.papers:after {
	background-color:#fff;
	border:1px solid #ccc;
	box-shadow:inset 0 0 30px rgba(0,0,0,0.1),1px 1px 3px rgba(0,0,0,0.2);
}
.papers {
	position:relative;
	width:90%;
	padding:2em;
	margin:0px auto;
	margin-top:40px;
	font-size:12px;
}
.papers:before,.papers:after {
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	-webkit-transform:rotateZ(2.5deg);
	-o-transform:rotate(2.5deg);
	transform:rotateZ(2.5deg);
	z-index:-1;
}
.papers:after {
	-webkit-transform:rotateZ(-2.5deg);
	-o-transform:rotate(-2.5deg);
	transform:rotateZ(-2.5deg);
}
.papers h1 {
	font-size:1.8em;
	font-weight:normal;
	text-align:center;
	padding:0.2em 0;
	margin:0;
	border-top:1px solid #ddd;
	border-bottom:2px solid #ddd;
}
.papers p {
	text-align:left;
	margin:1.5em 0;
}
.papers >.imagen {
  height: 300px;
  background-repeat:no-repeat;
  background-size: 100%;
  margin-bottom: 5px;
}

/**********************
**blog single page css*
**********************/

.reply_section {
  background: #f5f5f5;
  border-radius: 5px;
}

.post_reply {
  margin-left: 10px;
  margin-top: 45px;
}

.post_reply img {
  width: 85px;
  height: 85px;
  border: 5px solid #D5D8DD;
}

.post_reply ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

.post_reply ul li{
  float:left;
}

.post_reply ul li a {
  display: block;
}

.post_reply ul li a i {
  border: 1px solid #DDDDDD;
  border-radius: 39px;
  color: #FFFFFF;
  font-size: 20px;
  height: 30px;
  margin-right: 3px;
  padding-top: 7px;
  text-align: center;
  width: 30px;
}

.post_reply ul li a i.fa-facebook {
  background: #0182C4;
}

.post_reply ul li a i.fa-twitter {
  background: none repeat scroll 0 0 #3FC1FE;
}

.post_reply ul li a i.fa-google-plus{
 background: none repeat scroll 0 0 #D34836;
}

.post_reply ul li a i:hover{
  opacity:.5;
}

.post_reply_content {
  margin: 30px;
}

.post_reply_content h1 a:hover{
  color:#FFC800;
}

.post_reply_content h4 {
  margin-bottom: 50px;
}

.reply_section .media-body{
  display:inherit;
}

.comment_section .media-body{
  display:inherit;
}

#comments_title{
   color:#4e4e4e;
   font-weight:700px;
   font-size:20px;
   margin-top:60px;
   margin-bottom:40px;
}
.comment_section {
  margin-top: 30px;
  position: relative;
}

.post_comments img {
  width: 85px;
  height: 85px;
  margin-top: 35px;
}

.post_reply_comments {
  background:#f5f5f5;
  border-radius: 4px;
  padding: 30px;
}

.post_reply_comments:before {
  border-color: transparent #F0F0F0 transparent transparent;
  border-style: solid;
  border-width: 15px;
  content: " ";
  height: 0;
  left: 75px;
  position: absolute;
  top: 20px;
}

.post_reply_comments h3,
.post_reply_content h3{
  margin-top: 0;
}

.post_reply_comments h1 a:hover{
  color:#c52d2f;
}

.post_reply_comments h4{
  color:#c4c4c5;
  font-weight:400;
}

.post_reply_comments p {
  padding-bottom: 30px;
}

.post_reply_comments a {
  bottom: 15px;
  position: absolute;
  right: 30px;
  background: #c52d2f;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
}

.post_reply_comments a:before {
  border-color: #c52d2f transparent transparent;
  border-style: solid;
  border-width: 16px;
  bottom: -11px;
  content: "";
  height: 0;
  left: -12px;
  position: absolute;
  z-index: 99999;
}

.post_reply_comments h2 a{

}

.message_heading {
  margin-bottom: 50px;
  margin-top: 60px;
}


/******************
 404 page css
 ******************/

#error .btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success:hover {
  background-color: #EBEBEB;
  border-color: #EBEBEB;
  color: #4E4E4E;
}

#error h1{
  color: #4e4e4e;
  text-transform: uppercase;
}


/******************
shortcodes page css
******************/

.shortcode-item {
  padding-bottom: 0;
}

.shortcode-item h2 {
  color: #4E4E4E;
  font-size: 24px;
  margin-bottom: 22px;
  margin-top: 0;
  font-weight: 600
}



/***********************
********* Footer ******
************************/
#bottom {
  background: #f5f5f5;
  font-size: 14px;
}

#bottom h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size:22px;
  color: #000;
}

#bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bottom ul li {
  display: block;
  padding: 5px 0;
}

#bottom ul li a {
  color: #808080;
}

#bottom ul li a:hover {
  color: #01509b;
}

#bottom .widget {
  margin-bottom: 0;
}

.footer {
  padding: 15px 6% 30px 6%;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: inset 2px 15px 17px -9px rgba(0,0,0,0.75);
  -moz-box-shadow: inset 2px 15px 17px -9px rgba(0,0,0,0.75);
  box-shadow: inset 2px 15px 17px -9px rgba(0,0,0,0.75);
  background-color: #858688;
  border-top: 8px solid #10436b;
}

.footer a {
  padding: 5px 16px;
  color: #02b5af;
  font-weight: bolder;
  background-color: #fff;
  border-radius: 10px;

}

.footer a:hover {
  color: #fff;
  border: #02b5af solid 2px;
  background-color: #02b5af;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul > li {
  display: inline-block;
  margin-left: 15px;
  line-height: 28pt;
}

/***********************
********* Adicionales ******
************************/
.desactive{
display: none;

}

.barra{
      background:#a3b2b9;
      color:  black;
      padding: 15px;
}
.barra input, select, .chosen-container{
      margin-bottom: 10px;
}

.input-modal{
      background:#04044c;
      color:#ffffff;
}

.duplicate{
      display: block;
      padding: 0px;
      margin-bottom: 2px;
      font-size: 12px;
      font-weight:bolder;
      color: rgba(3, 169, 244, 0);

}

.duplicate-true{
      color: #f10505;
}
.mitabla{
background: #f5f5f5;
}

.mitabla tbody tr{
background: #c8ebef;
}
.mitabla thead{
      background: #08c;
      color: #ffffff;
}
.elimina{
      font-size: 20px;
}

.row-md{
      background:#0d1023;
      color:#e7ecef;
      border:solid red 2px;
      padding: 5px 9px;
      font-size: 16px;
      margin-bottom: 10px;
}

.row-md h2{
      color:#e7ecef;
      text-align: center;
}

.linear-re h2{
  padding: 15px;
  background-color:#02b5af;
  border-radius: 0px;
  color: #fff;
  /*text-shadow: -3px -3px 3px #fff, 3px 3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);*/
  box-shadow: 10px 10px 5px 0px rgba(158,158,158,.65);

}


.cent-tel{
  padding: 5px 1px;
  background-color: #fff;
  border-radius: 10px ;
  border-style: double;
  position: absolute;
  top: 75%;
  left: 0%;
  text-align: center;
  z-index: 5;
}

.cent-tel i{
  margin: 0;
  padding: 1px;
  color:#5c3428;
  font-size: 5em;
  border-right: solid #10436b;

}

.cent-tel span{
  margin: 0px;
  padding: 0px;
  font-size: 2em;
  font-weight: bolder;
  color: #14a7db;
}

.cent-tel p{
  margin: 1em 0px 0px 0px;
  padding: 0px;
  color: #1c3e30;
  font-size: 1.8em;
  font-weight: bolder;
  text-align: center;
  font-family:monospace;
}


.banner{
  /*background-position: 50%;
  background-repeat: no-repeat;
  background-size:cover;
  left: 0 !important;
  opacity: 0;
  top: 0;
  position: ;
  width: 100%;
  display: block !important;
  height: 730px;
    position:relative;*/
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
    padding-top: 0px;
    background-position: 10% 80%;
    background-repeat:no-repeat;
    background-size:cover;
    left: 0 !important;
    top: 0;
    width: 100%;
    display: block;
    height:250px;

}



.medico{
  padding: 0;
  list-style: none;

}

.medico .c{
  margin:0px 3px 6px;
  background-color:white;
  padding: 0;
  border:solid 3px #607d8b;
}

.medico img{
  margin:0px;
  padding: 5px;
  /*border-right: 2px solid black;*/
  width: 95px;

}

.medico h1{
  padding: 0px;
  margin:0px;
  margin-top: 5px;
  text-transform:uppercase;;
  font-size: 0.9em;
  color:#009688;
  line-height: 15px;
}

.medico p{
  padding: 0;
  margin: 0;
  margin-top: 5px;
  color: #000;
  font-size: .8em;
  font-weight: bold;
  line-height: 15px;
  text-align: center;
  text-transform: capitalize;
}

.medico a{
  font-family: cursive;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 10px;
  right: 9px;
  color:#0b4965;
  font-weight: normal;
  font-size: .8em;
}



.medico_perfil .subtitulo{
  color:#2c387b;
  font-size: 1.2em;
  margin-bottom: .5em;
}

.medico_perfil img{
  width: 100%;
}

.medico_perfil h1{
  padding: 0px;
  margin:0px;
  margin-top: 5px;
  text-transform:uppercase;;
  font-size: 2em;
  line-height: normal;
}

.medico_perfil p{
  padding: 0px;
  margin-bottom: 1.5em;
  text-transform:uppercase;;
  font-size: 1em;
  line-height: normal;
}

.medico_perfil ul{
  padding: 0px;
  margin:0 0 1.5em 2.5em;
  text-transform:none;
  font-size: 0.9em;
  line-height: normal;
  color:#374248;
}

.medico_perfil a{
  position: relative;
  bottom: 0;
  right: 0;
  padding: 5px 10px;
  font-size: 1.5em;
  font-family: sans-serif;
  color:#fff;
}

.div_center{
  display: flex;
  justify-content:space-around;
  margin: 0;
  padding: 0;
  text-align: center;
}

.medico .table_horario td{
  font-size: .85em;
}



#modal_horario .modal-header{
  display: flex;
  flex-direction: row;
  align-items: center;
}

#modal_horario .modal-header h1{
  padding: 0;
  margin: 0 10px;
  color:red;
  font-size: 1.5em;
  text-transform: capitalize;


}

#modal_horario img{
  padding: 0;
  margin: 0;
  float: left;
  vertical-align: middle;
}

/************************
********* MAPA DE SITIO ******
*************************/
#siteweb .panel-default>.panel-heading+.panel-collapse .panel-body{
  background: #9dd7de;
  color: #858586;
}

#siteweb .panel-body a{
  color:red;
}

#siteweb .panel-default>.panel-heading,
#siteweb .panel{
    background-color: #044361;


}
#siteweb .panel-title>a{
  color: white;
}

#siteweb .pub-1 {
  background-color: #e91e63;
  padding: 14px;
}

#siteweb .pub-1 a{
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 14pt;
}

#siteweb .pub-2 {
  background-color: #cddc39;
  padding: 14px;
}

#siteweb .pub-2 a{
  text-decoration: none;
  text-align: center;
  color: #000;
  font-size: 14pt;
}
/************************
********* historia ******
*************************/

#history {
  position: relative;
  color:#335261;
  font-weight: bold;
  font-size: 1.1em;
  background: white;

}

#history:before {
  content:"";
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  /*background: url(../images/bg-salaespera.png) 50% 50% no-repeat;*/
  background-size: cover;
  opacity: .25;
  background-attachment: fixed;
}

#history h2,
#history h3 {
  color: #fff;
  position: relative;
}
#history .titulo h1{
  color: #607d8b;
  font-size: 28pt;
  font-variant: small-caps;
  border-bottom:4px solid #8bc34a;
  margin:0;
  position: relative;
  /*text-shadow: -3px -3px 3px #000, 3px 3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000;*/
}

#history .titulo h2{
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  color: #0b4965;
}

#history .titulo h2 a{
  padding: 8px 15px;
  margin: 0;
  margin-left: 15px;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 8px;
}


.history ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.history ul li{
  display: inline-block;
  float: left;
  width: 20%;
}

.history p{
  color:#fff;
  text-align: justify;
  font-size: 12pt;


}

#history .cuadro{
padding: 10px;


}

#out-section {
  margin: 0;
  padding: 1px;
  background-color:white;
  height: 180px;
}
#out-section  h1{
  margin: 0;
  padding: 0;
  color: #136e79;
  font-size: 28pt;
  font-variant: small-caps;
  border-bottom:4px solid #8bc34a;
  margin-top:100px;
  position: relative;
  text-align: center;
  /*text-shadow: -3px -3px 3px #000, 3px 3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000;*/
}
/*#out-section  h1:before{
  content: "";
  padding: 0 15px;
}*/

#out-section h2 {
  padding: 0;
  margin: 0;
  color: #000;
  text-align: center;
}


#tienda {
  position: relative;
  /*background: url(../images/partners/escaparate.png) 50% 50% no-repeat;*/
  background-size:cover;
  padding: 30px 0;
  margin: 0;
}


#tienda .ser-podologia{
  margin: 0;
  padding: 20px 0;
  background-color: transparent;
}

#tienda .ser-podologia.osc{
  background-color: #d8d3d3
}

#tienda .ser-podologia h2{
  padding: 0;
  margin:0;
  font-size: 18pt;
  text-transform: uppercase;
  text-align: center;
}

#tienda .ser-podologia h3{
  margin: 0;
  padding: 0;
  padding-top: 5px;
  font-size: 14pt;
  color: black;
  text-align: center;
}
#tienda .ser-podologia p{
  padding-top: 10px;
  text-align: justify;
  font-size: 15px;
}

#modal_detalle{
  top:15%;
}

#modal_detalle .modal-header{
  padding: 5%;
}

#modal_detalle .modal-header h1{
  padding: 0;
  margin: 0 10px;
  color:red;
  font-size: 2.5em;
  display: inline;
  text-transform: capitalize;
}

#modal_detalle img{
  padding: 0;
  margin: 0;
  float: left;
  width: 30%;
}



.table-pro{
  margin:0;
  padding: 0;
  border:solid 5px #9e9e9e;
}

.table-pro .spc{
  margin: 0;
  padding: 0;
  border: 3px solid #fff;
  background-color: #fff ;
}

.table-pro .producto{
  border: solid 2px black;

}
.table-pro .producto h2{
  padding: 0px;
  margin: 0;
  font-size: 12pt;
  color: black;
  text-transform: capitalize;

}
.table-pro .imagen{
  margin: 0;
  padding: 0;
}

.table-pro .texto{
  margin: 0;
  padding: 0;
  padding-top:5px;
}

.table-pro .sup{
  margin: 0;
  padding: 0;
}


.table-pro .links{
  display: flex;
  justify-content: space-between;;
}

.table-pro .links a:hover{
  margin: 0;
  padding: 0;
  color: red;
  font-weight: bolder;
  font-size: 1em;
  font-style: italic;
  padding: 0px 1px;
  cursor: pointer;
}

.table-pro .links a{
  margin: 0;
  padding: 0;
  font-size: .9em;
  font-style: italic;
  padding: 0px 1px;
  cursor: pointer;
}
.table-pro .texto p{
  color: blue;
  font-size: 10pt;
  font-weight: bold;
}
.sombra-curva-pub {
  align-items: center;
  position: relative;
}

.sombra-curva-pub:after, .sombra-curva-pub:before {
  content: "";
  width: 94%;
  height: 30%;
  background: #000;
  position: absolute;
  bottom: 0.8em;
  left: 3%;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.sombra-curva-pub:before {
  transform: rotate(-6deg);
}

.sombra-curva-pub:after {
  transform: rotate(6deg);
}



.publisher{
  margin: 0;
  margin-bottom: 20px;
  padding: 10px 0px;
  border-radius: 10px;
  background: rgb(3, 169, 244);
}
.sticky-publisher{
  position: static;
    top: 10.9063px;
}
.publisher h2{
  margin: 0;
  padding: 5px;
  color: #fff;
  font-size: 12pt;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.publisher p{
  font-size: 11pt;
  color: black;
  margin:0px 25px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 18px;

}

.publisher b{
  font-weight: bold;
  font-size: 14pt;

}

.verde{
  background-color: #8bc34a;
  color:black;
}

.verde h2{

}

select{
  text-transform: capitalize;
}

/************************
******* Citas      ******
*************************/
#asistentecita{
  padding: 1% 20%;
}

#asistentecita .modal-header{
  background-color: #8bc34a;
  border-bottom: 5px solid rgba(0, 0, 0, 0.58);
}

#asistentecita .modal-header h4{
  color: white;
}

.hora-active {
  background-color:#abe9f1;
  cursor:pointer;
}
.hora-active:before{
  content: "disponible";
}
#pre-cita{
  margin: 70px 0;
}

#pre-cita .mitabla tbody ,#pre-cita .mitabla thead{
  display:block;

}

#pre-cita .mitabla td,#pre-cita .mitabla th{
  width: 100px;
  border: solid rgba(163, 178, 185, 0.6) 2px;

}

#pre-cita .mitabla tbody{
   height:300px;
   overflow-y: scroll;
}

#pre-cita .mitabla tbody tr{
  background: #fff;
}

#pre-cita .pasos_precita{
  display: flex;
  justify-content: center;
}
#pre-cita .pasos_precita span{
  margin: .5em;
  font-size: 2em;
  font-weight: bold;
  padding: 0.8em 0.9em;
  background: #607d8b;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  border: solid 3px #3f51b5;
}
#pre-cita .pasos_precita .paso_enproceso{
  background: rgba(67,153,149,1);
background: -moz-linear-gradient(top, rgba(67,153,149,1) 0%, rgba(67,153,149,1) 43%, rgba(30,235,177,1) 50%, rgba(30,235,177,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(67,153,149,1)), color-stop(43%, rgba(67,153,149,1)), color-stop(50%, rgba(30,235,177,1)), color-stop(100%, rgba(30,235,177,1)));
background: -webkit-linear-gradient(top, rgba(67,153,149,1) 0%, rgba(67,153,149,1) 43%, rgba(30,235,177,1) 50%, rgba(30,235,177,1) 100%);
background: -o-linear-gradient(top, rgba(67,153,149,1) 0%, rgba(67,153,149,1) 43%, rgba(30,235,177,1) 50%, rgba(30,235,177,1) 100%);
background: -ms-linear-gradient(top, rgba(67,153,149,1) 0%, rgba(67,153,149,1) 43%, rgba(30,235,177,1) 50%, rgba(30,235,177,1) 100%);
background: linear-gradient(to bottom, rgba(67,153,149,1) 0%, rgba(67,153,149,1) 43%, rgba(30,235,177,1) 50%, rgba(30,235,177,1) 100%);


  color: black;
}

#pre-cita .pasos_precita .paso_realizado{
  background: rgba(30,235,177,1);
  color: black;
}


#pre-cita .comentarios{
  padding: .5em 0;
  margin: .8em 0;
  font-size: 1.2em;
  font-weight: bold;
  font-style: italic;
  background-color: #acfbe6;
  text-align: center;
  color:black;

}

#pre-cita .comentarios span{
  font-size: 0.9em;
  font-weight: normal;
}

#pre-cita .input-group{
  margin: 0;
  margin-bottom: .3em;
  padding: 0;
}

#pre-cita a{
  padding: 4px;

}

.cartel-informativo{
  background-color: #5bc0de;
  border-color: #46b8da;
  border-radius: 0 0 8px 8px;
  color: #fff;
  text-align: justify;
  line-height: 1.5em;
  font-size: 1.3em;
}

.cartel-informativo h4{
  border-bottom: solid #4caf50;
  color:black;
  font-size: 1em;
  font-weight: bold;
  margin: 0.9em 0;
  padding: 0em 0 .3em 0;
}

.cartel-informativo h2{
  color:black;
  font-style: italic;
  margin: 0.8em 0;
  padding: 0;
  text-align: center;
}

#modal_respuesta {
  margin-top: 10em;
}
.mrespuesta  .modal-header{
  background-color:#5cb85c;
}

.mrespuesta .modal-header h4{
  padding: 0;
  margin:0;
  text-align: center;
  color:#fff;
  font-weight: bolder;
  font-size: 1.8em;
}

.mrespuesta .modal-body p{
  padding: 0  .5em .8em .5em;
  margin:0;
  color:#10436b;
  font-size: 1.2em;
  font-weight: bolder;
}

.mrespuesta .modal-body li{
  padding: 0 1.3em;
  margin:0;
  font-size: 1.3em;
  text-transform: capitalize;
}

.mrespuesta .modal-body h4{
  margin: 3em 0 0 0;
  padding: .9em;
  color: #1131e8;
  font-size: 1em;
  font-weight: normal;
  font-style: italic;

}

.mrespuesta .modal-footer{
  background-color: #f9f9f9;
}
.pre-cita p{
  padding: 0;
  margin: 0;
  color: blue;
  font-size: 12px;
  font-style: italic;
}

.pre-cita select{
  padding: 0;
  margin: 0;
}

.pre-cita h2{
  margin: 0;
  margin-bottom: 20px;
  padding: 5px 10px;
  font-size: 16pt;
  font-weight: bolder;
  color: #2196f3;
  /* #2196f3*/
  /*background-color: #4caf50;*/

}

.input-group-addon span{

  font-size: 20px;

}

#content-medico a{
  cursor: pointer;
}
.table_horario{
  width: 100%;

}

.table_horario tr{
  padding: 0;
}
.table_horario th{
  text-align: center;
}

.table_horario td{
  padding: 0px;
  font-size: 8pt;
  font-weight: bold;
  text-align: center;
  color:#000;
}

.buscar{
  background-color: #9e9e9e;
  padding: 10px 0px;
}

/************************
******* Desarrollo ******
*************************/
#construccion{
  margin: 0;
  padding: 1px;
  background-color:#00bcd4;
  height: 180px;
}

#construccion h1{
  margin: 0;
  padding: 0;
  margin-top:90px;
  font-size: 48pt;
}

/************************
*** Datos del paciente **
*************************/
#datos_paciente,#datos_cita{
  margin: 0;
  padding-left:0;
}
.datos_paciente{
  background:#9e9e9e ;
  padding: 10px  15px;
}

.datos_paciente span{
  font-size: 10pt;
  margin-bottom: 0px;
}

.datos_paciente > span{
  font-size: 11pt;
  font-weight: bolder;
  color: #000;
}

.datos_paciente .input-group{
  margin-bottom: 5px;

}

/*******/
.sombra-curva {
  align-items: center;
  position: relative;
}

.sombra-curva:after, .sombra-curva:before {
  content: "";
  width: 98%;
  height: 28%;
  background: #000;
  position: absolute;
  bottom: 15px;
  left: 1%;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.sombra-curva:before {
  transform: rotate(-3deg);
}

.sombra-curva:after {
  transform: rotate(3deg);
}

.btn-blue{
  background: #216498;
  color: #fff;
  border: solid 2px #03a9f4;
}

.btn-blue:hover{
  background: #10436b;
  color: #fff;
}
/*************************
ul#thumbs, ul#thumbs li{
       margin:0;
       padding:0;
       list-style:none;
   }

   ul#thumbs li{
       float:left;
       margin-right:5px;
       border:1px solid #999;
       padding:2px;
   }
   ul#thumbs a{
       display:block;
       float:left;
       width:100px;
       height:100px;
       line-height:100px;
       overflow:hidden;
       position:relative;
       <a href="https://www.cssblog.es/z-index-propiedad/">z-index</a>:1;
   }
   ul#thumbs a img{
       float:left;
       position:absolute;
       top:-20px;
       left:-50px;
   }

   /* cursor encima */

       ul#thumbs a:hover{
           overflow:visible;
           z-index:1000;
           border:none;
       }
       ul#thumbs a:hover img{
           border:1px solid #999;
           background:#fff;
           padding:2px;
       }

   /* // mouse over */

   /* clearing floats */

       ul#thumbs:after, li#thumbs:after{
           content:".";
           display:block;
           height:0;
           clear:both;
           visibility:hidden;
           }
       ul#thumbs, li#thumbs{
           display:block;
           }
       /*  */
       ul#thumbs, li#thumbs{
           min-height:1%;
           }
       * html ul#thumbs, * html li#thumbs{
           height:1%;
           }

   p.thumb{
       float:left;
       margin:.5em 0;
       margin-right:10px;
       border:1px solid #999;
       padding:2px;
   }
   p.thumb a{
       display:block;
       float:left;
       width:100px;
       height:100px;
       line-height:100px;
       overflow:hidden;
       position:relative;
       z-index:1;
   }
   p.thumb a img{
       float:left;
       position:absolute;
       top:-20px;
       left:-50px;
   }

   /* mouse over */

       p.thumb a:hover{
           overflow:visible;
           z-index:1000;
           border:none;
       }
       p.thumb a:hover img{
           border:1px solid #999;
           background:#fff;
           padding:2px;
       }


/************
**************************/
form {
  display: block;
  margin: 3px;
}
form label {
  position: relative;
  display: block;
}
form label input {
  font: 18px Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  display: block;
  border: none;
  padding: 2px;
  width: 300px;
  margin-bottom: 20px;
  font-size: 18px;
  outline: none;
  transition: all 0.2s ease-in-out;
}
form label input::-webkit-input-placeholder {
  transition: all 0.2s ease-in-out;
  color: #999;
  font: 18px Helvetica, Arial, sans-serif;
}
form label input:-ms-input-placeholder {
  transition: all 0.2s ease-in-out;
  color: #999;
  font: 18px Helvetica, Arial, sans-serif;
}
form label input::-ms-input-placeholder {
  transition: all 0.2s ease-in-out;
  color: #999;
  font: 18px Helvetica, Arial, sans-serif;
}
form label input::placeholder {
  transition: all 0.2s ease-in-out;
  color: #999;
  font: 18px Helvetica, Arial, sans-serif;
}
form label input:focus, form label input.populated {
  padding-top: 28px;
  padding-bottom: 12px;
}
form label input:focus::-webkit-input-placeholder, form label input.populated::-webkit-input-placeholder {
  color: transparent;
}
form label input:focus:-ms-input-placeholder, form label input.populated:-ms-input-placeholder {
  color: transparent;
}
form label input:focus::-ms-input-placeholder, form label input.populated::-ms-input-placeholder {
  color: transparent;
}
form label input:focus::placeholder, form label input.populated::placeholder {
  color: transparent;
}
form label input:focus + span, form label input.populated + span {
  opacity: 1;
  top: 10px;
}
form label span {
  color: #35dc9b;
  font: 13px Helvetica, Arial, sans-serif;
  position: absolute;
  top: 0px;
  left: 20px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
form input[type="submit"] {
  transition: all 0.2s ease-in-out;
  font: 18px Helvetica, Arial, sans-serif;
  border: none;
  background: #1aaf75;
  color: #fff;
  padding: 16px 40px;
}
form input[type="submit"]:hover {
  background: #109f67;
}

.me_default{
    background:#fff;
    color:#333;
    border-color:#ccc;
}

.modal-dialog-center {
    position: relative;
    top: 10%;
}

.has-info .input-group-addon {
  color: #337ab7;
  background-color:#ecf6ff;
  border-color: #337ab7;
}

.has-info .form-control {
  border-color: #337ab7;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.has-primary .input-group-addon {
  color: #f8fafc;
  background-color:#306ca2;
  border-color: #183c5d;
}

.has-primary .form-control {
  border-color: #183c5d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.has-primary .form-control:focus {
  border-color: #183c5d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #306ca2;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #306ca2;
}


.has-coorp .help-block,
.has-coorp .control-label,
.has-coorp .radio,
.has-coorp .checkbox,
.has-coorp .radio-inline,
.has-coorp .checkbox-inline,
.has-coorp.radio label,
.has-coorp.checkbox label,
.has-coorp.radio-inline label,
.has-coorp.checkbox-inline label {
  color:#118f93;
}
.has-coorp .form-control {
  border-color: #118f93;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-coorp .form-control:focus {
  border-color: #2e5b5d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #6fb9bb;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #6fb9bb;
}
.has-coorp .input-group-addon {
  color: #118f93;
  background-color: #f4f4f4;
  border-color: #118f93;
}
.has-coorp .form-control-feedback {
  color: #118f93;
}

.has-coorpinv .help-block,
.has-coorpinv .control-label,
.has-coorpinv .radio,
.has-coorpinv .checkbox,
.has-coorpinv .radio-inline,
.has-coorpinv .checkbox-inline,
.has-coorpinv.radio label,
.has-coorpinv.checkbox label,
.has-coorpinv.radio-inline label,
.has-coorpinv.checkbox-inline label {
  color: #fcfcfc;
}


.has-coorpinv .form-control {
  border-color: #01a9af;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-coorpinv .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-coorpinv .input-group-addon {
  color: #fcfcfc;
  background-color: #01a9af;
  border-color: #01a9af;
}
.has-coorpinv .form-control-feedback {
  color: #054245;
}

.popover_km {
border:2px solid #09a9af;
text-align: center;
}

.text-coorp {
  color: #058286;
}
a.text-coorp:hover,
a.text-coorp:focus {
  color: #198b8e;
}









.btn-coorp {
  color: #fff;
  background-color: #0098af;
  border-color: #048e92;
}
.btn-coorp:focus,
.btn-coorp.focus {
  color: #fff;
  background-color: #2c888c;
  border-color: #2e5b5d;
}
.btn-coorp:hover {
  color: #fff;
  background-color: #2c888c;
  border-color: #286e71;
}
.btn-coorp:active,
.btn-coorp.active,
.open > .dropdown-toggle.btn-coorp {
  color: #fff;
  background-color: #2c888c;
  border-color: #286e71;
}
.btn-coorp:active:hover,
.btn-coorp.active:hover,
.open > .dropdown-toggle.btn-coorp:hover,
.btn-coorp:active:focus,
.btn-coorp.active:focus,
.open > .dropdown-toggle.btn-coorp:focus,
.btn-coorp:active.focus,
.btn-coorp.active.focus,
.open > .dropdown-toggle.btn-coorp.focus {
  color: #fff;
  background-color: #286e71;
  border-color: #2e5b5d;
}

.btn-prueba{
    background-color: #d9534f;
    border-color: #d43f3a;
    background-color: #c9302c;
    background-color: #ac2925;
    border-color: #761c19;

    background-color: #0098af;
    background-color: #048e92;
    background-color: #2c888c;
    background-color: #286e71;
    border-color: #2e5b5d;
}

.btn-coorp:active,
.btn-coorp.active,
.open > .dropdown-toggle.btn-coorp {
  background-image: none;
}
.btn-coorp.disabled:hover,
.btn-coorp[disabled]:hover,
fieldset[disabled] .btn-coorp:hover,
.btn-coorp.disabled:focus,
.btn-coorp[disabled]:focus,
fieldset[disabled] .btn-coorp:focus,
.btn-coorp.disabled.focus,
.btn-coorp[disabled].focus,
fieldset[disabled] .btn-coorp.focus {
  background-color: #0098af;
  border-color: #048e92;
}
.btn-coorp .badge {
  color: #0098af;
  background-color: #fff;
}

#history .titulo2 h1{
  color: #0098af;
  font-size: 28pt;
  font-variant: small-caps;
  border-bottom:1.5px solid #cbe400;
  margin:0;
  position: relative;
  /*text-shadow: -3px -3px 3px #000, 3px 3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000;*/
}

#history .titulo2 h2{
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  color: #0b4965;
}

#history .titulo2 h2 a{
  padding: 8px 15px;
  margin: 0;
  margin-left: 15px;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 8px;
}
