/* File: /wp-content/themes/pandora-custom/assets/css/07-video.css */
/* Video flottanti */

.pandora-floating-video{
  position: fixed;
  bottom: 20px;
  z-index: 99980;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  max-width: calc(100vw - 40px);
  will-change: opacity, transform;
}
.pandora-floating-video.pv-active{
  opacity: 1;
  transform: translateY(0);
}
.pandora-floating-video.pv-dismissed{
  opacity: 0 !important;
  transform: scale(0.9) !important;
  pointer-events: none;
}
@media(max-width:767px){
  .pandora-floating-video{
    display: none !important;
  }
}

.pv-close{
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.pv-close:hover{
  background: rgba(0,0,0,0.9);
  transform: scale(1.05);
}