.slide-in-left{animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) both}.slide-out-right{animation:slide-out-right .5s cubic-bezier(.55,.085,.68,.53) both}.fade-in{animation:fade-in .5s cubic-bezier(.39,.575,.565,1) both}.fade-out{animation:fade-out .5s ease-out both}@keyframes fade-out{0%{opacity:1}to{opacity:0}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes slide-out-right{0%{transform:translateX(0);opacity:1}to{transform:translateX(1000px);opacity:0}}@keyframes slide-in-left{0%{transform:translateX(-1000px);opacity:0}to{transform:translateX(0);opacity:1}}