

.animation {


 .anm_mod {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: all 1s ease;
  &.full {
   width: 100%;
   font-size: 3rem;
  }
  &.left {
   transform: translate3d(-100%, 0, 0);
  }
  &.right {
   transform: translate3d(100%, 0, 0);
  }
  &.delay {
   transition: all 2s ease;
  }
  &.fast {
   transition: all 0.8 ease;
  }
   &.norm {
   transition: all 1s ease;
  }
 }
}

.animation .anm_mod.active {
 opacity: 1;
 transform: translate3d(0, 0, 0);
}

.org_to_top {
 position: fixed;
 bottom: 20px;
 right: 20px;

 }

