.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 div, .flex_box {
  transition: all .7s ease-out;
  transform: translateY(30%);
  opacity: 0; }

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

.delighter.fadeIn.started div:nth-child(1), .flex_box:nth-child(1) {
  transition: transform .7s ease-out .2s,opacity .9s ease-out .4s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(2), .flex_box:nth-child(2) {
  transition: transform .7s ease-out .4s,opacity .9s ease-out .6s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(3), .flex_box:nth-child(3) {
  transition: transform .7s ease-out .6s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(4), .flex_box:nth-child(4) {
  transition: transform .7s ease-out .8s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(5), .flex_box:nth-child(5) {
  transition: transform .7s ease-out .1s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(6), .flex_box:nth-child(6) {
  transition: transform .7s ease-out 1.2s,border 0.2s ease 0s; }

.delighter.fadeIn.started div:nth-child(7), .flex_box:nth-child(7) {
  transition: transform .7s ease-out 1.4s,border 0.2s ease 0s; }

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

.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;
    transform: translateY(30%); }
  60% {
    opacity: 1;
    transform: translateY(0%); } }

.loader {
  border: solid #00d0ff 2px;
  width: 150px;
  height: 20px;
  border-radius: 7px;
  margin: 70px auto 20px;
  position: relative;
  color: #00d0ff; }

.loader::before {
  content: "";
  position: absolute;
  width: 146px;
  height: 16px;
  top: 2px;
  left: 2px;
  background-color: #00d0ff;
  border-radius: 4px;
  animation: loaderBeforeAnimation 2s linear infinite; }

.loader::after {
  content: "Loading...";
  position: absolute;
  width: 150px;
  color: #00d0ff;
  left: 0%;
  top: -28px;
  font-family: Marvel;
  font-size: 14pt;
  text-align: center;
  animation: loaderAfterAnimation 2s linear infinite; }

@keyframes loaderBeforeAnimation {
  0% {
    width: 0; }
  15% {
    width: 0; }
  85% {
    width: 146px; }
  100% {
    width: 146px; } }

@keyframes loaderAfterAnimation {
  0% {
    content: "Loading"; }
  25% {
    content: "Loading."; }
  50% {
    content: "Loading.."; }
  75% {
    content: "Loading..."; }
  100% {
    content: "Loading..."; } }

.error {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  border: 3px solid #ff0000;
  box-sizing: border-box;
  margin: 20px auto;
  color: #ff0000; }
  .error::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: 8px;
    display: block;
    height: 6px;
    width: 60px;
    transform: rotate(45deg);
    border-radius: 3px;
    background-color: #ff0000; }
  .error::after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: 8px;
    display: block;
    height: 6px;
    width: 60px;
    transform: rotate(-45deg);
    border-radius: 3px;
    background-color: #ff0000; }

.success {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  border: 3px solid #19cb19;
  box-sizing: border-box;
  margin: 20px auto;
  color: #19cb19; }
  .success::before {
    content: "";
    position: absolute;
    top: calc(56%);
    left: 4px;
    display: block;
    height: 6px;
    width: 30px;
    transform: rotate(45deg);
    border-radius: 3px;
    background-color: #19cb19; }
  .success::after {
    content: "";
    position: absolute;
    top: calc(50%);
    left: 20px;
    display: block;
    height: 6px;
    width: 50px;
    transform: rotate(-45deg);
    border-radius: 3px;
    background-color: #19cb19; }
