﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900');

:root {
	--color-1: #ef5e18;
	--color-1-50: hsla(20, 87%, 52%, 0.205);
	--color-2: #3a3a3a;
	/*#57a2f0;*/
	--color-3: #57a2f0;
	--light-text-color: #fff;
	--color-background-light: rgb(246, 246, 246);
	--grey-theme: rgb(238, 238, 238);
	--color-txt: #222328;
	color-scheme: normal !important;
	overflow-x:hidden;
}

.loupe {
	cursor: zoom-in;
}

.site_container {
	margin: 0 5%;
	width: 90%;
}

@media all and (max-width: 1600px) {
	.site_container {
		margin: 0 5%;
		width: 90%;
	}
}

@media all and (max-width: 1200px) {
	.site_container {
		width: calc(100% - 2rem);
		margin: 0 1rem;
	}
}

@media all and (max-width: 990px) {
	.site_container {
		width: calc(100% - 16px);
		margin: 0 8px;
	}
}

.hide-lg{
	display: none;
}

@media (max-width:900px) {

	.hide-xs{
		display: none;
	}
	
	.hide-lg{
		display: block;
	}
}

.titlePP {
	padding: 5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-direction: column;
}

.titlePP::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	right: 0;
	height: 2px;
	background: #777;
	z-index: -1;
}

@media (max-width: 990px) {
	.titlePP {
		padding: 3rem 0;
	}
	.titlePP::after {
		background: none;
	}
}

.titlePP>* {
	z-index: 0;
	margin: 0;
	text-transform: uppercase;
	position: relative;
	text-align: center;
	background: #fff;
	font-size: 2rem;
	padding: 0 2em;
	font-weight: 500;
}

@media (max-width: 990px) {
	.titlePP>* {
		font-size: 1.5rem;
		padding: 0;
	}
}

.titlePP span {
	color: var(--color-1);
}

/* Loading box */
#LoadingBox {
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: whitesmoke;
	/* opacity: 0.65; */
	text-align: center;
	font-size: 10px;
	color: #888;
}

#LoadingBox img {
	max-width: 60%;
}

/* Cookies bar */
#cookiebar {
	opacity: 0.92;
	position: fixed;
	z-index: 9999;
	width: 100%;
	bottom: 0;
	left: 0;
	background: #000;
	color: #fff;
	line-height: 24px;
	text-align: center;
	padding: 30px 0px;
	font-size: 0.9em;
	font-weight: 400;
}

#cookiebar .Row {
	display: block;
}

#cookiebar a,
#cookiebar a:hover {
	color: #fff;
}

#cookiebar .btn-cookie-bar {
	display: inline-block;
	padding: 2px 10px 1px;
	background-color: #fff;
	margin: 0 5px;
	font-size: 0.8em;
	font-weight: 800;
	text-decoration: none;
	border-radius: 4px;
}

#cookiebar .btn-cookie-bar:hover {
	background-color: #ccc;
}

#cookiebar .btn-cookie-bar,
#cookiebar .btn-cookie-bar:hover {
	color: black !important;
}

html {
	scroll-behavior: smooth;
}

/* Commun */
body,
form {
	font-family: "Montserrat", sans-serif;
	border: 0;
	padding: 0;
	margin: 0;
	position: relative;
	float: left;
	width: 100%;
	min-height: 100%;
	font-size: 1em;
	font-weight: 400;
	overflow: hidden;
}

.noview {
	display: none;
	visibility: hidden;
}

.fl-left {
	float: left;
}

.visiblePC {}

.visibleMOBILE {
	display: none;
	visibility: hidden;
}

@media (max-width: 990px) {
	.visiblePC {
		display: none;
		visibility: hidden;
	}

	.visibleMOBILE {
		display: inline-block;
		visibility: visible;
	}
}

.marg-0 {
	margin: 0 !important;
}

.pad-0 {
	padding: 0 !important;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: all 0.5s ease;
	cursor: pointer;
	color: inherit;
}

.talign-center {
	text-align: center;
}

.talign-left {
	text-align: left;
}

.talign-right {
	text-align: right;
}

header {
	height: 100vh;
}

