/***********************************************************************************************************************************/
/** RUMBLE *************************************************************************************************************************/
/***********************************************************************************************************************************/

.animation-rumble{
    animation: rumble .0625s 12 linear;
    -ms-animation: rumble .0625s 12 linear;
    -moz-animation: rumble .0625s 12 linear;
    -webkit-animation: rumble .0625s 12 linear;
}
@keyframes rumble {
    0% {transform: rotate(0deg);}
    25% {transform: translate(2px, 0px) rotate(-3deg);}
    50% {transform: translate(0px, -2px) rotate(0deg);}
    75% {transform: translate(-2px, 0px) rotate(3deg);}
    100% {transform: translate(0px, 2px) rotate(0deg);} 
}
@-ms-keyframes rumble {
    0% {-ms-transform: rotate(0deg);}
    25% {-ms-transform: translate(2px, 0px) rotate(-3deg);}
    50% {-ms-transform: translate(0px, -2px) rotate(0deg);}
    75% {-ms-transform: translate(-2px, 0px) rotate(3deg);}
    100% {-ms-transform: translate(0px, 2px) rotate(0deg);} 
}
@-moz-keyframes rumble {
    0% {-moz-transform: rotate(0deg);}
    25% {-moz-transform: translate(2px, 0px) rotate(-3deg);}
    50% {-moz-transform: translate(0px, -2px) rotate(0deg);}
    75% {-moz-transform: translate(-2px, 0px) rotate(3deg);}
    100% {-moz-transform: translate(0px, 2px) rotate(0deg);} 
}
@-webkit-keyframes rumble {
    0% {-webkit-transform: rotate(0deg);}
    25% {-webkit-transform: translate(2px, 0px) rotate(-3deg);}
    50% {-webkit-transform: translate(0px, -2px) rotate(0deg);}
    75% {-webkit-transform: translate(-2px, 0px) rotate(3deg);}
    100% {-webkit-transform: translate(0px, 2px) rotate(0deg);} 
}

/***********************************************************************************************************************************/
/** SMOOTH RUMBLE ******************************************************************************************************************/
/***********************************************************************************************************************************/

.smooth-rumble {
  -webkit-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-animation-name: smoothRumble;
  -ms-animation-name: smoothRumble;
  -moz-animation-name: smoothRumble;
  animation-name: smoothRumble;
  -webkit-animation-duration: 0.15s;
  -ms-animation-duration: 0.15s;
  -moz-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 4;
  -ms-animation-iteration-count: 4;
  -moz-animation-iteration-count: 4;
  animation-iteration-count: 4;
}
@keyframes smoothRumble {
  50% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(-3px) rotate(-2deg);
  }
}
@-ms-keyframes smoothRumble {
  50% {
    -ms-transform: translateX(3px) rotate(2deg);
  }
  100% {
    -ms-transform: translateX(-3px) rotate(-2deg);
  }
}
@-moz-keyframes smoothRumble {
  50% {
    -moz-transform: translateX(3px) rotate(2deg);
  }
  100% {
    -moz-transform: translateX(-3px) rotate(-2deg);
  }
}
@-webkit-keyframes smoothRumble {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
  }
}


/***********************************************************************************************************************************/
/** CURRENCY ***********************************************************************************************************************/
/***********************************************************************************************************************************/

.js-headercurrency--anim .headercurrency__img{
    animation: headerCurrency .5s 1 linear;
    -ms-animation: headerCurrency .5s 1 linear;
    -moz-animation: headerCurrency .5s 1 linear;
    -webkit-animation: headerCurrency .5s 1 linear;
}
@keyframes headerCurrency {
    0% {transform: scale(1);}
    50% {transform: scale(1.75);}
    100% {transform: scale(1);} 
}
@-ms-@keyframes headerCurrency {
    0% {-ms-transform: scale(1);}
    50% {-ms-transform: scale(1.75);}
    100% {-ms-transform: scale(1);} 
}
@-moz-@keyframes headerCurrency {
    0% {-moz-transform: scale(1);}
    50% {-moz-transform: scale(1.75);}
    100% {-moz-transform: scale(1);} 
}
@-webkit-@keyframes headerCurrency {
    0% {-webkit-transform: scale(1);}
    50% {-webkit-transform: scale(1.75);}
    100% {-webkit-transform: scale(1);} 
}


