:root {
	--ldv-motion-duration: 680ms;
	--ldv-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.ldv-home-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: #000000;
	pointer-events: none;
}

.ldv-hero > .elementor-widget-shortcode {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.ldv-hero > .elementor-widget-shortcode > .elementor-widget-container,
.ldv-hero > .elementor-widget-shortcode .elementor-shortcode {
	width: 100%;
	height: 100%;
}

.ldv-home-video .ldv-hero-media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ldv-home-video__poster {
	z-index: 0;
}

.ldv-home-video__player {
	z-index: 1;
}

.ldv-home-video__sound {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 6;
	display: grid;
	place-items: center;
	width: 118px;
	height: 118px;
	margin: 0;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.58) !important;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: #ffffff !important;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.88);
	transition: opacity 180ms ease, transform 220ms var(--ldv-motion-ease), visibility 180ms ease, background-color 180ms ease;
	font: 700 10px/1.35 Arial, Helvetica, sans-serif;
	letter-spacing: 0.13em;
	text-align: center;
	text-transform: uppercase;
	will-change: left, top, opacity, transform;
}

.ldv-home-video__sound::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: inherit;
}

.ldv-home-video__sound span {
	position: relative;
	z-index: 1;
}

.ldv-hero.is-sound-control-visible .ldv-home-video__sound,
.ldv-home-video__sound:focus-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.ldv-home-video__sound:hover,
.ldv-home-video__sound:focus-visible,
.ldv-home-video__sound.is-sound-on {
	background-color: rgba(255, 255, 255, 0.94) !important;
	color: #000000 !important;
}

.ldv-home-video__sound:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 4px;
}

.ldv-page {
	overflow-x: clip;
	overflow-y: visible;
}

.ldv-bottom {
	justify-content: center !important;
}

.ldv-scroll a {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	gap: 7px;
	color: inherit;
	text-align: center;
	text-decoration: none;
}

.ldv-scroll a::after {
	content: "↓";
	font-size: 18px;
	line-height: 1;
	animation: ldv-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes ldv-scroll-cue {
	0%, 100% { transform: translateY(0); opacity: 0.62; }
	50% { transform: translateY(6px); opacity: 1; }
}

.ldv-page-toc {
	position: fixed;
	top: 50%;
	right: 18px;
	z-index: 78;
	display: flex;
	width: min(190px, 15vw);
	padding: 16px 14px;
	flex-direction: column;
	gap: 4px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
	color: #FFFFFF;
	transform: translateY(-50%);
	backdrop-filter: blur(12px);
}

.ldv-page-toc::before {
	margin: 0 4px 9px;
	content: "Dans cette page";
	color: rgba(255, 255, 255, 0.6);
	font: 700 8px/1.2 Arial, Helvetica, sans-serif;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.ldv-page-toc a {
	position: relative;
	display: grid;
	min-height: 34px;
	padding: 9px 8px 9px 21px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.68);
	font: 700 10px/1.25 Arial, Helvetica, sans-serif;
	letter-spacing: 0.35px;
	text-decoration: none;
	transition: color 220ms ease, background-color 220ms ease;
}

.ldv-page-toc a::before {
	position: absolute;
	left: 7px;
	width: 5px;
	height: 5px;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
}

.ldv-page-toc a:hover,
.ldv-page-toc a:focus-visible,
.ldv-page-toc a[aria-current="location"] {
	background: rgba(255, 255, 255, 0.08);
	color: #FFFFFF;
}

.ldv-page-toc a[aria-current="location"]::before {
	background: #FFFFFF;
}

.ldv-toc-section {
	scroll-margin-top: 124px;
}

.ldv-page-toc-spacer {
	display: none;
}

@media (max-width: 1919px) {
	.ldv-page-toc {
		position: fixed;
		top: var(--ldv-toc-top, 88px);
		right: 0;
		left: 0;
		z-index: 76;
		width: 100%;
		padding: 0 14px;
		flex-direction: row;
		gap: 0;
		overflow-x: auto;
		border-width: 1px 0;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
		transform: none;
		scrollbar-width: none;
	}

	.ldv-page-toc-spacer {
		display: block;
		width: 100%;
		height: 44px;
		flex: 0 0 44px;
		background: #000000;
	}

	.ldv-page-toc::-webkit-scrollbar {
		display: none;
	}

	.ldv-page-toc::before {
		display: none;
	}

	.ldv-page-toc a {
		min-width: max-content;
		min-height: 42px;
		padding: 12px 14px 12px 25px;
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		border-bottom: 0;
	}
}

.ldv-header,
.ldv-header .ldv-brand {
	transition:
		padding 320ms ease,
		background-color 320ms ease,
		box-shadow 320ms ease,
		transform 320ms ease;
}

.ldv-page .ldv-product-header {
	z-index: 90;
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(14px);
}

.ldv-page .ldv-product-header.is-fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
}

.ldv-header-placeholder {
	flex: 0 0 auto;
	width: 100%;
	height: 0;
	background: #000000;
}

