/* CSS Styles */
html,body {
	margin:0;
	padding:0;
	background-color:#1a1a1a;
}
@font-face {
  font-family: 'peugeot-light';
  src: url('../fonts/PeugeotNewLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'peugeot-medium';
  src: url('https://met82.com/test/theadx/adfolder/peugeot-408/970x250-v2/fonts/PeugeotNewMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'peugeot-regular';
  src: url('../fonts/PeugeotNewRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: 'peugeot-semibold';
  src: url('../fonts/PeugeotNewBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'peugeot-bold';
  src: url('../fonts/PeugeotNewBlack.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
.slider {
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	width:970px;
	height:250px;
	overflow:hidden;
	color:#ffffff;
	background-color:#000000;
	font-family:'peugeot-regular', sans-serif;
	user-select:none;
}
.slider-menu {
	position:absolute;
	display:flex;
	flex-direction:column;
	left:0px;
	top:50%;
	transform:translateY(-50%);
	z-index:4;
	gap:1px;
}
.slider-menu-item {
	width:40px;
	height:40px;
	background-color:#ffffff;
	transition:all ease-in-out .1s;
	outline:1px solid #00000077;
}
.slider-menu-item.active,
.slider-menu-item:hover {
	width:48px;
	transform:scale(1.1);
	cursor:pointer;
	background-color:#0074e8;
	z-index:2;
}
.slider-menu-item:hover {
	background-color:#000000;
}
.slider-menu-item.active img,
.slider-menu-item:hover img {
	filter:invert(1);
}
.slider-menu-item img {
	display:block;
	width:24px;
	height:24px;
	object-fit:contain;
	margin:8px auto;
}
.slides {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	transition:all ease-in-out .2s;
}
.slide {
	position:relative;
	width:100%;
	height:100%;
}
.slide-content {
	position:relative;
	width:100%;
	height:100%;
	z-index:2;
}
.slide-background {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:1;
}
.slide-background img {
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
}
.logo {
	position:absolute;
	right:4px;
	top:2px;
	width:72px;
	z-index:3;
	display:none;
}
.btn-cta {
	width:auto;
	display:inline-block;
	padding:8px 80px;
	font-weight:400;
	text-decoration:none;
	color:#ffffff;
	background-color:#0074e8;
	transition:ease-in-out .25s;
}
.btn-cta:hover {
	background-color:#000000;
}
.video {
	position:absolute;
	right:0px;
	top:0px;
	width:404px;
	height:250px;
	/*border-radius:4px;*/
	overflow:hidden;
	z-index:3;
	object-fit:cover;
}
.viewer-container {
	position:absolute;
	right:80px;
	top:16px;
    width: 384px;
    height: 216px;
    border-radius:12px;
    overflow: hidden;
    background: #000;
    cursor: grab;
}

.viewer-container.grabbing {
	cursor: grabbing;
}

#image {
	position: absolute;
	top: 0;
	left: 0;
	user-drag: none;
	user-select: none;
	pointer-events: none;
	will-change: transform;
	transform-origin: top left;
}
.heading {
	font-family:'peugeot-bold';
	/*font-weight:900;*/
	font-size:18px;
	margin-bottom:8px;
}
.colors {
	margin-top:16px;
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	justify-content:left;
}
.color {
	width:36px;
	height:36px;
	border-radius:50%;
	border-style:solid;
	border-width:2px;
	overflow:hidden;
	transition:all ease-in-out .2s;
}
.color:hover {
	transform:scale(1.05);
	cursor:pointer;
}
.color.active {
	transform:scale(1.25);
	box-shadow:0 0 24px rgba(255,255,255,.48);
}
.color img {
	display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: -30px -20px;
}
.color-prevs {
	position:absolute;
	right:-34px;
	top:16px;
	width:590px;
	height:216px;
	border-radius:4px;
	overflow:hidden;
	z-index:3;
}
.color-prev {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit:contain;
	border-radius:4px;
	overflow:hidden;
	transition:all ease-in-out .5s;
	opacity:0;
	transform-origin:center center;
}
.color-prev.active {
	opacity:1;
}
.icons {
	position:absolute;
	right:8px;
	bottom:8px;
	filter:invert(1) opacity(.7);
	z-index:2;
}
.icons img {
	width:24px;
	height:auto;
}