.ce_accordion_v2 .toggler:not(.ui-state-active):hover, .ce_accordion.style2 .toggler:not(.ui-state-active):hover {
    color: #ffc3c3;
}

#bottom .inside, #bottom .inside a {
    color: #fff;
}

#bottom {
    background: var(--accentColor);
}

.ce_hyperlink.btn-radius-20 a {
    border-radius: 50px;
}

input.submit, button.submit {
    width: 100% !important;
}

.ce_accordion.style2 .toggler:before {
    margin: 0;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    padding: 0;
    text-align: center;
    font: 1rem / 1.6rem FontAwesome;
    font-weight: normal;
    content: "\f067";
    border-radius: 100%;
    border: 2px solid;
    color: #f8edeB;
}




.ce_accordion.style2 .toggler {
    padding: 1rem 1rem 1rem 4rem;
    box-shadow: 0 2px 2px 2px rgb(0 0 0 / .03);
    cursor: pointer;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    position: relative;
    border: 1px solid #f8edeB;
    width: 100%;
    font-size: 1rem;
    background: none;
    text-align: left;
    color: #f8edeB;
}

@keyframes pulsieren {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Leicht vergrößert */
  }
  100% {
    transform: scale(1);
  }
}

.pulsierend {
  display: block; 
  margin: auto;   
  width: 300px;   
  animation: pulsieren 3s ease-in-out infinite; 
}

.pulsierend2 {
  display: block;
  margin: auto;   
  width: 100%;   
  animation: pulsieren 2s ease-in-out infinite; 
}

@keyframes aufAb {
  0% {
    transform: translateY(0) rotate(10deg); 
  }
  50% {
    transform: translateY(-15px) rotate(10deg); 
  }
  100% {
    transform: translateY(0) rotate(10deg); 
  }
}

.auf-ab {
  display: block; 
  margin: auto;  
  width: 300px;   
  animation: aufAb 2s ease-in-out infinite; 
  transform: rotate(10deg) scale(1.3);
}

.neigen {
  display: block;
  margin: auto;
  width: 300px;
  transition: transform 0.3s ease;
  position: relative; /* Erforderlich für das Pseudo-Element */
  z-index: 1; /* Bild bleibt über dem Hintergrund */
}

.neigen::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%; /* Kreisgröße relativ zur Bildgröße */
  height: 10%; /* Kreis bleibt rund */
background: radial-gradient(circle, rgba(255, 255, 255), rgba(255, 255, 255, 0) 70%);
  border-radius: 50%; /* Macht den Hintergrund rund */
  transform: translate(-50%, -50%);
  z-index: -1; /* Hintergrund hinter das Bild */
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0; /* Unsichtbar im Ausgangszustand */
}

.neigen:hover {
  transform: rotate(10deg) scale(1.3);
}

.neigen:hover::before {
  width: 100%; /* Kreis leicht vergrößern beim Hover */
  height: 100%;
  opacity: 1; /* Sichtbar machen */
}