/***********************************************************************************************************************************/
/** SPIN CIRCLE ***********************************************************************************************************************/
/***********************************************************************************************************************************/
.spinner {
  background: transparent;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
}
.spinner:after, .spinner:before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 1;
}

.spinner-A:after {
  border: 4px solid transparent;
  position: absolute;
  top: -4px;
  left: -4px;
  border-top-color: #e5ff70;
  border-bottom-color: #e5ff70;
  -webkit-animation: spinny 1s linear infinite;
          animation: spinny 1s linear infinite;
          
}
@-webkit-keyframes spinny {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}
@keyframes spinny {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(45deg) scale(1.2);
            transform: rotate(45deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}


/***********************************************************************************************************************************/
/** HALO ***********************************************************************************************************************/
/***********************************************************************************************************************************/
.halo {
    cursor: pointer;
    position: relative;
 
}
.halo:before{
    content:"";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    left: 11px;
    position: absolute;
    top: 15px;
    display: block;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-animation: r5 2s 1.25s ease-out infinite;
    -moz-animation: r5 2s 1.25s ease-out infinite;
    animation: r5 2s 1.25s ease-out infinite;
}

@-webkit-keyframes r5 {
  0% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(229, 255, 112, 0);
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff70, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff70;
  }
  100% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(229, 255, 112, 0);
  }
}
@-moz-keyframes r5 {
  0% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(229, 255, 112, 0);
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff70, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff70;
  }
  100% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(229, 255, 112, 0);
  }
}
@keyframes r5 {
  0% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 0px transparent, 0 0 0px 0px rgba(229, 255, 112, 0);
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff70, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff70;
  }
  100% {
    box-shadow: 0 0 8px 6px rgba(229, 255, 112, 0), 0 0 0px 40px transparent, 0 0 0px 40px rgba(229, 255, 112, 0);
  }
}



.halo-soft{
  height: 77%;
  left: 12%;
  position: absolute;
  top: 10%;
  width: 77%;
  border-radius: 50%;
  cursor: pointer;
  -webkit-animation: halo-soft 2s 0s ease-out infinite;
  -moz-animation: halo-soft 2s 0s ease-out infinite;
  -ms-animation: halo-soft 2s 0s ease-out infinite;
  -o-animation: halo-soft 2s 0s ease-out infinite;
  animation: halo-soft 2s 0s ease-out infinite;
  background-color: #e5ff65;
  z-index: -1;
}

@-webkit-keyframes halo-soft {
  0% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 0px transparent, 0 0 0px 0px transparent;
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff65, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff65;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 20px transparent, 0 0 0px 20px transparent;
  }
}
@-moz-keyframes halo-soft {
  0% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 0px transparent, 0 0 0px 0px transparent;
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff65, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff65;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 20px transparent, 0 0 0px 20px transparent;
  }
}
@keyframes halo-soft {
   0% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 0px transparent, 0 0 0px 0px transparent;
  }
  10% {
    box-shadow: 0 0 8px 6px #e5ff65, 0 0 12px 10px transparent, 0 0 12px 14px #e5ff65;
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 8px 6px transparent, 0 0 0px 20px transparent, 0 0 0px 20px transparent;
  }
}






/***********************************************************************************************************************************/
/** PULSE GROW ***********************************************************************************************************************/
/***********************************************************************************************************************************/


.pulse-grow {
  box-shadow: 0 0 1px transparent;
   -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
   -webkit-animation-name: pulse-grow;
  animation-name: pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  z-index: 1;
}
@-webkit-keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}



/***********************************************************************************************************************************/
/** SLIDE IN DOWN ***********************************************************************************************************************/
/***********************************************************************************************************************************/

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}



/***********************************************************************************************************************************/
/** FLIP IN X ***********************************************************************************************************************/
/***********************************************************************************************************************************/
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
   -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}




