footer {
  border-top: 1px solid var(--main-color);
  font-family: 'Serenity', Arial, sans-serif;
  padding: .2em 0;
  position: fixed;
  bottom: 0;
  transition: transform 250ms ease;
  width: 100%;
  max-width: 1080px;
  z-index: -1;
}

#gdpr-agreed.shake {
  animation: shake 250ms ease-out;
}

footer > form {
  background-color: var(--media-background-dark);
  align-items: center;
  display: flex;
  gap: 1em;
  justify-content: flex-end;
  padding: 1em;
}
footer .text-input {
  width: initial;
  max-width: initial;
}
footer .button {
  margin: 0;
}

.footer-nav__copyright > a {
  white-space: nowrap;
}
.footer-nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.footer-nav > ul > li:first-child {
  flex: 2 0 0%;
  padding: .3em;
}
.footer-nav__link + .footer-nav__link {
  border-left: 1px solid var(--main-color);
}
.footer-nav__link > a {
  color: var(--main-color);
  display: block;
  padding: .3em;
}
.footer-nav__link > a:hover {
  color: var(--link-color-active);
}
.footer-nav__link > a:focus-visible {
  outline-offset: -.25em;
}