.navYellowBar {
	position: fixed;
	width: 5%;
	height: 100vh;
	background-color: var(--color-1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 5px 5px gray;
	z-index: 999;
}

.headerSeparator {
	width: 100%;
	height: 2px;
	background: var(--color-2);
}

.navYellowBar>a,
.navYellowBar .contact3 {
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.navYellowBar .contact3 img,
.navYellowBar a img,
.navYellowBar a i {
	width: 40px;
	color: var(--color-2);
}

.navYellowBar a:hover i {
	width: 40px;
	color: var(--color-1);
}

.navYellowBar i {
	display: flex !important;
}

.navYellowBar a:visited {
	color: var(--color-2);
}

.hoverItemMenu {
	display: none;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: var(--color-2);
	color: var(--color-1);
	width: 0;
	z-index: 5;
}

.hoverItemMenu.MULTIPLE3 {
	bottom: -150%;
	overflow: hidden;
}

.hoverItemMenu.MULTIPLE3::before {
	content: "";
	top: 70px;
	bottom: 0;
	left: 0;
	width: 5vw;
	background: var(--color-1);
	position: absolute;
}

.hoverItemMenu.MULTIPLE3 .icoContainer {
	align-self: baseline;
	margin-top: 15px;
}

.MULTIPLE3 a {
	display: flex;
	align-items: center;
	transition: 0.3s ease;
}

.navYellowBar .MULTIPLE3 a i {
	color: var(--color-1);
	font-size: 1.5em;
}

.navYellowBar .MULTIPLE3 a:visited {
	color: var(--color-1);
}

.navYellowBar .MULTIPLE3 a:hover,
.navYellowBar .MULTIPLE3 a:hover i {
	color: white;
}

.MULTIPLE3 span {
	width: 100%;
	/* margin: 4px 0; */
	margin-left: 23%;
	height: 2px;
	background: var(--color-1);
}

.hoverItemMenu .icoContainer {
	width: 5vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hoverItemMenu p {
	position: absolute;
	margin: 0;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
}

.navYellowBar .contact3 .hoverItemMenu,
.navYellowBar>a .hoverItemMenu {
	transition: width 1s ease;
}

.navYellowBar>a:hover .hoverItemMenu {
	display: flex;
	width: 300px;
	animation: grow 0.3s ease;
}

.navYellowBar .contact3:hover .hoverItemMenu {
	display: flex;
	width: 350px;
	animation: grow 0.3s ease;
}

.navYellowBar .menuMot {
	position: absolute;
	bottom: 2px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-2);
	font-size: 0.8rem;
}

@keyframes grow {
	from {
		width: 160%;
	}

	to {
		width: 300px;
	}
}

.navYellowBar>.contact3:hover .hoverItemMenu p,
.navYellowBar>a:hover .hoverItemMenu p {
	animation: lastmomentText 0.3s ease;
}

@keyframes lastmomentText {
	0% {
		opacity: 0;
	}

	75% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fsMenu {
	width: 100vw;
	height: 100vh;
	/* padding-top: 50px; */
	position: fixed;
	z-index: 10;
	overflow-y: auto;
	text-align: center;
	top: 0;
}

.fsMenu nav {
	margin-top: 6rem;
}

.greyBkg {
	background: var(--grey-theme);
}

.blueTransparentBkg {
	background-color: rgba(18, 46, 125, 0.8);
}

.searchPanel {
	padding-top: 10%;
}

.searchPanel h2 {
	color: white;
	font-size: 1.8rem;
	text-transform: uppercase;
}

.searchPanel img {
	position: absolute;
	top: 5%;
	left: 10%;
	width: 400px;
}

/*.searchPanel span {
    font-size: 1rem;
    color: white;
}

.searchPanel .ou,
.magasinPage .ou {
    font-size: 1.3rem;
    color: white;
    margin: 0 1rem;
    text-transform: uppercase;
}*/
.fsMenu nav p {
	margin: 0;
	cursor: pointer;
}

.fsMenu nav :is(a, p) {
	font-size: 3rem;
	/* color: #666; */
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	margin: 10px 0;
	transition: all 0.7s;
}

.fsMenu nav a:hover,
.fsMenu nav p:hover {
	transform: translate(30px);
	color: var(--color-1);
}

.hovDeco {
	display: none;
	width: 60px;
	height: 5px;
	margin: 0 1.5rem;
	background-color: #888;
	margin-top: 5px;
}

nav a:hover .hovDeco {
	display: block;
}

nav ul {
	text-align: center;
}

.closeBtn {
	position: absolute;
	top: 6%;
	right: 10%;
	color: #aaa;
	cursor: pointer;
}

.closeBtn:hover {
	color: #111;
}

a.btn {
	font-size: 0.9rem;
	display: inline-block;
	margin: 10px 0;
	background-color: var(--color-2);
	color: white;
	padding: 6px 12px 7px;
}

.settingsCarBox {
	margin-top: 50px;
	width: 100%;
}

.settingsCarBox>a,
.settingsCarBox div {
	border: 1px #999 solid;
	width: 280px;
	height: 60px;
	margin: 0 2rem;
	display: flex;
	justify-content: stretch;
	align-items: center;
	background: white;
}

.settingsCarBox div.blueBox {
	background: var(--color-2);
	color: white;
	border: 1px var(--color-2) solid;
}

.settingsCarBox .blueBox>p>a,
.settingsCarBox .blueBox>p>a:hover {
	color: white;
}

.settingsCarBox i {
	margin-left: 8px;
	flex: 1;
}

.settingsCarBox p {
	margin: 8px;
	font-weight: bold;
	flex: 4;
	color: #777;
}

.settingsCarBox i {
	color: #777;
}

.settingsCarBox div.blueBox p,
.settingsCarBox div.blueBox i {
	color: white;
}

.settingsCarBox input {
	font-weight: bold;
	flex: 4;
	color: #777;
	height: 100%;
	border: none;
	padding: 0;
	font-size: 1rem;
}

/* .pageContainer {
	width: 95%;
	margin-left: 5%;
	position: absolute;
	top: 0;
} */

.absoluteLogo {
	position: absolute;
	top: 3px;
	left: 2%;
	z-index: 2;
}

.absoluteLogo img {
	max-width: 400px;
}

.smallFixedBurger {
	display: none;
}

.magasinPage {
	position: relative;
}

.brandBar {
	max-width: 100%;
}

.brandBar img {
	width: 100%;
	display: block;
}

.yellowHorizontalBar {
	background-color: var(--color-1);
	padding: 2rem 20%;
	margin-bottom: 1rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-weight: bold;
	color: var(--color-2);
}

.yellowHorizontalBar>div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.yellowHorizontalBar img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.yellowHorizontalBar p {
	text-align: center;
	margin: 0;
}

.yellowHorizontalBar b {
	text-transform: uppercase;
}


.linkImg {
	margin-left: auto !important;
}

footer {
	padding: 3% 0;
	/* color: var(--color-2); */
	font-weight: 500;
}

footer .logo_foot {
	max-width: 260px;
	min-width: 100px;
	filter: brightness(0) invert(1);
}

@media all and (max-width: 1200px) {
	footer .logo_foot {
		max-width: 12rem;
	}
}

/*footer .paiments{
	filter: brightness(0) invert(1);

}*/

footer section {
	margin-top: 1rem;
	min-height: 200px;
	align-items: flex-start;
	justify-content: space-between;
}

/* footer section > div {
    padding: 0.5rem;
} */
footer h3,
footer h4 {
	margin: 0;
	text-transform: uppercase;
	font-size: 1.7rem;
}

footer span {
	margin: 0;
	text-transform: uppercase;
	font-size: 1.7rem;
	text-align: center;
	font-weight: 700;
}

.footer3 span {
	text-align: center;
}

footer>p {
	width: 100%;
	text-align: center;
}

footer section a {
	text-transform: uppercase;
	/* color: var(--color-2); */
}

footer .newsPaiements {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

footer .newsPaiements a {
	display: block;

}

footer .newsPaiements img {
	filter: invert();
	width: 50px;
	height: auto;
}

.footer3 {
	padding: 3% 5%;
}

.footer3 h4 {
	text-align: center;
}

#serviceFooter {
	text-align: left;
}

.footer3 section {
	align-items: center;
}

@media all and (max-width: 1200px) {
	.footer3 section {
		align-items: normal !important;
		display: flex !important;
		column-gap: 2rem !important;
		justify-content: space-evenly !important;
		flex-wrap: nowrap !important;
	}
}

.news_title {
	position: relative;
}

.news_title img {
	position: absolute;
	right: 102%;
	top: 20%;
}

.theFooter .EnSavoirPlus input {
	background: none;
	border: none;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}

.theFooter .newsletter .EnSavoirPlus {
	width: 100px;
	display: flex;
	justify-content: center;
	margin-left: -2rem;
}

.theFooter .newsletter .mailfield {
	border: none;
	border-bottom: 1px solid var(--mode-text);
	background: none;
	padding-right: 2rem;
	padding: 8px 2rem 8px 8px;
	min-width: 250px;
	outline: none;
}

.footer_foot {
	background: var(--color-txt);
	color: white;
}

.footer_foot p {
	text-align: center;
}

.newsletter>div {
	display: flex;
	align-items: center;
}

.smtitle {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
}

.newsletter label {
	margin: 0 0 1rem 0;
	font-size: 1rem;
	font-weight: 300;
	text-transform: uppercase;
}

.tenPerCent {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.tenPerCent .blackcircle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--color-1);
	color: white;
	margin-right: 1rem;
	font-weight: 600;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.darkmode .tenPerCent .blackcircle {
	background: #fff;
	color: black;
}

.tenPerCent span:last-child {
	flex: 1;
}

.newsletter .mailfield {
	border-bottom: 1px solid #111;
	margin-top: 1rem;
}

.newsletter .mailfield>input {
	border: none;
	background: none;
	outline: none;
	min-width: 250px;
	padding: 8px 1rem 8px 8px;
}

.newsletter .SendNews {
	margin-left: auto;
}

.newsletter .SendNews input {
	color: var(--color-1);
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.separator {
	width: 2px;
	background-color: var(--color-2);
	height: 200px;
	opacity: 0.8;
}

.blueBtn {
	background-color: var(--color-2);
	color: white;
	height: 60px;
	width: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	font-weight: bold;
	font-style: normal;
	cursor: pointer;
}

.blueBtn.disabled {
	background-color: gray;
}

.form-input {
	flex: unset !important;
}

.form-drpLst {
	flex: unset !important;
	height: 60px;
	border: 0;
	padding: 0 5px;
	font-size: 1rem;
	color: #777;
	border: 1px solid white;
}

.form-drpLst-tlk {
	flex: unset !important;
	height: 50px;
	border: 0;
	/* padding: 0 5px; */
	font-size: 1rem;
	color: #777;
	border: 0;
}

/* Correction Telerik */
.RadComboBox.form-drpLst-tlk table {
	height: 30px !important;
}

.RadComboBox.form-drpLst-tlk .rcbInput,
.RadComboBox_MetroTouch.form-drpLst-tlk .rcbInput {
	height: 30px !important;
}

.RadComboBox.form-drpLst-tlk .rcbArrowCell a,
.RadComboBox_MetroTouch.form-drpLst-tlk .rcbArrowCell a {
	width: 40px !important;
	background-position: -5px -58px !important;
}

.RadComboBoxDropDown .rcbItem,
.RadComboBoxDropDown .rcbHovered,
.RadComboBoxDropDown .rcbDisabled,
.RadComboBoxDropDown .rcbLoading,
.RadComboBoxDropDown .rcbCheckAllItems,
.RadComboBoxDropDown .rcbCheckAllItemsHovered {
	padding: 3px 10px !important;
	font-size: 1rem !important;
	border-bottom: 1px dashed #d8d8d8;
	cursor: pointer;
	font-weight: 500 !important;
}

.RadComboBox_MetroTouch.form-drpLst-tlk .rcbFocused .rcbArrowCell {
	border-color: #828282 !important;
	background-color: #828282 !important;
}

.RadComboBox_MetroTouch.form-drpLst-tlk .rcbFocused .rcbInputCell {
	border-color: #828282 !important;
}

.RadComboBoxDropDown_MetroTouch .rcbSeparator {
	margin-top: 0 !important;
	border-bottom: 0 !important;
	color: white !important;
	background-color: var(--color-1) !important;
	font-weight: 400 !important;
	font-size: 0.8rem !important;
	padding: 2px 6px !important;
}

.RadComboBox_MetroTouch.form-drpLst-tlk .rcbInput {
	font-weight: 900 !important;
	font-size: 1rem !important;
	text-transform: uppercase !important;
	font-style: normal !important;
	text-size-adjust: 100%;
}

/* Bar voiture dans catalogues et sous-page */
.greyImgBackground {
	background: url(/images/fond.jpg);
	background-size: cover;
}

.currentVehicule {
	/* width: 100%; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	flex-wrap: wrap;
}

.currentVehicule>img {
	max-height: 80px;
	object-fit: contain;
}

.currentVehicule .carNameBox {
	flex: 2;
	/* flex: 1 1 30%; */
	max-width: 50%;
	margin-left: 2rem;
}

.currentVehicule h1 {
	margin: 0;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: 600;
	color: #444;
	min-width: 240px;
	margin-right: 1rem;
}

.currentVehicule h2 {
	margin: 0;
	/* margin-left: 1rem; */
	font-size: 1.2rem;
	font-weight: 600;
	color: #444;
	padding-right: 0.8vw;
}

.currentVehicule h4 {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #444;
}

.currentVehicule h4:first-child {
	min-width: 240px;
	margin-right: 1rem;
}

/* .currentVehicule h4:last-child {
	margin-left: 1rem;
} */

.btnBoxCurrentVehicle {
	display: flex;
	margin-left: 1rem;
}

.btnBoxCurrentVehicle div,
.btnBoxCurrentVehicle a {
	width: 100px;
	height: 70px;
	border: 1px #707070 solid;
	color: var(--color-1);
	/* background-color: white; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	text-align: center;
	padding: 0.25rem 0;
	transition: 0.3s ease;
	border-radius: 2px;
	margin: 1rem 0.5rem;
}

.btnBoxCurrentVehicle .act {
	background: rgba(255, 255, 255, 0.5);
	border: 3px var(--color-2) dotted;
	height: calc(75px - 4px);
}

.btnBoxCurrentVehicle>*:last-child {
	/*border-right: 2px var(--color-2) solid;*/
}

.btnBoxCurrentVehicle div:hover,
.btnBoxCurrentVehicle a:hover {
	border: 1px var(--color-1) solid;
	box-shadow: 0 0 0 2px var(--color-1);
}

.btnBoxCurrentVehicle div img,
.btnBoxCurrentVehicle a img {
	width: 40px;
	object-fit: contain;
}

.btnBoxCurrentVehicle div span,
.btnBoxCurrentVehicle a span {
	width: 100%;
	font-size: 0.72rem;
	font-weight: bold;
	text-align: center;
	/* color: gray; */
}

/* .btnBoxCurrentVehicle img {
	height: 40px;
} */

/* .btnBoxCurrentVehicle {
	color: gray;
} */

.btnBoxCurrentVehicle .magasinierBtn img {
	width: 42px;
}

.magasinier {
	padding: 2% 5%;
	border-top: 5px var(--color-2) solid;
	border-bottom: 5px var(--color-2) solid;
	background: var(--grey-theme);
}

.magasinier article {
	text-transform: uppercase;
	display: flex;
	flex-wrap: wrap;
}

.magasinier article label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8px 1%;
	padding: 1%;
	width: 29%;
	background: white;
	border-radius: 4px;
	cursor: pointer;
}

.magasinier article label:hover {
	background: var(--color-2);
	transition: all 0.3s ease;
	color: white;
}

.magasinier article label b {
	margin: 0 8px;
}

.magasinier article input {
	height: 30px;
	width: 30px;
	color: inherit;
}

.magasinier article input[type="number"] {
	width: 60px;
	background-color: transparent;
	text-align: center;
	font-size: 1.1rem;
	border: none;
	border-bottom: 1px solid #000;
	outline: none;
	font-weight: bold;
}

.magasinier article input[type="checkbox"] {
	width: 42px;
	cursor: pointer;
}

.magasinier article small {
	margin-left: 1rem;
}

.magValidBox {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.magValidBox .blueBtn {
	width: auto;
	padding: 0 1rem;
	font-size: 1.2rem;
	border: 0;
	height: 50px;
}

.magValidBox label a {
	text-decoration: underline dotted;
	margin: 0 2px;
}

.magValidBox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 6px;
}

.magValidBox label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.filArianne,
.filArianne>* {
	display: flex;
	align-items: center;
	column-gap: .5rem;
	color: gray;
	font-size: 0.9rem;
	margin-top: 1rem;
}

.filArianne .firstImg {
	margin-left: 5%;
}

.filArianne .fa-chevron-right {
	margin: 0 12px 0 4px;
}

.filArianne img {
	height: 1em;
	filter: grayscale(1) brightness(0.7);
	margin-right: 4px;
}

.filArianne .fa-book-open {
	margin-top: 4px;
	margin-right: 4px;
	font-size: 1em;
}

.filArianne a label {
	cursor: pointer;
}

.EmptyListBox {
	padding: 40px 2.2% 60px;
	font-size: 1rem;
}

.EmptyListBox .elb1 {
	font-size: 1em;
	font-weight: 600;
}

.EmptyListBox .elb2 {
	font-size: 0.9em;
	font-weight: 400;
}

.refFinder {
	display: flex;
	justify-content: flex-end;
	position: relative;
	border: 1px gray solid;
	border-radius: 8px;
	/* overflow: hidden; */
	width: 600px;
	max-width: 90vw;
	/* margin-bottom: 0.5rem; */
}

.refFinder div {
	display: flex;
	align-items: center;
	background-color: white;
	flex: 1;
	margin-left: 8px;
	/* margin-right: 5%; */
	/* border: 1px gray solid; */
}

.refFinder .blueBtn {
	height: 55px;
	width: 55px;
	color: white;
	/* box-shadow: 0 0 0 1px var(--color-1); */
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	/* background: var(--color-1); */
	background: white;
}

.refFinder input {
	padding: 0;
	border: none;
	height: 50px;
	width: 100%;
	/* text-transform: uppercase; */
	font-size: 1rem;
	outline: none;
}

.refFinder i,
.refFinder img {
	/* color: rgb(245, 243, 243); */
	color: var(--color-1);
	margin: 0 1rem;
}

.sticky {
	position: sticky;
	top: 0;
	z-index: 1;
}

.filterBar {
	background-color: var(--grey-theme);
	display: flex;
	justify-content: space-between;
	padding: 8px 5%;
	align-items: center;
}

.catalogueNav {
	position: relative;
	display: flex;
}

.catalogueNav p {
	margin-left: 3rem;
	color: #aaa;
}

.yellowBtn {
	background-color: var(--color-1);
	color: var(--color-2);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	padding: 0.5rem;
	font-weight: 700;
}

.yellowBtn i {
	margin: 0 0.5rem;
}

.filterBtn {
	background-color: var(--color-2);
	color: white;
	text-transform: uppercase;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	cursor: pointer;
}

.filterBtn i {
	margin: 0 0.5rem;
}

.filters {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: var(--color-1);
}

.filters .tri select {
	padding: 0;
	border: none;
	color: gray;
	height: 50px;
	width: 320px;
	text-transform: uppercase;
	font-size: 1rem;
	margin-left: 1rem;
	padding-left: 1rem;
}

.navYBtn {
	position: absolute;
	background: white;
	height: fit-content;
	top: 2rem;
	width: 300px;
	z-index: 1;
	border: 1px gray solid;
}

.backCatalogue {
	padding: 0 5%;
}

.backCatalogue a {
	color: grey;
	display: flex;
	align-items: center;
	margin: 0.5rem 0;
}

.backCatalogue i {
	margin: 0 0.5rem;
}

.messageGlobal {
	position: fixed;
	background-color: white;
	padding: 3rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
}

.messageGlobal i {
	position: absolute;
	font-style: normal;
	font-weight: bold;
	font-size: 1rem;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.magasinPage {
	position: relative;
	/* position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	z-index: 10; */
}

.currentpage {
	background: var(--color-2);
}

.currentpage .hoverItemMenu {
	display: flex;
	width: 5vw;
	justify-content: center;
	align-items: center;
}

.currentpage p {
	display: none;
}

.navYellowBar .currentpage i {
	color: var(--color-1) !important;
}

.currentpage:hover p {
	display: block;
}

.currentpage:hover .hoverItemMenu {
	justify-content: space-between;
}

.labelSearch {
	margin-right: 8rem;
    margin-bottom: 1rem;
}

.labelSearch label {
	color: var(--color-1);
    font-weight: 700;
}

.filterAside {
	display: none;
}

.filterWrap {
	flex-direction: unset !important;
    justify-content: space-between;
}

#marqueModele .rcbInputCell.rcbInputCellLeft,
#marqueType .rcbInputCell.rcbInputCellLeft,
#marqueModele .RadComboBox_MetroTouch .rcbArrowCell,
#marqueType .RadComboBox_MetroTouch .rcbArrowCell {
	background: #7f7f7f;
}

@media all and (max-width: 1550px) {

	.btnBoxCurrentVehicle .magasinierBtn img {
		width: 20px;
	}



	.btnBoxCurrentVehicle div,
	.btnBoxCurrentVehicle a {
		width: 70px;
		height: 40px;
	}

	.btnBoxCurrentVehicle .act {
		height: calc(65px - 4px);
	}

	.btnBoxCurrentVehicle div img,
	.btnBoxCurrentVehicle a img {
		width: 20px;
	}

	.btnBoxCurrentVehicle div span,
	.btnBoxCurrentVehicle a span {
		font-size: 0.6rem;
	}

	.btnBoxCurrentVehicle .fa-car {
		font-size: 2.3em;
	}

	.currentVehicule h2,
	.currentVehicule h3 {
		font-size: 1.2rem;
	}
}

@media all and (max-width: 1450px) {
	.yellowHorizontalBar {
		padding: 1rem 10%;
	}

	footer {
		/*padding: 0 1% 0 2%;*/
	}

	/* footer .flex1 {
        flex: 2;
    } */
	.footerInfos {
		flex-wrap: wrap;
	}
}

@media all and (max-width: 1200px) {
	.btnBoxCurrentVehicle {
		width: 100%;
		justify-content: center;
		margin: 0.5rem 0;
	}

	.absoluteLogo img {
		max-width: 300px;
	}

	.navYellowBar {
		width: 7%;
	}

	/* .pageContainer {
		width: 93%;
		margin-left: 7%;
	} */

	.bonPlanBar {
		padding: 0 4% 0 23%;
	}

	.bonPlanBar>img {
		left: 25%;
	}

	.bonPlanBar label {
		font-size: 1.2rem;
	}

	footer section {
		flex-wrap: wrap;
	}

	.orderA {
		flex: unset;
		width: 100%;
		border-bottom: 1px var(--color-2) solid;
		margin-bottom: 1rem;
	}

	.orderA .flex {
		justify-content: space-evenly;
	}

	footer .separator {
		display: none;
	}

	.orderD {
		flex: unset;
		width: 100%;
		padding-left: 0;
		margin-bottom: 2rem;
	}

	.orderB,
	.orderC {
		order: 1;
	}
}

@media all and (max-width: 1100px) {
	.settingsCarBox {
		margin-left: 2%;
	}

	.settingsCarBox a,
	.settingsCarBox div {
		margin: 0 1%;
	}

	.btnBoxCurrentVehicle a span {
		font-size: 0.6rem;
	}

	.filterBar {
		padding: 1% 1% 1% 5%;
	}
}

@media all and (max-width: 1000px) {
	.nopaddingAt1000 {
		margin: 0;
		padding: 0;
	}
}

@media all and (max-width: 990px) {
	nav a:hover .hovDeco {
		display: none;
	}

	.navYellowBar {
		display: none;
	}

	.settingsCarBox input {
		font-size: 0.9rem;
	}

	.settingsCarBox {
		flex-wrap: wrap;
		margin-left: 0;
		margin-bottom: 2em;
	}

	.settingsCarBox a,
	.settingsCarBox div {
		width: 80%;
	}

	.settingsCarBox div.blueBox {
		order: 3;
		width: 80%;
		margin-top: 1rem;
	}

	.fsMenu nav :is(a, p) {
		font-size: 1.5rem;
	}

	.fsMenu {
		overflow: auto;
		display: flex;
		align-items: center;
		flex-direction: column;
		height: 100%;
		text-transform: uppercase;
		/* justify-content: center; */
	}

	.fsMenu nav {
		/* flex: 1; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	/* .pageContainer {
		width: 100%;
		margin-left: 0;
	} */

	.brandBar {
		display: none;
	}

	.bonPlanBar {
		height: 170px;
		flex-direction: column;
		padding: 1rem;
		justify-content: flex-end;
		margin-top: 2rem;
		font-weight: bold;
	}

	.bonPlanBar * {
		flex: unset;
	}

	.bonPlanBar img {
		transform: unset;
		top: -20px;
		left: 0;
		height: 70%;
	}

	.bonPlanBar label {
		font-size: 1.6rem;
		width: 100%;
		text-align: end;
	}

	.bonPlanBar input {
		font-size: 1.2rem;
	}

	.yellowHorizontalBar {
		padding: 1rem 0;
	}

	.orderA,
	.orderD {
		padding-right: 0;
	}

	.orderB,
	.orderC {
		text-align: center;
	}

	.filArianne {
		display: none;
	}

	.refFinder div {
		margin-right: 0;
	}

	.filterBar .refFinder input {
		width: 50vw;
	}

	footer>p {
		margin: 1rem 0 !important;
	}

	.magasinier label {
		font-size: 0.8rem;
	}

	.magasinier .magValidBox .blueBtn {
		font-size: 0.9rem;
	}
}

@media all and (max-width: 900px) {
	.settingsCarBox {
		display: none;
	}
}

@media all and (max-width: 850px) {
	.allAutoPiece {
		color: var(--color-1);
		font-weight: 500;
		display: flex !important;
		align-items: center;
		column-gap: 0.5rem;
		padding-left: 1rem;
		font-size: 5vw;
	}

	.allAutoPiece i {
		font-size: 25px !important;
		position: initial;
		color: var(--color-1);
	}

	.pieceTitle {
		display: block !important;
		padding: 1rem 0 2rem 0;
		width: 100%;
		text-align: center;
		text-transform: uppercase;
		color: var(--color-1);
		font-weight: 800;
		font-size: 6vw;
	}
}

@media all and (max-width: 800px) {
	.filters {
		flex-direction: column;
		height: fit-content;
		padding: 1rem;
	}

	.tri {
		flex-direction: column;
		align-items: flex-start;
	}

	.tri label {
		margin-bottom: 0.5rem;
	}

	.filters .tri select {
		margin-left: 0;
		width: unset;
		max-width: 80vw;
	}
}

@media all and (max-width: 768px) {
	.blueBar {
		height: 130px;
		justify-content: center;
	}

	.hide768 {
		display: none !important;
	}

	.blueBar>div {
		flex-direction: column;
	}

	/*.blueBar .ou {
        margin: 0.3rem !important;
    }*/

	.yellowHorizontalBar {
		display: none;
	}

	.fsMenu ul {
		padding-left: 0;
	}



	.fsMenu img {
		max-width: 80%;
	}

	.currentVehicule {
		padding: 1%;
	}

	/* .currentVehicule h2 {
		font-size: 1.4rem;
	}

	.currentVehicule h3 {
		font-size: 1.1rem;
	} */

	.currentVehicule>img {
		max-height: 50px;
	}

	/* .btnBoxCurrentVehicle div,
	.btnBoxCurrentVehicle a {
		margin: 0 4px;
	} */

	.settingsCarBox input {
		font-size: 0.7rem;
	}

	.filters .tri select {
		width: 80vw;
	}

	.filters input {
		width: 60vw;
	}

	.closeBtn {
		top: 1%;
		right: 1%;
	}
}

@media all and (max-width: 600px) {
	.smallFixedBurger {
		position: absolute;
		top: 8px;
		right: 8px;
		color: #999;
		display: block;
	}

	.settingsCarBox {
		flex-direction: column;
	}

	.settingsCarBox a,
	.settingsCarBox div {
		width: 97.5%;
		margin-top: 16px;
	}

	.settingsCarBox div.blueBox {
		order: 3;
		width: 98%;
		margin-top: 1rem;
	}

	.settingsCarBox input {
		font-size: 1em;
	}

	.city img {
		display: none;
	}

	footer>p {
		margin: 0;
	}

	.magasinier article label {
		width: 46%;
	}

	.footerMenuA {
		padding-left: 0;
		padding-right: 0;
	}

	.news_title img {
		display: none;
	}

	.newsletter .mailfield {
		flex-wrap: wrap;
	}

	#PPCmain .PPCbtns {
		width: 98% !important;
	}
}

@media all and (max-width: 500px) {

	.fsMenu nav :is(a, p) {
		font-size: 1.3rem;
	}

	.currentVehicule {
		padding: 1%;
		padding-top: 2%;
		flex-wrap: wrap;
	}

	.btnBoxCurrentVehicle {
		width: 100%;
		justify-content: center;
		column-gap: 1rem;
		margin-top: 1rem;
		flex-wrap: wrap;
	}

	.btnBoxCurrentVehicle div,
	.btnBoxCurrentVehicle a {
		margin-bottom: 8px;
	}

	.refFinder {
		justify-content: flex-start;
	}

	.filterBar .refFinder input {
		width: 63vw;
	}

	.refFinder input {
		font-size: 0.7rem;
	}

	.refFinder div {
		margin: 0 5%;
		width: 90%;
	}

	.refFinder .blueBtn {
		font-size: 1.1em;
	}

	.currentVehicule .carNameBox {
		margin-left: 10px;
		max-width: unset;
	}

	.img-fond-xs {}

	.filterAside {
		margin-bottom: 2rem !important;
		background: none !important;
		position: static !important;
		height: auto !important;
		margin: 0!important;
		z-index: inherit !important;
		border-right: none !important;
		max-height: unset !important;
		display: block;
	}

	.filterAside h4 {
		display: none;
	}

	.filterTitle {
		color: var(--color-1);
    	font-weight: 700;
	}

	#pContent_s_filtres, #pContent_s_filtres_autres {
		padding: 0 1rem;
	}

	#pContent_PnlPrtLiaisons {
		display: flex;
    	flex-direction: column;
	}

	.bgFiltersPanel {
		background: none !important;
		z-index: inherit !important;
		position: static !important;
	}
}

@media all and (max-width: 400px) {
	.magasinier article label {
		width: 96%;
	}

	.currentVehicule {
		flex-direction: column;
	}

	.absoluteLogo img {
		max-width: 70vw;
	}
}

@media all and (max-width: 350px) {
	.fsMenu nav :is(a, p) {
		font-size: 1.5rem;
	}

	.bonPlanBar {
		height: auto;
	}

	.newsletter .mailfield>input {
		min-width: unset;
		padding: 8px 1rem 8px 8px;
		width: calc(100% - 2rem);
	}
}

#PPCadCart {
	position: fixed;
	z-index: 999990;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(20, 20, 20, 0.72);
	font-size: 1em;
	display: none;
}

