.OnlineBookingButton {
  position: fixed;
  bottom: 56px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #560843;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 0;
  min-width: 0;
  min-height: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateX(-100%);
  z-index: 20;
  overflow: visible;
}
@media only screen and (max-width: 799px) {
  .OnlineBookingButton {
    bottom: 44px;
    font-size: 12px;
    width: 60px;
    height: 60px;
  }
}
.OnlineBookingButton.ButtonVisible {
  opacity: 1;
  transform: translateX(0);
  animation: onlineBookingReveal 0.5s ease 0.1s both;
}
.OnlineBookingButton:hover {
  transform: scale(1.05);
}
.OnlineBookingButton:focus, .OnlineBookingButton:focus-visible {
  box-shadow: 0 0 0 3px #300325;
}
.OnlineBookingButton .ButtonText {
  position: relative;
  z-index: 1;
}
.OnlineBookingButton .Ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #300325;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 2s infinite;
  z-index: 0;
}
.OnlineBookingButton .OuterRipple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: #300325;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: outerRipple 2.5s infinite;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes outerRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes onlineBookingReveal {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}