
/*ANIMACIONES CSS http://www.cssanimate.com */
/*subebaja*/
.subebaja{
    -ms-animation: jump 1s infinite;
    -webkit-animation: jump 1s infinite;
    -moz-animation: jump 1s infinite;
    animation: jump 1s infinite;
}

@keyframes jump {
    0% { top: 0; -webkit-animation-timing-function: ease-out; }
	50%{ top: 5px; -webkit-animation-timing-function: ease-out; }
    100% { top: 0; -webkit-animation-timing-function: ease-out; }
}
@-webkit-keyframes jump {
    0% { top: 0; -webkit-animation-timing-function: ease-out; }
	50%{ top: 5px; -webkit-animation-timing-function: ease-out; }
    100% { top: 0; -webkit-animation-timing-function: ease-out; }
}
@-moz-keyframes jump {
    0% { top: 0; -moz-animation-timing-function: ease-out; }
	50%{ top: 5px; -moz-animation-timing-function: ease-out; }
    100% { top: 0; -moz-animation-timing-function: ease-out; }
}
@-ms-keyframes jump {
    0% { top: 0; -ms-animation-timing-function: ease-out; }
	50%{ top: 5px; -ms-animation-timing-function: ease-out; }
    100% { top: 0; -ms-animation-timing-function: ease-out; }
}





.animacion-360 {
  -webkit-animation: rotate 3s linear 0 infinite normal;
  -moz-animation: rotate 3s linear 0s infinite normal;
  -o-animation: rotate 3s linear 0 infinite normal;
  -ms-animation: rotate 3s linear 0 infinite normal;
  animation: rotate 3s linear 0 infinite normal;
}

@-webkit-keyframes rotate {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
  from {-moz-transform: rotate(0deg);}
  to {-moz-transform: rotate(360deg);}
}

@-o-keyframes rotate {
  from {-o-transform: rotate(0deg);}
  to {-o-transform: rotate(360deg);}
}

@-ms-keyframes rotate {
  from {-ms-transform: rotate(0deg);}
  to {-ms-transform: rotate(360deg);}
}

@keyframes rotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}


/*rotar*/

.rotate-right {
	display:block;
	-webkit-animation: rotarderecha 3s infinite linear;
	-o-animation: rotarderecha 3s infinite linear;
	-ms-animation: rotarderecha 3s infinite linear;
	animation: rotarderecha 3s infinite linear;
	-moz-animation: rotarderecha 3s infinite linear;
}


@-webkit-keyframes rotarderecha {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}


@-moz-keyframes rotarderecha {
  from {-moz-transform: rotate(0deg);}
  to {-moz-transform: rotate(360deg);}
}

@-o-keyframes rotarderecha {
  from {-o-transform: rotate(0deg);}
  to {-o-transform: rotate(360deg);}
}

@-ms-keyframes rotarderecha {
  from {-ms-transform: rotate(0deg);}
  to {-ms-transform: rotate(360deg);}
}

@keyframes rotarderecha{
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}


.rotate-left {
	display:block;
	-webkit-animation: rotarizquierda 3s infinite linear;
	-moz-animation: rotarizquierda 3s infinite linear;
	-o-animation: rotarizquierda 3s infinite linear;
	-ms-animation: rotarizquierda 3s infinite linear;

	animation: rotarizquierda 3s infinite linear;;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}


@-webkit-keyframes rotarizquierda {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}


@-moz-keyframes rotarizquierda {
  from {-moz-transform: rotate(0deg);}
  to {-moz-transform: rotate(360deg);}
}

@-o-keyframes rotarizquierda {
  from {-o-transform: rotate(0deg);}
  to {-o-transform: rotate(360deg);}
}

@-ms-keyframes rotarizquierda {
  from {-ms-transform: rotate(0deg);}
  to {-ms-transform: rotate(360deg);}
}

