@charset "UTF-8";
#ajax_loader {
  opacity: 1;
  display: block;
  visibility: visible;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  transition: opacity 0.25s linear 0s, height 0s linear 0.25s;
  background-blend-mode: overlay, color;
}
#ajax_loader::before {
  content: '';
  display: block;
  background: #FFFFFF url('/_local/dnk24/svg/ajax_loader.svg') no-repeat center center;
  background-size: 60px 60px;
  padding: 15px;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 2px;
  line-height: 80px;
  margin-top: -40px;
  margin-left: -40px;
}
body[data-status="loading"] .dnk {
  filter: blur(5px);
  opacity: 0.25;
}
/* ~~~ ~~~ ~~~ ADAPTIVITY ~~~ ~~~ ~~~ */
body[data-status="loaded"] #ajax_loader {
  opacity: 0;
  height: 0vh;
  overflow: hidden;
}
body[data-status="loaded"][data-loader="show"] #ajax_loader {
  visibility: visible;
  opacity: 1;
  width: 100vw;
  height: 100vh;
}
body[data-status="loaded"][data-loader="show"] #ajax_loader {
  visibility: hidden;
  opacity: 0;
  height: 0vh;
}
body[data-status="loaded"] .dnk {
  filter: blur(0px);
  opacity: 1;
}
/*# sourceMappingURL=preloader.css.map */