.copyright_wrapper {
  position: absolute;
  z-index: 2;
  outline: 1px solid rgba(0, 119, 178, 0.95);
  background-color: rgba(0, 119, 178, 0.05);
  pointer-events: none;
  animation: copyright_fadein 0.15s linear forwards;
}
.copyright_wrapper>div {
  position: absolute;
  top: calc(100% + 8px);
  left: calc(50% - 16px);
  z-index: 3;
  width: min-content;
  padding: 4px 8px;
  background: #0077b2;
  color: white;
  white-space: nowrap;
  font-size: 1rem;
  border-radius: 4px;
  pointer-events: initial;
}
.copyright_wrapper>div::before {
  content: "© ";
}
.copyright_wrapper>div::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 8px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #0077b2 transparent;
}
.copyright_wrapper>div.right {
  left: auto;
  right: calc(50% - 16px);
}
.copyright_wrapper>div.right::after {
  left: auto;
  right: 8px;
}

@keyframes copyright_fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

#image_copyright_info {
  display:none;
}
#image_copyright_info+label {
  width:180px;
  padding: 0.5em;
  color: #343a40;
  font-size: 0.875em;
  font-weight: normal;
  cursor: pointer;
}
#image_copyright_info+label:hover {
  text-decoration: underline;
}


/* mobiles Megamenü: */
.mm-navbars_bottom > .mm-navbar li label {
  display: block;
  font-size: 0.875rem;
  color: #0077b2;
  background-color: transparent;
  background-image: none;
  border: 1px solid #0077b2;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-right: 0;
}
.mm-navbars_bottom > .mm-navbar li label:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0077b2;
}