/*
Copyright (c) 2016 Infinity 1.0
------------------------------------------------------------------
[animation Stylesheet]
Project:	infinity HTML Template
Version:	1.0.0
Author: teqbees
-------------------------------------------------------------------*/
/*
-------------------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.flip {
    -webkit-animation: flip 1s 1;
    -moz-animation: flip 1s 1;
    animation: flip 1s 1;
}
@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotateY(50deg);
        opacity: 0;
    }
    to {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flip {
    from {
        transform: perspective(400px) rotateY(50deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flip {
    from {
        -moz-transform: perspective(400px) rotateY(50deg);
        opacity: 0;
    }
    to {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
.bottom_flip {
    -webkit-animation: bottom_flip 1 1s;
	animation: bottom_flip 1 1s;
    -moz-animation: bottom_flip 1 1s;
}
@-webkit-keyframes bottom_flip {
    0% {
        -webkit-transform: perspective(400px) rotateX(-35deg);
		opacity:0;
    }
	100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
		opacity:1;

    }
}
 @keyframes bottom_flip {
    0% {
        transform: perspective(400px) rotateX(-35deg);
		opacity:0;
    }
	100% {
        transform: perspective(400px) rotateX(0deg);
		opacity:1;

    }
} 

@-moz-keyframes bottom_flip {
    0% {
        -moz-transform: perspective(400px) rotateX(-35deg);
		opacity:0;
    }
	100% {
        -moz-transform: perspective(400px) rotateX(0deg);
		opacity:1;

    }
}
.rotate {
    -webkit-animation: rotate 1 1s;
	animation: rotate 1 1s;
    -moz-animation: rotate 1 1s;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: perspective(400px) scaleX(0.1);
		opacity:0;
    }
    50%{
        -webkit-transform: perspective(400px) scaleX(1.1);
		opacity:0.5;
    }
	100% {
        -webkit-transform: perspective(400px) scaleX(1);
		opacity:1;

    }
}
 @keyframes rotate {
    0% {
        transform: perspective(400px) scaleX(0.1);
		opacity:0;
    }
    50%{
        transform: perspective(400px) scaleX(1.1);
		opacity:0.5;
    }
	100% {
        transform: perspective(400px) scaleX(1);
		opacity:1;

    }
} 

@-moz-keyframes rotate {
    0% {
        -moz-transform: perspective(400px) scaleX(0.1);
		opacity:0;
    }
    50%{
        -moz-transform: perspective(400px) scaleX(1.1);
		opacity:0.5;
    }
	100% {
        -moz-transform: perspective(400px) scaleX(1);
		opacity:1;

    }
}

.fadetop {
    -webkit-animation: fadetop 1s 1;
    -moz-animation: fadetop 1s 1;
    animation: fadetop 1s 1;
}
@-webkit-keyframes fadetop {
    from {
        -webkit-transform: translateY(-100px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes fadetop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
@-moz-keyframes fadetop {
    from {
        -moz-transform: translateY(-100px);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(0px);
        opacity: 1;
    }
}


.fadeleft {
    -webkit-animation: fadeleft 1s 1;
    -moz-animation: fadeleft 1s 1;
    animation: fadeleft 1s 1;
}
@-webkit-keyframes fadeleft {
    from {
        -webkit-transform: translateX(-100px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes fadeleft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}
@-moz-keyframes fadeleft {
    from {
        -moz-transform: translateX(-100px);
        opacity: 0;
    }
    to {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

.faderight {
    -webkit-animation: faderight 1s 1;
    -moz-animation: faderight 1s 1;
    animation:  faderight 1s 1;
}
@-webkit-keyframes faderight {
    from {
        -webkit-transform: translateX(100px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes faderight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0px);
        opacity: 1;
    }
}
@-moz-keyframes faderight {
    from {
        -moz-transform: translateX(100px);
        opacity: 0;
    }
    to {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}

.fadebottom {
    -webkit-animation: fadebottom 1 1s ease-in-out;
    -moz-animation: fadebottom 1 1s ease-in-out;
    animation: fadebottom 1 1s ease-in-out;
}
@-webkit-keyframes fadebottom {
    from {
        -webkit-transform: translateY(100px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadebottom {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@-moz-keyframes fadebottom {
    from {
        -moz-transform: translateY(100px);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes slidefromright {
  from {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
    visibility: visible;
  }

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

@keyframes slidefromright {
  from {
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
    visibility: visible;
  }

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

@-moz-keyframes slidefromright {
  from {
    -moz-transform: translate3d(100px, 0, 0);
    visibility: visible;
  }

  to {
    -moz-transform: translate3d(0, 0, 0);
  }
}
.slidefromright {
  -webkit-animation: slidefromright 1s 1;
  animation: slidefromright 1s 1;
  -moz-animation: slidefromright 1s 1;
}

.fromtop_anim{
	animation:fromtop_anim 2s 1 ;
	-webkit-animation:fromtop_anim 2s 1 ;
	-moz-animation:fromtop_anim 2s 1 ;
}


@-webkit-keyframes fromtop_anim {
    from {
        -webkit-transform: translateY(0px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(50%);
        opacity: 1;
    }	
}
@-moz-keyframes fromtop_anim {
    from {
        -moz-transform: translateY(0px);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(50%);
        opacity: 1;
    }	
}

@keyframes fromtop_anim {
    from {
        transform: translateY(0px);
        opacity: 0;
    }
    to {
        transform: translateY(50%);
        opacity: 1;
    }	
}


.sonarEffect{
	animation: sonarEffect 1s 1;
	-webkit-animation: sonarEffect 1s 1;
	-moz-animation: sonarEffect 1s 1;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.3);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #000000, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.3);
        opacity: 0;
    }
}

/* fixed menu animation */

