/*
 * [B] Easy Photo and Video Frame - Frontend styles
 * CSS-only device mockups (iPhone, Smartphone, Tablet).
 */

.bdw-epvf {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.bdw-epvf *,
.bdw-epvf *::before,
.bdw-epvf *::after {
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------
 * Wrapper / frame defaults
 * ------------------------------------------------------------------------- */
.bdw-epvf-device-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  /* restore frame color while keeping external shadows removed */
  background: var(--bdw-epvf-frame-color, #1a1a1a);
  box-shadow: none;
}

.bdw-epvf-device-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Media inside the screen always fills it. */
.bdw-epvf-device-screen .bdw-epvf-image,
.bdw-epvf-device-screen .bdw-epvf-video,
.bdw-epvf-device-screen .bdw-epvf-iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.bdw-epvf-device-screen img.bdw-epvf-image {
  max-width: 100%;
  height: 100%;
}

.bdw-epvf-yt-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bdw-epvf-yt-wrap .bdw-epvf-iframe {
  position: absolute;
  inset: 0;
}

.bdw-epvf-yt-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  cursor: default;
  z-index: 2;
}

.bdw-epvf-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font: 500 13px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  padding: 16px;
}

/* -------------------------------------------------------------------------
 * Color variants (CSS variables)
 * ------------------------------------------------------------------------- */
.bdw-epvf-color-black .bdw-epvf-device-frame {
  --bdw-epvf-frame-color: #1a1a1a;
  --bdw-epvf-frame-accent: #2a2a2a;
  --bdw-epvf-button-color: #2d2d2d;
}

.bdw-epvf-color-white .bdw-epvf-device-frame {
  --bdw-epvf-frame-color: #f3f3f5;
  --bdw-epvf-frame-accent: #d8d8dc;
  --bdw-epvf-button-color: #c2c2c8;
}

.bdw-epvf-color-silver .bdw-epvf-device-frame {
  --bdw-epvf-frame-color: #b8babd;
  --bdw-epvf-frame-accent: #9a9ca1;
  --bdw-epvf-button-color: #80828a;
}

.bdw-epvf-color-gold .bdw-epvf-device-frame {
  --bdw-epvf-frame-color: #d4af7a;
  --bdw-epvf-frame-accent: #b48d5b;
  --bdw-epvf-button-color: #8b6a40;
}

/* -------------------------------------------------------------------------
 * iPhone
 * ------------------------------------------------------------------------- */
.bdw-epvf-device-iphone .bdw-epvf-device-frame {
  border-radius: 48px;
  padding: 14px;
  aspect-ratio: 9 / 19.5;
}

.bdw-epvf-device-iphone .bdw-epvf-device-screen {
  border-radius: 36px;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

/* Notch (Dynamic Island style) */
.bdw-epvf-device-iphone .bdw-epvf-device-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}

