#pav9-preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.pav9-inner {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pav9-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 3;
  position: relative;
}
.pav9-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pav9-rotate 3s linear infinite; /* slower rotation */
}
.pav9-circle svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
}
.pav9-track {
  stroke: #000000;
  stroke-width: 3;
  stroke-dasharray: 597;
  stroke-dashoffset: 597;
  animation: pav9-dash 2s linear infinite;
  stroke-linecap: round;
}
@keyframes pav9-dash {
  from { stroke-dashoffset: 597; }
  to { stroke-dashoffset: 0; }
}
@keyframes pav9-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
html.pav9-preload-active, body.pav9-preload-active {
  height: 100%;
  overflow: hidden !important;
}
