.animation {display: flex; justify-content: center; width: auto;}
.anm_mod {opacity: 0; transform: translate3d(0, 100%, 0); transition: all 1s ease;}
.animation .anm_mod.full {width: 100%;}
.animation .anm_mod.left {transform: translate3d(-100%, 0, 0);}
.animation .anm_mod.right { transform: translate3d(100%, 0, 0); /* animation: swing ease-in-out 1s infinite alternate;*/}
.animation .anm_mod.delay {transition: all 2s ease;}
.animation .anm_mod.fast {transition: all 0.8 ease;}
.animation .anm_mod.active {opacity: 1; transform: translate3d(0, 0, 0);}
.org_to_top {position: fixed; bottom: 20px; right: 20px;}

/*@keyframes swing {
  0% { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}*/

