#wpldr-overlay,
.wpldr-overlay {
position: fixed;
inset: 0;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
background: var(--wpldr-bg, #ffffff);
opacity: 1;
visibility: visible;
transition: opacity 0.36s ease, visibility 0.36s ease;
}
.wpldr-overlay.is-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.wpldr-inner {
width: min(82vw, 400px);
text-align: center;
animation: wpldr-fade 0.42s ease both;
}
.wpldr-logo-wrap {
margin-bottom: 16px;
animation: wpldr-rise 0.48s ease both;
}
.wpldr-logo {
display: inline-block;
width: 100%;
max-width: var(--wpldr-logo-max, 120px);
height: auto;
animation: wpldr-scale 0.44s ease both;
}
.wpldr-bar {
position: relative;
width: 100%;
height: var(--wpldr-bar-height, 4px);
border-radius: 999px;
overflow: hidden;
background: rgba(0, 0, 0, 0.08);
}
.wpldr-progress {
width: 0;
height: 100%;
border-radius: inherit;
background: var(--wpldr-bar-color, #5a065c);
transform-origin: left center;
transition: width 0.16s linear;
}
.wpldr-percent {
margin-top: 10px;
font-size: 12px;
line-height: 1.3;
color: rgba(0, 0, 0, 0.65);
font-variant-numeric: tabular-nums;
animation: wpldr-fade 0.5s ease both;
}
@keyframes wpldr-fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes wpldr-rise {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes wpldr-scale {
from {
opacity: 0;
transform: scale(0.96);
}
to {
opacity: 1;
transform: scale(1);
}
}
@media (max-width: 640px) {
.wpldr-inner {
width: min(88vw, 320px);
}
}
@media (prefers-reduced-motion: reduce) {
#wpldr-overlay,
.wpldr-overlay,
.wpldr-progress,
.wpldr-inner,
.wpldr-logo-wrap,
.wpldr-logo,
.wpldr-percent {
animation: none !important;
transition: none !important;
}
}