html > div[style] {
  display: none !important;
}

.page_loading header,
.page_loading section:first-child {
  filter: blur(10px);
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3d3d3d;
  opacity: 0.95;
  transition: opacity 0.4s linear;
  z-index: 9995;
}
.preloader__logo {
  height: 25vh;
  width: auto;
  animation: fadeIn ease 1s;
  animation-iteration-count: 1;
  transition: opacity 0.2s linear;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 9997;
}

.page_loading .preloader__logo {
  opacity: 1;
}

.page_loaded .preloader {
  opacity: 0;
}
.page_loaded .preloader__logo {
  opacity: 0;
}

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