.apr-epv-viewer,
.apr-epv-viewer * {
	box-sizing: border-box;
}

.apr-epv-viewer {
	--apr-epv-card-duration: .3s;
	--apr-epv-card-easing: cubic-bezier(.2, .8, .2, 1);
	--apr-epv-card-start-scale: .94;
	--apr-epv-card-slide: 16px;
	--apr-epv-line-duration: .55s;
	--apr-epv-marker-duration: .2s;
	--apr-epv-zoom-duration: .35s;
	--apr-epv-zoom-scale: 1.25;
	--apr-epv-pan-x: 50%;
	--apr-epv-pan-y: 50%;
	--apr-epv-pulse-spread: 24px;
	--apr-epv-pulse-opacity: .7;
	--apr-epv-pulse-speed: 2s;
	position: relative;
	width: 100%;
	min-width: 0;
	isolation: isolate;
}

.apr-epv-shell {
	position: relative;
	width: 100%;
	padding: 12px;
	background: #fff;
	border-radius: 24px;
}

.apr-epv-canvas {
	position: relative;
	width: 100%;
	min-width: 0;
	background: #f7f4ee;
	border-radius: 16px;
	overflow: hidden;
	isolation: isolate;
}

.apr-epv--size-ratio .apr-epv-canvas {
	aspect-ratio: 16 / 9;
}

.apr-epv--size-fixed .apr-epv-canvas {
	height: 680px;
}

.apr-epv-image-stage,
.apr-epv-image-overlay,
.apr-epv-svg-layer,
.apr-epv-items {
	position: absolute;
	inset: 0;
}

.apr-epv-image-stage {
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.apr-epv-main-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	transform: scale(1);
	transform-origin: var(--apr-epv-pan-x) var(--apr-epv-pan-y);
	transition: transform var(--apr-epv-zoom-duration) ease, filter var(--apr-epv-card-duration) ease, opacity var(--apr-epv-card-duration) ease;
	user-select: none;
	-webkit-user-drag: none;
}

.apr-epv--zoom-enabled .apr-epv-canvas:hover .apr-epv-main-image {
	transform: scale(var(--apr-epv-zoom-scale));
}

.apr-epv-image-overlay {
	z-index: 2;
	opacity: 0;
	transition: opacity var(--apr-epv-card-duration) ease;
}

