/*
 * CSS Animations
 * Don't forget to add vendor prefixes!
 */
.m-scene .scene_element {		
  animation-duration: 1s;
  transition-timing-function: ease-in;
  animation-fill-mode: both;
}

.m-scene .scene_element--fadein {
  animation-name: fadeIn;
}

.m-scene .scene_element--fadeinleft {
  animation-name: fadeInLeft;
}

.m-scene .scene_element--fadeinleft {
  animation-name: fadeInLeft;
}

.m-scene.is-exiting .scene_element {
  animation-direction: alternate-reverse;
}

.absoluteZoom{
 position: absolute;
 top: 50%;
 left: 50%;	
 width:0%;
 height:0%
 z-index: 99999;
 opacity: 0.1;
 background: #000000;
}

.absoluteBlack{
 position: absolute;
 top: 0;
 left: 0;	
 width:100%;
 height: 100% !important;
 z-index: 99999 !important;
 opacity: 1;
 background: #000000;
}