@import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}



.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  margin: 30px 25px;
  z-index: 1;
}
.floating-container:hover {
  height: 265px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
  -webkit-transform: translatey(5px);
          transform: translatey(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.4s forwards 0.2s;
          animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.4s forwards 0.4s;
          animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
          animation: come-in 0.4s forwards 0.6s;
}
.floating-container:hover .element-container .float-element:nth-child(4) {
  -webkit-animation: come-in 0.4s forwards 0.8s;
          animation: come-in 0.4s forwards 0.8s;
}
.floating-container:hover .element-container .float-element:nth-child(5) {
  -webkit-animation: come-in 0.4s forwards 1s;
          animation: come-in 0.4s forwards 1s;
}
.floating-container:hover .element-container .float-element:nth-child(6) {
  -webkit-animation: come-in 0.4s forwards 1.2s;
          animation: come-in 0.4s forwards 1.2s;
}



.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30x;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 30px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}


.bg-white1{
  background: white;
}




.float-element {
    background-color: black;
    color: white;
    transition: all 0.3s ease-in-out;
}



/* Standard-Button-Stil entfernen */
.float-element button {
  all: unset; /* Entfernt alle Standard-Button-Stile */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 7px;
}

/* Heller Modus: Schwarzer Hintergrund, weiße Schrift */
.float-element {
  background-color: black;
  color: white;
  transition: all 0.3s ease-in-out;
}

/* Dunkler Modus: Weißer Button, schwarze Schrift */






.floating-container .floating-button {
  background-color: black;
  color: white;
  position: absolute;
  width: 50px;  /* Größer für besseres Symbol */
  height: 50px; /* Größer für besseres Symbol */
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 50px; /* Passend zur Höhe */
  top: 90%;
  text-align: center;
  font-size: 24px; /* Größe des Symbols */
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 30%;
  padding-top: 11px;
}


body.dark-mode .floating-container .floating-button {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  position: absolute;
  width: 50px;  /* Größer für besseres Symbol */
  height: 50px; /* Größer für besseres Symbol */
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 50px; /* Passend zur Höhe */
  top: 90%;
  text-align: center;
  font-size: 24px; /* Größe des Symbols */
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 30%;
  padding-top: 11px;
}

.floating-container .floating-button i {
  font-size: 30px; /* Größeres Symbol */
}

.floating-container .material-icons button#toggleThemeButton {
 font-size: small;
}

.floating-container .material-icons button#modal {
 font-size: small;
}


@media (max-width: 768px) {
  .floating-container {
    z-index: 100;
    width: 50px;
    margin-left: 5px;
  }
  .element-container {
    width: 50px;
  }

}




/* Dunkelmodus spezifische Stile */
body.dark-mode .floating-button {
  background-color: white !important;  /* Hintergrund weiß im Dunkelmodus */
  color: black !important;  /* Schriftfarbe schwarz */
}

body.dark-mode .floating-button i.material-icons {
  color: black !important;  /* Symbolfarbe schwarz im Dunkelmodus */
}

.dropdown-toggle2::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}


h1.stroke {
  font-family: sans-serif
}