/* ---- start animate.css (required for snackbar animation) ---- */
@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

.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;
  }
}
/* ---- end animate.css ---- */

/* These styles make the body full-height */
html,
body {
  height: 100%;
  overflow-x: hidden;
}
/* These styles disable body scrolling if you are using <ScrollView> */

#root {
  display: flex;
  min-height: 100%;
}

/* Scrollbar constant flickering fix on edge width */
body {
  overflow-y: scroll;
}

/*@media screen and (max-width: 768px){*/
/*  body {*/
/*    overflow: hidden;*/
/*  }*/
/*}*/

#ScreenFix-FullPage {
  position: static !important;
}

@media screen and (min-width: 769px) {
  #ScreenFix {
    position: static !important;
  }
}

body {
  font-family: Mulish, sans-serif !important;
}

/**
    Sweetalert2 customizations
*/
/*---------------------------------------------------------------------------------------------*/
body.swal2-toast-shown div.swal2-container.swal2-bottom.snackbar-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  transform: none;
  overflow: hidden !important;
}

body.swal2-toast-shown
  div.swal2-container.swal2-bottom.snackbar-container
  .swal2-popup {
  background-color: #616161;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  width: 100%;
  box-shadow: none;
  justify-content: start;
}

body.swal2-toast-shown
  div.swal2-container.swal2-bottom.snackbar-container
  .swal2-content {
  color: white;
}

div.swal2-container {
  z-index: 9999;
}
/*---------------------------------------------------------------------------------------------*/