#PPCmain {
	position: fixed;
	z-index: 999991;
	width: 100%;
	height: 360px;
	margin-left: 0;
	font-size: 1em;
	color: #222;
}

.PPCint {
	position: relative;
	width: 94%;
	max-width: 1000px;
	height: 100%;
	background-color: #fff;
	margin: 0 auto;
	padding-top: 16px;
	border-top: 10px solid white;
	border-radius: 3px;
}

.PPCint .PPCbtnClose {
	position: absolute;
	right: 0;
	top: -8px;
	z-index: 999999;
	width: 36px;
	height: 36px;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.PPCint .PPCbtnClose img {
	width: 100%;
	height: 100%;
}

.PPCint .PPCbtnClose:hover {
	opacity: 0.5;
}

#PPCmain .PPCiframe {
	z-index: 999993;
	/* position: absolute; */
	width: 100%;
	height: 80% !important;
	margin: 0 auto;
}

#PPCmain .PPCiframe label {
	z-index: 999993;
	width: 100% !important;
	height: 100% !important;
}

#PPCmain .PPCiframe label iframe {
	z-index: 999992;
	width: 100%;
	height: 100%;
	margin: auto;
}

#PPCmain .PPCbtns {
	z-index: 999994;
	/* position: absolute; */
	width: 96%;
	height: 50px;
	padding-left: 0;
	bottom: 0;
	text-align: right;
	background-color: #fff;
}

