.delighter.splash {
  transition: all 2s ease-out; }

.delighter.splash.ended {
  background: #fff; }

.delighter.right {
  transform: translate(-100%);
  opacity: 0;
  transition: all .75s ease-out; }

.delighter.right.started {
  transform: none;
  opacity: 1; }

.delighter.left {
  transform: translate(100%);
  opacity: 0;
  transition: all .75s ease-out; }

.delighter.left.started {
  transform: none;
  opacity: 1; }

.delighter.bottom {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all .75s ease-out; }

.delighter.bottom.started {
  top: 0px;
  opacity: 1; }

.delighter.bounceIn {
  animation: initial; }

.delighter.bounceIn.started {
  animation-name: bounceIn;
  animation-duration: 1.25s; }

.delighter.zoomInUp {
  animation: initial; }

.delighter.zoomInUp.started {
  animation-name: zoomInUp;
  animation-duration: 1.25s;
  opacity: 1; }

.delighter.fadeIn .flex_box {
  transition: transform .7s ease-out;
  transform: translateY(20%);
  opacity: 0; }

.delighter.fadeIn.started .flex_box {
  transform: none;
  opacity: 1; }

.delighter.fadeIn.started .flex_box:nth-child(1) {
  transition: transform .7s ease-out .1s; }

.delighter.fadeIn.started .flex_box:nth-child(2) {
  transition: transform .7s ease-out .3s; }

.delighter.fadeIn.started .flex_box:nth-child(3) {
  transition: transform .7s ease-out .5s; }

.delighter.fadeIn.started .flex_box:nth-child(4) {
  transition: transform .7s ease-out .7s; }

.delighter.fadeIn.started .flex_box:nth-child(5) {
  transition: transform .7s ease-out .9s; }

.delighter.fadeIn.started .flex_box:nth-child(6) {
  transition: transform .7s ease-out 1.1s; }

.delighter.fadeIn.started .flex_box:nth-child(7) {
  transition: transform .7s ease-out 1.3s; }

.delighter.fadeIn.started .flex_box:nth-child(8) {
  transition: transform .7s ease-out 1.5s; }

.delighter li {
  opacity: 0;
  transform: translatex(400%);
  transition: transform .7s ease-out; }

.delighter.started li {
  opacity: 1;
  transform: none; }

.delighter.started li:nth-child(1) {
  transition: transform .7s ease-out .1s,width 0.5s ease 0s; }

.delighter.started li:nth-child(2) {
  transition: transform .7s ease-out .3s,width 0.5s ease 0s; }

.delighter.started li:nth-child(3) {
  transition: transform .7s ease-out .5s,width 0.5s ease 0s; }

.delighter.started li:nth-child(4) {
  transition: transform .7s ease-out .7s,width 0.5s ease 0s; }

.delighter.started li:nth-child(5) {
  transition: transform .7s ease-out .9s,width 0.5s ease 0s; }

.delighter.started li:nth-child(6) {
  transition: transform .7s ease-out 1.1s,width 0.5s ease 0s; }

.delighter.started li:nth-child(7) {
  transition: transform .7s ease-out 1.3s,width 0.5s ease 0s; }

.delighter .expand {
  display: block;
  transition: all 2s ease-out;
  opacity: 0;
  padding: 20px 0;
  width: 1px;
  overflow: hidden; }

.delighter.started .expand {
  max-width: 99999px;
  width: 100%;
  opacity: 1; }

@keyframes bounceIn {
  0% {
    transform: scale3d(0.97, 0.97, 0.97); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    transform: scale3d(1, 1, 1); } }

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes fadeIn {
  0% {
    opacity: 0;
    top: 20%; }
  60% {
    opacity: 1;
    top: 0%; } }
