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

.message {
  display: none;
}
@media (min-width: 992px) {
.message {
  position: fixed;
  display: block;
  z-index: 1;
  width: 100%;
  height: auto;
  bottom: 0;
}
}
.messcircle {
  margin: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #000;
  float: left;
  position: relative;
}
.messcircle:after {
  left: -3px;
  content: '';
  border-top: 23px solid #000;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  display: block;
  width: 0px;
  height: 0;
  transform: rotate(40deg);
  position: absolute;
  top: 82px;
  border-radius: 5px;
}
.messcircle:hover .loading span {
  background-color: #e7000e;
}
.loading {
  width: 100%;
  height: 20px;
  text-align: center;
  margin: 40px 0;
  float: left;
}
.loading span {
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 5px 3px 0;
  animation-name: dotone;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.loading span:nth-child(2) {
  animation-delay: .30s;
}
.loading span:nth-child(3) {
  animation-delay: .61s;
}
@keyframes dotone {
  25% {
    transform: translateY(-25px)
  }
  65% {
    transform: translateY(8px)
  }
  80% {
    transform: translateY(0px)
  }
}
.textline {
  background-color: #e7000e;
  width: 150px;
  height: 45px;
  border-radius: 25px;
  overflow: hidden;
  position: absolute;
  top: -55px;
  right: -50px;
}
.textline span {
  font-size: 28px;
  color: #ffffff;
  display: block;
  white-space: nowrap;
  margin: 1px 0;
  animation: 6s txtscrl linear infinite;
}
@keyframes txtscrl {
  0% {
    transform: translateX(130px)
  }
  100% {
    transform: translateX(-290px)
  }
}

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