/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/lottie-cta/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* Lottie CTA Block Styles */
.lottie-cta {
  max-width: 1172px;
  margin: 0 auto;
}
.lottie-cta .lottie-cta__inner:not(.edit) {
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0);
  background: linear-gradient(#220d4e, #220d4e) padding-box, linear-gradient(90deg, #12ade9 0%, #1effae 29.81%, #b2edff 57.69%, #12ade9 100%) border-box;
  background-clip: padding-box, border-box;
  z-index: 1;
}
.lottie-cta .lottie-cta__inner:not(.edit):before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  border-radius: 16px;
  z-index: -1;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(90deg, rgba(18, 173, 233, 0.4) 0%, rgba(30, 255, 174, 0.4) 29.81%, rgba(178, 237, 255, 0.4) 57.69%, rgba(18, 173, 233, 0.4) 100%);
  filter: blur(6px);
}
.lottie-cta .lottie-cta__image {
  /* Lottie container styles */
  /* Video cover container styles */
}
.lottie-cta .lottie-cta__image [data-lottie-src] {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Error state */
}
.lottie-cta .lottie-cta__image [data-lottie-src] svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.lottie-cta .lottie-cta__image [data-lottie-src].lottie-error .lottie-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  color: #6c757d;
  font-size: 14px;
  text-align: center;
}
.lottie-cta .lottie-cta__image [data-lottie-src].lottie-error .lottie-error::before {
  content: "⚠️";
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}
.lottie-cta .lottie-cta__image .video-cover-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.lottie-cta .lottie-cta__image .video-cover-container:hover {
  transform: scale(1.02);
}
.lottie-cta .lottie-cta__image .video-cover-container .play-button-overlay {
  transition: all 0.3s ease;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.video-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.video-modal__content {
  position: relative;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 90vw;
  max-height: 90vh;
  width: 900px;
  animation: slideIn 0.3s ease;
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: transparent;
  border: none;
  font-style: normal;
  font-size: 5rem;
  font-family: Arial, Baskerville, monospace;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s cubic-bezier(0.3, 0.34, 0.85, 0.96);
}
.video-modal__close:hover {
  transform: rotate(180deg);
}
.video-modal__iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
}
.video-modal__iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Modal Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* Responsive styles */
@media (max-width: 768px) {
  .lottie-cta .lottie-cta__image [data-lottie-src],
  .lottie-cta .lottie-cta__image .video-cover-container {
    width: 100% !important;
    height: auto !important;
  }
  .video-modal__content {
    width: 95vw;
    margin: 20px;
  }
  .video-modal__close {
    top: -40px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .lottie-cta .lottie-cta__image [data-lottie-src],
  .lottie-cta .lottie-cta__image .video-cover-container {
    width: 240px !important;
    height: 240px !important;
  }
  .lottie-cta .lottie-cta__image .play-button-overlay {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
  }
  .video-modal__content {
    width: 98vw;
    margin: 10px;
  }
}
/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .video-cover-container,
  .play-button-overlay,
  .video-modal__close {
    transition: none !important;
  }
  .video-modal__content {
    animation: none !important;
  }
  .video-modal {
    animation: none !important;
  }
}

/*# sourceMappingURL=style-index.css.map*/