/* -------------------- Foating Contact BEGINN -------------------- */

@-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;
  }
}

.floating-container {
  position: fixed;
  display: block;
  z-index: 1;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
}
.floating-container:hover {
  height: 210px;
}
.floating-container:hover .floating-button {
  -webkit-transform: translatey(5px);
          transform: translatey(5px);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  color: #5d5e5d;
}
.floating-container:hover .element-container a .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 a .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 a .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
          animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background-color: #fff;
  bottom: 0;
  border: 5px solid #80c41c;
  outline: 3px solid #fff;
  border-radius: 15px;
  left: 0;
  right: 0;
  margin: auto;
  color: #000;
  line-height: 62px;
  text-align: center;
  font-size: 27px;
  *padding-left: 4px;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container a .float-element {
  position: relative;
  display: block;
  border-radius: 15px;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: #80c41c;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.floating-container a .float-element .material-icons {
  vertical-align: middle;
  font-size: 1.4rem;
}
.floating-container a .float-element:nth-child(1) {
  background-color: #fff;
  border: 5px solid #2e58a6;
  outline: 3px solid #fff;
}
.floating-container a .float-element:nth-child(2) {
  background-color: #fff;
  border: 5px solid #2e58a6;
  outline: 3px solid #fff;
}
.floating-container a .float-element:nth-child(3) {
  background-color: #fff;
  border: 5px solid #2e58a6;
  outline: 3px solid #fff;
}
.floating-container a .float-element:nth-child(1):hover {
  color: #fff;
  background-color: #80c41c;
}

/* -------------------- Floating Contact ENDE -------------------- */