#PPCmain .PPCbtns .fas {
	margin-right: 5px;
	font-size: 1.09em;
}

#PPCmain .PPCbtns a {
	display: inline-block;
	font-size: 0.8rem;
	text-transform: uppercase;
	height: 28px;
	line-height: 27px;
	vertical-align: middle;
	margin: 5px 0 0 0;
	padding: 8px 18px 7px;
	border: 1px solid #fff;
	border-radius: 3px;
	background-color: var(--color-2);
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#PPCmain .PPCbtns a.active {
	background-color: #ef5e18;
	color: #fff;
}

#PPCmain .PPCbtns a:hover {
	background-color: #fff;
	color: var(--color-2);
	border: 1px solid var(--color-2);
}

.surmenu-mobile {
	display: none;
}




@media (max-width: 1000px) {
	.hide1000 {
		display: none !important;
	}

	#head-menu {
		background-color: #ef5e18;
		height: 80px;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		z-index: 99;
	}

	.logo-menu-xs img {
		width: 250px;
	}

	#head-menu-cross {
		color: white;
		position: absolute;
		top: 20px;
		right: 25px;
		font-size: 35px;
	}

	#head-menu-left-catalogue {
		color: white;
		position: fixed;
		top: 21px;
		left: 6%;
		font-size: 35px;
	}

	#head-menu-left-boutique {
		color: white;
		position: fixed;
		top: 21px;
		left: 6%;
		font-size: 35px;
	}

	#head-menu-cross:hover {
		color: white;
		position: absolute;
		right: 50px;
		font-size: 35px;
		transition: all .7s;
	}

	#head-menu-cross:hover:hover {
		cursor: pointer;
		transform: rotate(90deg);
	}

	#navbar-mobile ul li {
		margin: 10px 0;
		color: #000000 !important;
	}

	#navbar-mobile ul li a {
		margin: 10px 0;
		color: #000000 !important;
	}

	.img-fond-xs {
		position: fixed;
		bottom: 0;
		right: 0;
		opacity: 0.3;
		z-index: -1;
		/* top: 23rem; */
	}
	#navbar-mobile {
		margin-top: 4rem;
	}
}

