#footer-widgets
.widget a {
  text-decoration: none;
}

/* Unterstrich von Links entfernen*/

.entry-content a {
  text-decoration: none;
}

/* Styling Kontaktformular*/

#anfrage {
  background: #2f3033;
  padding: 20px 15px 20px 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.form_half {
  width: 49.5%;
  float: left;
  margin-right: 1%;
  margin-bottom: 2%;
}

.form_half_last {
  margin-right: 0px;
}

@media (max-width: 767px) {
  .form_half {
    width: 100%;
  }
}

#anfrage input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-size: 14px;
}

#anfrage input[type="submit"] {
  background: #d1aa4d;
  padding: 20px;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
}

#anfrage input[type="submit"]:hover {
  background: #C23122;
}

#anfrage input:focus {
  border: 1px solid #ffa500;
  background: #FFF9C4;
}

#anfrage div.wpcf7-response-output {
  background: #2f3033;
  padding: 1.5em 1em;
  border-color: #d1aa4d;
}

#anfrage span.wpcf7-list-item {
  color: #ffffff;
  width: 90%;
  font-size: 14px !important;
}

/* Styling Kontaktformular Weiss-Grau*/

#anfrage2 {
  background: #ffffff;
  padding: 20px 15px 20px 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  color: #1a2a44;
}

.form_half {
  width: 49.5%;
  float: left;
  margin-right: 1%;
  margin-bottom: 2%;
}

.form_half_last {
  margin-right: 0px;
}

@media (max-width: 767px) {
  .form_half {
    width: 100%;
  }
}

#anfrage2 input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: #f4f6fd;
  width: 100%;
  font-size: 14px;
  color: #1a2a44;
}

#anfrage2 input[type="submit"] {
  background: #1a2a44;
  padding: 20px;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
}

#anfrage2 input[type="submit"]:hover {
  background: #37b241;
  padding: 20px;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
}

#anfrage2 input:focus {
  border: 1px solid #ffa500;
  background: #FFF9C4;
}

#anfrage2 div.wpcf7-response-output {
  background: #2f3033;
	color: #ffffff;
  padding: 1.5em 1em;
  border-color: #d1aa4d;
}

#anfrage2 span.wpcf7-list-item {
  color: #ffffff;
  width: 90%;
  font-size: 14px !important;
}

#anfrage2 .wpcf7-list-item-label {
  color: #1a2a44;
}

#anfrage2 .wpcf7-form-control.wpcf7-text {
  color: #000000;
}

/* Styling Newsletter Button*/

.tnp-subscription input[type=submit] {
  background-color: #DEC724!important;
  color: #000000!important;
}

/* Animierte Laufschrift CSS von Webdesign Weisshart */

.marquee {
  max-width: 100vw;
  /* iOS braucht das */
  white-space: nowrap;
  overflow: hidden;
  /* hier evtl. noch font-size, color usw. */
}

.marquee span {
  display: inline-block;
  padding-left: 105%;
  /* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
  animation: marquee 20s linear infinite;
}

/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */

.marquee span:hover {
  animation-play-state: paused;
}

/* Make it move */

@keyframes marquee {
  0% {
    transform: translate3d(0,0,0);
  }

  100% {
    transform: translate3d(-100%,0,0);
  }
}