.ldv-page .ldv-product-header.is-compact {
	padding-block: 10px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.ldv-page .ldv-product-header.is-compact .ldv-brand {
	transform: scale(0.88);
	transform-origin: left center;
}

[data-ldv-reveal] {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition:
		opacity var(--ldv-motion-duration) var(--ldv-motion-ease),
		transform var(--ldv-motion-duration) var(--ldv-motion-ease);
	transition-delay: var(--ldv-reveal-delay, 0ms);
}

[data-ldv-reveal].is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.ldv-button-primary,
.ldv-button-light,
.ldv-button-secondary,
.ldv-button-outline-dark {
	transition:
		transform 240ms ease,
		background-color 240ms ease,
		border-color 240ms ease,
		color 240ms ease;
}

.ldv-mobile-buy-bar {
	visibility: hidden;
	opacity: 0;
	transform: translate3d(0, 105%, 0);
	transition:
		opacity 260ms ease,
		transform 360ms var(--ldv-motion-ease),
		visibility 0s linear 360ms;
}

.ldv-album-template .ldv-mobile-buy-bar {
	display: none !important;
}

.ldv-mobile-buy-bar.is-visible {
	visibility: visible;
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
	.ldv-album-card,
	.ldv-catalogue-card > a,
	.ldv-artist-directory-card > a,
	.ldv-artist-row {
		transition:
			transform 420ms var(--ldv-motion-ease),
			background-color 320ms ease;
	}

	.ldv-album-cover,
	.ldv-catalogue-cover,
	.ldv-artist-directory-portrait {
		transition:
			transform 520ms var(--ldv-motion-ease),
			box-shadow 520ms var(--ldv-motion-ease);
	}

	.ldv-album-card:hover,
	.ldv-album-card:focus-within,
	.ldv-catalogue-card > a:hover,
	.ldv-catalogue-card > a:focus-visible,
	.ldv-artist-directory-card > a:hover,
	.ldv-artist-directory-card > a:focus-visible {
		transform: translate3d(0, -5px, 0);
	}

	.ldv-album-card:hover .ldv-album-cover,
	.ldv-album-card:focus-within .ldv-album-cover {
		transform: scale(1.018);
		box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
	}

	.ldv-catalogue-card > a:hover .ldv-catalogue-cover,
	.ldv-catalogue-card > a:focus-visible .ldv-catalogue-cover,
	.ldv-artist-directory-card > a:hover .ldv-artist-directory-portrait,
	.ldv-artist-directory-card > a:focus-visible .ldv-artist-directory-portrait {
		box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
	}

	.ldv-artist-row:hover,
	.ldv-artist-row:focus-visible {
		background: rgba(255, 255, 255, 0.06);
		transform: translate3d(6px, 0, 0);
	}

	.ldv-button-primary:hover,
	.ldv-button-light:hover,
	.ldv-button-secondary:hover,
	.ldv-button-outline-dark:hover {
		transform: translate3d(0, -2px, 0);
	}
}

@media (max-width: 767px) {
	.ldv-home-video .ldv-hero-media {
		object-position: center center;
	}

	.ldv-home-video__sound {
		top: auto !important;
		right: 18px;
		bottom: calc(120px + env(safe-area-inset-bottom));
		left: auto !important;
		width: auto;
		height: 42px;
		min-width: 128px;
		padding: 0 16px;
		border-radius: 999px;
		font-size: 9px;
		transform: translateY(6px) scale(1);
		will-change: opacity, transform;
	}

	.ldv-home-video__sound::before {
		inset: 4px;
	}

	.ldv-hero.is-sound-control-visible .ldv-home-video__sound,
	.ldv-home-video__sound:focus-visible {
		transform: translateY(0) scale(1);
	}

	.ldv-album-template .ldv-page {
		padding-bottom: 88px;
	}

	.ldv-album-template .ldv-mobile-buy-bar {
		position: fixed !important;
		inset: auto 0 0 !important;
		z-index: 120 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
		gap: 10px !important;
		border: 1px solid rgba(0, 0, 0, 0.22) !important;
		background: rgba(255, 255, 255, 0.98) !important;
		box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.12) !important;
		color: #000000 !important;
	}

	.ldv-album-template .ldv-mobile-buy-copy {
		width: 42% !important;
		padding: 0 !important;
		gap: 3px !important;
	}

	.ldv-album-template .ldv-mobile-buy-title {
		color: #000000 !important;
		font: 400 16px/1.08 Baskerville, Georgia, serif !important;
	}

	.ldv-album-template .ldv-mobile-buy-price {
		color: #666666 !important;
		font: 700 12px/1.2 Arial, Helvetica, sans-serif !important;
	}

	.ldv-album-template .ldv-mobile-buy-button {
		width: 54% !important;
		min-height: 48px !important;
		padding: 12px 14px !important;
		font-size: 9px !important;
	}

	.ldv-page .ldv-product-header.is-compact {
		padding-block: 8px;
	}
}

@media (hover: none), (pointer: coarse) {
	.ldv-home-video__sound {
		top: auto !important;
		right: 18px;
		bottom: calc(120px + env(safe-area-inset-bottom));
		left: auto !important;
		width: auto;
		height: 42px;
		min-width: 128px;
		padding: 0 16px;
		border-radius: 999px;
		font-size: 9px;
		transform: translateY(6px) scale(1);
		will-change: opacity, transform;
	}

	.ldv-home-video__sound::before {
		inset: 4px;
	}

	.ldv-hero.is-sound-control-visible .ldv-home-video__sound,
	.ldv-home-video__sound:focus-visible {
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 767px) and (max-height: 720px) {
	.ldv-home-video__sound {
		bottom: calc(83px + env(safe-area-inset-bottom));
		height: 36px;
		min-width: 118px;
		padding-inline: 12px;
		font-size: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ldv-home-video .ldv-home-video__player,
	.ldv-home-video__sound {
		display: none;
	}

	.ldv-scroll a::after {
		animation: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	:root {
		--ldv-motion-duration: 0ms;
	}

	[data-ldv-reveal],
	[data-ldv-reveal].is-revealed {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.ldv-header,
	.ldv-header .ldv-brand,
	.ldv-mobile-buy-bar,
	.ldv-button-primary,
	.ldv-button-light,
	.ldv-button-secondary,
	.ldv-button-outline-dark,
	.ldv-album-card,
	.ldv-catalogue-card > a,
	.ldv-artist-directory-card > a,
	.ldv-artist-row {
		transition-duration: 0ms !important;
	}
}