/***********************************************************************************************************************************/
/** FADE IN ***********************************************************************************************************************/
/***********************************************************************************************************************************/

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/***********************************************************************************************************************************/
/** ANIMATIONS CARTES **************************************************************************************************************/
/***********************************************************************************************************************************/

.scratch.bronze .element-scratch {
  box-shadow: none;
  -webkit-animation: bronze 1s 0.4s ease-in infinite alternate;
  animation: bronze 1s 0.4s ease-in infinite alternate;
}
.scratch.silver .element-scratch {
  box-shadow: none;
  -webkit-animation: silver 1s 0.4s ease-in infinite alternate;
  animation: silver 1s 0.4s ease-in infinite alternate;
}
.scratch.gold .element-scratch {
  box-shadow: none;
  -webkit-animation: gold 1s 0.4s ease-in infinite alternate;
  animation: gold 1s 0.4s ease-in infinite alternate;
}
.scratch.diamond .element-scratch {
  box-shadow: none;
  -webkit-animation: diamond 1s 0.4s ease-in infinite alternate;
  animation: diamond 1s 0.4s ease-in infinite alternate;
}

@-webkit-keyframes bronze {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #9b4429; }
}

@-moz-keyframes bronze {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #9b4429; }
}

@keyframes bronze {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #9b4429; }
}

@-webkit-keyframes silver {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #808080; }
}

@-moz-keyframes silver {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #808080; }
}

@keyframes silver {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #808080; }
}

@-webkit-keyframes gold {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #be8c13; }
}

@-moz-keyframes gold {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #be8c13; }
}

@keyframes gold {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #be8c13; }
}

@-webkit-keyframes diamond {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #628dca; }
}

@-moz-keyframes diamond {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #628dca; }
}

