/*.footer-top {
  border-top: 33px solid #000;
}*/

/* Optional: nur im Footer */
footer a {
    text-decoration: none;
}

/* Schönere Variante: beim Hover evtl. Farbe ändern statt Unterstrich */
footer a:hover {
    /*color: #0d6efd; /* Bootstrap-Primary z. B. */
    text-decoration: none; /* sicherstellen */
}

.footer-bg-secondary {
  background-color: #303032 !important;
}

.footer-links {
  padding-left: 0; /* weil Icons jetzt im HTML sind */
}

.footer-links li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-links li a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: .2s ease;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #fe821d;
  text-decoration: underline;
}


/* 25.3 subcription */
.form-control.subscribe {
  width: 100%;
  border-radius: 35px;
  border: 0;
  padding: 0 20px !important;
  height: 50px;
}

a.font-secondary {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  text-decoration: none;
}

a.font-secondary:hover {
  color: #fe821d;
  text-decoration: none;
}

/* subscribe button */
.btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  border: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  background: #fe821d;
  transition: all linear .2s;
}

.btn-subscribe:hover {
  padding-left: 15px;
}

.btn-subscribe:focus {
  outline: 0;
}

/* back to top button */
.back-to-top {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background: #303032;
  top: -25px;
  right: 10px;
  border: 1px solid #454547;
  text-align: center;
  display: block;
  transition: .2s ease;
}

.back-to-top i {
  line-height: 20px;
}

.back-to-top:hover {
  border-color: var(--bs-primary) !important;
}

.back-to-top:focus {
  outline: 0;
}

/* Cookie Consent Button (links) */
.cookie-consent {
  position: absolute;       /* wie back-to-top */
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  /*background: #ffb300;     /* etwas gelber/oranger Ton für Cookie */
  background: #303032;
  top: -25px;               /* halb über Footer, wie back-to-top */
  left: 10px;               /* links statt rechts */
  border: 1px solid #454547;
  text-align: center;
  display: block;
  transition: .2s ease;
  z-index: 99999;            /* sicherstellen, dass es über allem liegt */
}

.cookie-consent i {
  line-height: 50px;        /* Icon zentrieren */
}

.cookie-consent:hover {
  border-color: var(--bs-primary) !important;
}

.cookie-consent:focus {
  outline: 0;
}
