@charset "utf-8";

.slide-in {
  opacity: 0;
}
.slide-in.slow {
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-ms-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
transition: all 1s ease-out;
}

.slide-in.active {
  opacity: 1;
  -webkit-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
  -moz-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
  -ms-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
  -o-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
  transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
}

.from-bottom {
  position: relative;
  top: 40px;
}
.from-top {
  position: relative;
  top: -40px;
}
.from-bottom.small {
  top: 10px;
}

.from-bottom.active {
  top: 0;
}

.from-left {
  position: relative;
  right: 40px;
}

.from-left.active {
  right: 0;
}

.from-right {
  position: relative;
  left: 40px;
}
body.landscape .from-right {
  position: relative;
  left: 0px;
}

.from-right.active {
  left: 0;
}

.spinning-in {
  position: relative;
  opacity: 0;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

.scale img {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -moz-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -ms-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -o-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
}
.scale.active img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.rotate img {
    -webkit-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -moz-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -ms-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    -o-transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
    transition: all 0.6s cubic-bezier(.16, .26, .06, .92);
}
.rotate.active img {
    -ms-transform: rotate3d(0, 1, 0, 360deg);
    transform: rotate3d(0, 1, 0, 360deg);
}

/* @media only screen and (max-width: 1023px) {
	.from-bottom {
	position: relative;
	top: 0px;
	}

	.from-left {
	position: relative;
	right: 0px;
	}

	.from-right {
	position: relative;
	left: 0px;
	}
	.slide-in {
	opacity: 1;
	}
} */
