@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.sticky-buttons {
  z-index: 100;
  position: fixed;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom linear 0.2s;
}
.sticky-buttons.hero-alt {
  bottom: 120px;
  transition: bottom linear 0.2s;
}
.sticky-buttons .btn {
  border-radius: 30px;
  min-width: 214px;
  margin-bottom: 0 !important;
  padding: 13px 16px;
}
.sticky-buttons__wrap {
  background: #FFF;
  padding: 16px;
  border-radius: 44px;
  box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .sticky-buttons {
    bottom: 16px;
  }
  .sticky-buttons__wrap {
    flex-wrap: nowrap;
  }
  .sticky-buttons__wrap .btn-col {
    width: auto;
  }
  .sticky-buttons__wrap .btn-col + .btn-col {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .sticky-buttons {
    width: -moz-fit-content;
    width: fit-content;
  }
  .sticky-buttons .btn {
    padding: 8px 16px;
  }
  .sticky-buttons__wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
  }
  .sticky-buttons__wrap .btn-col {
    width: 100%;
  }
  .sticky-buttons__wrap .btn-col + .btn-col {
    margin-top: 0;
  }
}/*# sourceMappingURL=sticky-buttons.css.map */