.fixed_menu_animation {
    -webkit-animation: fixed_menu_animation;
    animation: fixed_menu_animation;
    -moz-animation: fixed_menu_animation;
}
@-webkit-keyframes fixed_menu_animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fixed_menu_animation {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-moz-keyframes fixed_menu_animation {
    0% {
        opacity: 0;
        -moz-transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -moz-transform: none;
    }
}


 /*---fadein----*/
 .fadeIn  {
  -webkit-animation : fadeIn 1s 1;
  animation : fadeIn 1s 1;
  -moz-animation : fadeIn 1s 1;
}  
@keyframes fadeIn {
    0% {
		opacity: 0;
	}
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
	}
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn {
   0% {
        opacity: 0;
   }
    100% {
        opacity: 1;
    }
}


 /*---fadeout----*/
 .fadeOut  {
  -webkit-animation : fadeOut 1s 1;
  animation : fadeOut 1s 1;
  -moz-animation : fadeOut 1s 1;
}  
@keyframes fadeOut{
    0% {
		opacity: 1;
	}
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeOut{
    0% {
        opacity: 1;
	}
    100% {
        opacity: 0;
    }
}
@-moz-keyframes fadeOut {
       0% {
		opacity: 1;
	}
    100% {
        opacity: 0;
    }
}

 /*---topbottom----*/
 
.menutop {
    -webkit-animation: menutop 1s 1; /* Safari 4.0 - 8.0 */
    animation: menutop 1s 1;
    -moz-animation: menutop 1s 1;
}
@-webkit-keyframes menutop {
    0%{ 
		-webkit-transform:translateY(-30px);
		opacity:0;
	}
    100% {
		-webkit-transform:translateY(0px);
		opacity:1;
	}
}
@-moz-keyframes menutop {
    0%{ 
		-moz-transform:translateY(-30px);
		opacity:0;
	}
    100% {
		-moz-transform:translateY(0px);
		opacity:1;
	}
}
/* Standard syntax */
@keyframes menutop {
    0%{ 
		transform:translateY(-30px);
		opacity:0;
	}
    100% {
		transform:translateY(0px);
		opacity:1;
	}
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}
@-moz-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -moz-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation: zoomOut 1s 1 ease-out;
  -moz-animation: zoomOut 1s 1 ease-out;
  animation: zoomOut 1s 1 ease-out;
}

.zoom {
    -webkit-animation: zoom 1 1s;
    -moz-animation: zoom 1 1s;
    animation: zoom 1 1s;
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(0.9);
		opacity:0;
    }
    50%{
        -webkit-transform: scale(1.1);
		opacity:0.5;
    }
	100% {
        -webkit-transform: scale(1);
		opacity:1;

    }
}

@-moz-keyframes zoom {
    0% {
        -moz-transform: scale(0.9);
		opacity:0;
    }
    50%{
        -moz-transform: scale(1.1);
		opacity:0.5;
    }
	100% {
        -moz-transform: scale(1);
		opacity:1;

    }
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
		opacity:0;
    }
    50%{
        transform: scale(1.1);
		opacity:0.5;
    }
	100% {
        transform: scale(1);
		opacity:1;

    }
}

.zoom_middle {
    -webkit-animation: zoom_middle 1s 1;
    -moz-animation: zoom_middle 1s 1;
    animation: zoom_middle 1s 1;
}
@-webkit-keyframes zoom_middle {
    from {
        -webkit-transform: scale3d(0.7,0.7,0.7);
        opacity: 0;
    }
    to {
        -webkit-transform: scale3d(1,1,1);
        opacity: 1;
    }
}
 @keyframes zoom_middle {
    from {
        transform: scale3d(0.7,0.7,0.7);
        opacity: 0;
    }
    to {
       transform: scale3d(1,1,1);
        opacity: 1;
    }
} 
@-moz-keyframes zoom_middle {
    from {
        -moz-transform: scale3d(0.7,0.7,0.7);
        opacity: 0;
    }
    to {
        -moz-transform: scale3d(1,1,1);
        opacity: 1;
    }
}


.rotate {
    -webkit-animation: rotate 1s 1; /* Safari 4.0 - 8.0 */
    -moz-animation: rotate 1s 1;
    animation: rotate 1s 1;
}

@-webkit-keyframes rotate {
    0%{ 
	-webkit-transform: rotateX(-90deg);
	}
    100% {
	-webkit-transform: rotateX(0deg);
	}
}
@-moz-keyframes rotate {
    0%{ 
	-moz-transform: rotateX(-90deg);
	}
    100% {
	-moz-transform: rotateX(0deg);
	}
}
@keyframes rotate {
    0%{ 
	transform: rotateX(-90deg);
	}
    100% {
	transform: rotateX(0deg);
	}
}