.apr-epv-svg-layer {
	z-index: 3;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.apr-epv-items {
	z-index: 4;
	pointer-events: none;
}

.apr-epv-item {
	position: static;
	--apr-epv-x-t: var(--apr-epv-x-d);
	--apr-epv-y-t: var(--apr-epv-y-d);
	--apr-epv-x-m: var(--apr-epv-x-t);
	--apr-epv-y-m: var(--apr-epv-y-t);
}

.apr-epv-marker-wrap {
	position: absolute;
	left: var(--apr-epv-x-d);
	top: var(--apr-epv-y-d);
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	pointer-events: auto;
}

.apr-epv-viewer.is-tablet .apr-epv-marker-wrap {
	left: var(--apr-epv-x-t);
	top: var(--apr-epv-y-t);
}

.apr-epv-viewer.is-mobile .apr-epv-marker-wrap {
	left: var(--apr-epv-x-m);
	top: var(--apr-epv-y-m);
}

.apr-epv-marker {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 10px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #0c2233;
	color: #fff;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: color var(--apr-epv-marker-duration) ease, background-color var(--apr-epv-marker-duration) ease, border-color var(--apr-epv-marker-duration) ease, box-shadow var(--apr-epv-marker-duration) ease, transform var(--apr-epv-marker-duration) ease;
}

.apr-epv-marker svg,
.apr-epv-marker i {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 16px;
	fill: currentColor;
}

.apr-epv-marker:hover,
.apr-epv-marker:focus-visible,
.apr-epv-item.is-active .apr-epv-marker {
	background: var(--apr-epv-item-accent, #f26424);
}

.apr-epv-marker:focus-visible,
.apr-epv-close:focus-visible,
.apr-epv-cta:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.apr-epv-marker-pulse {
	position: absolute;
	z-index: 1;
	inset: 0;
	border: 2px solid var(--apr-epv-item-accent, #f26424);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
}

.apr-epv--pulse-enabled .apr-epv-marker-pulse {
	animation: apr-epv-pulse var(--apr-epv-pulse-speed) ease-out infinite;
}

.apr-epv-item.is-active .apr-epv-marker-pulse {
	animation-play-state: paused;
	opacity: 0;
}

@keyframes apr-epv-pulse {
	0% {
		inset: 0;
		opacity: var(--apr-epv-pulse-opacity);
	}
	100% {
		inset: calc(var(--apr-epv-pulse-spread) * -1);
		opacity: 0;
	}
}

.apr-epv-marker-label {
	position: absolute;
	inset-inline-start: 100%;
	top: 50%;
	display: none;
	width: max-content;
	max-width: 220px;
	margin-inline-start: 10px;
	padding: 6px 10px;
	transform: translateY(-50%);
	border: 1px solid #d9dee2;
	border-radius: 999px;
	background: #fff;
	color: #0c2233;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	pointer-events: none;
	white-space: nowrap;
}

.apr-epv--labels-visible .apr-epv-marker-label {
	display: block;
}

.apr-epv-callout {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 340px;
	max-width: calc(100% - 24px);
	border: 1px solid rgba(12, 34, 51, .12);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(12, 34, 51, .18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	overflow: hidden;
	transition: opacity var(--apr-epv-card-duration) var(--apr-epv-card-easing), transform var(--apr-epv-card-duration) var(--apr-epv-card-easing), visibility 0s linear var(--apr-epv-card-duration);
	will-change: transform, opacity;
	direction: inherit;
}

.apr-epv-callout::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset-block: 0;
	inset-inline-start: 0;
	width: 5px;
	background: var(--apr-epv-item-accent, #f26424);
	pointer-events: none;
}

.apr-epv--card-fade .apr-epv-callout {
	transform: none;
}

.apr-epv--card-scale .apr-epv-callout {
	transform: scale(var(--apr-epv-card-start-scale));
}

.apr-epv--card-slide .apr-epv-callout {
	transform: translateY(var(--apr-epv-card-slide));
}

.apr-epv--card-none .apr-epv-callout {
	transition: none;
}

.apr-epv-item.is-active .apr-epv-callout {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
	transition-delay: 0s;
}

.apr-epv-callout-scroll {
	position: relative;
	max-height: min(800px, 80vh);
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #f26424 transparent;
	overscroll-behavior: contain;
}

.apr-epv-callout-scroll::-webkit-scrollbar {
	width: 7px;
}

.apr-epv-callout-scroll::-webkit-scrollbar-thumb {
	border-radius: 99px;
	background: #f26424;
}

.apr-epv-callout-inner {
	position: relative;
	padding: 24px;
	direction: inherit;
}

.apr-epv-callout.has-close .apr-epv-part-code,
.apr-epv-callout.has-close .apr-epv-callout-title {
	padding-inline-end: var(--apr-epv-close-clearance, 52px);
}

.apr-epv-close {
	position: absolute;
	z-index: 5;
	top: 10px;
	inset-inline-end: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 1px solid #dde2e5;
	border-radius: 999px;
	background: #fff;
	color: #0c2233;
	font: inherit;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	appearance: none;
	transition: color var(--apr-epv-marker-duration) ease, background-color var(--apr-epv-marker-duration) ease, border-color var(--apr-epv-marker-duration) ease, transform var(--apr-epv-marker-duration) ease;
}

.apr-epv-close:hover,
.apr-epv-close:focus-visible {
	transform: rotate(90deg);
	background: #f26424;
	color: #fff;
	border-color: #f26424;
}

.apr-epv-callout-media {
	position: relative;
	width: 100%;
	margin: 0 0 18px;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.apr-epv-callout-media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.apr-epv-part-code {
	margin: 0 0 6px;
	color: var(--apr-epv-item-accent, #f26424);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
	direction: inherit;
}

.apr-epv-callout-title {
	margin: 0 0 12px;
	padding: 0;
	color: #0c2233;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	direction: inherit;
}

.apr-epv-description {
	margin: 0 0 18px;
	color: #43515b;
	font-size: 15px;
	line-height: 1.55;
	direction: inherit;
}

.apr-epv-description > :first-child {
	margin-top: 0;
}

.apr-epv-description > :last-child {
	margin-bottom: 0;
}

.apr-epv-description a {
	color: #f26424;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.apr-epv-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 18px;
	padding: 12px 14px;
	border-radius: 10px;
	background: #f3f5f6;
	direction: inherit;
}

.apr-epv-detail-row {
	display: grid;
	grid-template-columns: minmax(70px, .8fr) minmax(0, 1.2fr);
	column-gap: 16px;
	align-items: baseline;
	margin: 0;
	direction: inherit;
}

.apr-epv-detail-row + .apr-epv-detail-row {
	padding-top: 8px;
	border-top: 1px solid #dde2e5;
}

.apr-epv-detail-label,
.apr-epv-detail-value {
	margin: 0;
	padding: 0;
}

.apr-epv-detail-label {
	color: #66747e;
	font-size: 12px;
	font-weight: 700;
}

.apr-epv-detail-value {
	color: #0c2233;
	font-size: 13px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.apr-epv-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 18px;
	padding: 12px 14px;
	border-inline-start: 4px solid;
	border-radius: 10px;
	direction: inherit;
}

.apr-epv-note--tip {
	border-color: #f26424;
	background: #fff4ec;
}

.apr-epv-note--warning {
	border-color: #c62828;
	background: #fff1f0;
}

.apr-epv-note--info {
	border-color: #1769aa;
	background: #eef6fc;
}

.apr-epv-note-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #f26424;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.apr-epv-note--warning .apr-epv-note-icon {
	color: #c62828;
}

.apr-epv-note--info .apr-epv-note-icon {
	color: #1769aa;
}

.apr-epv-note-text {
	color: #26343e;
	font-size: 13px;
	line-height: 1.45;
	direction: inherit;
}

.apr-epv-cta-wrap {
	display: flex;
	justify-content: flex-start;
}

.apr-epv-cta-wrap[data-align="center"] {
	justify-content: center;
}

.apr-epv-cta-wrap[data-align="flex-end"] {
	justify-content: flex-end;
}

.apr-epv-cta-wrap[data-align="stretch"] .apr-epv-cta {
	width: 100%;
}

.apr-epv-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 16px;
	border: 2px solid var(--apr-epv-item-accent, #f26424);
	border-radius: 8px;
	background: var(--apr-epv-item-accent, #f26424);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: color var(--apr-epv-marker-duration) ease, background-color var(--apr-epv-marker-duration) ease, border-color var(--apr-epv-marker-duration) ease, box-shadow var(--apr-epv-marker-duration) ease, transform var(--apr-epv-marker-duration) ease;
}

.apr-epv-cta:hover,
.apr-epv-cta:focus-visible {
	transform: translateY(-2px);
	border-color: #0c2233;
	background: #0c2233;
	color: #fff;
}

.apr-epv-connector {
	fill: none;
	stroke: #6b7780;
	stroke-width: 2.5px;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
	transition: stroke var(--apr-epv-marker-duration) ease, opacity var(--apr-epv-line-duration) ease, stroke-dashoffset var(--apr-epv-line-duration) var(--apr-epv-card-easing);
}

.apr-epv-terminal-dot {
	fill: var(--apr-epv-item-accent, #f26424);
	transition: opacity var(--apr-epv-line-duration) ease;
}

.apr-epv--line-dashed .apr-epv-connector {
	stroke-dasharray: 12 8;
}

.apr-epv--line-dotted .apr-epv-connector {
	stroke-dasharray: 1 8;
}

.apr-epv--connectors-none .apr-epv-svg-layer,
.apr-epv--connectors-active .apr-epv-svg-item:not(.is-active) {
	visibility: hidden;
}

.apr-epv--connector-draw.apr-epv--line-solid .apr-epv-connector {
	stroke-dasharray: var(--apr-epv-path-length, 1);
	stroke-dashoffset: var(--apr-epv-path-length, 1);
}

.apr-epv--connector-draw.apr-epv--line-solid .apr-epv-svg-item.is-active .apr-epv-connector,
.apr-epv--connector-draw.apr-epv--line-solid.apr-epv--connectors-all .apr-epv-svg-item:not(.is-active) .apr-epv-connector {
	stroke-dashoffset: 0;
}

.apr-epv-svg-item.is-active .apr-epv-connector {
	stroke: var(--apr-epv-item-accent, #f26424);
}

.apr-epv--connector-none .apr-epv-connector,
.apr-epv--connector-none .apr-epv-terminal-dot {
	transition: none;
}

.apr-epv-viewer.is-mobile.apr-epv--mobile-bottom .apr-epv-callout {
	position: absolute;
	left: 12px !important;
	right: 12px !important;
	top: auto !important;
	bottom: 12px !important;
	width: auto;
	max-width: none;
	transform-origin: center bottom;
}

.apr-epv-viewer.is-mobile .apr-epv-callout-inner {
	padding: 18px;
}

.apr-epv-viewer.is-mobile .apr-epv-callout-title {
	font-size: 20px;
}

.apr-epv-viewer.is-mobile .apr-epv-detail-row {
	grid-template-columns: minmax(60px, .8fr) minmax(0, 1.2fr);
}

.apr-epv-editor-empty {
	position: absolute;
	z-index: 20;
	left: 50%;
	top: 50%;
	max-width: calc(100% - 40px);
	padding: 14px 18px;
	transform: translate(-50%, -50%);
	border: 1px dashed #9aa6ae;
	border-radius: 8px;
	background: rgba(255, 255, 255, .92);
	color: #0c2233;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.apr-epv--respect-motion.reduce-motion *,
.apr-epv--respect-motion.reduce-motion *::before,
.apr-epv--respect-motion.reduce-motion *::after {
	animation-duration: .001ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: .001ms !important;
}

@media (prefers-reduced-motion: reduce) {
	.apr-epv--respect-motion *,
	.apr-epv--respect-motion *::before,
	.apr-epv--respect-motion *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}
