/**
hellgrün
RGB: 211/213/199
CMYK: 22/13/25/3
hex: #D3D5C7

dunkelgrün
RGB: 126/134/108
CMYK: 48/30/55/32
hex: #7E866C

grau
RGB: 217/217/217
CMYK: 18/13/14/2
hex: D9D9D9
*/
:root {
            --hellgruen: #D3D5C7;
            --dunkelgruen: #7E866C;
            --grau: #D9D9D9;
            --gelb: #cc9646;
            --weiss: #FFFFFF;
            --statusGruen: #657459;
            --statusGelb: #cc9646;
            --statusRot: #722410;
        }

    @font-face {
    font-family: 'myAilLight';
    src: url("../fonts/Aileron-Light.otf") format("opentype");
}
@font-face {
    font-family: 'myRetroSign';
    src: url("../fonts/RetroSignature.otf") format("opentype");
}
html, body {
  font-family: "myAilLight", sans-serif;
  color: #444444;
  height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
        flex-direction: column;
}


.wrapper {
  min-height: 100vh;
  background: var(--hellgruen);
   display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
}




a {
  color: var(--dunkelgruen);
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "myAilLight", sans-serif;
}


#main {
padding-top: 75px;
background: var(--hellgruen);
  flex: 1;

}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #D3D5C7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: var(--hellgruen);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #D3D5C7;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  color: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--dunkelgruen);
  opacity: 0.8;
}

#header .logo {
  font-size: 40px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "myRetroSign";
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: var(--hellgruen);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #D3D5C7;
}

.get-started-btn:hover {
  background: #D3D5C7;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: black;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: var(--hellgruen);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.navbar a.active {
    color: black; /* Hintergrundfarbe für die aktive Seite */

}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: var(--dunkelgruen);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: var(--hellgruen);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# start Section
--------------------------------------------------------------*/


#start:before {
  content: "";
    background-color: var(--hellgruen);
    z-index: -1;
    opacity:0.8;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#start .container {
  position: relative;
  text-align: center;
  z-index:1;
}

#start h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "myAilLight", sans-serif;
}

#login h1 {
font-family: "myRetroSign";
font-size: 80px;
}

#start h1 span {
  color: var(--hellgruen);
}

#start h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#start .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  height: 100%;
  text-align: center;
}



#start .icon-box h3 {
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 60px;
  line-height: 26px;
  font-family: "myRetroSign", sans-serif;
}

#start .icon-box h3 a {
  color: var(--dunkelgruen);
  transition: ease-in-out 0.3s;
}

#angebote .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  height: 100%;
  text-align: center;
}

#angebote .icon-box h3 {
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 40px;
  line-height: 26px;
  font-family: "myRetroSign", sans-serif;
}

#angebote .icon-box h3 a {
  color: var(--dunkelgruen);
  transition: ease-in-out 0.3s;
}


@media (min-width: 1024px) {
  #start {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #start h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #start h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.form-row {
    display: flex;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

/*--------------------------------------------------------------
# start Section
--------------------------------------------------------------*/
#buchung {
  width: 100%;
  min-height: auto;
  background-size: cover;
  background: var(--hellgruen);

}

#buchung:before {
  content: "";
  background: var(--hellgruen);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#buchung .container {
  position: relative;
  padding-top: 74px;
  text-align: left;
}

#buchung h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  color: #444444;
  font-family: "myAilLight", sans-serif;
}
#buchung .button-container {
     display: flex;
     justify-content: left; /* Center horizontally */
     align-items: center;     /* Center vertically */
     margin-top: 20px;        /* Optional: adjust top margin if needed */
 }


.btn-dunkelgruen {
    background-color: var(--dunkelgruen); /* dark green background */
    color: #F5F5EE; /* light beige text */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}

.btn-dunkelgruen:hover {
    background-color: var(--hellgruen); /* lighter green on hover */
    color: var(--dunkelgruen);
}

#buchung a {
    color: var(--dunkelgruen); /* dark green links */
    text-decoration: none;
}

#buchung a:hover {
    text-decoration: underline;
}


.content-with-image {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between; /* Add space between content and image */
    gap: 20px; /* Optional: Add some space between text and image */
}

.text-content {
    flex: 1; /* Allow text content to take available space */
}

.image-content {
    max-width: 200px; /* Set a maximum width for the image */
}

.image-content img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

#buchung #kursname {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  color: #444444;
  font-family: "myRetroSign", sans-serif;
}

@media (min-width: 1024px) {
  #buchung {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #buchung h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h1 {
  font-size: 72px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;

  color: var(--dunkelgruen);
  font-family: "myRetroSign";
}



