@import 'constants/index.scss';

.loaderWrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(#fff, 0.8);
  transition: 0.5s ease-out;
  opacity: 0;
  > div {
    transition: 0.5s ease-out;
    transform: translateY(30px);
    opacity: 0;
  }
  &.active {
    opacity: 1;
    > div {
      transform: translateY(0px);
      opacity: 1;
    }
  }
}
