.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#4E4D4D;--e-global-color-accent:#61CE70;--e-global-color-cc65510:#002E66;--e-global-color-7329228:#286AB7;--e-global-color-207b2d3:#DC002D;--e-global-color-b6fbc1c:#BC5A3F;--e-global-color-32dc5f4:#007665;--e-global-color-2919ef5:#008000;--e-global-color-0d2087b:#68D0FF;--e-global-color-d2bcc3b:#9CC5D9;--e-global-color-2b360b9:#B3E7FF;--e-global-color-2d57e26:#4D82C7;--e-global-color-dd3e4f5:#6876B5;--e-global-color-cd9d1da:#C1BEC4;--e-global-color-827cce4:#E47B00;--e-global-color-01702c4:#FFAF5A;--e-global-color-d9fd792:#EDD0B4;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:300;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:var( --e-global-color-2d57e26 );color:#FFFFFF;border-radius:13px 13px 13px 13px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container mit gleichmäßiger Verteilung */
.switch-container {
  display: flex;
  justify-content: space-between; /* gleichmäßig verteilen */
  align-items: center;
  flex-wrap: wrap; /* bei kleinen Screens umbrechen */
  gap: 0.5rem; /* etwas Abstand zwischen den Switches */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Jeder Switch bekommt denselben Flex-Anteil */
.switch {
  flex: 1 1 22%; /* 4 Schalter → grob 25% Breite, mit etwas Platz für gap */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* Checkbox selbst ausblenden */
.switch input { display: none; }

/* Slider-Design */
.switch .slider {
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.switch .slider::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch input:checked + .slider {
  background: #0b5ed7;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}/* End custom CSS */