/*#-------------------------
# tooltip
----------------------------*/
/* Styling for the tooltip container */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Styling for the "i" icon */
.info-icon {
    background-color: var(--dunkelgruen);
    color: white;
    border-radius: 50%;
    padding: 5px 8px;
    font-size: 14px;
    text-align: center;
    line-height: 1;
}

/* Tooltip text hidden by default */
.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--dunkelgruen);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Adjust this value based on your needs */
    left: 50%;
    margin-left: -100px; /* Adjust this value based on the width */
    opacity: 0;
    font-size: 12px;
    transition: opacity 0.3s;
}

.custom-checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-item input {
    transform: scale(1.2);
}


/* Show the tooltip text when hovering over the container */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Optional: Add a little arrow to the tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/*--------------------------------------------------------------
 # Kurse
 --------------------------------------------------------------*/
 .kurse {
 background-color: var(--hellgruen);
 }
 .kurse container {
 background-color: var(--hellgruen);
 }
.card-body {
 background-color: var(--hellgruen);
 }

 .course-header {
     display: flex;
     align-items: flex-start;
 }

 .course-image {
     width: 100px; /* Adjust the width as needed */
     height: auto;
     margin-right: 15px; /* Space between the image and the text */
 }

 .course-info {
     flex-grow: 1;
 }


 .circle-container {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
 }

 .circle {
     width: 20px;
     height: 20px;
     border-radius: 50%;
     border: 2px solid #000;
     margin-right: 5px;
 }

 .circle.red {
     background-color: var(--statusRot);
 }

 .circle.yellow {
     background-color: var(--statusGelb);
 }

 .circle.green {
     background-color: var(--statusGruen);
 }

 .circle.empty {
     background-color: white;
     border: 2px solid #ccc;
 }

 .details-toggle {
     display: flex;
     align-items: center;
     cursor: pointer;
     margin-left: 5px;
      color: black;
 }

 .details-icon {
    color: black;
     margin-left: 5px;
     transition: transform 0.3s ease;
 }

 .details-icon.rotated {
     transform: rotate(180deg);
 }


 .status-text-green {
     color: var(--statusGruen);
     font-weight: bold;
 }
 .status-text-red {
     color: var(--statusRot);
     font-weight: bold;
 }
 .status-text-yellow {
     color: var(--statusGelb);
     font-weight: bold;
 }

 .waiting-list-btn {
 background: var(--statusRot);
 color: white;
 }
.book-now-btn {
background: var(--statusGruen);
color: white;
}
.reserve-btn {
background: var(--statusGelb);
color: white;
}

/*--------------------------------------------------------------
 # Welcome
 --------------------------------------------------------------*/
 .welcome {
 background-color: var(--hellgruen);
 font-size:20px;
 }
 .welcome .content {
   padding: 30px 0;

 }
 .welcome .content .block2{
    padding: 30px 0;
    color: var(--dunkelgruen);
    text-align:center;
    font-size:22px;
  }

 .welcome .content h1 {
   font-size: 100px;
   color: var(--dunkelgruen);
   font-family: 'myRetroSign';
   text-align:center;
 }

  .welcome .content h1 .logo{
    height: 1em; /* Passt die Höhe des Bildes an die Schriftgröße der Überschrift an */
        vertical-align: top;
  }
 .welcome .image img{
   max-height: 400px;
   border-style: solid;
   border-color: var(--weiss);
   border-width: 20px;
 }
 .welcome .image {
        align-self: anchor-center;
  }

 @media (max-width: 667px) {
   .welcome .image img {
     max-width: 100%;
   }
 }

 /*--------------------------------------------------------------
  # dreiSchlagwort
  --------------------------------------------------------------*/
  .dreiSchlagwort {
  background-color: var(--hellgruen);
  font-size:20px;
  }
  .dreiSchlagwort .content {
    padding: 30px 0;
  }
  .dreiSchlagwort .content img{
  max-width:100px;
   }

  .dreiSchlagwort .content h3 {
    font-size: 70px;
    font-family: 'myRetroSign';
    color: var(--gelb);
  }

  .dreiSchlagwort .image img{
    align-self: center;
    max-height: 400px;
  }
/*--------------------------------------------------------------
# Zahlen
--------------------------------------------------------------*/
.zahlen {
background-color: var(--hellgruen);
}
.zahlen .content {
  padding: 30px 0;
 color: var(--dunkelgruen);
}

.zahlen .content h1 {
  font-weight: 400;
  font-size: 100px;
  font-family: 'myRetroSign';
  text-align:center;
}
.zahlen .content h1 .logo{
    height: 1em; /* Passt die Höhe des Bildes an die Schriftgröße der Überschrift an */
        vertical-align: top;
  }
