.floating-buttons-global {
  position: fixed;
  bottom: 15%;
  right: 0;
  z-index: 9999;
}

.floating-button {
  display: block;
  padding: 5px;
  background-color: rgba(241, 128, 14, 1);
  color: #fff!important;
  text-align: center;
  text-decoration: none;
  width: 50px;
  height: 50px;
  line-height: 30px;
  font-size: 20px;
  transition: background-color 0.2s, color 0.2s;
  box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.20);
}

.floating-button img {
  max-width: 60%;
  max-height: 60%;
  margin-top:9px;
	
}

.floating-button i {
  font-size: 24px;
  line-height: 50px;
}

.floating-button:hover {
  background-color: #f2973c;
  color: #fff;
}
  
.tooltip {
  position: relative; 
  display: none;
  padding: 5px;
  background-color: #4e4c4c;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translate(-50%, -50%);
  width: 160px;
  top: -55%;
  cursor:none;
  text-decoration:underline #4e4c4c!important;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 100%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
  transform: translateY(-50%);
  margin-left: -5px; 
  border-bottom: 0px solid !important;
}
  
.floating-button:hover .tooltip {
  display: block;
  opacity: 1;
  left: -370%;
  transform: translateY(-50%);
  border-bottom: 0px solid !important;
}

/*mobile Änderung*/
@media only screen and (min-width: 750px) {
  .floating-buttons-global{
    bottom:20%!important;
  }
#button-hide-mobile{
    display:block!important;
  }
}