/*
 * Copied from zupee-theme:
 *   src/components/stickyDownloadButton/style.module.css
 *   src/components/DownloadButton/style.module.css
 * CSS variables resolved: --theme-primary:#ffe800, --theme-secondary:#4611a7, --white:#fff
 */

.tt5-fixed-button,
.tt5-fixed-button *,
.tt5-fixed-button *::before,
.tt5-fixed-button *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tt5-fixed-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffe800;
  z-index: 100;
  padding: 10px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .tt5-fixed-button {
    display: block;
  }
  body.tt5-has-mobile-download-bar {
    padding-bottom: 120px;
  }
}

.tt5-animated-text {
  color: #4611a7;
  font-size: 16px;
  font-weight: 600;
  animation: tt5-blink 3s ease-in-out infinite alternate;
  font-family: Inter, sans-serif;
  margin-bottom: 10px;
  text-align: center;
}

@keyframes tt5-blink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}

.tt5-mobile-button {
  max-width: 85%;
  margin: 0 auto;
  height: auto;
  position: relative;
}

.tt5-downloadbtn {
  background: #4611a7;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  line-height: 21px;
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  column-gap: 1ch;
  text-transform: capitalize;
  padding: 0px 15px;
}

.tt5-downloadbtn::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 40px;
  height: calc(100% + 8px);
  background: #fff;
  opacity: 0.35;
  background-blend-mode: color;
  transform: skew(-30deg);
  animation: tt5-blendingOverlay 5s infinite;
  animation-timing-function: linear;
  z-index: 0;
  filter: blur(3px);
  display: block;
}

@keyframes tt5-blendingOverlay {
  0% {
    left: -30%;
  }
  100% {
    left: 160%;
  }
}

.tt5-button-icon {
  width: 32px;
  height: auto;
  display: block;
  max-width: 100%;
}

@media (max-width: 767px) {
  .tt5-downloadbtn {
    font-size: 19px;
    line-height: 23px;
    height: 52px;
    text-transform: uppercase;
  }
  .tt5-button-icon {
    width: 19px;
  }
}

.tt5-downloadbtn span {
  position: relative;
  z-index: 1;
}

.tt5-button-icon {
  position: relative;
  z-index: 1;
}

.tt5-download-hand {
  position: absolute;
  right: -14px;
  top: -75px;
  width: 75px;
  height: 75px;
  background: url("https://static-perf1.zupee.com/wp-content/uploads/2024/08/image-hand-icon.webp") no-repeat center / contain;
  pointer-events: none;
  animation: tt5-hand-gesture 0.5s linear infinite alternate;
  z-index: 2;
}

@keyframes tt5-hand-gesture {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(10px);
  }
}
