/* Text umbruch */
.content-text * {
     word-break: break-word !important;
}

/* Text Schatten */
.schatten {
text-shadow: 2px 2px 5px rgba(0,0,0,.72),2px 2px 5px rgba(0,0,0,.72)!important;
}

/* Button Glow Effekt */
.button-glow {
  animation: glowing 1300ms infinite;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #a1c412, 0 0 1px #a1c412;
  }
  50% {
    box-shadow: 0 0 20px #a1c412, 0 0 10px #a1c412;
  }
  100% {
    box-shadow: 0 0 5px #a1c412, 0 0 1px #a1c412;
  }
}