.scrolling-banner {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100vw;
    height: 2.5rem;
    background: rgb(64, 64, 64,0.3);
    color: #ffffff;
    font-weight: normal;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    align-items: center;
	white-space: pre;
}

.scrolling-banner span {
    display: flex;
    width: fit-content;
    white-space: pre;
    animation: loop 30s linear infinite;
}

.scrolling-banner span::before {
    content: "     Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!          Nacht der kreativen Köpfe: Wir sind dabei!     "     ;
}

@keyframes loop {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
      
 
.image-hover {
  opacity: 0;
  transition: opacity 2.0s;
}

.image-hover:hover {
  opacity: 1;
}

.linker-strich {
    border-left: 4px solid #333; 
padding-left: 20px;
}

.diagonal-cut-wrapper{
	overflow: hidden;
}
.diagonal-cut{
  
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
	
	
}
.video{
	overflow: visible !important;
}
.hyphens{
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}
/*
.move-menu {
  /*posiion: relative; or any other position value except static
  top: -50px;
}*/


.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{
	z-index: 100 !important;
}

.rainbow-text {
  font-size: 24px;
  font-weight: bold;
}

.rainbow-button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.rainbow-button:hover {
  background-color: #3e8e41;
}

/* ################## LEARNPRESS ################## */
.lp-archive-courses .course-meta__pull-left .meta-item.meta-item-assignment::before {
	content: "\f016"
}

/* ##################  Kadence ################## */
.kt-inside-inner-col .wp-block-kadence-column{
	width: auto
}

/* ################### UNSET Link Color ############### */
.unset-link-color > a {
	color: unset;
}


/* ################### Rainbow Rank #################### */

.rainbow-icon {
	all: initial;
	font-size: inherit;
	font-weight: inherit;
}

.rainbow-rank {
  background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
  text-align: center;
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow 18s linear infinite;
}

@keyframes rainbow { 
    0%{
		background-position:0% 50%;
	}
    100%{
		background-position:800% 50%;
	}
}

/* ################### Hidden till click ######################*/

.hidden-till-click:not(:active) {
   color: transparent;
   text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hidden-till-click:active {
   color: #000000;
}