@charset "UTF-8";

/* flash */

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* End flash */

/* flash-modified , safari on Android or Windows- unlikely*/

@-webkit-keyframes flash-modified {
  0% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  20% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  40% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  60% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  80% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  100% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
}

@keyframes flash-modified {
  0% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  20% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  40% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  60% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  80% {
    position: fixed;
    background-color: #bf3542;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
  100% {
    position: fixed;
    background-color: #ff6171;
    left: 50%;
    top: 50%;
    transform: scale(3);
    z-index: 3;
  }
}

.flash-modified {
  -webkit-animation-name: flash-modified;
  animation-name: flash-modified;
}

/* Now I have to use another method on iOS to make it work first Safari on iOS*/

@-webkit-keyframes flash-modified-ios {
  0%   {
      background-color:#bf3542  ;
    }
  20%  {
      background-color:#ff6171  ;

    }
  40%  {
      background-color:#bf3542  ;

  }
  60%  {
      background-color:#ff6171  ;

  }
  80% {
    background-color:#bf3542  ;

  }
  100%  {
    background-color:#ff6171  ;

  }
}

/* Next Chrome on iOs */

@keyframes flash-modified-ios {
  0%   {
      background-color:#bf3542  ;

    }
  20%  {
      background-color:#ff6171  ;

    }
  40%  {
    background-color:#bf3542  ;
  }
  60%  {
    background-color:#ff6171  ;
  }
  80% {
    background-color:#bf3542  ;
  }
  100%  {
    background-color:#ff6171  ;
  }
}

.flash-modified-ios{
  -webkit-animation-name: flash-modified-ios;
  animation-name: flash-modified-ios;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) ;
  z-index: 99999 !important ;
}


/* End flash-modified */

/* pulse */

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse-25 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse-25 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse-25 {
  -webkit-animation-name: pulse-25;
    animation-name: pulse-25;
}

/* End Pulse */

/* tada */

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* end tada */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
