@keyframes oz-fade-bounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes oz-whatsapp-glow {
  from {
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }
  to {
    filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.8));
  }
}
.oz-whatsapp-button {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.8);
}
.oz-whatsapp-button.oz-animated-entry {
  animation: oz-fade-bounce 0.6s ease forwards;
}
.oz-whatsapp-button a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: oz-whatsapp-glow 1.5s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}
.oz-whatsapp-button a:hover {
  transform: scale(1.1);
}
.oz-back-to-top {
  position: fixed;
  bottom: 90px;
  display: grid !important;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  padding: 0 !important;
  place-items: center !important;
  border: 0;
  border-radius: 50%;
  background: var(--oz-backtop-bg, #000);
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  line-height: 0;
  text-align: center;
  appearance: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.oz-back-to-top.oz-visible {
  opacity: 0.8;
  visibility: visible;
}
.oz-back-to-top:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.oz-back-to-top > svg {
  position: static !important;
  display: block !important;
  flex: none;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  fill: var(--oz-backtop-icon, #fff);
  transform: none !important;
}
.oz-position-right {
  right: 15px;
  left: auto;
}
.oz-position-left {
  left: 15px;
  right: auto;
}
.oz-back-to-top.oz-position-right {
  right: 24px;
}
.oz-back-to-top.oz-position-left {
  left: 24px;
}
@media (min-width: 1025px) {
  .oz-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .oz-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .oz-hide-mobile {
    display: none !important;
  }
  .oz-whatsapp-button {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .oz-whatsapp-button,
  .oz-back-to-top,
  .oz-whatsapp-button * {
    animation: none !important;
    transition: none !important;
  }
}