.zahlen .content .unterschrift {
  text-align:center;
  font-size: 20px;
  padding-bottom:30px;
    font-family: "myAilLight", sans-serif;
}
.zahlen .content .count-box {
  padding: 20px 0;
  width: 100%;
  font-size: 17px;
  z-index:1;
 color: var(--weiss);
}

.zahlen .content .circle-background {
    position: relative; /* Ermöglicht, dass der Hintergrund hinter dem Inhalt bleibt */
    background-color: var(--gelb);; /* Setzt die Hintergrundfarbe des Kreises */
    width: 200px; /* Breite des Kreises */
    height: 200px; /* Höhe des Kreises, gleich der Breite für einen Kreis */
    border-radius: 50%; /* Macht den Hintergrund zu einem Kreis */
    align-content: space-evenly;
    margin: 0 auto; /* Zentriert den Kreis innerhalb des übergeordneten Containers */
}

.zahlen .content .count-box span {
  padding: 15px 0 0 0;
  font-size: 40px;
  line-height: 30px;
  display: block;
  vertical-align: middle;
}

.zahlen .content .count-box p {
  font-family: 'myRetroSign';
  font-size: 60px;
  vertical-align: middle;
}
/*--------------------------------------------------------------
# angebote
--------------------------------------------------------------*/
.angebote {
 font-family: "myAilLight", sans-serif;
 font-size: 16px;
 color: var(--dunkelgruen);
}
.angebote h1, h2{
 font-family: "myRetroSign";
}
.angebote h1{
 font-size: 73px;
  text-align-last:center;
  line-height: 4rem;
}
.angebote h2{
 font-size: 61px;
}

.angebote h1 img{
 max-width:150px;

}
.angebote .allgemein{
 font-size:20px;
}
.mamaletik .row p{
 text-align: center;
 margin-bottom: 40px;
}
.mamaletik .allgemein{
 text-align: left;
 margin-bottom: 40px;
}
.mamaletik h2{
 font-size: 61px;
 color: var(--gelb);
}

.angebote button {
    max-width: 200px;
}
/*--------------------------------------------------------------
# Kontaktaufnahme
--------------------------------------------------------------*/
#kontaktaufnahme {
 color: var(--dunkelgruen);
 font-size: 24px;
}
#kontaktaufnahme h1 {
font-family: "myRetroSign";

 font-size: 80px;
 text-align: center;
}
#kontaktaufnahme .anrufen{
 font-size: 20px;
}
#kontaktaufnahme i{
    display: inline-flex;
    align-items: center;
    align-self:center;
    justify-content: center;
    width: 60px; /* Größe des Kreises */
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--dunkelgruen); /* Roter Rand */
    color: var(--dunkelgruen); /* Icon-Farbe */
    font-size: 40px; /* Größe des Icons */
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
  position: relative;
}

.team .member {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  perspective: 1000px;
}

.team .member .member-img,
.team .member .member-info {
  transition: transform 0.6s;
}

.team .member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .member .member-img img {
  width: 100%;
  transition: transform 0.6s;
}

.team .member .member-detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f7f7;
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  transform: rotateY(180deg);
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
  text-align: center;
overflow-y: auto; /* Scrollbar aktivieren */
  max-height: 100%; /* Begrenzung der Höhe */
}
.team .member .member-detail img{
    border-radius: 50%;
    max-width:50%;
    height: auto;
}
.team .member .member-detail p{
   text-align: left;

}
.team .member .member-detail ul{
   text-align: left;

}
.team .member .member-detail h4{
   text-align: left;
   font-size: 16px;
    font-family: "myAilLight", sans-serif;
    font-weight: bold;
}

.team .member.flip .member-img {
  transform: rotateY(180deg);
}

.team .member.flip .member-info {
  transform: rotateY(180deg);
}

.team .member.flip .member-detail {
  transform: rotateY(0deg);
  opacity: 1;
  visibility: visible;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #D3D5C7;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info h2 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 47px;
  color: var(--dunkelgruen);
  font-family: 'myRetroSign';
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--dunkelgruen);
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}




@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dunkelgruen);
    padding: 10px 0;
    color: white;
    font-size: 14px;
    position: relative;
    width: 100%;
    font-family: "myAilLight", sans-serif;
}

#footer .footer-top .footer-info h3 {
  font-size: 36px;
  padding: 2px 0 2px 0;
  color: white;
  line-height: 1;
  font-weight: 700;
  font-family: 'myRetroSign';

}


#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--hellgruen);;
  color: var(--dunkelgruen);
  line-height: 1;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  padding: 8px 0;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-top .social-links i {
  font-size: 24px;
}

#footer .footer-top .social-links a:hover {
  background: var(--dunkelgruen);
  color: white;
  text-decoration: none;
}
#footer a:hover {
  color:  var(--hellgruen);
  text-decoration: none;
}