@media (max-width: 990px) {
	#PPCmain .PPCbtns a {
		font-size: 0.78em;
	}
}

@media (max-width: 770px) {
	#PPCmain .PPCbtns a {
		font-size: 0.7em;
		padding: 0 4%;
	}

	.footer3>section {
		justify-content: center;
		align-items: center;
		gap: 1.5rem;

	}

	#navbar-mobile ul li {
		font-size: 1.7rem;
		margin: 10px 0;
	}
}

.plaque_immat {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plaque_immat>div {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 4px;
	border-right: 10px solid #045cac;
	border-top: 1px solid #045cac;
	border-bottom: 1px solid #045cac;
}

.plaque_immat>div>img {
	object-fit: contain;
	background: #045cac;
	padding: 5px 0;
	width: 21px;
	height: 28px;
}

.plaque-catalog {
	background-color: #fff;
	padding: 1px 32px;
	font-size: 1.7rem;
	font-weight: 700;
	border-radius: 3px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.plaque-cart {
	display: inline-block;
	background-color: #e2e2e2;
	padding: 0 5px 1px;
	border-radius: 4px;
	border-left: 4px solid #014389;
	border-right: 4px solid #014389;
	color: black;
	font-size: 0.86em;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.identityCar {
	display: flex;
}

.allAutoPiece {
	display: none;
}

.pieceTitle {
	display: none;
}

@media (max-width: 700px) {

	#pContent_HplHome {
		font-size: 5vw;
		font-weight: 800;
	}

	.the_menu {
		display: none !important;
	}

	.plaque_immat {
		/* flex: unset;
		width: 100%; */
		display: none;
	}

	.currentVehicule .carNameBox {
		max-width: unset;
	}
	.currentVehicule h1 {
		font-size: 4vw;
	}
	.currentVehicule h3 {
		font-size: 1rem;
		margin: 4px 0;
	}

	.currentVehicule h2 {
		font-size: 0.7rem;
		margin: 4px 0;
	}

	.hideForMobile {
		display: none;
	}

	#carbrandlogo {
		width: 15%;
		height: auto;
	}

	.identityCar {
		padding: 1rem;
	}
}

.refFinder .results {
	position: absolute;
	top: 100%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	left: 0;
	right: 0;
	max-height: 300px;
	overflow: auto;
	box-shadow: 0px 4px 4px 0 #7777;
	padding: 4px;
	margin-left: 0;
}

.refFinder .results a {
	display: block;
	width: calc(100% - 6px);
	cursor: pointer;
	transition: 0.5s ease;
	padding: 3px;
	background: #fff;
	text-align: left;
}

.refFinder .results a:hover {
	background: #ddd;
}

@media (max-width: 500px) {

	.btnBoxCurrentVehicle div,
	.btnBoxCurrentVehicle a {
		margin: 0;
	}
}

.sendNa {
	border: 0;
	font-size: 0.9em;
	background-color: #ffffff;
	margin: 0;
	left: 0;
	height: 28px;
	width: 67%;
}

.sendNb {
	height: 33px;
	border: 0;
	color: #ef5e18;
	width: 25%;
	background-color: white;
	font-size: 0.74em;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s;
}

.sendNb:hover {
	background-color: #ededed;
}

.sendNc {
	font-size: 0.6em;
	color: #6c6c6c;
	padding-bottom: 8px;
}

div.rgDataDiv {
	overflow: auto !important;
}

.infoContactFooter {
	display: flex;
	flex-direction: initial;
	justify-content: center;
	align-items: center;
	column-gap: 25rem;
}

.infoServiceFooter {
	display: flex;
	flex-direction: column;
}

.mailContactFooter {
	display: flex;
	flex-direction: column;
}

@media all and (max-width: 1200px) {

	.infoContactFooter {
		flex-direction: column;
	}

	.infoServiceFooter {
		display: flex;
		flex-direction: column;
		row-gap: 0.2rem;
		text-align: left;
	}

	.mailContactFooter {
		font-size: 0.6rem;
		display: flex;
		flex-direction: column;
		row-gap: 0.5rem;
	}

	footer .newsPaiements img {
		width: 25px;
	}

	.footerMenuA {
		margin-top: 2rem !important;
	}

	.footer_foot {
		text-align: center;
	}

	.infoServiceFooter h4 {
		font-size: 1.5rem !important;
	}

	.footer_foot p {
		text-align: center !important;
		font-size: 0.6rem;
	}

	footer h4 {
		font-size: 1em;
	}
}

@media all and (max-width: 700px) {
	.paiments img {
		width: 100%;
	}
}

#homeCata {
	margin-bottom: 2rem;
}

