/*
    anim.css
    contient la configuration globale de l'animation
*/


body, html {
    height: 100%;
}

#content-wrapper, #anim-wrapper {
    height: 100%;
    font-family: 'VAG Round Bold', Arial;
}

#anim-wrapper {
    /* nécessaire pour positionner la
     * télécommande (absolute) ! */
    position: relative;
}

.block-badgy-core{
    margin-bottom:20px;
}

.scene1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#6dc692+0,6dc692+68,58b980+69,6dc692+100,58b980+100 */
    background: #6dc692; /* Old browsers */
    background: -moz-linear-gradient(top,  #6dc692 0%, #6dc692 69%, #58b980 69%, #6dc692 100%, #58b980 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #6dc692 0%,#6dc692 69%,#58b980 69%,#6dc692 100%,#58b980 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #6dc692 0%,#6dc692 69%,#58b980 69%,#6dc692 100%,#58b980 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6dc692', endColorstr='#58b980',GradientType=0 ); /* IE6-9 */
}
.scene2 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffa4a4+0,ffa4a4+65,e99292+66,e99292+99 */
    background: #ffa4a4; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffa4a4 0%, #ffa4a4 69%, #e99292 69%, #e99292 99%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ffa4a4 0%,#ffa4a4 69%,#e99292 69%,#e99292 99%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ffa4a4 0%,#ffa4a4 69%,#e99292 69%,#e99292 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa4a4', endColorstr='#e99292',GradientType=0 ); /* IE6-9 */

}
.scene3 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c6add2+1,c6add2+61,a693ae+62 */
    background: #c6add2; /* Old browsers */
    background: -moz-linear-gradient(top,  #c6add2 0%, #c6add2 69%, #a693ae 69%, #a693ae 99%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #c6add2 0%,#c6add2 69%,#a693ae 69%,#a693ae 99%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #c6add2 0%,#c6add2 69%,#a693ae 69%,#a693ae 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6add2', endColorstr='#a693ae',GradientType=0 ); /* IE6-9 */

}

#section-wipes {
    height: 100%;
    width: 1000px;
    background-image: none;
    margin: 0 auto;
    color:white;
    font-size:30px;
}

#pinContainer {
    width: 100%;
    height: 850px;
    overflow: hidden;
    position:relative;
}
.panel {
    height: 100%;
    width: 100%;
    position: absolute;
}

/* télécommande */
#slider-cmd {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  color: white;
  transform: translateY(-50%);
  z-index: 1;
}

#slider-cmd li {
  height: 20px;
  text-align: right;
  padding: 20px;
  white-space: nowrap;
  list-style-type: none;
  cursor: pointer;
  transition: transform .2s ease-in-out;
}

#slider-cmd .bullet {
  display: inline-block;
  margin-left: 5px;
	width: 15px;
  height: 14px;
  background: white;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, .8);
  color: #6e6d6d;
  overflow: hidden;
}

#slider-cmd .selected {
  background-color: red;
  color: white;
  transform: scale(1);
}

#slider-cmd .blink {
  animation: blinker .6s linear infinite alternate;
}
@keyframes blinker {
  to {
    transform: scale(1.2, 1.3);  /* les bullets ne sont pas parfaitement circulaires */
    opacity: 0.7;
  }
}

#slider-cmd .bullet span {
  display: none;
  transition: opacity .3s ease-in-out;
  transition-delay: .3s;
}

#slider-cmd li:hover .bullet {
  width: 100%;
  height: auto;
  transition: width .4s, height .4s ease-in-out;
  padding: 4px;
  text-align: center;
}

#slider-cmd li:hover .bullet span {
  display: inline;
  opacity: 1;
  transition: .4s ease-in-out;
}