#footer a{
  color: white;
  text-decoration: underline;
}
#footer i{
font-size: 5px;
vertical-align: middle;
}



#footer .footer-top .footer-links {
   font-size: 16px;
}
#footer .footer-top {
   padding: 8px 0;
}


/* -------------------------------------  meine Kurse*/
.details-row {
    display: none;
}

.details-row.details-visible {
    display: table-row;
}

.details-content {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Default hidden state for details rows */
.details-row {
    display: none;
}

.details-row.details-visible {
    display: table-row;
}

.details-content {
     background-color: var(--hellgruen);
    padding: 10px;
    border: 1px solid #ddd;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
 #data-table .clickable-row td{
        text-align: center;
        background-color: var(--hellgruen);
    }
   #data-table th {
           text-align: center;
            background-color: var(--dunkelgruen);
            color: white;
       }
   .clickable-row {
           border-bottom: 2px solid var(--grau);
       }
   #data-table tbody tr:last-child {
           border-bottom: none;
       }
}

@media (max-width: 1200px) {
    #data-table thead {
        display: none;
    }

    #data-table tbody, #data-table tr, #data-table td {
        display: block;
        width: 100%;
    }

    #data-table tr {
        margin-bottom: 15px;
    }

    .clickable-row {
        border-bottom: 2px solid var(--grau); /* Dünne graue Linie unter jeder Zeile */
    }
    #data-table tbody tr:last-child {
            border-bottom: none; /* Entfernt die Linie unter der letzten Zeile */
        }

    #data-table .clickable-row td {
        text-align: right;
        padding-left: 50%;
        position: relative;
         background-color: var(--hellgruen);
    }



    #data-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }

    .details-content {
        display: none;
    }

    .details-row.details-visible .details-content {
        display: block;
    }
}

/* --------------------- */

.modal-header {
    position: relative;
}
.modal-header .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.5rem 1rem;
    margin: 0;
    border: 0;
    background: transparent;
}

/* -------------------------------------- allgemein Input statt Buchung */
/* Custom CSS for checkboxes */
.form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; /* Space between each checkbox */
}
.custom-input{
 background: var(--dunkelgruen);
 color: white;
 border-width: 0px;
 border-radius: 4px;
 outline: none;
}

.custom-input:disabled{
 background: var(--dunkelgruen);
 color: white;
 border-width: 0px;
 border-radius: 4px;
 outline: none;
}
/* Styles to prevent autofill from changing the background color */
.custom-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--dunkelgruen) inset;
    -webkit-text-fill-color: white;
}
.custom-checkbox {
    opacity: 0;
    left: -16px;
    position: relative;
}

/* Firefox autofill styles */
.custom-input:-moz-autofill {
    box-shadow: 0 0 0px 1000px var(--dunkelgruen) inset;
    -moz-text-fill-color: white;
}

/* Edge and IE autofill styles */
.custom-input:-ms-autofill {
    box-shadow: 0 0 0px 1000px var(--dunkelgruen) inset;
    -ms-text-fill-color: white;
}

.form-group {
font-weight: 500;
font-size:16px;
    display: block;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; /* Space between each checkbox */
}


.form-check-label {
    flex-grow: 1; /* Take up remaining space */
    margin-right: 10px; /* Space between text and checkbox */
    position: relative; /* For the pseudo-element positioning */
}

/* Hide the default checkbox */


/* Custom checkbox styling */
.form-check-label::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--dunkelgruen); /* Dark green background when unchecked */
    border-radius: 4px;
    position: absolute;
    left: -35px; /* Position it to the left side of the label */
    top: 50%;
    transform: translateY(-50%); /* Center it vertically */
}

input[type="checkbox"]:checked + .form-check-label::before {
    content: "\2714";
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

#personAnlegen a {
  color: var(--dunkelgruen);
  text-decoration: none;
}

#personAnlegen a:hover {
  color: white;
  text-decoration: none;
}

.account {
  font-size: 18px;
  display: inline-block;
  background: var(--hellgruen);;
  color: var(--dunkelgruen);
  line-height: 1;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  padding: 8px 0;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  text-decoration: none;
}

.account i {
  font-size: 24px;
}

.account:hover {
  background: var(--dunkelgruen);
  color: white;
  text-decoration: none;
}

.blocksatz {
text-align:justify;
 }

 .bezahlt-btn {
     background: transparent;
     border: none;
     cursor: pointer;
 }

 .bezahlt-btn.bezahlt i {
     color: green;
 }

 .bezahlt-btn:not(.bezahlt) i {
     color: red;
 }
.booking-btn.confirmed i {
    color: #2e7d32;
}

.booking-btn:disabled {
    cursor: default;
    opacity: 0.7;
}