@keyframes diamond {
  from { box-shadow: none; }
  to { box-shadow: 0 0 15px 6px #628dca; }
}





/***********************************************************************************************************************************/
/** ANIMATIONS CHEVAUX CONSOLE *****************************************************************************************************/
/***********************************************************************************************************************************/



.ui-console-horse-extra .chapeau-sprite img{
    -moz-animation-name: chapeau-horizontal;
    -moz-animation-duration: 2.4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: steps(48);
    -webkit-animation-name: chapeau-horizontal;
    -webkit-animation-duration: 2.4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps(48);
    animation-name: chapeau-horizontal;
    animation-duration: 2.4s;
    animation-iteration-count: infinite;
    animation-timing-function: steps(48);
}
@-moz-keyframes chapeau-horizontal {
    0%   {left: 0px; }
    100%   {left: -14400px; }
}
@-webkit-keyframes chapeau-horizontal {
    0%   {left: 0px; }
    100%   {left: -14400px; }
}
@keyframes chapeau-horizontal {
    0%   {left: 0px; }
    100%   {left: -14400px; }
}


/* Classe générale et variantes */
.ui-console-horse-extra .objblink {
    -webkit-animation-direction: alternate;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: blink;
    -webkit-animation-timing-function: ease-in-out;

    animation-direction: alternate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: blink;
    animation-timing-function: ease-in-out;
}
.ui-console-horse-extra .objblink.famine {
    -webkit-animation-direction: normal;
    -webkit-animation-duration: 2.5s;
    -webkit-animation-name: blink-famine;
    animation-direction: normal;
    animation-duration: 2.5s;
    animation-name: blink-famine;
}
.ui-console-horse-extra .fumee {
    -webkit-animation-direction: normal;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: fumee;
    -webkit-animation-delay: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-name: fumee;
    animation-delay: 2s;
    animation-timing-function: ease-in-out;
}
.ui-console-horse-extra .fumee.flammeche {
    -webkit-animation-name: flammeche;
    -webkit-animation-duration: 1s;
    animation-name: flammeche;
    animation-duration: 1s;
}
.ui-console-horse-extra .objblink.semi {
    -webkit-animation-name: semi-blink;
    animation-name: semi-blink;
}
.ui-console-horse-extra .objblink.reverse {
    -webkit-animation-direction: alternate-reverse;
    animation-direction: alternate-reverse;
}
.ui-console-horse-extra .objblink.delay {
     -webkit-animation-delay: 1s;
     animation-delay: 1s;
}

@keyframes blink {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
@keyframes semi-blink {
0% {
    opacity: 1;
}
100% {
    opacity: 0.5;
}
}
@keyframes blink-famine {
0% {
    opacity: 0;
}
15% {
    opacity: 1;
}
30% {
    opacity: 0;
}
100% {
    opacity: 0;
}
}
@keyframes fumee {
0% {
    opacity: 0;
}
10% {
    opacity: 1;
}
100% {
    left: 50px;
    opacity: 0;
    top: -50px;
}
}
@keyframes flammeche {
0% {
    opacity: 0;
}
2.5% {
    opacity: 1;
}
80% {
    opacity: 0;
    transform: translateY(-750%);
}
100% {
    opacity: 0;
}
}

/***********************************************************************************************************************************/
/** ANIMATIONS BACKGROUND CONSOLE **************************************************************************************************/
/***********************************************************************************************************************************/

#animation-mowbile-console{
    height: 500px;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;  
}



/*EFFET NEIGE*/

.snow-container {
  position: absolute;
  height: 500px;
  width: 100%;
  max-width: 100%;
  top: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.snow {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: snow2;
          animation-name: snow2;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;

}
.snow.foreground {
  background-image: url("https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-large-075d267ecbc42e3564c8ed43516dd557.png");
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}
.snow.foreground.layered {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}
.snow.middleground {
  background-image: url(https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-medium-0b8a5e0732315b68e1f54185be7a1ad9.png);
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}
.snow.middleground.layered {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.snow.background {
  background-image: url(https://dl6rt3mwcjzxg.cloudfront.net/assets/snow/snow-small-1ecd03b1fce08c24e064ff8c0a72c519.png);
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}
.snow.background.layered {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@-webkit-keyframes snow2 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(15%, 100%, 0);
            transform: translate3d(15%, 100%, 0);
  }
}

@keyframes snow2 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: translate3d(15%, 100%, 0);
            transform: translate3d(15%, 100%, 0);
  }
}


/***********************************************************************************************************************************/
/** ANIMATIONS ONTAP ***************************************************************************************************************/
/***********************************************************************************************************************************/

@keyframes ontap {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(.8);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes ontap {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(.8);
  }
  100% {
    -webkit-transform: scale(1);
  }
}


/***********************************************************************************************************************************/
/** ANIMATIONS PLANTES **************************************************************************************************************/
/***********************************************************************************************************************************/
/***********************************************************************************************************************************/
/* PLANTES VARIETES **************************************************************************************************************************/
/***********************************************************************************************************************************/
.plantes-varietes{
	height: 197.83px;
	width: 175px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	margin: auto;
}
.plantes-varietes.anim{
	animation-name:plante-sprite-big;
	animation-timing-function:steps(30);
	animation-duration: 1.5s;
	animation-iteration-count:infinite;
	-webkit-animation-name:plante-sprite-big;
	-webkit-animation-timing-function:steps(30);
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count:infinite;
}

.plantes-varietes.plantes-A-1.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-A-1-big.png);
}
.plantes-varietes.plantes-A-2.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-A-2-big.png);
}
.plantes-varietes.plantes-B-1.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-B-1-big.png);
}
.plantes-varietes.plantes-B-2.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-B-2-big.png);
}
.plantes-varietes.plantes-C-1.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-C-1-big.png);
}
.plantes-varietes.plantes-C-2.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-C-2-big.png);
}
.plantes-varietes.plantes-D-1.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-D-1-big.png);
}
.plantes-varietes.plantes-D-2.anim{
	background-image:url(/media/equideo/image/concours/plantes/2017/sprites/sprite-plante-D-2-big.png);
}

/***********************************************************************************************************************************/
/* PLANTE-SPRITE *******************************************************************************************************************/
/***********************************************************************************************************************************/

@keyframes plante-sprite-big {
	from { background-position: left  top; }
	to { background-position: -5250px top; }
}
@-webkit-keyframes plante-sprite-big {
	from { background-position: left   0px; }
	to { background-position: -5250px top; }
}