#home-pieces-detaches {
	margin-bottom: 5rem;
}

#trstpilot {
	margin-bottom: 2rem;
}

.RadComboBoxDropDown .rcbList {
	overflow-x: hidden !important;
}


#PnlNavShop {
	/* opacity: 1 !important;  à supprimer après DEV */
	/* z-index: unset !important;  à supprimer après DEV */
	height: auto !important;
	max-width: 1900px !important;
	width: 100%;
	left: 0;
}

#PnlNavShop > .catalogueContent.menu.menuShop {
	margin: 0 !important;
	max-width: 1900px !important;
}

#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique {
	margin: 0 !important;
	position: relative !important;
	left: -49rem !important;
}

#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique > .pieceListContainer.interactive > .plBody.baseListCategorieCatalogue {
	/* opacity: 1 !important; */
	position: absolute !important;
	height: 100% !important;
	border: none !important;
	inset: unset !important;
	left: 400px !important;
	max-width: unset !important;
	width: 1500px !important;
	padding: 0 !important;
	transform: none !important;
	top: 0 !important;
}

@media screen and (max-width: 1600px) {
	#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique {
		left: -39rem !important;
	}
}

@media screen and (max-width: 1440px) {
	#PnlNavShop {
		max-width: 1400px !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop {
		max-width: 1400px !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique {
		left: -33rem !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique > .pieceListContainer.interactive > .plBody.baseListCategorieCatalogue {
		width: 950px !important;
	}
}

@media screen and (max-width: 1280px) {
	#PnlNavShop {
		max-width: 1250px !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop {
		max-width: 1250px !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique {
		left: -29rem !important;
	}
	
	#PnlNavShop > .catalogueContent.menu.menuShop > .buttonsListCatalogue.iconBoutique > .pieceListContainer.interactive > .plBody.baseListCategorieCatalogue {
		width: 855px !important;
	}
}

@media screen and (max-width: 1000px) {
	#home-pieces-detaches .site_container.titlePP h2,
	#home-pieces-detaches .site_container.titlePP h3 {
		width: 90% !important;
	}
}

