/*.quick-booking-wrapper {
  position: fixed;
  right: 0;
  top: 360px;
  display: block;
  width: auto;
  height: auto;
  z-index: 100; }

.quick-booking {
  width: 60px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px; }

.quick-booking {
  border-top-left-radius: 6px; }

.quick-booking {
  border-bottom-left-radius: 6px; }
  
@media (min-width: 1024px) {
  .quick-booking-h--wrapper {
    display: none;
  } 
}

@media (max-width: 1023px) {
  .quick-booking-wrapper {
    position: sticky; 
    top: 0;
  }
  
  .quick-booking {
  	width: 100%;
    border-top-left-radius: 0px;
  	border-bottom-left-radius: 0px;
  }

 .quick-booking-h--wrapper {
    display: block; 
  } 
  
  .rsts-main {
    margin-bottom: 20px;
  }
}
    
.quick-booking h3 {
  color: #ffffff;
  font-size: 2.0rem;
  text-transform: uppercase;
  margin: 0; }

.quick-booking h3 a {
  display: inline-block;
  width: 100%;
  padding: 6px 10px;
  text-decoration: none; }

.quick-booking h3 > a:link, .quick-booking h3 > a:visited {
  color: #ffffff; }

.quick-booking h3 > a:hover, .quick-booking h3 > a:active {
  color: #ffffff; }



.quick-booking--telefon {
  background: #a81314; 
  }

.quick-booking--email {
  background: #a81314; 
  }
  
.quick-booking--sprache {
  background: #831213; 
  }

.quick-booking--telefon:hover, .quick-booking--email:hover {
  background-color: #831213; }
  
.quick-booking--sprache:hover {
  background-color: #444444; }

.quick-booking--book.-quaternary {
  background: #a81314;
  border: none;
  color: #ffffff; }

.quick-booking--enquiry.-quaternary {
  background: #a81314;
  border: none;
  color: #ffffff; }

.quick-booking--book.-quaternary:hover, .quick-booking--enquiry.-quaternary:hover {
  background: #a81314; }

*/


.quick-booking-wrapper {
  position: fixed;
  top: 360px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 10000;
  gap: 8px;
}

.quick-booking {
  width: 50px;
  height: 50px;
  background: #3c6729;
  color: #ffffff;
  text-align: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-booking a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  font-size: 28px; /* etwas größer fürs Icon */
  line-height: 1; /* exakt zentriert */
  padding: 0; /* kein Innenabstand */
  margin: 0; /* kein Außenabstand */
  margin-top: 10px; /* Abstand für FontAwesome Icons */
}


/* Hover Effekt */
.quick-booking:hover {
  width: 160px; /* Breite erweitern bei Hover */
  background-color: var(--theme-color6);
}

/* Text ausblenden und erst bei Hover zeigen */
.quick-booking span {
  display: none;
  margin-left: 10px;
  white-space: nowrap;
}

/* Text bei Hover einblenden */
.quick-booking:hover span {
  display: inline;
}

/* Mobile bleibt schmal */
@media (max-width: 767px) {
  .quick-booking-wrapper {
    top: 300px;
  }
  .quick-booking:hover {
    width: 140px;
  }
}