/* Generated by less 2.5.1 */
.asi-img {
  display: inline-block !important;
}
.asi-player-icon {
  cursor: pointer;
  position: absolute;
  font-size: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: white;
}
.asi-player-icon.asi-plus-icon {
  display: none;
}

/* Pulsing animation for autoplay ready state */
.asi-player-icon.asi-autoplay-ready {
  animation: asi-pulse 2s ease-in-out infinite;
}

@keyframes asi-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Autoplay notice overlay */
.asi-autoplay-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.asi-autoplay-notice.asi-autoplay-notice-visible {
  opacity: 1;
  pointer-events: auto;
}

.asi-autoplay-notice-content {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.asi-autoplay-notice-icon {
  font-size: 18px;
}

.asi-autoplay-notice-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
