body {
  background-color: #F9F9F9;
}

.text-open-sans {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
}
.txt-align-sup{
  vertical-align: text-top;
}
.bg-1{
  background-color: #f1f1f1;
}
.padding-tb-lg{
  padding: 100px 50px;
}
.padding-lr-lg{
  padding: 20px 50px;
}
.padding-top-20{
  paddinf-top: 20px;
}
.margin0{
  margin: 0;
}
.borde{
  border: 1px solid red;
}
.margin10{
  margin: 10px;
}
.w-500{
    width: 750px;
}
.w-850{
    width: 1024px;
}
.h-80{
  height: 80px;
}
.h-100{
  height: 100px;
}
.h-130{
  height: 130px;
}
.alto-lp{
  height: 270px;
}
.no-pad-marg{
  margin: 0;
  padding: 0;
}
.navbar {
    margin-bottom: 0;
    background-color: #454958;
    z-index: 9999;
    border: 0;
    font-size: 16px;
    border-radius: 0;
    box-shadow: 0px 2px 10px grey;
}
.navbar li a, .navbar .navbar-brand {
    
}

.w100{
    width: 100%;
}
  .affix {
      top: 0;
      width: 100%;
      z-index: 9999 !important;
  }

  .affix + .container-fluid {
      padding-top: 0px;
  }

.page-header{
    background-color: #FFFFFF;
    padding:20px;
    border: 1px solid #CCCCCC;
  /*border-bottom: 1px solid red;
  margin-bottom: 10px;
  margin-top: 30px;'
  */
}
/*p {
  font-size: 18px;
}*/
.btn-comprar:hover {
    background-color: #B72E00;
    color: #FFF;
    transition: 0.4s;
}
.btn-comprar {
    border: 1px solid #8C2300;
    background-color: red;
    color: #fff;
    transition: 0.4s;
}
/*
  PANEL STYLES
*/
.panel-footer {
    background-color: #fff !important;
    padding: 6px 15px;
}
.panel {
    border: 1px solid #f1f1f1;
    border-radius:0;
    transition: box-shadow 0.4s;
    margin-bottom: 0px;
}

.panel:hover {
    box-shadow: 5px 0px 40px rgba(0,0,0, .2);
}
.panel-borde-corte{
  border: 1px black solid;
}
.panel-borde-inf{
  border-bottom: 8px orange solid;
}
.w-td33p{
  width: 33.3%;
}
.w-t50p{
  width: 50%; 
}
.price{
    margin: 0;
    font-size: 19px;
    color: #990000;
    font-weight: bold;
}
.tittle-prod{
  font-size: 17px;
  color: grey;
}
.little{
  font-weight: lighter;
  color: #AA7D39;
}

.superindice{
  vertical-align: super;
}
.img-expan{
  transform:scale(1);
  transition: 0.3s;
}
.img-expan:hover{
  transform:scale(1.4);
  transition: 0.3s;
  border: 1px solid #ccc;
}
.tooltip > .tooltip-inner {
    background-color: #F6F6B9;
    color: #a3003e;
    padding: 15px;
    font-size: 17px;
    border: 1px solid #FF5722;
}
.desc-prod {
  font-family: arial;
  font-size: 14px;
  color: #878787;
}

.float-right-bottom{
  position: relative;
  float: right;
  top: 20px;
}
/**
 * font sizes
 **/
 .font-helve{
  font-family: Arial;
 }
 .fz9px{
   font-size: 9px;
 }
 .fz10px{
   font-size: 10px;
 }
 .fz12px{
   font-size: 12px;
 }
 .fz14px{
   font-size: 13px;
 }
 .fz15px{
   font-size: 15px;
 }
  .fz17px{
   font-size: 17px;
 }
  .fz20px{
   font-size: 20px;
 }
 .fz30px{
   font-size: 30px;
 }
 .fz40px{
   font-size: 40px;
 }
 .fz37px{
   font-size: 37px;
 }
 .fz45px{
   font-size: 45px;
 }
 .fz80px{
   font-size: 80px;
 }
 .fz140px{
   font-size: 140px;
 }
 .h500{
   height: 500px;
 }
 .h60{
   height: 60px;
 }
/**
 *  FOOTER STYLES
 */
footer .glyphicon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f4511e;
}
footer{
      background-color: #fff;
      padding: 40px 0;
}

input, textarea{
  margin: 15px 0;
}
.material-icons.md-12 { font-size: 12px; }

/* EFECTO SLIDE */

.slideanim {visibility:visible;}
.slide {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide;
    /* The duration of the animation */
    animation-duration:1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
