/* =========================================
   sitemap.css
========================================= */
body.sitemap-light,
body.sitemap-light .main,
body.sitemap-light .content,
body.sitemap-light .contents,
body.sitemap-light section {
  background: #fff !important;
  color: #111 !important;
}

body.sitemap-dark,
body.sitemap-dark .main,
body.sitemap-dark .content,
body.sitemap-dark .contents,
body.sitemap-dark section {
  background: #000 !important;
  color: #eee !important;
}

#sitemap-status {
  width: 100%;
  max-width: 900px;
}

.sitemap-group {
  margin: 0 0 2.5em;
  border: 1px solid #d8d8d8;
  background: transparent;
}

body.sitemap-dark .sitemap-group {
  border-color: #444;
}

.sitemap-group-title {
  padding: 0.85em 1em;
  border-bottom: 1px solid #d8d8d8;
  border-left: 6px solid #62aeb8;
  background: transparent;
  color: inherit;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

body.sitemap-dark .sitemap-group-title {
  border-bottom-color: #444;
  border-left-color: #62aeb8;
}

.sitemap-list {
  margin: 0;
  padding: 1.1em 1.3em 0.2em;
  list-style: none;
}

.sitemap-list li {
  position: relative;
  margin: 0 0 1.4em;
  padding: 0 0 0 1.4em;
  border: none;
  font-size: 15px;
  line-height: 1.7;
}

.sitemap-list li::before {
  content: ">";
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-weight: normal;
}

.sitemap-page-title {
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: normal;
}

.sitemap-url,
.sitemap-meta {
  display: block;
  margin-left: 1.1em;
  overflow-wrap: anywhere;
}

.sitemap-url {
  margin-top: 0.25em;
  color: #4f9ca7;
  font-size: 13px;
  text-decoration: none;
}

.sitemap-url:hover {
  text-decoration: underline;
}

body.sitemap-dark .sitemap-url {
  color: #76c5cf;
}

.sitemap-meta {
  margin-top: 0.05em;
  color: #777;
  font-size: 12px;
}

body.sitemap-dark .sitemap-meta {
  color: #aaa;
}

.sitemap-list .not-done {
  color: #888;
  font-style: italic;
}

.sitemap-list .not-done::before {
  color: #888;
}

body.sitemap-noise::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 0, 0.08) 0,
      rgba(0, 255, 0, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  animation: sitemapNoise 16.3s infinite;
}

@keyframes sitemapNoise {
  0% {
    opacity: 0;
  }

  96% {
    opacity: 0;
  }

  97% {
    opacity: 0.7;
  }

  98% {
    opacity: 0.2;
  }

  99% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
  }
}

.report-unlock {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition:
    opacity 2.4s ease,
    filter 2.4s ease,
    transform 2.4s ease;
}

.report-unlock.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 768px) {
  #sitemap-status {
    max-width: none;
  }

  .sitemap-group {
    margin-bottom: 2em;
  }

  .sitemap-group-title {
    padding: 0.75em 0.8em;
    border-left-width: 5px;
    font-size: 18px;
  }

  .sitemap-list {
    padding: 0.9em 0.8em 0.1em;
  }

  .sitemap-list li {
    padding-left: 1.2em;
    font-size: 14px;
  }

  .sitemap-page-title {
    font-size: 15px;
  }

  .sitemap-url {
    font-size: 12px;
  }

  .sitemap-meta {
    font-size: 11px;
  }
}
