@charset "UTF-8";
.img-copyright {
  position: absolute;
  --cr-right: 15px;
  --cr-bottom: 15px;
  right: var(--cr-right);
  bottom: var(--cr-bottom);
  z-index: 2;
  font-size: small;
  color: #fff;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  visibility: hidden;
}
.img-copyright:before {
  content: "©";
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.img-copyright a {
  color: inherit;
}

#copyright-layer {
  position: fixed;
  inset: 0;
  z-index: 1999;
  pointer-events: none;
}
#copyright-layer .img-copyright {
  position: fixed;
  pointer-events: auto;
  right: auto !important;
  bottom: auto !important;
  width: max-content;
  height: auto;
  max-width: calc(100vw - 8px);
}
