
.lpsummary-widget-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  aspect-ratio: 9 / 16;
  z-index: 999;
}

.lpsummary-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  height: 450px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.8s ease;
  z-index: 999;
  cursor: pointer;
  object-fit: cover;
}

.lpsummary-widget.visible {
  opacity: 1;
  transform: translateY(0);
}

.lpsummary-widget.hover-effect {
  transition: none !important;
}

.lpsummary-widget.visible:hover {
  transform: rotate(5deg) scale(1.05);
}

.lpsummary-widget-video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: none;
}

.lpsummary-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
  display: none;
}


@media screen and (max-width: 768px) {

  .lpsummary-widget-wrapper {
    width: 30%;
    bottom: 50px;
    right: 10px;
  }

  .lpsummary-widget{
    bottom: 50px;
    width: 30%;
    aspect-ratio: 9 / 16;
    height: auto;
  }

  .lpsummary-close-btn {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}
