/*----------------------ANIMATION--------------------------*/

.uk-cover-background,
.uk-article,
#jevents,
.footer-outer,
.tm-main-bottom,
#proforms_proforms,
form {
  position: relative;
  animation: fullScreenAnimation 0.2s ease-in-out;
  animation-fill-mode: backwards;
}

/*.menu-style {
    animation: slideFromLeft 0.5s ease-in-out;
    animation-fill-mode: backwards;
}

.uk-navbar-toggle {
    animation: slideFromLeft 0.5s ease-in-out;
    animation-fill-mode: backwards;
    position: relative;
}

.toolbar-outer {
    position: relative;
    animation: fullScreenAnimation 0.5s ease-in-out;
    animation-fill-mode: backwards;
}*/

.fade-out {
  position: relative;
  animation: fadeOut 0.2s ease-in-out;
  animation-fill-mode: both;
}

.fade-in {
  position: relative;
  animation: fullScreenAnimation 0.2s ease-in-out;
  animation-fill-mode: both;
}

.app-open {
  transition: all 0.5s;
  position: relative;
  animation: iosZoom 0.5s ease-in-out;
  animation-fill-mode: both;
}

.slide-fade-in {
  position: relative;
  animation: slideFadeIn 0.3s ease-in-out;
  animation-fill-mode: both;
}

.slide-fade-out {
  position: relative;
  animation: slideFadeOut 0.3s ease-in-out;
  animation-fill-mode: both;
}

.jump-in {
  position: relative;
  animation: materialJumpIn 0.3s ease-in-out;
  animation-fill-mode: both;
}

.jump-out {
  position: relative;
  animation: materialJumpOut 0.15s ease-in-out;
  animation-fill-mode: both;
}

.slide-from-bottom {
  position: relative;
  animation: slideFromBottom 0.5s ease-in-out;
  animation-fill-mode: backwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fullScreenAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes iosZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(2) translate(-50%, -50%);
  }
}

@keyframes materialJumpIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  40% {
    opacity: 1;
    transform: scale(1.04);
  }
  99% {
    transform: scale(0.99);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    bottom: 30%;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes slideFadeOut {
  100% {
    opacity: 0;
    bottom: 30%;
  }
  0% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes materialJumpOut {
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
  0% {
    transform: scale(1);
  }
}

@keyframes helpAnimation {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  10% {
    opacity: 1;
    bottom: 30px;
  }
  90% {
    opacity: 1;
    bottom: 30px;
  }
  100% {
    opacity: 0;
    bottom: -20px;
  }
}

@keyframes notificationAnimation {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  5% {
    opacity: 1;
    bottom: 20px;
  }
  95% {
    opacity: 1;
    bottom: 20px;
  }
  100% {
    opacity: 0;
    bottom: -20px;
  }
}

@keyframes slideFromTop {
  0% {
    top: -100px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideFromBottom {
  0% {
    bottom: -100px;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideFromLeft {
  0% {
    left: -100px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    right: -100px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes slideToRight {
  0% {
    right: 0px;
    opacity: 1;
  }
  100% {
    right: -100px;
    opacity: 0;
  }
}

@keyframes loadingBar {
  0% {
    left: 0;
  }
  100% {
    right: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
