@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.fadeInRight {
	transition: all linear 0.5s;
  	position: relative;
  	top: 0;
  	left: 0;
}

.animated.fadeOutRight.ng-hide {
	height: 0;
  	width: 0;
  	top:0px;
  	left: 200px;
}

.animated.fadeInLeft {
	transition: all linear 0.5s;
  	position: relative;
  	top: 0;
  	left: 0;
}

.animated.fadeOutLeft.ng-hide {
	height: 0;
  	width: 0;
  	top:0px;
  	left: -100px;
}

.animated.fontLessen {
	transition: all linear 0.5s;
	font-size: 36px;
  	position: relative;
  	top: 0;
  	left: 0;
}

.animated.fontLessen.ng-hide {
	font-size: 80px;
	height: 0;
  	width: 0;
  	top:0px;
  	left: -100px;
}

.animated.bigToSmaill {
	transition: all linear 0.5s;
}

.animated.bigToSmaill.ng-hide {
	height: 150px;
  	width: 183px;
  	top:0px;
  	left: 150px;
}
.animated.opacityShow {
	transition: all linear 0.5s;
}
.animated.opacityShow.ng-hide {
	opacity:0
}