.zy_loader_host {
  position: relative;
}

.zy_loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.55);
  z-index: 3;
}
.zy_loader.is-active {
  display: flex;
}
.zy_loader_box {
  width: min(360px, 80%);
  background: rgba(40, 40, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: #f2f2f2;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.zy_loader_label {
  font-size: 14px;
  margin-bottom: 8px;
}
.zy_loader_bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.zy_loader_fill {
  width: 0%;
  height: 100%;
  background: #8fd07a;
  transition: width 500ms ease-out;
}