@keyframes rotarizquierda {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

/*agrandar */

.agrandar{
	display:block;
	-webkit-animation: animacionzoom 0.25s infinite alternate;
	-o-animation: animacionzoom 0.25s infinite alternate;
	-ms-animation: animacionzoom 0.25s infinite alternate;
	animation: animacionzoom 0.25s infinite alternate;
	-moz-animation: animacionzoom 0.25s infinite alternate;
}


@-webkit-keyframes animacionzoom {
	from { transform: none; }
	to { transform: scale(1.3); }
}

@-moz-keyframes animacionzoom {
	from { transform: none; }
	to { transform: scale(1.3); }

}
@-o-keyframes animacionzoom {
	from { transform: none; }
	to { transform: scale(1.3); }

}
@-ms-keyframes animacionzoom {
	from { transform: none; }
	to { transform: scale(1.3); }

}
@keyframes animacionzoom {
	from { transform: none; }
	to { transform: scale(1.3); }
}




 .rotar360 {
 	display:block;
	-webkit-transition: all 1.3s ease-in-out;
	-moz-transition:    all 1.3s ease-in-out;
	-o-transition:      all 1.3s ease-in-out;
	-ms-transition:     all 1.3s ease-in-out;
}
.rotar360:hover {
	-webkit-transform: rotate(360deg) scale(1);
	-moz-transform:    rotate(360deg) scale(1);
	-o-transform:      rotate(360deg) scale(1);
	-ms-transform:     rotate(360deg) scale(1);
}

/*rotar*/
.rotate{
  display:block;
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

.rotate:hover {
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}


/*expandir*/
.expand{-webkit-transition:all 100ms; -o-transition:all 100ms; transition:all 100ms;}
.expand:hover{-webkit-transform:scale(1.05, 1.05); -o-transform:scale(1.05, 1.05); transform:scale(1.05, 1.05);}

/*opacidad*/
.opacity{
	opacity: 1;
	-webkit-transition: opacity;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 250ms;
	-moz-transition: opacity;
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 250ms;
}
.opacity:hover{
	opacity: 0.8;
	-webkit-transition: opacity;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 250ms;
	-moz-transition: opacity;
	-moz-transition-timing-function: ease-out;
	-moz-transition-duration: 250ms;
}


/*expandirmas*/
.grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.grow:hover, .grow:focus, .grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


/*Imagen crece tama�o exacto*/

.zonaimgcrece {height: 109px; width: 107px; overflow: hidden;}

.creceimagen img {
  height: 109px;
  width: 107px;

  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.creceimagen img:hover {width: 150%; height: 150%;}


/* Movimiento Horizontal */

@-webkit-keyframes mov-horizontal {
  16.65% {-webkit-transform: translateX(8px); transform: translateX(8px);}
  33.3% {-webkit-transform: translateX(-6px); transform: translateX(-6px);}
  49.95% {-webkit-transform: translateX(4px); transform: translateX(4px);}
  66.6% {-webkit-transform: translateX(-2px); transform: translateX(-2px);}
  83.25% {-webkit-transform: translateX(1px); transform: translateX(1px);}
  100% {-webkit-transform: translateX(0); transform: translateX(0);}
}

@keyframes mov-horizontal {
  16.65% {-webkit-transform: translateX(8px); transform: translateX(8px);}
  33.3% {-webkit-transform: translateX(-6px); transform: translateX(-6px);}
  49.95% {-webkit-transform: translateX(4px); transform: translateX(4px);}
  66.6% {-webkit-transform: translateX(-2px); transform: translateX(-2px);}
  83.25% {-webkit-transform: translateX(1px); transform: translateX(1px);}
  100% {-webkit-transform: translateX(0); transform: translateX(0);}
}

.mov-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.mov-horizontal:hover, .mov-horizontal:focus, .mov-horizontal:active {
  -webkit-animation-name: mov-horizontal;
  animation-name: mov-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.btnefectos {
  /*display: inline-block;*/
  /*vertical-align: middle;*/
  margin: 5px 0px 0 5px ;
  padding: 10px 20px;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  /* Prevent highlight colour when element is tapped */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* BACKGROUND TRANSITIONS */

/* Fade */
.fade {
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.fade:hover, .fade:focus, .fade:active {background-color: #3071a9; color: white; }

/* Sweep To Right */
.sweep-to-right {
  /*display:inline-block;*/
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3071a9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
   border-radius:inherit
}
.sweep-to-right:hover, .sweep-to-right:focus, .sweep-to-right:active {color: white;}
.sweep-to-right:hover:before, .sweep-to-right:focus:before, .sweep-to-right:active:before {-webkit-transform: scaleX(1); transform: scaleX(1);}


/*_______Fondos para objetos de la web_______*/

.fondogrisoscuro{background:#414141 !important;}
.fondogrisclaro{background:#cccccc !important;}
.fondoazul{background:#3071a9 !important;}
.fondoazuloscuro{background:#4c5f70 !important;}
.fondoazulito{background:#5d8fc2 !important;}
.fondoverde{background:#81b71a !important;}
.fondoverdoso{background:#419b97 !important;}
.fondoverdeclaro{background:#64bd63 !important;}
.fondonaranja{background:#ff7800 !important;}
.fondonaranjita{background:#f0b518 !important;}
.fondorojo{background:#c9302c !important;}
.fondorojito{background:#e84e40 !important;}
.fondoblanco{background:#ffffff !important;}
.fondopurpura{background:#7266ba !important;}
.fondorosachicle{background:#c1107e !important;}
.fondogranate{background:#930f62 !important;}


.success{background:#5cb300}
.default{background:#0c8dcc}
.info{background:#2dabc4}
.warning{background:#ea5811}
.danger{background:#da3436}





.animacion-tada{
  animation: animationFrames linear 1s;
  animation-iteration-count: 5;
  transform-origin: ;
  -webkit-animation: animationFrames linear 1s;
  -webkit-animation-iteration-count: 5;
  -webkit-transform-origin: ;
  -moz-animation: animationFrames linear 1s;
  -moz-animation-iteration-count: 5;
  -moz-transform-origin: ;
  -o-animation: animationFrames linear 1s;
  -o-animation-iteration-count: 5;
  -o-transform-origin: ;
  -ms-animation: animationFrames linear 1s;
  -ms-animation-iteration-count: 5;
  -ms-transform-origin: ;
}

@keyframes animationFrames{
  0% {left:0px; top:0px; opacity:1; transform:  rotate(0deg) scaleX(1) scaleY(1) ;}
  10% {transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  20% {transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  30% { transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  40% {transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  50% {transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  60% {transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  70% {transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  80% {transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  90% {transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  100% {left:0px; top:0px; opacity:1; transform:  rotate(0deg) scaleX(1.2) scaleY(1.2) ;}
}

@-moz-keyframes animationFrames{
  0% {left:0px; top:0px; opacity:1; -moz-transform:  rotate(0deg) scaleX(1) scaleY(1) ;}
  10% {-moz-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  20% {-moz-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  30% {-moz-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  40% {-moz-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  50% {-moz-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  60% {-moz-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  70% {-moz-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  80% {-moz-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  90% {-moz-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  100% {left:0px; top:0px; opacity:1; -moz-transform:  rotate(0deg) scaleX(1.2) scaleY(1.2) ;}
}

@-webkit-keyframes animationFrames {
  0% {left:0px; top:0px; opacity:1; -webkit-transform:  rotate(0deg) scaleX(1) scaleY(1) ;}
  10% {-webkit-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  20% {-webkit-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  30% {-webkit-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  40% {-webkit-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  50% {-webkit-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  60% {-webkit-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  70% {-webkit-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  80% {-webkit-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  90% {-webkit-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  100% {left:0px; top:0px; opacity:1; -webkit-transform:  rotate(0deg) scaleX(1.2) scaleY(1.2) ;}
}

@-o-keyframes animationFrames {
  0% {left:0px; top:0px; opacity:1; -o-transform:  rotate(0deg) scaleX(1) scaleY(1) ;}
  10% {-o-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  20% {-o-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  30% {-o-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  40% {-o-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  50% {-o-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  60% {-o-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  70% {-o-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  80% {-o-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  90% {-o-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  100% {left:0px; top:0px; opacity:1; -o-transform:  rotate(0deg) scaleX(1.2) scaleY(1.2) ;}
}

@-ms-keyframes animationFrames {
  0% {left:0px; top:0px; opacity:1; -ms-transform:  rotate(0deg) scaleX(1) scaleY(1) ;}
  10% {-ms-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  20% {-ms-transform:  rotate(-3deg) scaleX(0.8) scaleY(0.8) ;}
  30% {-ms-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  40% {-ms-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  50% {-ms-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  60% {-ms-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  70% {-ms-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  80% {-ms-transform:  rotate(-3deg) scaleX(1.2) scaleY(1.2) ;}
  90% {-ms-transform:  rotate(3deg) scaleX(1.2) scaleY(1.2) ;}
  100% {left:0px; top:0px; opacity:1; -ms-transform:  rotate(0deg) scaleX(1.2) scaleY(1.2) ;}
}
