@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap');

#hideall {
  * {
    opacity: 0 !important;
    @include transition(opacity 1s ease-in-out);
  }
}

.animated {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

body {
  font-family: Nunito, sans-serif;
  color: $themeBlack;
  background-color: $themeWhite;
  min-width: 320px;
  @include media-breakpoint-down(sm){
    overflow-x: scroll;
  }
}

div > :not(p):not(span):not(i), *:hover {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s;
}

.clear {
  clear: both;
}

.block {
  display: block;
}

table {
  width: 100%;
}




