.dv-hotspot-qr,
.dv-hotspot-qr * {
  box-sizing: border-box;
}
.dv-hotspot-qr {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.dv-hotspot-qr__stage {
  position: relative;
  display: block;
  width: 100%;
  overflow: visible;
  background: #f8fafc;
}
.dv-hotspot-qr--shadow .dv-hotspot-qr__stage {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
.dv-hotspot-qr__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.dv-hotspot-qr__item {
  position: absolute;
  left: var(--dv-hqr-x, 50%);
  top: var(--dv-hqr-y, 50%);
  z-index: 2;
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
  transition: left .06s linear, top .06s linear;
}
.dv-hotspot-qr__item.is-active {
  z-index: 20;
}
.dv-hotspot-qr__point {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border: 3px solid rgba(255,255,255,0.9) !important;
  border-radius: var(--dv-hqr-point-radius, 999px) !important;
  background: var(--dv-hqr-accent, #16a34a) !important;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.23);
  cursor: pointer;
  padding: 0 12px !important;
  outline-offset: 4px;
  --dv-hqr-effective-point-scale: var(--dv-hqr-point-scale, 1);
  transform: scale(var(--dv-hqr-effective-point-scale));
  transform-origin: center;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.dv-hotspot-qr__point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.05;
}
.dv-hotspot-qr__item--direct .dv-hotspot-qr__point {
  text-decoration: none !important;
}
.dv-hotspot-qr__point:hover,
.dv-hotspot-qr__point:focus,
.dv-hotspot-qr__item.is-active .dv-hotspot-qr__point {
  transform: scale(var(--dv-hqr-effective-point-scale));
  filter: saturate(1.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
}
.dv-hotspot-qr--pulse .dv-hotspot-qr__point::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid var(--dv-hqr-accent, #16a34a);
  opacity: .55;
  animation: dvHqrPulse 1.9s ease-out infinite;
  pointer-events: none;
}
@keyframes dvHqrPulse {
  0% { transform: scale(.85); opacity: .72; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.dv-hotspot-qr__tooltip {
  position: absolute;
  z-index: 40;
  width: 300px;
  max-width: min(86vw, 340px);
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-top: 5px solid var(--dv-hqr-accent, #16a34a);
  border-radius: 18px;
  background: var(--dv-hqr-tooltip-bg, #fff);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dv-hotspot-qr__item.is-active .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item:hover .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item:focus-within .dv-hotspot-qr__tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dv-hotspot-qr__item--top .dv-hotspot-qr__tooltip {
  left: 50%;
  bottom: calc(100% + 16px);
  transform: translate(-50%, 10px) scale(.98);
}
.dv-hotspot-qr__item--top.is-active .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--top:hover .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--top:focus-within .dv-hotspot-qr__tooltip {
  transform: translate(-50%, 0) scale(1);
}
.dv-hotspot-qr__item--bottom .dv-hotspot-qr__tooltip {
  left: 50%;
  top: calc(100% + 16px);
  transform: translate(-50%, -10px) scale(.98);
}
.dv-hotspot-qr__item--bottom.is-active .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--bottom:hover .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--bottom:focus-within .dv-hotspot-qr__tooltip {
  transform: translate(-50%, 0) scale(1);
}
.dv-hotspot-qr__item--left .dv-hotspot-qr__tooltip {
  right: calc(100% + 16px);
  top: 50%;
  transform: translate(10px, -50%) scale(.98);
}
.dv-hotspot-qr__item--left.is-active .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--left:hover .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--left:focus-within .dv-hotspot-qr__tooltip {
  transform: translate(0, -50%) scale(1);
}
.dv-hotspot-qr__item--right .dv-hotspot-qr__tooltip {
  left: calc(100% + 16px);
  top: 50%;
  transform: translate(-10px, -50%) scale(.98);
}
.dv-hotspot-qr__item--right.is-active .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--right:hover .dv-hotspot-qr__tooltip,
.dv-hotspot-qr--hover .dv-hotspot-qr__item--right:focus-within .dv-hotspot-qr__tooltip {
  transform: translate(0, -50%) scale(1);
}
.dv-hotspot-qr__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  color: #334155 !important;
  font-size: 20px;
  line-height: 1;
  padding: 0 !important;
  cursor: pointer;
}
.dv-hotspot-qr--hover .dv-hotspot-qr__close {
  display: none;
}
.dv-hotspot-qr__title {
  margin: 0 28px 8px 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
}
.dv-hotspot-qr__desc {
  margin: 0 0 14px 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}
.dv-hotspot-qr__qr {
  display: inline-flex;
  width: 140px;
  max-width: 100%;
  margin: 2px 0 14px;
  line-height: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dv-hotspot-qr__qr:hover,
.dv-hotspot-qr__qr:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
}
.dv-hotspot-qr__qr .dv-qr-link__svg {
  display: block;
  width: 100%;
  height: auto;
}
.dv-hotspot-qr__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 0 !important;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.dv-hotspot-qr__button:hover,
.dv-hotspot-qr__button:focus {
  color: #fff;
  filter: brightness(.96);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(22, 163, 74, .22);
}
@media (max-width: 767px) {
  .dv-hotspot-qr__stage {
    overflow: visible;
  }
  .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr__item--top .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr__item--right .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr__item--bottom .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr__item--left .dv-hotspot-qr__tooltip {
    position: fixed;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 18px;
    width: min(92vw, 360px);
    max-height: 78vh;
    overflow: auto;
    transform: translate(-50%, 16px) scale(.98);
  }
  .dv-hotspot-qr__item.is-active .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr--hover .dv-hotspot-qr__item:hover .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr--hover .dv-hotspot-qr__item:focus-within .dv-hotspot-qr__tooltip {
    transform: translate(-50%, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dv-hotspot-qr__point,
  .dv-hotspot-qr__tooltip,
  .dv-hotspot-qr__qr,
  .dv-hotspot-qr__button {
    transition: none;
  }
  .dv-hotspot-qr--pulse .dv-hotspot-qr__point::after {
    animation: none;
  }
}

/* Editor smoothness: Elementor's panel changes should not look like a full widget reload. */
.elementor-editor-active .dv-hotspot-qr,
.elementor-editor-active .dv-hotspot-qr__stage,
.elementor-editor-active .dv-hotspot-qr__item,
.elementor-editor-active .dv-hotspot-qr__point,
.elementor-editor-active .dv-hotspot-qr__tooltip {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.elementor-editor-active .dv-hotspot-qr__image {
  transition: none !important;
}
.elementor-editor-active .dv-hotspot-qr__item {
  transition: none !important;
}
.elementor-editor-active .dv-hotspot-qr--editor-preview .dv-hotspot-qr__tooltip {
  transition-duration: .12s;
}

/* Standalone QR items: QR can be placed directly on the image, outside hotspot popups. */
.dv-hotspot-qr__qr-item {
  position: absolute;
  left: var(--dv-hqr-x, 50%);
  top: var(--dv-hqr-y, 50%);
  z-index: 3;
  transform: translate(-50%, -50%);
  will-change: left, top, transform;
}
.dv-hotspot-qr__qr-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  max-width: min(42vw, 260px);
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, .32);
  border-top: 4px solid var(--dv-hqr-standalone-accent, #0f766e);
  border-radius: 16px;
  background: var(--dv-hqr-standalone-bg, #fff);
  color: #0f172a;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.15;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.dv-hotspot-qr__qr-item--shadow .dv-hotspot-qr__qr-card {
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
}
.dv-hotspot-qr__qr-card:hover,
.dv-hotspot-qr__qr-card:focus {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .22);
}
.dv-hotspot-qr__qr-media {
  display: block;
  width: 100%;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.dv-hotspot-qr__qr-media .dv-qr-link__svg {
  display: block;
  width: 100%;
  height: auto;
}
.dv-hotspot-qr__qr-title {
  display: block;
  width: 100%;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.18;
  word-break: break-word;
}
.dv-hotspot-qr__qr-caption {
  display: block;
  width: 100%;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}
@media (max-width: 767px) {
  .dv-hotspot-qr__qr-card {
    max-width: min(54vw, 210px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dv-hotspot-qr__qr-card {
    transition: none;
  }
}

/* v1.1.1 responsive inheritance: tablet/mobile follow desktop until changed in Elementor preview. */
@media (max-width: 767px) {
  .dv-hotspot-qr__item,
  .dv-hotspot-qr__qr-item {
    left: var(--dv-hqr-x, 50%) !important;
    top: var(--dv-hqr-y, 50%) !important;
  }

  .dv-hotspot-qr__point {
    --dv-hqr-effective-point-scale: var(--dv-hqr-point-scale, 1);
    transform: scale(var(--dv-hqr-effective-point-scale));
    transform-origin: center;
  }

  .dv-hotspot-qr__point:hover,
  .dv-hotspot-qr__point:focus,
  .dv-hotspot-qr__item.is-active .dv-hotspot-qr__point {
    transform: scale(var(--dv-hqr-effective-point-scale));
  }

  .dv-hotspot-qr__point span {
    display: inline-flex !important;
    white-space: nowrap !important;
    max-width: 100%;
  }

  .dv-hotspot-qr--pulse .dv-hotspot-qr__point::after {
    inset: -5px;
  }

  .dv-hotspot-qr__qr-card {
    transform: none;
    transform-origin: center;
  }

  .dv-hotspot-qr__qr-card:hover,
  .dv-hotspot-qr__qr-card:focus {
    transform: none;
  }

  .dv-hotspot-qr__qr-title {
    font-size: 11px;
  }

  .dv-hotspot-qr__qr-caption {
    font-size: 10px;
  }
}