/* Side buttons */
.bdw-epvf-device-iphone .bdw-epvf-device-frame::after {
  content: "";
  position: absolute;
  top: 22%;
  left: -3px;
  width: 4px;
  height: 56px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 0 0 2px;
  box-shadow:
    0 80px 0 0 var(--bdw-epvf-button-color, #2d2d2d),
    0 140px 0 0 var(--bdw-epvf-button-color, #2d2d2d);
}

/* Landscape adjustments */
.bdw-epvf-device-iphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame {
  aspect-ratio: 19.5 / 9;
}

.bdw-epvf-device-iphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::before {
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 26px;
  height: 34%;
  border-radius: 18px;
}

.bdw-epvf-device-iphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::after {
  top: -3px;
  left: 22%;
  width: 56px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  box-shadow:
    80px 0 0 0 var(--bdw-epvf-button-color, #2d2d2d),
    140px 0 0 0 var(--bdw-epvf-button-color, #2d2d2d);
}

/* -------------------------------------------------------------------------
 * Smartphone (Android-like, hole punch)
 * ------------------------------------------------------------------------- */
.bdw-epvf-device-smartphone .bdw-epvf-device-frame {
  border-radius: 40px;
  padding: 10px;
  aspect-ratio: 9 / 19;
}

.bdw-epvf-device-smartphone .bdw-epvf-device-screen {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

/* Camera punch hole */
.bdw-epvf-device-smartphone .bdw-epvf-device-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  z-index: 3;
}

.bdw-epvf-device-smartphone .bdw-epvf-device-frame::after {
  content: "";
  position: absolute;
  top: 28%;
  right: -3px;
  width: 4px;
  height: 70px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 90px 0 0 var(--bdw-epvf-button-color, #2d2d2d);
}

.bdw-epvf-device-smartphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame {
  aspect-ratio: 19 / 9;
}

.bdw-epvf-device-smartphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::before {
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}

.bdw-epvf-device-smartphone.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::after {
  top: -3px;
  right: 28%;
  width: 70px;
  height: 4px;
  border-radius: 0 0 2px 2px;
  box-shadow: 90px 0 0 0 var(--bdw-epvf-button-color, #2d2d2d);
}

/* -------------------------------------------------------------------------
 * Tablet
 * ------------------------------------------------------------------------- */
.bdw-epvf-device-tablet .bdw-epvf-device-frame {
  border-radius: 28px;
  padding: 22px;
  aspect-ratio: 3 / 4;
  max-width: 520px;
}

.bdw-epvf-device-tablet .bdw-epvf-device-screen {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

/* Camera dot */
.bdw-epvf-device-tablet .bdw-epvf-device-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #444;
  border-radius: 50%;
  z-index: 3;
}

/* Home indicator */
.bdw-epvf-device-tablet .bdw-epvf-device-frame::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px;
  opacity: 0.6;
}

.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-device-frame {
  aspect-ratio: 4 / 3;
}

.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::before {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-device-frame::after {
  bottom: 50%;
  left: auto;
  right: 6px;
  transform: translateY(50%);
  width: 4px;
  height: 36px;
}

/* -------------------------------------------------------------------------
 * Rich detail decorations
 * ------------------------------------------------------------------------- */
.bdw-epvf-rich {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

/* iPhone Dynamic Island reinforced + camera + sensor */
.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-device-frame::before {
  background: #050505;
  box-shadow: inset 0 0 0 1px #1a1a1a;
}

.bdw-epvf-rich-island {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  border-radius: 18px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.bdw-epvf-rich-island .bdw-epvf-rich-camera {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #4a5a72 0%, #0a0e16 70%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bdw-epvf-rich-island .bdw-epvf-rich-sensor {
  width: 6px;
  height: 6px;
  background: #1c1c1c;
  border-radius: 50%;
}

/* iPhone side buttons (rich) */
.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-device-frame::after {
  display: none;
}

.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-rich-btn-mute {
  top: 18%;
  left: -3px;
  width: 4px;
  height: 28px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 0 0 2px;
}

.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-rich-btn-vol-up {
  top: 26%;
  left: -3px;
  width: 4px;
  height: 50px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 0 0 2px;
}

.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-rich-btn-vol-down {
  top: 36%;
  left: -3px;
  width: 4px;
  height: 50px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 0 0 2px;
}

.bdw-epvf-detail-rich.bdw-epvf-device-iphone .bdw-epvf-rich-btn-power {
  top: 24%;
  right: -3px;
  width: 4px;
  height: 70px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 0 2px 2px 0;
}

/* Smartphone rich (speaker bar + punch + buttons) */
.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-device-frame::before {
  display: none;
}

.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-device-frame::after {
  display: none;
}

.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-rich-speaker {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 4px;
  background: #050505;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-rich-punch {
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateX(40px);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #2a3142 0%, #0a0e16 70%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-rich-btn-power {
  top: 26%;
  right: -3px;
  width: 4px;
  height: 60px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 0 2px 2px 0;
}

.bdw-epvf-detail-rich.bdw-epvf-device-smartphone .bdw-epvf-rich-btn-vol {
  top: 18%;
  left: -3px;
  width: 4px;
  height: 80px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 0 0 2px;
}

/* Tablet rich */
.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-device-frame::before {
  display: none;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-device-frame::after {
  display: none;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-rich-camera {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #2a3142 0%, #0a0e16 70%);
  border-radius: 50%;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-rich-home {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px;
  opacity: 0.55;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-rich-btn-power {
  top: -3px;
  right: 16%;
  width: 26px;
  height: 4px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 2px 2px 0 0;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet .bdw-epvf-rich-btn-vol {
  top: 16%;
  right: -3px;
  width: 4px;
  height: 60px;
  background: var(--bdw-epvf-button-color, #2d2d2d);
  border-radius: 0 2px 2px 0;
}

/* Tablet rich — landscape overrides: swap top/side buttons and camera orientation */
.bdw-epvf-detail-rich.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-rich-camera {
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-rich-home {
  bottom: 50%;
  left: auto;
  right: 6px;
  transform: translateY(50%);
  width: 4px;
  height: 36px;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-rich-btn-power {
  top: -3px;
  right: auto;
  left: 16%;
  width: 26px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}

.bdw-epvf-detail-rich.bdw-epvf-device-tablet.bdw-epvf-orientation-landscape .bdw-epvf-rich-btn-vol {
  top: -3px;
  right: auto;
  left: 28%;
  width: 46px;
  height: 4px;
  border-radius: 2px 2px 0 0;
}

/* -------------------------------------------------------------------------
 * Gallery / Carousel
 * ------------------------------------------------------------------------- */
.bdw-epvf-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bdw-epvf-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bdw-epvf-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.bdw-epvf-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.bdw-epvf-slide>* {
  width: 100%;
  height: 100%;
}

.bdw-epvf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease;
}

.bdw-epvf-nav:hover,
.bdw-epvf-nav:focus-visible {
  background: rgba(0, 0, 0, 0.75);
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.bdw-epvf-prev {
  left: 8px;
}

.bdw-epvf-next {
  right: 8px;
}

.bdw-epvf-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.bdw-epvf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bdw-epvf-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.bdw-epvf-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Hide carousel chrome until hover for a cleaner mockup look */
.bdw-epvf-gallery .bdw-epvf-nav,
.bdw-epvf-gallery .bdw-epvf-dots {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bdw-epvf:hover .bdw-epvf-gallery .bdw-epvf-nav,
.bdw-epvf:hover .bdw-epvf-gallery .bdw-epvf-dots,
.bdw-epvf:focus-within .bdw-epvf-gallery .bdw-epvf-nav,
.bdw-epvf:focus-within .bdw-epvf-gallery .bdw-epvf-dots {
  opacity: 1;
}

/* -------------------------------------------------------------------------
 * Lightbox affordance
 * ------------------------------------------------------------------------- */
.bdw-epvf-has-lightbox .bdw-epvf-device-frame {
  cursor: zoom-in;
}

/* Focus rings (a11y) */
.bdw-epvf-has-lightbox .bdw-epvf-device-frame:focus-visible,
.bdw-epvf-gallery:focus-visible {
  outline: 3px solid #4d90fe;
  outline-offset: 4px;
}

/* Global lightbox overlay (single instance appended to body) */
.bdw-epvf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 4vmin;
  animation: bdw-epvf-lb-fade 0.2s ease-out;
}

.bdw-epvf-lightbox.is-open {
  display: flex;
}

@keyframes bdw-epvf-lb-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Loading spinner */
.bdw-epvf-lb-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: bdw-epvf-lb-spin 0.9s linear infinite;
  transition: opacity 0.15s ease;
}

.bdw-epvf-lb-spinner.is-active {
  opacity: 1;
}

@keyframes bdw-epvf-lb-spin {
  to {
    transform: rotate(360deg);
  }
}

.bdw-epvf-lb-stage {
  position: relative;
  max-width: 95vw;
  max-height: 92vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdw-epvf-lb-stage img,
.bdw-epvf-lb-stage video {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: none;
  background: transparent;
}

.bdw-epvf-lb-stage iframe {
  width: min(90vw, calc(92vh * 16 / 9));
  height: min(92vh, calc(90vw * 9 / 16));
  max-width: 100%;
  max-height: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

/* Video control overlay */
.bdw-epvf-video-controls {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 7000;
  background: rgba(0,0,0,0.35);
  padding: 6px 8px;
  border-radius: 999px;
  align-items: center;
}

.bdw-epvf-video-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.bdw-epvf-video-btn:focus {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

/* keep the controls neutral so the theme does not inject accent colors */
.bdw-epvf-video-btn {
  color: #fff;
}

.bdw-epvf-video-btn.is-muted {
  color: #fff;
  opacity: 0.85;
}

.bdw-epvf-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.bdw-epvf-video-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Remove any background/color changes applied by global/theme hover rules */
.bdw-epvf .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn:hover,
.bdw-epvf .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn:active,
.bdw-epvf .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn:focus,
.bdw-epvf .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn:focus-visible {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  border-color: transparent;
  color: #fff;
}

/* additional very-specific coverage to override elementor/theme button styles without !important */
.bdw-epvf.bdw-epvf-device .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn:focus,
.bdw-epvf.bdw-epvf-device .bdw-epvf-device-frame .bdw-epvf-video-controls .bdw-epvf-video-btn.active {
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}

/* Apply hover effect only to the SVG icon */
.bdw-epvf-video-icon svg,
.bdw-epvf-video-btn svg {
  display: block;
  transition: transform 180ms ease, opacity 180ms ease, fill 180ms ease;
  transform-origin: center center;
  opacity: 0.95;
}
.bdw-epvf-video-btn:hover svg,
.bdw-epvf-video-btn:focus svg {
  transform: scale(1.12);
  opacity: 1;
}

.bdw-epvf-lb-close,
.bdw-epvf-lb-prev,
.bdw-epvf-lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 1000000;
}

.bdw-epvf-lb-close:hover,
.bdw-epvf-lb-prev:hover,
.bdw-epvf-lb-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.bdw-epvf-lb-close {
  top: 16px;
  right: 16px;
}

.bdw-epvf-lb-prev {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.bdw-epvf-lb-next {
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

/* -------------------------------------------------------------------------
 * Reduced motion
 * ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  .bdw-epvf-video,
  .bdw-epvf-slide {
    animation: none !important;
    transition: none !important;
  }
}