/* Lock scroll cuando el modal abre */
html.ardiffx-pv-lock, html.ardiffx-pv-lock body {
  overflow: hidden !important;
}

.ardiffx-pv-wrap {
  width: 100%;
}

.ardiffx-pv-media {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;


}

.ardiffx-pv-img {
  display: block;
  width: 100%;
  height: auto;
}

.ardiffx-pv-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
	
	
  border: 1px solid #ffffff2b;
  padding: 10px 14px;
  border-radius: 999px;

  cursor: pointer;
  line-height: 1;
  font: inherit;

  background: #d6ac301c;

  color: #fff;

  backdrop-filter: blur(6px);
}

.ardiffx-pv-play:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.ardiffx-pv-play-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #d6ac301c;
  position: relative;
  display: inline-block;
}

.ardiffx-pv-play-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;

}

.ardiffx-pv-text {
  font-size: 16px;
  font-weight: 600;
}

/* Modal */
.ardiffx-pv-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.ardiffx-pv-modal.is-open {
  display: block;
}

.ardiffx-pv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.ardiffx-pv-modal-panel {
  position: relative;
  width: min(960px, calc(100% - 24px));
  margin: 5vh auto;
  background: #0b0b0b;
  border-radius: 14px ;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.ardiffx-pv-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;

  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;

  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* 16:9 responsive */
.ardiffx-pv-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.ardiffx-pv-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

