#ajax-indicator {
  display: none !important;
}

#techozon-global-loader {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10, 23, 61, 0.76), rgba(15, 23, 42, 0.58)),
    rgba(241, 245, 249, 0.34);
  backdrop-filter: blur(4px);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  padding: 20px;
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100000;
}

#techozon-global-loader.tgl-visible {
  display: flex !important;
}

#techozon-global-loader .tgl-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
  color: #111827;
  display: grid;
  gap: 14px;
  line-height: 1.35;
  max-width: min(440px, calc(100vw - 40px));
  overflow: hidden;
  padding: 0;
  position: relative;
  width: min(440px, calc(100vw - 40px));
}

#techozon-global-loader .tgl-panel::before {
  background: linear-gradient(90deg, #0f2d6b, #2563eb, #22c55e);
  content: "";
  display: block;
  height: 4px;
  width: 100%;
}

#techozon-global-loader .tgl-panel-head {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  padding: 20px 22px 0;
}

#techozon-global-loader .tgl-mark {
  align-items: center;
  display: flex;
  height: 58px;
  justify-content: center;
  position: relative;
  width: 58px;
}

#techozon-global-loader .tgl-mark-badge {
  align-items: center;
  background: linear-gradient(180deg, #16418f, #0f2d6b);
  border-radius: 8px;
  box-shadow: inset 0 -8px 14px rgba(37, 99, 235, 0.26);
  color: #ffffff;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  width: 42px;
  z-index: 2;
}

#techozon-global-loader .tgl-mark-ring {
  animation: tgl-spin 0.9s linear infinite;
  border: 3px solid rgba(37, 99, 235, 0.14);
  border-left-color: #22c55e;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  height: 58px;
  inset: 0;
  position: absolute;
  width: 58px;
  z-index: 1;
}

#techozon-global-loader .tgl-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

#techozon-global-loader .tgl-copy strong {
  color: #111827;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

#techozon-global-loader .tgl-copy span {
  color: #64748b;
  font-size: 13px;
  overflow-wrap: anywhere;
}

#techozon-global-loader .tgl-pill {
  align-self: start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 8px;
}

#techozon-global-loader .tgl-progress {
  background: #e5edf7;
  border-radius: 999px;
  height: 7px;
  margin: 0 22px;
  overflow: hidden;
}

#techozon-global-loader .tgl-progress span {
  animation: tgl-progress 1.1s ease-in-out infinite;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 42%;
}

#techozon-global-loader .tgl-board {
  display: grid;
  gap: 7px;
  padding: 0 22px 20px;
  width: auto;
}

#techozon-global-loader .tgl-board span {
  background: #eef4fb;
  border-radius: 5px;
  display: block;
  height: 10px;
  overflow: hidden;
  position: relative;
}

#techozon-global-loader .tgl-board span:nth-child(2) {
  width: 84%;
}

#techozon-global-loader .tgl-board span:nth-child(3) {
  width: 68%;
}

#techozon-global-loader .tgl-board i {
  animation: tgl-shimmer 1.25s ease-in-out infinite;
  background: linear-gradient(90deg, #dbeafe, #bfdbfe, #d1fae5);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 58%;
}

#techozon-global-loader .tgl-board span:nth-child(2) i {
  animation-delay: 0.12s;
}

#techozon-global-loader .tgl-board span:nth-child(3) i {
  animation-delay: 0.24s;
}

body.tgl-loading {
  cursor: progress;
  overflow: hidden;
  user-select: none;
}

@keyframes tgl-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tgl-progress {
  0% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(250%);
  }
}

@keyframes tgl-shimmer {
  0%,
  100% {
    opacity: 0.56;
    transform: translateX(-8%) scaleX(0.72);
    transform-origin: left center;
  }

  50% {
    opacity: 1;
    transform: translateX(34%) scaleX(1);
    transform-origin: left center;
  }
}

@media (max-width: 480px) {
  #techozon-global-loader .tgl-panel-head {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px 18px 0;
  }

  #techozon-global-loader .tgl-pill {
    display: none;
  }

  #techozon-global-loader .tgl-mark,
  #techozon-global-loader .tgl-mark-ring {
    height: 50px;
    width: 50px;
  }

  #techozon-global-loader .tgl-mark-badge {
    font-size: 13px;
    height: 36px;
    width: 36px;
  }

  #techozon-global-loader .tgl-progress {
    margin: 0 18px;
  }

  #techozon-global-loader .tgl-board {
    padding: 0 18px 18px;
  }
}

#top-menu a.tz-menu-icon {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  min-height: 18px;
}

#top-menu a.tz-menu-icon::before {
  content: attr(data-tz-icon);
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  width: 16px;
}
