@charset "utf-8";

.slide-in {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(.16, .26, .06, .92);
  -moz-transition: all 0.3s cubic-bezier(.16, .26, .06, .92);
  -ms-transition: all 0.3s cubic-bezier(.16, .26, .06, .92);
  -o-transition: all 0.3s cubic-bezier(.16, .26, .06, .92);
  transition: all 0.3s cubic-bezier(.16, .26, .06, .92);
}
.slide-in.slow {
-webkit-transition: all 0.6s ease-in;
-moz-transition: all 0.6s ease-in;
-ms-transition: all 0.6s ease-in;
-o-transition: all 0.6s ease-in;
transition: all 0.6s ease-in;
}

.slide-in.active {
  opacity: 1;
}

.from-bottom {
  position: relative;
  top: 40px !important;
}
.from-top {
  position: relative;
  top: -40px;
}
.from-bottom.small {
  top: 10px;
}

.from-bottom.active {
  top: 0 !important;
}

.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%;
}

.zoom-in {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}
.zoom-in.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
