@import url(https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap);

.entry-header {
	display: none;
}

.configurator {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.configurator__left {
	position: sticky !important;
    top: 100px !important;
    height: fit-content;
	width: calc(50% - 30px);
	padding-right: 30px;
}

.configurator__right {
	width: 50%;
	padding: 35px 0;
	padding-bottom: 0;
	background-color: #F9F9F9;
	margin-left: auto;
	height: fit-content;
	position: relative;
}

.configurator__right::after {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	transition: all 300ms ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.configurator__right::before {
	content: '';
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	animation: spin 2s ease-in-out infinite;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M457 372c11.5 6.6 26.3 2.7 31.8-9.3C503.7 330.2 512 294.1 512 256C512 122.7 410.1 13.2 280 1.1C266.8-.1 256 10.7 256 24v0c0 13.3 10.8 23.9 24 25.4C383.5 61.2 464 149.2 464 256c0 29.3-6.1 57.3-17 82.6c-5.3 12.2-1.5 26.8 10 33.5v0z' fill='%23ea6925'/%3E%3C/svg%3E");
	transition: all 300ms ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.configurator__right.is-loading::after, .configurator__right.is-loading::before {
	opacity: 1;
	pointer-events: all;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	50% {
		transform: translate(-50%, -50%) rotate(360deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
}

.configurator__header {
	padding: 0 50px;
	margin-bottom: 55px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.configurator__title {
	display: flex;
	margin: 0;
	color: #000;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.configurator__header-popup {
	margin-left: 12px;
	display: flex;
	transition: all 300ms ease-in-out;
	cursor: pointer;
	position: relative;
}

.configurator__header-popup-data {
	position: absolute;
	width: 430px;
	height: auto;
	top: calc(100% + 25px);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
	background: #FFF;
	padding: 25px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	transition: all 300ms ease-in-out;
	opacity: 0;
	pointer-events: none;
	z-index: 99999999999;
}

.configurator__header-popup-data.is-active {
	opacity: 1;
	pointer-events: all;
}

.configurator__header-popup-data .button {
	float: right;
	display: inline-flex;
	padding: 14px 50px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 2px;
	background: #EA6925;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.configurator__header-popup:hover svg{
	opacity: 0.5;
}

.configurator__header-popup svg {
	width: 16px;
	height: 16px;
}

.configurator__remove-selection {
	margin-left: auto;
	color: #EA6925;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	transition: all 300ms ease-in-out;
	cursor: pointer;
}

.configurator__remove-selection:hover {
	opacity: 0.5;
}

.configurator__select-vehicle-title, .configurator__select-vehicle-fields {
	padding: 0 50px;
}

.configurator__hidden {
	display: none;
}

.configurator__select-vehicle {
	margin-bottom: 65px;
}

.configurator__select-vehicle-title {
	color: #000;
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.configurator__select-vehicle-fields  {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
	justify-content: space-between;
	margin-top: 20px;
}
.configurator__select-vehicle-fields select {
	border-radius: 2px;
	border: 1px solid #D9D9D9;
	background: #FFF;
	padding: 15px;
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	width: calc(33% - 13px);
	transition: all 300ms ease-in-out;
	color: #000 !important;
	font-family: 'Open sans',Arial,sans-serif !important;
}

.configurator__select-vehicle-fields select.required {
	border-color: red;
}

.configurator__products-title {
	padding: 0 50px;
	color: #000;
	line-height: normal;
	margin-bottom: 27px;
	font-size: 23px;
	font-style: normal;
	font-weight: 500;
}

.configurator__products-error {
	margin: 0 50px;
	margin-bottom: 40px;
	border-radius: 4px;
	padding: 10px;
	color: rgba(255, 30, 0, 1);
	background-color: rgba(255, 30, 0, 0.1);
}

.configurator__products-category {
	margin-bottom: 0px;
	position: relative;
}

.configurator__products .configurator__products-category:last-child:after {
	display: none;
}

.configurator__products-category:hover .configurator__products-category-title {
	color: #ea6925;
}

.configurator__products-category:after {
	content: '';
	height: 1px;
	background-color: #dcdcdc;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 90px);
}

.configurator__products-category-header {
	padding: 15px 30px;
	margin: 0 20px;
	padding-left: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	position: relative;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}

.configurator__products-category-header::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 300ms ease-in-out;
	transform-origin: center;
	left: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z' fill='%23929292'/%3E%3C/svg%3E");
}

.configurator__products-category-header.is-active::after {
	transform: translateY(-50%) rotate(180deg);
}

.configurator__products-category-toggle-all {
	color: #EA6925;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all 300ms ease-in-out;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

.configurator__products-category-header.is-active .configurator__products-category-toggle-all {
	opacity: 1;
	pointer-events: all;
}



.configurator__products-category-toggle-all:hover, .configurator__products-category-toggle-all.is-active {
	/* background-color: #EA6925;
	color: white; */
}

.configurator__products-category-title {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0;
	transition: all 300ms ease-in-out;
}

.configurator__product {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-bottom: 30px;
	padding-left: 50px;
	padding-right: 50px;
	width: 100%;
	position: relative;
}

.configurator__product-info-popup .icon {
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	display: flex;
	cursor: pointer;
}

.configurator__product-info-popup .icon svg{
	width: 13px;
	height: 13px;
}

.configurator__product-info-popup:hover .configurator__product-info-popup-data {
	opacity: 1;
	pointer-events: all;
}

.configurator__product-info-popup-data {
	position: absolute;
	top: calc(100% - 30px);
	width: 100px;
	padding: 10px;
	left: -30px;
	z-index: 2;
	border-radius: 2px;
	background: #FFF;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: all 300ms ease-in-out;
	pointer-events: none;
}

.configurator__product-image {
	width: 110px;
	height: 110px;
	background-color: white;
	border-radius: 2px;
	border: 1px solid #D9D9D9;
}

.configurator__product-add-to-cart {
	width: 75px;
	display: flex;
    flex-wrap: wrap;
    align-content: center;
	gap: 0px;
}

.configurator__product-add-to-cart input {
	width: 40px;
	height: 33px;
	border-radius: 3px;
	border: 1px solid #D9D9D9;
	background: #FFF;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	padding: 0;
}

.configurator__product-add-to-cart input::placeholder {
	color: #A7A7A7;
}

.configurator__product-add-to-cart .selection {
	width: 21px;
	height: 35px;
	display: flex;
	flex-wrap: wrap;
	border-radius: 0px 3px 3px 0px;
	background: #EA6925;
	justify-content: center;
    align-items: center;
    flex-direction: column;
}

.configurator__product-add-to-cart .selection > span {
	width: 100%;
	height: 12px;
	display: flex;
	justify-content: center;
}

.configurator__product-add-to-cart svg {
	width: 12px;
	height: 12px;
	position: relative;
	display: flex;
}

.configurator__product-add-to-cart svg path {
	fill: #ffff
}

.configurator__product a:hover {
	text-decoration: none !important;
}

.configurator__product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.configurator__product-info {
	width: 100%;
	padding-left: 20px;
	color: #000;
	padding-top: 9px;
	height: calc(100% - 9px);
}

.configurator__product-info:hover {
	text-decoration: none;
}

.configurator__product-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.configurator__product-header .is-sku {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0;
}

.configurator__product-header .is-price {
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}

.configurator__product-header .is-price.is-sale {
	display: block;
	position: relative;
}

.configurator__product-header .is-price.is-sale .original {
	color: #6B6B6B;
	text-align: right;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: line-through;
	display: block;
	margin-bottom: 4px;
}

.configurator__product-header .is-price.is-sale .sale {
	display: block;
	color: #000;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	position: absolute;
	right: 0;
	bottom: -17px;
	width: max-content;
}

.configurator__product-header .is-price.is-sale .sale-percentage {
	border-radius: 2px;
	background: #30B72E;
	display: inline-flex;
	padding: 5px 8px;
	color: #FFF;
	text-align: right;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	position: absolute;
	right: 0;
	/* bottom: -43px; */
	top: 35px;
	width: max-content;
	z-index: 1;
}

.configurator__product-description {
	max-width: calc(100% - 105px);
}

.configurator__product-description ul {
	padding-left: 17px;
	margin: 0;
}

.configurator__360 {
	position: relative;
	transition: all 300ms ease-in-out, background 200ms ease-in-out 200ms;
}

.configurator__360-front, .configurator__360-left-front, .configurator__360-left, .configurator__360-left-back, .configurator__360-back, .configurator__360-right-back, .configurator__360-right, .configurator__360-right-front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.configurator__360-front img, .configurator__360-left-front img, .configurator__360-left img, .configurator__360-left-back img, .configurator__360-back img, .configurator__360-right-back img, .configurator__360-right img, .configurator__360-right-front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.configurator__360-front.is-active, .configurator__360-left-front.is-active, .configurator__360-left.is-active, .configurator__360-left-back.is-active, .configurator__360-back.is-active, .configurator__360-right-back.is-active, .configurator__360-right.is-active, .configurator__360-right-front.is-active {
	opacity: 1;
	z-index: 1;
}

.configurator__360 .lights img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: all 200ms ease-in-out;
}

.configurator__360 .lights img.is-on {
	opacity: 1;
}

.configurator__360-slider {
	width: calc(100% - 70px * 2);
	padding: 70px;
	padding-top: 20px;
}

/*********** Baseline, reset styles ***********/
.configurator__360-slider {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	cursor: pointer;
  }
  
  /* Removes default focus */
  .configurator__360-slider:focus {
	outline: none;
  }
  
  /******** Chrome, Safari, Opera and Edge Chromium styles ********/
  /* slider track */
  .configurator__360-slider::-webkit-slider-runnable-track {
	background-color: #d9d9d9;
	border-radius: 100px;
	height: 10px;
  }
  
  /* slider thumb */
  .configurator__360-slider::-webkit-slider-thumb {
	-webkit-appearance: none; /* Override default look */
	appearance: none;
	margin-top: 0px; /* Centers thumb on the track */
	background-color: #ea6925;
	border-radius: 10px;
	height: 10px;
	width: 45px;
  }
  
  .configurator__360-slider:focus::-webkit-slider-thumb {
	outline: 3px solid #ea6925;
	outline-offset: 0.125rem;
  }
  
  /*********** Firefox styles ***********/
  /* slider track */
  .configurator__360-slider::-moz-range-track {
	background-color: #d9d9d9;
	border-radius: 100px;
	height: 10px;
  }
  
  /* slider thumb */
  .configurator__360-slider::-moz-range-thumb {
	background-color: #ea6925;
	border: none; /*Removes extra border that FF applies*/
	border-radius: 100px;
	height: 10px;
	width: 45px;
  }
  
  .configurator__360-slider:focus::-moz-range-thumb{
	outline: 3px solid #ea6925;
	outline-offset: 0.125rem;
  }


.configurator__360 .controls {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	z-index: 99;
	position: relative;
	padding: 10px;
	pointer-events: all;
}

.configurator__360 .controls .fullscreen, .configurator__360 .controls .background, .configurator__360 .controls .play, .configurator__360 .controls .light {
	width: 41px;
	height: 41px;
	pointer-events: all;
	cursor: pointer;
	cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 99;
	position: relative;
	border-radius: 2px;
	background: #F9F9F9;
	transition: all 300ms ease-in-out;
}

.configurator__360 .controls .fullscreen:hover, .configurator__360 .controls .background:hover, .configurator__360 .controls .play:hover, .configurator__360 .controls .light:hover {
	opacity: 0.5;
}

.configurator__360 .controls .fullscreen svg, .configurator__360 .controls .light svg {
	width: 29px;
	height: 26px;
	pointer-events: none;
}

.configurator__360 .controls .fullscreen svg path, .configurator__360 .controls .background svg path , .configurator__360 .controls .play svg path {
	fill: #EA6925;
}

.configurator__360::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #404144 42.71%, #000 100%);
	transition: all 200ms ease-in-out;
	opacity: 0;
}

.configurator__360.has-bg .watermark .white {
	opacity: 1;
}

.configurator__360.has-bg .watermark .dark {
	opacity: 0;
}

.configurator__360.has-bg::after {
	opacity: 1;
}

.configurator__cart {
	border-radius: 2px;
	background: #fff;
	padding: 22px 0;
	position: sticky;
	bottom: 0;
	z-index: 1;
}

.configurator__cart-title {
	padding: 35px 50px;
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0;
}

.configurator__cart-total {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 50px;
}

.configurator__cart-total .title {
	color: #000;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.configurator__cart-total .discount {
	margin-left: auto;
	color: #979797;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration: line-through;
	opacity: 0;
	transition: all 300ms ease-in-out;
}

.configurator__cart-total .discount.is-active {
	opacity: 1;
	margin-right: 10px;
}

.configurator__cart-total .price {
	color: #000;
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-right: 28px;
}

.configurator__cart-total .button {
	width: 100%;
	margin-top: 5px;
	text-align: center;
	padding: 14px 30px;
	border-radius: 2px;
	background: #EA6925;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}

.configurator__cart-total .button:hover {
	opacity: 0.6;
}

.configurator__cart-total .price .with-vat {
	color: #EA6925;
	text-align: right;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.configurator__cart-total .price .no-vat {
	color: #979797;
	text-align: right;
	font-size: 10px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.configurator__product-stock {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 15px;
}

.configurator__product-stock .icon {
	margin-right: 5px;
}

.configurator__product-stock .icon svg {
	width: 12px;
	height: 12px;
}

.configurator__product-stock .stock {
	color: #000;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.configurator__products-wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.js-toggle-body {
	display: none;
}

.configurator__360 .watermark {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	padding: 10px;
}

.configurator__360 .watermark img {
	width: 127px;
	height: 29px;
	object-fit: contain;
	transition: all 300ms ease-in-out;
}

.configurator__360 .watermark .white {
	opacity: 0;
	position: absolute;
	top: 10px;
	left: 10px;
}

.configurator__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
}

.configurator__disclaimer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.configurator__disclaimer .icon {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.configurator__disclaimer .icon svg {
	width: 16px;
	height: 16px;
}

.configurator__disclaimer .title {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
	margin-right: 10px;
}

.configurator__disclaimer a {
	color: #EA6925;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-decoration-line: underline;
	transition: all 300ms ease-in-out;
}

.configurator__disclaimer a:hover {
	opacity: 0.7;
}

.configurator__montagelink {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-decoration-line: underline;
	transition: all 300ms ease-in-out;
}

.configurator__montagelink:hover {
	opacity: 0.7;
}

.configurator__left.popup {
	position: fixed;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
	background-color: #fff;
	z-index: 9999;
	padding: 30px;
	max-width: 700px;
	width: 100%;
}

.configurator__left.is-popup {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%);
	background-color: #fff;
	z-index: 9999;
	padding: 30px;
	max-width: 700px;
	width: 100%;
	opacity: 0;
	transition: all 300ms ease-in-out;
	pointer-events: none;
}

.configurator__left.is-popup * {
	pointer-events: none;
}

.configurator__left.is-popup.is-active {
	opacity: 1;
	pointer-events: all;
}

.configurator__left.is-popup.is-active *{
	pointer-events: all;
}

.configurator__left.is-popup .configurator__360-slider{
	padding-bottom: 0;
	padding-right: 0;
	padding-left: 0;
	width: 100%;
}

.configurator .bg.active {
	opacity: 1;
	pointer-events: all;
}

.configurator .bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.25);
	pointer-events: none;
	opacity: 0;
	transition: all 300ms ease-in-out;
	z-index: 9998;	
}

.configurator__360 .rotate .left {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: transparent;
	width: 50px;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.configurator__360 .rotate svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.configurator__360 .rotate svg path{
	fill: #EA6925
}
.configurator__360 .rotate .right {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: transparent;
	width: 50px;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.configurator__products {
	padding-bottom: 20px;
}

.is-config-info  {
	width: calc(100% - 125px - 85px);
}


.configurator__product-add-to-cart__tooltip.is-desktop {
	position: absolute;
	transform: translatey(-50%);
	top: 50%;
	left: calc(-100% - 45px);
	border-radius: 2px;
	background-color: #EA6925;
	color: #fff;
	padding: 10px 7px;
	position: absolute;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	max-width: 90px;
	transition: all 300ms ease-in-out;
}

.configurator__product-add-to-cart__tooltip.is-mobile {
	order: 10;
	display: none;
	border-radius: 2px;
	background-color: #EA6925;
	color: #fff;
	padding: 10px 7px;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	max-width: 90px;
	transition: all 300ms ease-in-out;
	position: absolute;
	top: 50px;
}

.configurator__product-add-to-cart__tooltip.is-mobile::after {
	transform: rotate(45deg) translateY(0) translateX(-50%);
	top: inherit;
	bottom: -6px;
	left: 50%;
	opacity: 0;
}

.configurator__product-add-to-cart__tooltip.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.configurator__product-add-to-cart__tooltip P {
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}

.configurator__product-add-to-cart__tooltip::after {
    content: '';
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translateY(-50%);
    right: -2px;
    top: 50%;
    position: absolute;
    background: #EA6925;
}

@media screen and (max-width: 1130px){
	.configurator__left, .configurator__right {
		width: 100%;
		padding: 0;
	}

	.configurator__left {
		position: relative;
		top: 0;
	}

	.configurator__right {
		padding-top: 30px;
	}
}

.configurator__product .is-config-info .configurator__product-info .configurator__product-description .sku {
	display: none;
}

@media screen and (max-width: 600px){
	.configurator__header-popup-data {
		max-width: 375px;
		width: auto;
	}

	.configurator__header, .configurator__select-vehicle-title, .configurator__select-vehicle-fields, .configurator__products-title, .configurator__products-category-header, .configurator__cart-total {
		padding: 0 20px;
	}

	.configurator__header {
		margin-bottom: 20px;
	}

	.configurator__select-vehicle-fields select {
		width: 100%;
		margin-bottom: 10px;
	}

	.configurator__title {
		font-weight: 25px;
	}

	.configurator__remove-selection {
		font-size: 12px;
	}

	.configurator__select-vehicle-title {
		font-size: 16px;
	}

	.configurator__products-category-header {
		padding-left: 20px;
		padding-top: 5px;
		padding-bottom: 10px;
	}

	.configurator__products-category-header::after {
		left: 00px;
	}

	.configurator__cart-total .price {
		margin-right: 0;
	}

	.configurator__cart-total .button {
		width: 100%;
		margin-top: 5px;
		text-align: center;
	}

	.configurator__disclaimer {
		margin-bottom: 5px;
		width: 100%;
	}

	.configurator__360-slider {
		padding: 20px;
		width: calc(100% - 20px * 2);
	}

	.configurator__left {
		position: relative !important;
		top: 0 !important;
	}

	.configurator__product {
		padding-left: 35px;
	}

	.configurator__product .is-config-image {
		order: 1;
	}

	.configurator__product .is-config-image .configurator__product-image{
		margin-bottom: 70px;
	}

	@media screen and (max-width: 600px) {
		.configurator__product .is-config-image {
			height: fit-content;
		}

		.configurator__product .is-config-image .configurator__product-image {
			margin-bottom: 0;
		}
	 }

	.configurator__product .is-config-info {
		order: 2;
		width: calc(100% - 115px);
		display: flex;
		flex-wrap: wrap;
	}

	.configurator__product .is-config-info .configurator__product-info {
		display: flex;
		flex-wrap: wrap;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-description {
		order: 1;
		width: 100%;
		max-width: 100%;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-description .sku {
		display: block;
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		line-height: normal;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-stock {
		order: 2;
		width: 100%;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-header {
		order: 3;
		justify-content: flex-end;
		margin-top: 20px;
		width: 100%;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-header .is-sku {
		display: none;
	}

	.configurator__product .is-config-info .configurator__product-info .configurator__product-header .is-price {
		font-size: 16px;
		font-weight: 700;
		position: relative;
		top: -20px;
	}

	.configurator__product-bulk {
		order: 8;
		width: calc(100% - 120px) !important;
		margin-top: 20px !important;
	}

	.configurator__product-add-to-cart {
		order: 3;
	}

	.configurator__product .configurator__product-add-to-cart {
		position: absolute;
		top: 120px;
		left: 70px;
	}

	.configurator__product-info-popup .icon {
		/* bottom: 10px; */
		transform: none;
		top: 132px;
		left: 40px;
	}

	.configurator__product-info-popup .configurator__product-info-popup-data {
		left: 40px;
	}

	.configurator__product-add-to-cart__tooltip.is-desktop {
		display: none;
	}

	.configurator__product-add-to-cart__tooltip.is-mobile {
		display: block;
		position: relative;
        opacity: 1;
        width: 100%;
        max-width: 100%;
        top: 0;
	}
}

.has-lazy-load {
	position: relative;
	top: 0;
	transition: all 750ms ease-in-out;
	transition-delay: 750ms;
	opacity: 0;
}

.has-lazy-load[loaded='true'] {
	transform: translateY(0);
	opacity: 1;
}

.configurator__left {
	transform: translateY(-50px);
	transition-delay: 500ms;
}

.configurator__products-category-header {
	border: 1px solid transparent;
	border-radius: 2px;
}
.configurator__products-category-header.highlighted {
	border-color: #EA6925;
}

.configurator__products-category-header.highlighted .configurator__products-category-title{
	color: #EA6925;
}

.configurator__360 .hover > span {
	position: absolute;
	background-color: transparent;
	cursor: pointer;
	/* background-color: rgba(255, 30, 0, 0.4); */
	/* background-color: rgba(0, 30, 255, 0.4); */
}

.configurator__360 .hover > span::after {
	content: '';
	position: absolute;
	cursor: pointer;
}

/* Front. */
.configurator__360-front .hover .front_roof {
    width: 27%;
    height: 6%;
    top: 20%;
    left: 37%;
}

.configurator__360-front .hover .side_roof {
    width: 7%;
    height: 4%;
    top: 20%;
    left: 37%;
}

.configurator__360-front .hover .side_roof::after {
	width: 100%;
    height: 100%;
    top: 0;
    left: 293%;
}

.configurator__360-front .hover .fender_back {
	width: 5%;
    height: 7%;
    top: 36%;
    left: 64%;
}

.configurator__360-front .hover .fender_back::after {
	width: 100%;
	height: 100%;
	top: 0;
	left: -631%;
}

.configurator__360-front .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 36%;
    left: 61%;
}

.configurator__360-front .hover .indicator_post::after {
	width: 100%;
	height: 100%;
	top: 0;
	left: -540%;
}

.configurator__360-front .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 41%;
    left: 61%;
}

.configurator__360-front .hover .auxiliary_headlights::after {
	width: 100%;
	height: 100%;
	top: 0;
	left: -540%;
}

.configurator__360-front .hover .bonnet_headlight {
	width: 16%;
    height: 3%;
    top: 55%;
    left: 40%;
}

.configurator__360-front .hover .bonnet_worklight {
    width: 5%;
    height: 3%;
    top: 60%;
    left: 41%;
}

.configurator__360-front .hover .bonnet_worklight::after {
	width: 100%;
	height: 100%;
	top: 0;
	left: 180%;
}

/* Left front. */
.configurator__360-left-front .hover .front_roof {
	width: 16%;
    height: 5%;
    top: 21%;
    left: 49%;
}

.configurator__360-left-front .hover .side_roof {
	width: 5%;
    height: 4%;
    top: 20%;
    left: 73%;
}

.configurator__360-left-front .hover .fender_back {
    width: 5%;
    height: 4%;
    top: 34%;
    left: 79%;
}

.configurator__360-left-front .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 35%;
    left: 59%;
}

.configurator__360-left-front .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 38%;
    left: 59%;
}

.configurator__360-left-front .hover .bonnet_headlight {
	width: 11%;
    height: 3%;
    top: 49%;
    left: 20%;
}

.configurator__360-left-front .hover .bonnet_worklight {
    width: 6%;
    height: 3%;
    top: 53%;
    left: 21%;
}

/* Left. */
.configurator__360-left .hover .front_roof {
    width: 5%;
    height: 5%;
    top: 21%;
    left: 51%;
}

.configurator__360-left .hover .side_roof {
	width: 5%;
    height: 4%;
    top: 20%;
    left: 69%;
}

.configurator__360-left .hover .fender_back {
    width: 6%;
    height: 6%;
    top: 34%;
    left: 78%;
}

.configurator__360-left .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 35%;
    left: 48%;
}

.configurator__360-left .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 38%;
    left: 48%;
}

.configurator__360-left .hover .bonnet_headlight {
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

.configurator__360-left .hover .bonnet_worklight {
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

/* Left back. */
.configurator__360-left-back .hover .front_roof {
    width: 9%;
    height: 2%;
    top: 22%;
    left: 38%;
}

.configurator__360-left-back .hover .side_roof {
	width: 19%;
    height: 3%;
    top: 21%;
    left: 49%;
}

.configurator__360-left-back .hover .back_roof {
	width: 19%;
    height: 3%;
    top: 24%;
    left: 53%;
}

.configurator__360-left-back .hover .fender_back {
	width: 22%;
    height: 6%;
    top: 38%;
    left: 56%;
}

.configurator__360-left-back .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 35%;
    left: 31%;
}

.configurator__360-left-back .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 39%;
    left: 31%;
}

.configurator__360-left-back .hover .bonnet_headlight {
	display: none;
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

.configurator__360-left-back .hover .bonnet_worklight {
	display: none;
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

/* Back. */
.configurator__360-back .hover .front_roof {
	display: none;
    width: 9%;
    height: 2%;
    top: 22%;
    left: 38%;
}

.configurator__360-back .hover .side_roof {
	width: 29%;
    height: 3%;
    top: 21%;
    left: 35%;
}

.configurator__360-back .hover .back_roof {
	width: 29%;
    height: 3%;
    top: 25%;
    left: 35%;
}

.configurator__360-back .hover .fender_back {
	width: 36%;
    height: 4%;
    top: 41%;
    left: 31%;
}

.configurator__360-back .hover .indicator_post {
	display: none;
    width: 5%;
    height: 14%;
    top: 35%;
    left: 31%;
}

.configurator__360-back .hover .indicator_post {
	display: none;
    width: 5%;
    height: 14%;
    top: 35%;
    left: 31%;
}

.configurator__360-back .hover .bonnet_headlight {
	display: none;
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

.configurator__360-back .hover .bonnet_worklight {
	display: none;
    width: 8%;
    height: 3%;
    top: 44%;
    left: 12%;
}

/* Right back. */
.configurator__360-right-back .hover .front_roof {
	width: 6%;
    height: 2%;
    top: 24%;
    left: 56%;
}

.configurator__360-right-back .hover .side_roof {
    width: 20%;
    height: 3%;
    top: 21%;
    left: 28%;
}

.configurator__360-right-back .hover .back_roof {
	width: 20%;
    height: 3%;
    top: 25%;
    left: 25%;
}

.configurator__360-right-back .hover .fender_back {
	width: 27%;
    height: 8%;
    top: 37%;
    left: 15%;
}

.configurator__360-right-back .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 38%;
    left: 59%;
}

.configurator__360-right-back .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 41%;
    left: 59%;
}

.configurator__360-right-back .hover .bonnet_headlight {
    width: 6%;
    height: 3%;
    top: 39%;
    left: 77%;
}

.configurator__360-right-back .hover .bonnet_worklight {
    width: 6%;
    height: 3%;
    top: 44%;
    left: 77%;
}

/* Right. */
.configurator__360-right .hover .front_roof {
    width: 4%;
    height: 3%;
    top: 23%;
    left: 45%;
}

.configurator__360-right .hover .side_roof {
	width: 8%;
    height: 3%;
    top: 20%;
    left: 24%;
}

.configurator__360-right .hover .back_roof {
    width: 5%;
    height: 3%;
    top: 24%;
    left: 18%;
}

.configurator__360-right .hover .fender_back {
    width: 4%;
    height: 4%;
    top: 37%;
    left: 14%;
}

.configurator__360-right .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 38%;
    left: 45%;
}

.configurator__360-right .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 41%;
    left: 45%;
}

.configurator__360-right .hover .bonnet_headlight {
    width: 6%;
    height: 3%;
    top: 44%;
    left: 83%;
}

.configurator__360-right .hover .bonnet_worklight {
    width: 6%;
    height: 3%;
    top: 48%;
    left: 83%;
}

/* Right front. */
.configurator__360-right-front .hover .front_roof {
    width: 19%;
    height: 3%;
    top: 23%;
    left: 34%;
}

.configurator__360-right-front .hover .side_roof {
    width: 17%;
    height: 3%;
    top: 20%;
    left: 24%;
}

.configurator__360-right-front .hover .back_roof {
    width: 3%;
    height: 3%;
    top: 24%;
    left: 21%;
}

.configurator__360-right-front .hover .fender_back {
    width: 4%;
    height: 4%;
    top: 33%;
    left: 18%;
}

.configurator__360-right-front .hover .indicator_post {
    width: 5%;
    height: 4%;
    top: 35%;
    left: 35%;
}

.configurator__360-right-front .hover .indicator_post::after {
    width: 100%;
    height: 42%;
    top: -6%;
    left: 335%;
}

.configurator__360-right-front .hover .auxiliary_headlights {
    width: 5%;
    height: 4%;
    top: 39%;
    left: 35%;
}

.configurator__360-right-front .hover .auxiliary_headlights::after {
    width: 100%;
    height: 42%;
    top: -6%;
    left: 335%;
}


.configurator__360-right-front .hover .bonnet_headlight {
    width: 8%;
    height: 4%;
    top: 48%;
    left: 70%;
}

.configurator__360-right-front .hover .bonnet_worklight {
    width: 10%;
    height: 3%;
    top: 54%;
    left: 69%;
}

.load-in-delay {
	opacity: 0;
	animation: footer-loadin 300ms ease-in-out forwards 500ms;
}

@keyframes footer-loadin {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 100%;
	}
}

.configurator__hide-popup {
	width: 100%;
    height: 50px;
    float: left;
    cursor: pointer;
    background: #ea6925;
    border: 1px solid #ea6925;
    border-radius: 0 4px 4px 0;
    color: #fff;
    border: 0;
    font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	transition: all 300ms ease-in-out;
}

.configurator__hide-popup:hover {
	opacity: 0.7;
}

.configurator__takesawhile {
	position: absolute;
	top: calc(50% + 70px);
	left: 50%;
	z-index: 5;
	transform: translate(-50%, -50%);
	text-align: center;
	font-weight: 700;
}

.configurator__product-add-to-cart {
	position: relative;
}

.configurator__product-bulk {
	/* width: calc(100% - 200px); */
	width: calc(100%);
    margin-top: 5px;
	margin-left: auto;
	/* background-color: #fff; */
	display: none;
}

.configurator__product-bulk.is-active {
	display: block;
}

.configurator__product-bulk-label {
	padding: 5px 10px;
	/* background-color: white; */
	border-radius: 3px;
	color: #ea6925;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	cursor: pointer;
}

.configurator__product-bulk-label span {
	/* width: calc(100% - 60px); */
	font-weight: 600;
}

.configurator__product-bulk-label svg{
	margin-left: 10px;
	width: 15px;
	height: 15px;
} 

.configurator__product-bulk-label .toggle  {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.configurator__product-bulk-label .toggle svg {
	width: 20px;
	height: 20px;
	margin-left: 0;
	transform-origin: center;
	transform: rotate(180deg);
	transition: all 300ms ease-in-out;
}

.configurator__product-bulk-label svg path {
	fill: #ea6925;
}

.configurator__product-bulk-table {
	width: auto;
	display: none;
}

.configurator__product-bulk-table .wdr_bulk_table_msg {
	width: 100%;
	margin-top: 5px;
}

.configurator__product-bulk-table .wdr_bulk_table_msg table {
	border-collapse: collapse;
}

.configurator__product-bulk-table .wdr_bulk_table_msg th {
	text-align: left;
}

.configurator__product-bulk-table .wdr_bulk_table_msg table, .configurator__product-bulk-table .wdr_bulk_table_msg th, .configurator__product-bulk-table .wdr_bulk_table_msg td {
	border: 1px solid #d1d1d1;
}

.configurator__product-bulk-table .wdr_bulk_table_msg th, .configurator__product-bulk-table .wdr_bulk_table_msg td {
	padding: 4px;
}

.configurator__product-bulk-table .awdr-bulk-customizable-table {
	padding: 5px 10px;
}

.configurator__product-bulk-label .toggle {
	transition: all 300ms ease-in-out;
}

.configurator__product-bulk-label .toggle.is-active {
	transform: rotate(180deg);
}