/* Google font - Jakarta Sans - Light / Regular + italic / Medium / Bold + italic */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

:root {
	--global-primary-color: #1D242D;
	--global-secondary-color: #5F021F;
	--global-burgundy-color: #aa0056;
	--global-title-color: #000000;
	--global-subtitle-color: #364250;
	--global-text-color: #949DAA;
	--global-border-color: rgba(54, 66, 80, 0.5);
	--global-img-border-radius: 16px;
	--global-btn-border-radius: 8px;
	--global-mini-border-radius: 4px;
	--global-primary-font: 'Plus Jakarta Sans', 'Arial', sans-serif;
}

/**********
 * Global *
 *********/

html {
	margin: 0px;
	padding: 0px;
	color: var(--global-text-color);
	font-size: 14px;
	border: 0px solid transparent;
	font-family: var(--global-primary-font);
}

body {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

img {
	border: none;
}

:focus {
	outline: none;
}

::-moz-focus-inner {
	border: 0;
}

.flol {
	float: left;
}

.flor {
	float: right;
}

.alc {
	text-align: center !important;
}

.alr {
	text-align: right !important;
}

.prel {
	position: relative;
}

.fin {
	clear: both;
	line-height: 0;
	height: 0;
	font-size: 1px;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-1-1-0{ flex: 1 1 0; }
.flex.sb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex.sa {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.flex.start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.flex.end,
.end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex.jcc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex.ac {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex.col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex.fb62{ flex-basis: 62%; }
.fb30{ flex-basis: 30%; }
.fb50{ flex-basis: 50%; }
.fb70{ flex-basis: 70%; }

.acc {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.ac {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.nowrap {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

#strErreur,
#strInfo {
	display: none;
}

.blocPad {
	padding: 30px;
}

.blocPadTexte {
	padding: 10px 60px 35px 60px;
}

.w70 { width: 70%; }
.w60 { width: 60%; }
.w50 { width: 50%; }
.w40 { width: 40%; }
.w30 { width: 30%; }
.padB5 { padding: 0 0 5px 0; }
.padT10 { padding: 10px 0 0 0; }

#dl-menu { display: none; }
.dib { display: block; }

.pad25 { padding: 25px; }
.pad50 { padding: 50px; }
.m0auto { margin: 0 auto; }
.pt25 { padding-top: 25px; }
.pt50 { padding-top: 50px; }
.pb25 {	padding-bottom: 25px; }
.pb50 {	padding-bottom: 50px; }
.ptb10 { padding: 10px 0; }
.ptb25 { padding: 25px 0; }
.ptb50 { padding: 50px 0; }

/**********/

h1,
h2,
h3,
h4 {
	margin: 0px;
}

/***************
*** JS ALERT ***
***************/

#popup_container {
	font-size: 14px;
	min-width: 300px;
	/* Dialog will be no smaller than this */
	max-width: 600px;
	/* Dialog will wrap after this width */
	border: solid 2px #000000;
	color: #000000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family: var(--global-primary-font);
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FFF;
	background: rgba(0, 0, 0, 0.6);
	background-color: #000000\9;
	/* IE8 */
	*background-color: #000000;
	/* IE7 */
	border-bottom: solid 1px #000000;
	cursor: default;
	padding: 0em;
	margin: 0em;
	padding: 5px 0;
}

#popup_content {
	background: #373634 0 0 repeat;
	padding: 1em 1.75em;
	margin: 0em;
	color: #FFF;
}

#popup_content input {
	font-size: 14px;
	color: #FFF;
	border: solid 1px #000000;
	padding: 5px;
	text-transform: uppercase;
	background: none;
	cursor: pointer;
	margin: 3px 10px;
	display: block\9;
	/* IE8 */
	*display: block;
	/* IE7 */
	width: 10%\9;
	/* IE8 */
	*width: 10%;
	/* IE7 */
}

#popup_content.alert #popup_message {
	background: url('/imgs/picto.info.png') 0 0 no-repeat;
}

#popup_content.confirm #popup_message {
	/*background: url('/imgs/picto.important.png') 0 0 no-repeat; */
	background: url('/imgs/picto.info.png') 0 0 no-repeat;
}

#popup_content.prompt #popup_message {
	background: url('/imgs/picto.help.png') 0 0 no-repeat;
}

#popup_message {
	padding-left: 48px;
	min-height: 32px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

.nav .encours,
.nav a.link:hover {
	background: #000;
	color: #fff;
}

.nav {
	display: table;
	margin: 0 auto;
}

.nav a {
	color: #322a43;
	display: block;
	float: left;
	font-size: 12px;
	margin: 0 5px;
	padding: 7px 10px;
}

.encours {
	background: #000;
	color: #fff;
	padding: 3px;
	text-align: center;
}

.nav span {
	display: block;
	float: left;
	padding: 0 5px;
}

a.under {
	text-decoration: underline;
}


/********************
**** LOADING GIF ****
********************/


#loadingGif {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('/imgs/picto/Preloader_11.gif') center no-repeat #ffffff;
}


/********************
**** BACK TO TOP ****
********************/

#returnOnTop {
	background: url('/imgs/picto/picto.backtotop.png') no-repeat;
	bottom: 1%;
	cursor: pointer;
	display: none;
	filter: alpha(opacity=50);
	/* IE < 8 */
	height: 48px;
	opacity: 0.5;
	position: fixed;
	right: 1%;
	width: 48px;
}

#returnOnTop:hover {
	filter: alpha(opacity=100);
	/* IE < 8 */
	opacity: 1;
}


/********************
**** GO TO CART ****
********************/

#goToCart {
	background: rgba(0, 0, 0, 0.7) url('/imgs/picto/picto.gotocart.png') no-repeat;
	top: 4.5%;
	margin-top: -24px;
	cursor: pointer;
	display: none;
	height: 40px;
	position: fixed;
	right: 1%;
	color: #FFF;
	padding: 0 10px 0 50px;
	z-index: 10000;
	line-height: 18px;
	text-align: center;
}

#goToCart:hover {
	filter: alpha(opacity=100);
	/* IE < 8 */
	opacity: 1;
}


/*************
**** BODY ****
**************/

.reg_content {
	width: 98%;
	max-width: 1600px;
	display: block;
	margin: 0 auto;
}

/*************
**** LOGO ****
**************/

a.logo {
	display: block;
	font-size: 21px;
	font-style: normal;
	text-transform: uppercase;
	padding: 28px 0;
	/* padding: 36px 0; */
}

a.logo strong {
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 700;
}

a.logo strong span {
	font-family: var(--global-primary-font);
	font-weight: 300;
}


/*************
***** TOP ****
**************/


/***** Langue ******/

.langues {
	padding: 7px 0;
}

.langues a {
	float: left;
	display: block;
	color: #2c2660;
	font-size: 12px;
	height: 12px;
	width: 18px;
	margin: 0 4px;
}

.langues a.fr.select,
.langues a.fr:hover {
	background: url('/imgs/picto/picto.langues.png') 0 0 no-repeat;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.langues a.fr {
	background: url('/imgs/picto/picto.langues.png') 0 -13px no-repeat;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.langues a.en.select,
.langues a.en:hover {
	background: url('/imgs/picto/picto.langues.png') 0 -26px no-repeat;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.langues a.en {
	background: url('/imgs/picto/picto.langues.png') 0 -39px no-repeat;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}


/* Range sliders / bars */
.product_list_filter.range_sliders {
	padding-top: 25px;
}

.product_list_filter .filter_title {
	font-size: 20px;
	margin-left: -6px;
	display: block;
	padding-bottom: 10px;
	font-weight: 500;
	color: var(--global-subtitle-color);
}

.rangeSlider {
	margin: 25px auto;
}

.rangeSlider strong {
	display: block;
	font-weight: 400;
	color: var(--global-subtitle-color);
	margin-left: -6px;
}

.rangeSlider .irs-from, 
.rangeSlider .irs-to,
.rangeSlider .irs-single {
	font-size: 12px;
	top: 90%;
}

.color-1 .irs-from,
.color-1 .irs-to {
	background: #000;
}

.color-1 .irs-from::after,
.color-1 .irs-to::after {
	border-top-color: #000;
}

.color-2 .irs-from,
.color-2 .irs-to {
	background: #9D1B5F;
}

.color-2 .irs-from::after,
.color-2 .irs-to::after {
	border-top-color: #9D1B5F;
}

.color-2 .irs-bar {
	background-image: url(/imgs/sprite-skin-modern-2.png);
}

.color-1 .irs-from::after,
.color-1 .irs-to::after,
.color-2 .irs-from::after,
.color-2 .irs-to::after {
	display: none;
}

.rangeSlider .irs-with-grid .irs-grid {
	display: none;
}
 
.rangeSlider .irs-slider {
	background: #ffffff;
	border: 1px solid lightgray;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	top: 21px;
}

/** TEL **/

.blocContact {
	padding: 5px 0;
	background-color: var(--global-burgundy-color);
	/*background: url('/imgs/maxevan-global-page-top-background.jpg') fixed center center;*/
}

.blocContact .contentTel {
	background: url('/imgs/picto/picto.phone.png') no-repeat scroll 0 4px;
	padding: 5px 0 5px 25px;
}

.blocContact .contentMail {
	background: url('/imgs/picto/picto.mail.png') no-repeat scroll 0 5px;
	padding: 5px 20px 5px 25px;
}

.blocContact .contentCatalogue {
	padding: 5px 0 5px;
	color: #FFF;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	vertical-align: middle;
}

.blocContact .contentTel span,
.blocContact .contentMail span,
.blocContact .contentCatalogue a {
	display: block;
	color: #FFFFFF;
	font-size: 13px;
	font-family: var(--global-primary-font);
}

/** ACCOUNT **/
.blocAccount {
	position: relative;
}

.blocAccount:hover .blocAccountMenu {
	display: block;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in;
	-moz-transition: opacity 0.2s ease-in;
	-o-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
}

.blocAccountMenu {
	display: none;
	opacity: 0;
	background: #FFFFFF;
	box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.1);
	padding: 20px;
	width: 128px;
	border-radius: var(--global-btn-border-radius);
	position: absolute;
	bottom: -90px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	-webkit-transition: opacity 0.2s ease-in;
	-moz-transition: opacity 0.2s ease-in;
	-o-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
}

.blocAccountMenu a {
	font-style: normal;
	font-weight: 400 !important;
	font-size: 12px;
	line-height: 15px;
	display: block;
	padding-left: 25px;
	background-size: auto;
	background-position: 0 center;
	background-repeat: no-repeat;
}

.blocAccountMenu > span:not(:last-of-type) {
	padding-bottom: 20px;
}

.blocAccountMenu .disconnect a {
	color: #FF2020;
	background-image: url('/imgs/picto/login-logout-arrow.png');
}

.blocAccountMenu .setting a {
	background-image: url('/imgs/picto/engrenage.png');
}

/*.blocAccount .contentCodeclient {
	background: url('/imgs/picto/picto.hashtag.png') no-repeat scroll 0 4px;
	padding: 3px 0 3px 16px;
	margin: 0 20px;
}

.blocAccount .contentDiscount {
	background: url('/imgs/picto/picto.discount.png') no-repeat scroll 0 4px;
	padding: 3px 0 3px 16px;
	margin: 0 20px;
}*/

.blocAccount .contentUser {
	background: url('/imgs/picto/user.png') no-repeat left center / auto;
	padding: 15px 0 15px 40px;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
	display: block;
}

/*.blocAccount .contentDeco {
	background: url('/imgs/picto/picto.deconnexion.png') no-repeat scroll 0 4px;
	padding: 3px 0 3px 16px;
	margin: 0 20px;
}*/

.blocAccount .contentCodeclient span,
.blocAccount .contentDiscount span,
.blocAccount .contentUser span,
.blocAccount .contentDeco span {
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
}

/** GOLD **/
.goldPrice {
	padding-bottom: 20px;
	margin-left: auto;
}

/* .goldPriceItem:first-child {
	padding-right: 50px;
} */

.goldPrice strong {
	display: inline-block;
	padding: 0 10px 0 30px;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	vertical-align: middle;
}

.goldPrice span {
	display: inline-block;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	color: var(--global-primary-color);
}

.padR20 {
	padding-right: 20px;
}


/** MENU **/
.reg_topGauche {
	text-align: center;
}

.reg_topGauche img {
	width: 100%;
}

/*.reg_topGauche {
	flex: 1 1 0;
	flex-basis: 15%;
}

.reg_topMid {
	flex: 1 1 0;
	flex-basis: 75%;
}

.reg_topDroit {
	flex: 1 1 0;
	flex-basis: 10%;
}*/

.reg_topGauche a,
.reg_topGauche img {
	display: inline-block;
	max-width: 300px;
}

.reg_contentTop.scroll {
	position: fixed;
	z-index: 1000;
	background-color: #fff;
	width: 100%;
	top: 0;
	box-sizing: border-box;
	left: 0;
}

.reg_contentTop .menuTab {
	display: table;
	margin: 0 auto;
}

#formSearch input.std {
	height: 40px;
	margin: 0;
	box-sizing: border-box;
	padding: 0 25px;
	background: #F9FBFC url('/imgs/picto/search-loupe.png') no-repeat 15px 50% / auto;
	border: 2px solid #F1F1F3;
	text-indent: 18px;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #9CA1AB;
	border-radius: var(--global-btn-border-radius);
	max-width: 305px;
	width: 100%;
}
#formSearch .bouton {
	border-radius: 0 8px 8px 0;
}

.connexion {
	padding-left: 25px;
}

/*
.reg_contentTop .menuTab2 {
	display: table;   
	margin: 0 auto;
	padding: 10px 0;
}
*/
.reg_contentTop .menuRow {
	display: table-row;
}

.reg_contentTop .menuCell {
	display: table-cell;
	text-align: center;
}
.reg_contentTop .menuTab .menuRow .menuCell.resp {
	display: none;
}

.menuCell ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	background-color: #AA0056;
	z-index: 999;
}

.menuCell ul li {
	padding: 10px;
}

.menuCell a:hover + ul,
.menuCell ul:hover {
	display: block;
}
.reg_contentTop .menuTab .menuCell li a{
	color: #FFF;
}

.contentMenuTop {
	padding: 40px 0;
}

.txtb2b {
	padding: 0 0 20px 0;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.txtb2b span {
	text-transform: uppercase;
	font-size: 22px;
}

.gar {
	padding: 5px 0 0 0;
}

.gar strong {
	display: inline-block;
	background: #AAA;
	text-transform: uppercase;
	font-size: 14px;
	padding: 3px 8px;
	color: #FFF;
	margin: 0 0 3px 0;
}

.reg_contentTop .menuTab .menuCell a {
	position: relative;
	display: inline-block;
	outline: none;
	color: var(--global-primary-color);
	margin: 0 20px;
	text-align: center;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	white-space: nowrap;
}

.reg_contentTop .menuTab2 .menuCell a {
	position: relative;
	display: inline-block;
	outline: none;
	color: #000000;
	font-size: 12px;
	margin: 0 30px;
	text-align: center;
	font-family: var(--global-primary-font);
}

.reg_contentTop .menuCell a:hover {
	color: #aaa;
}

.reg_contentTop .menuCell a :hover,
.reg_contentTop .menuCell a :focus {
	outline: none;
	color: #aaa;
}

.reg_contentTop .menuCell a:hover,
.reg_contentTop .menuCell a.sel {
	color: #aaa;
}

.reg_topGauche a {
	display: block;
	margin: 0 auto;
}

.reg_topGauche img {
	display: block;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}


/** MENU COMPTE **/

.round {
	width: 30px;
	height: 30px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
	background: #aaa;
}

.menuAccount {
	float: left;
	width: 10%;
	padding: 10px 0 0 0;
}

a.menuAcc {
	display: block;
	outline: none;
	color: #000000;
	padding: 10px 0;
	font-size: 14px;
	font-family: var(--global-primary-font);
	font-weight: 700;
}

a.menuAcc:hover,
a.menuAcc.sel {
	text-decoration: underline;
}


.dashboard,
.orders,
.addresses {
	padding: 0 0 150px 0;
}

.dashboard #commandes a.bouton,
.dashboard #commandes span.bouton {
	font-size: 13px;
}

.dashboard #commandes a.bouton.fac,
.dashboard #commandes span.bouton.fac {
	width: 100%;
	box-sizing: border-box;
}

.dashboard #commandes span.bouton {
	background-color: lightgrey;
	cursor: not-allowed;
}

a.subMenu {
	text-indent: 20px;
	font-weight: normal;
	font-family: var(--global-primary-font);
	color: #313131;
}

/** DASHBOARD **/

.reg_content.dashboard {
	max-width: 1366px;
}

.dashboard h3,
.orders h3,
.addresses h3 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 18px;
	font-weight: 700;
	padding: 30px 0;
	text-transform: uppercase;
}
.dashboard h3,
.dashboard h4{
	text-align: center;
}

.dashboard h4,
.orders h4,
.addresses h4 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	font-style: italic;
	font-weight: normal;
	padding: 5px 0 35px;
}

.dashboard p {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	padding: 10px 0;
	text-align: justify;
}


.addresses .tabAdd {
	display: table;
}

.addresses .tabAdd .tabAddRow {
	display: table-row;
}

.addresses .tabAdd .tabAddRow .tabAddCell {
	display: table-cell;
	padding: 0 40px;
}

.addresses strong {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
	padding: 10px 0;
}

.addresses span {
	color: #aaa;
	display: block;
	line-height: 22px;
	font-family: var(--global-primary-font);
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	padding: 10px 0 30px 0;
}


/** PANIER **/

.panierPanier {
	padding-left: 25px;
}

.panTaille {
	padding: 0 0 5px 0;
}

.panTaille span {
	font-size: 12px!important;
	line-height: 30px;
}

.reg_topDroit .panier {
	background: url('/imgs/picto/basket.png') no-repeat -15% center / auto;
	padding: 15px 0 15px 30px;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
	display: block;
}

.reg_topDroit strong {
	display: block;
	color: #000000;
	font-family: var(--global-primary-font);
	font-weight: normal;
	font-size: 13px;
}

.reg_topDroit .panier cite {
	display: block;
	color: #000000;
	font-family: var(--global-primary-font);
	font-weight: 300;
}

.reg_topDroit .panier b {
	display: block;
	color: #000000;
	font-family: var(--global-primary-font);
	font-size: 12px;
	font-weight: normal;
}

.paypal-container {
	min-height: 450px;
}

.reg_topDroit .login_bouton {
	background: url('/imgs/picto/user.png') no-repeat -15% center / auto;
	padding: 15px 0 15px 30px;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #000000;
}

/*************
***** ARTICLE ****
**************/

.article{
	max-width: 1000px;
}
.article h1{
	padding-top: 30px;
	font-weight: 500;
	font-size: 35px;
	text-align: center;
	color: var(--global-burgundy-color);
}
.article h2{
	padding-top: 20px;
	font-weight: 500;
	font-size: 35px;
	color: var(--global-burgundy-color);
}
.article h3{
	padding-top: 30px;
	font-weight: 500;
	font-size: 25px;
	color: var(--global-burgundy-color);
}
.article p{
	line-height: 28px;
	word-spacing: normal;
	color: var(--global-primary-color);
	font-size: 16px;
}
.article a:not(.bouton){
	text-decoration: underline;
}
.article img{
	display: block;
	width: 70%;
	margin: 0 auto;
}
.article li{
	padding-bottom: 10px;
	color: var(--global-primary-color);
}

/*************
***** BOT ****
**************/

/** Part 1 **/

.contentMenuBot {
	padding: 0;
}

.blocBot1 {
	background: #FFF;
	margin: 40px 0 0 0;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	color: #000;
}
.blocBot1 .menuTab {
	display: table;
	margin: 0 auto;
}
.blocBot1 .menuRow {
	display: table-row;
}
.blocBot1 .menuCell {
	display: table-cell;
	text-align: center;
	vertical-align: top;
}
.blocBot1 .menuCell strong{
	font-size: 16px;
	display: block;
	padding-bottom: 10px;
	color: #000;
}
.blocBot1 .menuTab .menuRow .menuCell.resp {
	display: none;
}
.blocBot1 .menuCell a {
	position: relative;
	display: inline-block;
	outline: none;
	color: #000;
	font-size: 12px;
	text-align: center;
	font-family: var(--global-primary-font);
	padding: 0 0 10px 0;
}
.blocBot1 .menuCell a:hover {
	color: #999999;
}

.blocBot{
	text-align: left;
	padding: 20px 30px;
}

/** Part 2 **/

.blocBot2 {
	background: var(--global-burgundy-color);
	color: #FFFFFF;
	padding: 10px 0;
}
.blocBot2 a {
	font-family: var(--global-primary-font);
	font-weight: 700;
	font-size: 13px;
}
.blocBot2 span {
	display: table;
	margin: 0 auto;
	font-family: var(--global-primary-font);
	font-size: 11px;
	color: #FFFFFF;
}
.blocBot2 span b {
	font-family: var(--global-primary-font);
	font-size: 13px;
	font-weight: normal;
}
/* Reprend l'apparence de .blocBot2 a sur un element non cliquable */
.blocBot2 .credit {
	display: inline;
	margin: 0;
	font-family: var(--global-primary-font);
	font-weight: 700;
	font-size: 13px;
}

/*******************
***** CONNEXION ****
*******************/

/** TITRE **/
.proSpace .introduction {
	padding-bottom: 25px;
}

.proSpace .introduction h1 {
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 60px;
	color: var(--global-primary-color);
}

.proSpace .introduction p {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}

.proSpace .formContent {
	width: 100%;
	box-sizing: border-box;
}

.introduction h2 {
	color: #000000;
	display: block;
	letter-spacing: 2px;
	font-family: var(--global-primary-font);
	font-size: 25px;
	padding: 40px 0 15px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: normal;
}

.proSpace input.bouton {
	width: 100%;
	margin-top: 15px;
}

.proSpace .no_account {
	text-transform: capitalize;
}

.proSpace .no_account a {
	color: var(--global-primary-color);
}

.proSpace .proSpace_image img {
	border-radius: 40px;
	max-width: 100%;
}

/** TABS **/
.tabs {
	border: 1px solid #ddd;
	position: relative;
	margin-top: 5rem;
	margin-bottom: 3rem;
}

.tabs__section {
	margin: 1rem;
}

.tabs__link {
	display: inline-block;
	border: 1px solid #ddd;
	text-decoration: none;
	padding: .35rem .75rem;
	color: #B3B3B3;
	background: #E7E7E7;
	margin-left: .25rem;
	font-size: 1.3em;
	letter-spacing: 0.5px;
	font-family: var(--global-primary-font);
	font-weight: 400;
}

.tabs__link:not(.tabs__link--active):hover {
	color: var(--global-primary-color);
}

.tabs__link:first-child {
	margin-left: 0;
}

.tabs__link--active {
	border-bottom-color: transparent;
	background: var(--global-primary-color);
	color: #fff;
	position: relative;
}

.tabs__link--active:after {
	content: '';
    position: absolute;
    right: 50%;
	bottom: -10px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #000;
    clear: both;
}

/** CONTENT **/

.width30 {
	width: 30%;
}

.width50 {
	width: 50%;
}

.width70 {
	width: 70%;
}

.marginAuto {
	margin: 0 auto;
}


/** FORM **/

.formContent {
	background-color: #FFFFFF;
	padding: 10px 0;
	width: 50%;
	margin: 0 auto;
}

.formAccount {
	background-color: #FFFFFF;
	width: 60%;
	margin: 0 auto;
}


.formPass {
	background-color: #FFFFFF;
	padding: 10px 0;
	width: 50%;
}

.products_search_and_sorting .formSel {
	width: 30%;
	display: table;
}

.products_search_and_sorting .formSel input.std {
	width: 75%;
	border-radius: 8px 0 0 8px;
}

.home .formSel {
	padding: 20px 0;
}

.home .width25 img {
	width: 100%;
}

.home .blocContentImg {
	min-height: 200px;
}

input.std,
select.std,
div.std {
	display: block;
	color: var(--global-text-color);
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	border: 2px solid #F1F1F3;
	width: 100%;
	padding: 18px 15px;
	border-radius: var(--global-btn-border-radius);
	font-family: var(--global-primary-font);
	box-sizing: border-box;
}

input.std.min {
	text-indent: 10px;
	margin: 0 auto;
	padding: 0;
	width: 40px;
	height: 40px;
	font-size: 11px;
}

select.std {
	background: url('/imgs/picto/chevron-down.png') no-repeat 97% center / auto;
	-webkit-appearance: none;
   	-moz-appearance:    none;
   	appearance:         none;
   	color: #5F6670;
}

select.std option {
	padding: 3px 10px;
}

textarea.std {
	display: block;
	height: 120px;
	font-size: 14px;
	border: solid 1px #dddddd;
	width: 100%;
	text-indent: 10px;
	padding: 10px 0;
	margin: 10px 0 0 0;
	color: #000000;
	font-family: var(--global-primary-font);
	font-weight: 300;
}

label.std {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--global-primary-color);
	opacity: 0.7;
	display: block;
	margin-bottom: 5px;
}

label.radio {
	cursor: pointer;
}

fieldset.checkbox {
	padding: 2px 0;
	margin: 0;
}

tr.livraison {
	background: url('/imgs/img-livraison.jpg') left 22px no-repeat;
}

label.checkbox {
	cursor: pointer;
	padding: 0 0 0 5px;
}

.blocSelect {
	padding: 9px 0px;
}

.checkbox input.none {
	display: none;
}

.checkbox span {
	background: url('/imgs/picto/picto.checkbox.png') 0 1px no-repeat;
	display: block;
	height: 15px;
	width: 18px;
	cursor: pointer;
}

a.lienCheckbox {
	font-family: Gotham-Bold, Arial, sans-serif;
	text-decoration: underline;
}

a.lienCheckbox:hover {
	color: #dddddd;
}

fieldset {
	border: none;
	padding: 15px 0;
	margin: 0;
}

.flol .padField,
.flor .padField {
	padding: 15px 30px 15px 0;
}

a.bouton,
input.bouton,
button.bouton,
span.bouton {
	border: none;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-transform: capitalize;
	cursor: pointer;
	color: #FFFFFF;
	margin: 0 auto;
	padding: 15px 30px;
	display: inline-block;
	text-align: center;
	background-color: var(--global-primary-color);
	font-family: var(--global-primary-font);
	border-radius: var(--global-btn-border-radius);
	-moz-transition: background-color 0.25s ease;
	-webkit-transition: background-color 0.25s ease;
	transition: background-color 0.25s ease;
}

a.bouton.big {
	margin-top: 15px;
	font-weight: 700;
	background-color: var(--global-burgundy-color);
}
a.bouton.min {
	font-size: 12px;
	padding: 5px 15px;	
}


a.bouton:hover,
input.bouton:hover,
button.bouton:hover {
	background-color: var(--global-secondary-color);
	-moz-transition: background-color 0.25s ease;
	-webkit-transition: background-color 0.25s ease;
	transition: background-color 0.25s ease;
}

.formContent h2 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 400;
	font-size: 15px;
	padding: 15px 0 5px 0;
	text-transform: uppercase;
	font-family: var(--global-primary-font);
}

.formContent h3 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	padding: 5px 0 35px 0;
	font-weight: normal;
	font-style: italic;
}

.formContent .mdpOubli {
	padding: 10px 0;
}

.formContent .mdpOubli a {
	display: block;
	padding: 8px 0px;
	font-style: normal;
	font-weight: 700;
	opacity: 0.7;
	color: var(--global-primary-color);
}

#remember_me {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

#remember_me + span {
	padding-left: 8px;
}

.padBtn {
	padding: 20px 0;
}


/*******************
***** CONNEXION ****
*******************/


/**** SLIDE ***/

.wide-container {
	width: 100%;
	/* height: auto; */
	margin: 50px auto;
}

/* .presentation .wide-container {
	height: 1150px;
} */

.width16 {
	width: 16.66666667%;
}

.width20 {
	width: 20%;
}

.width25 {
	width: 25%;
}

a.blocContentType {
	display: block;
	padding: 8px 5px;
	background: #FFF;
	color: #000;
}

.blocContentType .type1 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/lady-602881_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType .type2 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/wedding-1594957_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType .type3 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/wedding-1773801_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType .type4 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/adult-1867428_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType .type5 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/jewellery-1616538_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType .type6 {
	width: 100%;
	height: 140px;
	/*background: url('/imgs/bg/accessory-1869926_1920.jpg') 0 0 no-repeat;*/
	background-size: cover;
}

.blocContentType:hover {
	opacity: 0.9;
}

.blocContentType h2 {
	color: #000;
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 700;
	font-size: 14px;
	padding: 35px 10px;
	text-align: center;
	text-transform: uppercase;
}

.blocContentType h2:hover {
	color: #aaa;
}

.blocContentType cite {
	color: #000;
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 300;
	font-size: 11px;
	padding: 15px;
	margin: 0 18px 0 0;
	text-align: right;
	background: url('/imgs/picto/pcito.fleche.png') no-repeat scroll right 19px;
}

.blocContentType cite:hover {
	color: #dddddd;
}


/***********
*** SHOP ***
************/

.aucunesInfos {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	padding-top: 50px;
}

.menuL {
	width: 20%;
	float: left;
}

.menuL .filter_main_title {
	font-size: 20px;
	padding-bottom: 25px;
	display: block;
	color: var(--global-subtitle-color);
	letter-spacing: 0.5px;
	font-weight: 500;
}

.contentR {
	width: 80%;
	float: right;
}

.products_search_and_sorting {
	padding-bottom: 25px;
}

.menuL_container {
	border: 2px solid #F1F1F3;
	margin: 0 15px 0 0;
	padding: 25px;
	border-radius: 8px;
}

.range_sliders_container {
	border: 2px solid #F1F1F3;
	margin: 0 15px 0 0;
	padding: 25px;
	border-radius: 8px;
}

.range_sliders_container .bouton {
	padding: 10px 25px;
	margin-top: 15px;
	display: block;
}

/* Products sort */
.products_sort span {
	padding-right: 15px;
	display: inline-block;
	color: var(--global-subtitle-color);
}

.products_sort .select-wrapper {
	position: relative;
}

.products_sort .select-wrapper:after {
	font-family: "FontAwesome";
    content: "\f078";
    display: block;
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    color: var(--global-subtitle-color);
}

.products_sort select {
	border-radius: 8px;
	background: none;
	color: var(--global-subtitle-color);
	padding: 8px 15px;
	height: auto;
	width: auto;
	min-width: 150px;
	appearance: none;
}

/* Sous menu */

/*
.contentProg{
	display:none;
	overflow:hidden;
}
*/
#ajax_loader {
	display: table;
	margin: 20px auto;
}

#ajax_loader .txt {
	font-size: 30px;
}

.btnMenu {
	display: block;
}

.btnMenu a.ref {
	display: block;
	font-family: var(--global-primary-font);
	font-weight: normal;
	font-size: 13px;
	padding: 10px 0;
}


a.menuNew {
	display: block;
	padding: 8px 20px;
	width: 100%;
	background: #69D5FC;
	color: #FFF;
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
}

a.menuBest {
	display: block;
	padding: 8px 20px;
	width: 100%;
	background: #9D1B5F;
	color: #FFF;
	text-transform: uppercase;
	margin: 8px 0 0 0;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
}

a.menuCloseout {
	display: block;
	padding: 8px 20px;
	width: 100%;
	background: red;
	color: #FFF;
	text-transform: uppercase;
	margin: 8px 0 0 0;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
}

.btnMenu a.ref.sel {
	color: #aaa;
}

.btnMenu a.ref:hover {
	color: #aaa;
}

.contentRef.sel a.ref {
	color: #aaa;
}

.btnMenu a.prog {
	display: block;
	font-size: 12px;
	text-align: justify;
	padding: 5px 0 5px 12px;
}

.btnMenu a.prog:hover,
.btnMenu a.prog.sel {
	color: #aaa;
}

/* CUSTOM ACCORDION */
.categories_filter {
	padding-top: 15px;
}

.category {
    overflow: hidden;
    color: var(--global-text-color);
}

a.category_title {
    display: block;
    font-size: 14px;
    padding: 15px 20px;
    color: #000000;
    position: relative;
}

a.category_title:after {
	font-family: "FontAwesome";
    content: "\f078";
    display: block;
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.category.open a.category_title:after {
	transform: translateY(-50%) rotate(180deg);
	-moz-transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}
.category.open a.category_title{
	background: #fcfcfc;
	border: 1px solid #F1F1F3;
	border-radius: 8px;	
}

.subcategory_list {
    overflow: hidden;
    max-height: 0;
    -moz-transition: max-height 0.3s ease;
	-webkit-transition: max-height 0.3s ease;
	transition: max-height 0.3s ease;
}

.subcategory_list .subcategory {
    color: var(--global-text-color);
    padding: 8px 15px 8px 30px;
    font-size: 12px;
    margin: 4px 0;
    font-weight: 400;
}

.subcategory_list .subcategory:hover:before {
    opacity: 1;
}

.category.open .subcategory_list {
	-moz-transition: max-height 0.5s ease;
	-webkit-transition: max-height 0.5s ease;
	transition: max-height 0.5s ease;
    max-height: 30em;
}

/*.subcategory_list .subcategory input {
	margin-right: 8px;
	height: 18px;
	width: 18px;
	vertical-align: middle;
	border-width: 1.5px;
}*/

.subcategory_list .subcategory input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.subcategory input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

.subcategory label {
  	border: 1.5px solid rgba(60, 64, 67, 0.47);
  	border-radius: var(--global-mini-border-radius);
  	cursor: pointer;
  	margin-right: 12px;
	height: 16px;
	width: 16px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	min-width: 16px;
}

.subcategory label:after {
	border-style: none none solid solid;
	border-color: var(--global-primary-color);
	content: "";
	height: 5px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 40%;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg); /* Safari and Chrome */
	-ms-transform: translate(-50%,-50%) rotate(-45deg); /* IE 9 */
	transform: translate(-50%,-50%) rotate(-45deg);
	width: 10px;
}

.subcategory_list .subcategory a {
	line-height: 18px;
	vertical-align: middle;
}

.subcategory_list .subcategory a:hover {
	text-decoration: underline;
}

/***/

/* Liste produit */
.shop {
	padding: 10px 0;
}

.prodPad {
	padding: 25px;
}

a.contentProd {
	display: block;
}

.contentProd.scroll{
	height: 630px;
	overflow-x: auto;
	-webkit-box-shadow: inset 0px -5px 10px -5px rgba(0,0,0,0.6); 
	box-shadow: inset 0px -5px 10px -5px rgba(0,0,0,0.6);
}

#allproducts {
    /* Style de la scrollbar */
    scrollbar-width: auto; /* Firefox */
    scrollbar-color: #AA0056 #f0f0f0; /* Firefox */

    /* Style de la scrollbar pour les navigateurs basés sur WebKit (Chrome, Safari, Edge) */
    overflow-y: auto;
    scrollbar-width: auto; /* WebKit */
    scrollbar-color: #AA0056 #f0f0f0; /* WebKit */

    /* Style de la scrollbar pour les navigateurs autres que Firefox et WebKit */
    &::-webkit-scrollbar {
        width: 30px;
    }

    &::-webkit-scrollbar-track {
        background-color: #f0f0f0;
    }

    &::-webkit-scrollbar-thumb {
        background-color: #AA0056;
        border-radius: 5px;
    }
}

.contentImg {
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.shop .prix2,
.shop cite.prix2 strong {
	display: block;
	padding: 5px 0;
}

.shop cite.prix2 strong {
	font-size: 1em;
}

.shop cite.prix2 > * {
	margin: 0 !important;
}

.contentProd img:not(.picto) {
	display: block;
	width: auto;
	margin: 5px auto;
	max-width: 450px;
	background-color: #fff;
	border-radius: var(--global-img-border-radius);	
	width: 100%;
}

.contentImg span {
	position: absolute;
	top: 10px;
	right: -75px;
	color: #FFF;
	display: block;
	width: 200px;
	padding: 3px 0;
	background: #69d5fc;
	text-align: center;
	transform: rotate(40deg);
}

/* MADE IN FRANCE */
.madeinfrance,
.prodImg .madeinfrance {
	display: block;
	background-color: #FFF;
}

.madeinfrance strong,
.prodImg .madeinfrance strong {
	display: inline-block;
	padding-left: 15px;
	text-transform: uppercase;
	font-weight: normal;
	text-align: right;
	color: #000;
	font-size: 10px;
	white-space: nowrap;
}

.madeinfrance cite,
.prodImg .madeinfrance cite {
	display: inline-block;
	width: 50px;
	height: 20px;
	margin: 5px 0 0 0;
	box-sizing: border-box;
	transform: none;
	background: -webkit-gradient(linear, left top, right top, from(#114b9f), color-stop(33%, #114b9f), color-stop(33%, #fefefe), color-stop(66%, #fefefe), color-stop(66%, #e73322), to(#e73322));
	background: -o-linear-gradient(left, #114b9f 0%, #114b9f 33%, #fefefe 33%, #fefefe 66%, #e73322 66%, #e73322 100%);
	background: linear-gradient(to right, #114b9f 0%, #114b9f 33%, #fefefe 33%, #fefefe 66%, #e73322 66%, #e73322 100%);
}


.contentImg strong.best {
	position: absolute;
	top: 10px;
	left: -80px;
	color: #FFF;
	display: block;
	width: 200px;
	padding: 3px 0;
	background: #9D1B5F;
	text-align: center;
	transform: rotate(-40deg);
}

.contentImg strong.closeout {
	position: absolute;
	top: 20px;
	left: -60px;
	color: #FFF;
	display: block;
	width: 200px;
	padding: 3px 0;
	background: red;
	text-align: center;
	transform: rotate(-40deg);
}

strong.zirconia {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1000;
	display: block;
	width: 100px;
	background: #000;
}

strong.gemstones {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1000;
	display: block;
	width: 100px;
	height: 100px;
	background: url('/imgs/picto/swarovski-gemstones.png') no-repeat center;
	background-size: cover;
}

.contentImg strong.zirconia {
	width: 55px;
	height: 55px;
	top: 0;
	right: 0;
	background: url('/imgs/picto/swarovski-zirconia-s.png') no-repeat center;
}

.contentImg strong.gemstones {
	width: 55px;
	height: 55px;
	top: 0;
	right: 0;
	background: url('/imgs/picto/swarovski-gemstones-s.png') no-repeat center;
}

.contentProd p.nom {
	display: block;
	color: var(--global-subtitle-color);
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	padding-top: 10px;
}

.contentProd span.ref {
	display: block;
	font-size: 12px;
	color: var(--global-subtitle-color);
	font-family: var(--global-primary-font);
	font-weight: 500;
	padding: 5px 0 20px 0;
}

.shop .contentProd span.ref {
	padding-bottom: 5px;
}

.contentProd cite.prix, {
	font-family: var(--global-primary-font);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	padding: 10px 0;
}

.contentProd cite.prix2,
.price_title {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--global-subtitle-color);
}

.price_title {
	padding: 8px 0;
	display: block;
}

.contentProd cite.prix2 > * {
	margin-left: 25px;
}

.contentProd i.prixDetail {
	display: block;
	width: 100%;
}
.contentProd i.prixVente {
	display: block;
	font-family: var(--global-primary-font);
	color: var(--global-subtitle-color);
	font-size: 20px;
	margin: 0;
	font-style: normal;
	font-weight: 600;
}

.contentProd .youPrice {
	font-size: 18px;
	padding: 10px 3px;
	color: var(--global-secondary-color);
}

.contentProd .youPrice strong {
	font-size: 18px;
}

.contentProd a.add_to_cart {
	color: #fff;
	height: 32px;
	width: 32px;
	display: block;
	border-radius: 50%;
	/* margin-left: auto; */
	text-align: center;
	line-height: 30px;
	background-color: var(--global-primary-color);
}

.contentProd a.add_to_cart img {
	width: 100%;
	filter: brightness(0) invert(1);
}

.contentProd .product_cta {
	align-self: flex-end;
}

.shop .product {
	position: relative;
	margin-bottom: 15px;
}

.shop .contentProd .madeinfrance {
	top: 0px;
	z-index: 10;
	padding: 0 15px;
	position: absolute;
	bottom: initial;
	box-sizing: border-box;
}

/*********************
*** DETAIL PRODUCT ***
*********************/

.detail-infos i{
	font-size: 1.5em;
	display: inline-block;
	margin: 0 0 0 10px;
}
.detail-infos div{
	line-height: 20px;
	padding: 0 0 10px 0;
	text-align: right;
}

.detailProd {
	padding: 0 0 25px 0;
}

.prodInfo {
	width: 50%;
}

.prodImg {
	width: 95%;
}

.prodCommande {
	width: 100%;
}

.miniature a {
	display: block;
	float: left;
	width: 90px;
	height: 90px;
	margin: 10px 10px 0 0;
}

.miniature a img {
	display: block;
	width: 100%;
	height: 100%;
}

.detailProd .prodInfo {
	width: 100%;
}

.detailProd .prix.nonlog {
	padding: 20px 0 0 0;
	font-size: 28px;
}

.detailProd .prodInfo .nom {
	font-size: 36px;
	font-weight: 600;
	line-height: 42px;
	color: var(--global-subtitle-color);
}

.detailProd .prodInfo .grammage{
	color: var(--global-subtitle-color);
	margin: 0px;
	padding: 10px 0 0 3px;
}
.detailProd .prodInfo .grammage span{
	color: var(--global-text-color);
	display: inline-block;
	padding: 0 5px;
	font-weight: 300;
}

.detailProd .gar {
	padding: 5px 8px 4px 8px;
	margin: 10px 0;
	border: 1px solid rgba(54, 66, 80, 0.5);
	border-radius: 30px;
	display: inline-block;
}

.detailProd .gar strong {
	display: block;
	color: rgba(29, 36, 45, 0.7);
	background: none;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 15px;
	font-weight: 400;
	padding: 5px 8px;
	margin: 0;
	white-space: nowrap;
}

/* Detail produit | Notes */
.product_ratings .star {
	margin-right: 5px;
	font-size: 16px;
}

.product_ratings {
	padding: 5px 0;
}

.product_ratings strong {
	padding-right: 10px;
	font-size: 16px;
	font-weight: 500;
}

.product_ratings .sales .star {
	color: #eb4d4b;
}

.product_ratings .quality .star {
	color: #f9ca24;
}

.product_ratings .design .star {
	color: #6ab04c;
}

.rating_info {
	font-size: 12px;
	padding-top: 5px;
}

.detailProd .mif h3 {
	font-weight: 500;
	font-size: 16px;
	padding-right: 8px;
	color: var(--global-subtitle-color);
}

.detailProd .cat.type {
	font-weight: 500;
	font-size: 16px;
	color: var(--global-subtitle-color);
}

.detailProd .cat.type span {
	font-weight: 600;
	color: var(--global-subtitle-color);
}

.product_quantity_price_tab{
	padding-top: 30px;
}

.product_quantity_price_tab table{
	margin: 0 auto;
}

.detailProd .product_quantity_price_tab tr:first-child th {
	background: none;
	color: var(--global-title-color);
	font-weight: 700;
	font-size: 24px;
	padding: 0 0 20px 0;
}

.detailProd .product_top_infos {
	border-bottom: 2px solid #F1F1F3;
	margin-bottom: 15px;
}

.detailProd .product_top_infos > * {
	margin: 15px 25px 15px 0 !important;
}

.detailProd .contentProdInfo .prixVente {
	font-weight: 500;
	font-style: normal;	
	font-size: 16px;
	line-height: 20px;
}

.detailProd .contentProdInfo .prixVente span {
	padding: 8px 5px;
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 25px;
	color: var(--global-subtitle-color);
}

.detailProd .contentProdInfo .prix {
	font-weight: 500;
	color: var(--global-subtitle-color);
}

.detailProd .contentProdInfo .prix span {
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
}

.detailProd .contentProdInfo .client_remise {
	background-color: rgba(240, 30, 34, 0.15);
	display: inline-block;
	color: #F01E22;
	padding: 8px;
	gap: 10px;
	font-size: 14px;
	border-radius: 79px;
	font-weight: 500;
	margin-right: 15px;
}

.detailProd .contentProdInfo #sTotRemiseTtc {
	margin-left: 15px;
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	vertical-align: top;
}

.detailProd .contentProdInfo .old_price span {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-decoration-line: line-through;
	opacity: 0.5;
}

.detailProd .contentStockStd .tableSTD th {
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	color: rgba(92, 92, 92, 0.7);
	border-bottom: 2px solid #F1F1F3;
	padding-bottom: 15px;
}

.detailProd .contentStockStd .tableSTD td {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}

.detailProd .product_quantity_price_tab .tableSTD th,
.detailProd .product_quantity_price_tab .tableSTD td {
	font-size: 14px;
	line-height: 18px;
	font-weight: 700;
}

.detailProd .ring_size_guide .table_head img {
	border-radius: 0;
	line-height: 24px;
	width: 24px;
}

.ring_size_guide a.bouton.big{
	margin-right: 4.5vw;
}
.contentStockStd a.bouton.big{
	margin-right: 7.5vw;
}

.detailProd tr.table_head th {
	color: var(--global-text-color);
	font-weight: 500;
	border: 0;
	border-bottom: 2px solid #F1F1F3;
}

.detailProd .ring_size_guide input.std {
	text-align: center;
	padding: 10px;
	max-width: 100px;
	margin: 0 auto;
	color: var(--global-subtitle-color);
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

.detailProd .ring_size_guide caption {
	text-align: left;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	padding-bottom: 20px;
	color: var(--global-title-color);
}

.detailProd .ring_size_guide .tailles {
	text-align: center;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	padding-bottom: 5px;
	color: var(--global-title-color);
}

.detailProd .ring_size_guide caption span {
	color: var(--global-text-color);
	font-weight: 500;
}

.detailProd .ring_size_guide td {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}

.prodImg img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.prodInfo p.nom {
	display: block;
	font-family: var(--global-primary-font);
	font-size: 14px;
	margin: 0;
	font-weight: normal;
}

.prodInfo hr.hr {
	background: #000000 none repeat scroll 0 0;
	border: medium none;
	color: #000000;
	height: 2px;
	margin: 10px 0;
	width: 10%;

}

.hr{
	background: none;
	border-color: #F1F1F3;
}

.prodInfo p.cat,
.prodInfo p.mat {
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	margin: 0;
	font-weight: normal;
	padding: 5px 0;
}

.prodInfo p.cat a,
.prodInfo p.mat a,
.prodInfo p.cat span,
.prodInfo p.mat span {
	color: #aaa;
	font-family: var(--global-primary-font);
}

.prodInfo p.cat a:hover,
.prodInfo p.mat a:hover {
	text-decoration: underline;
}

.prodInfo span.ref {
	display: block;
	font-family: var(--global-primary-font);
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	padding: 5px 0;
}

.prodInfo cite.prix,
.prodInfo cite.prix2 {
	display: block;
	font-family: var(--global-primary-font);
	font-size: 18px;
	font-style: normal;
	color: #000;
	font-weight: normal;
}

.prodInfo cite.prix span,
.prodInfo cite.prix2 span {
	text-decoration: line-through;
	font-size: 15px;
}

.prodInfo i.prixVente {
	display: block;
	font-family: var(--global-primary-font);
	font-weight: 400;
	font-size: 14px;
	margin: 0;
	font-style: normal;
	padding: 5px 0 0 0;
	color: #000;
	padding: 30px 0 0 0;
}

.prodInfo cite.prix2 strong {
	font-weight: normal;
	color: #9D1B5F;
}

.contentProdInfo.descr {
	font-size: 16px;
	line-height: 22px;
	font-family: var(--global-primary-font);
	font-weight: 300;
}

.active img {
	border: 2px solid red !important;
}

.detailProd .product_description .title {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 20px;
	display: block;
	color: var(--global-title-color);
}

.detailProd .product_description .contentProdInfo.descr {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
}

/* Les stock */
.contentStockStd,
.contentStockSpe {
	width: 100%;
	margin: 0 auto;
	padding-top: 40px;
}

.tabSize {
	padding: 50px 0 10px;
}

.tabSize span {
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	font-weight: normal;
	margin: 0;
	padding: 25px;
	text-align: right;
}

.tabSize span a {
	color: #aaa;
	font-family: var(--global-primary-font);
	font-weight: 300;
}

.tabSize span a:hover {
	text-decoration: underline;
}

/*************
*** PANIER ***
*************/

.minimum_order {
	padding: 25px 0 80px 0;
	text-align: center;
	display: block;
	font-size: 26px;
	color: var(--global-primary-color);
	font-weight: 500;
}

.shopping_cart input[type="checkbox"] {
	border: 2px solid #3C4043;
	height: 20px;
	width: 20px;
	margin: 5px;
}

/* Panier - Header */

.shopping_cart_header {
	padding-bottom: 20px;
	border-bottom: 2px solid #F1F1F3;
}

.shopping_cart_header span {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	display: block;
	text-transform: capitalize;
}

/* Panier - Items */

.shopping_cart_item span {
	color: var(--global-subtitle-color);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	display: block;
}

.shopping_cart_item {
	border-bottom: 2px solid #F1F1F3;
}
/* .shopping_cart_item:not(:last-of-type) */

.mw50Spec{
	width: 55px!important;
	height: 50px!important;
	text-align: center!important;
	margin: 0 auto!important;
	color: var(--global-subtitle-color)!important;
	font-weight: 500!important;
	font-size: 14px!important;
	padding: 10px!important;;	
}

.shopping_cart_item_pad {
	padding: 10px;
}

.shopping_cart_item .product_name,
.shopping_cart_item .product_ref {
	padding: 0 0 10px 15px;
	display: block;
	text-align: left;
}

.shopping_cart_item .product_ref {
	color: var(--global-text-color);
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}

.shopping_cart_item.top{
	border-bottom: none;
}
.shopping_cart_item.bot .shopping_cart_item_pad{
	padding-top: 0px;
}

#yourAccountBloc,
#upsBloc { display: none; }
.searchUps{ padding-top: 20px; }
.searchUps .blocMap #map-canvas { height: 450px; }
.resultUps{
	padding: 10px;
	margin-bottom: 15px;
	display: block;
}
.resultUps strong{
	color: #000;
	font-size: 16px;
}
#upsBlocResp{
	height: 450px;
	overflow-y: scroll;
}
 
#yourAccountBloc input{
	margin-top: 12px;
	border-color: #F1F1F3;
}

.cart .product_action a.supp {
	display: block;
	color: var(--global-secondary-color);
}

.cart .product_image img {
	display: block;
	border-radius: var(--global-img-border-radius);
	max-width: 100px;
	width: 100%;
}

.cart .shopping_cart_item .panier_produit_taille input {
	text-align: center;
	padding: 10px;
	max-width: 50px;
	margin: 0 auto;
	color: var(--global-subtitle-color);
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

.cart .product_quantity .panTaille {
	flex: 1 1 50%;
}

.product_total span {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
}

/* Panier - Récap */

.cart_recap_container {
	border: 2px solid #F1F1F3;
	border-radius: var(--global-btn-border-radius);
	margin: 25px 12px;
}

/*.cart_payment_shipping,
.cart_payment_method,
.cart_payment_address,
.cart_payment_comment,
.cart_payment_total {
	border: 2px solid #F1F1F3;
	border-radius: var(--global-btn-border-radius);
	margin: 25px;
}*/

.cart_payment_shipping input[name="ifrupture"]{
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.cart_payment_shipping input[name="ifrupture"] + label{
	color: var(--global-subtitle-color);
	font-weight: 700;
	position: relative;
	display: inline-block;
	top:-3px;
}

.cart .cart_recap span.title, 
.cart .cart_recap strong.title {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	padding-bottom: 20px;
	display: block;
	color: var(--global-subtitle-color);
}

.cart_recap_container hr {
	border: 0;
	margin: 20px 25px;
	height: 2px;
	background-color: #F1F1F3;
	box-sizing: border-box;
	display: block;
}

.cart .cart_payment_address input,
.cart #upsBloc input {
	margin-bottom: 12px;
	border-color: #F1F1F3;
}
.cart .cart_recap textarea {
	border: none;
	resize: none;
	border: 2px solid #F1F1F3;
	border-radius: var(--global-btn-border-radius);
	min-height: 230px;
}

.total_line:last-of-type {
	padding: 0 0 30px 0;
}

.total_line strong {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	color: var(--global-text-color);
}

.total_line span {
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	color: var(--global-subtitle-color);
	padding-left: 8px;
}

.total_line cite{
	font-style: normal;
}
.total_line cite#livPrix{
	font-size: 16px;
}

.cart_payment_total hr {
	margin: 25px 0;
}

.cart_payment_total .bouton {
	display: block;
	width: 100%;
}

.total_line .cart_recap_promo_amount {
	color: var(--global-text-color);
}

.orderTxt {
	font-size: 18px;
	text-align: center;
	padding: 30px 0;
	color: var(--global-primary-color);
}

.orderBloc {
	width: 50%;
	margin: 0 auto;
	font-size: 14px;
	line-height: 26px;
	padding: 40px 0;
}

/**************
**** TABLE ****
***************/

.tableSTD {
	width: 100%;
/*	border-collapse: collapse;*/
	border: transparent;
	margin: 20px 0;
}

.tableSTD.black tr th {
	background: var(--global-secondary-color);
	color: #FFF;
	white-space: nowrap;
	font-family: var(--global-primary-font);
	font-weight: 300;
	border-radius: var(--global-mini-border-radius);
	border: solid 1px #FFF;
}

.detailProd .tableSTD {
	margin: 0 0 20px 0;
}

.tableSTD.tablesize {
	width: 70%;
	border-collapse: collapse;
	border: transparent;
	margin: 20px 0 0 0;
}

.tableSTD.tablesize tr th {
	font-family: var(--global-primary-font);
	color: #ffffff;
	padding: 10px;
	font-size: 13px;
	text-transform: uppercase;
	border: transparent solid 1px;
	text-align: center;
	background: #000;
}

.tableSTD.tablesize tr td {
	text-align: center;
}

.tableSTD tr th {
	font-family: var(--global-primary-font);
	color: #000;
	padding: 5px 10px;
	font-size: 13px;
	text-transform: uppercase;
	border: transparent solid 1px;
	text-align: left;
}

.tableSTD tr th.alr {
	text-align: right;
}

.tableSTD tr th.alc {
	text-align: center;
}

.tableSTD tr td {
	font-family: var(--global-primary-font);
	font-weight: 300;
	color: #000;
	padding: 10px 5px;
	font-size: 13px;
	text-align: left;
	border: transparent solid 3px;
}

.tableSTD tr td .stockY,
.stockY {
	color: #07c32a;
}
.stockListe{
	padding: 0 0 10px 0;
}

.addOk{
	color: var(--global-burgundy-color);
	padding-bottom: 5px;
	text-align: center;
}

.tableSTD tr td .stockN,
.stockN {
	color: #f31717;
}

.tableSTD tr td .stockB {
	color: var(--global-subtitle-color);
}

.tableSTD tr td b {
	font-style: italic;
}

.tableSTD tr.tot td {
	font-size: 20px;
	font-family: var(--global-primary-font);
	font-weight: 700;
}

.tableSTD tr.tva td {
	font-size: 11px;
	font-family: var(--global-primary-font);
	font-weight: 300;
	color: #aaa;
}

.tableSTD tr td:nth-child(9) {
	font-family: var(--global-primary-font);
	font-weight: 700;
	font-size: 15px;
}

/*****************
***** CONTACT ****
*****************/

.blocCoord {
	width: 30%;
}

.blocMap {
	width: 70%;
}

/**** Coordonnees ***/
.introduction h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: var(--global-primary-color);
}

.contactInfo h4 {
	font-size: 14px;
	padding: 5px 0;
	color: #292929;
	display: block;
	font-family: var(--global-primary-font);
	line-height: 25px;
	font-weight: normal;
	padding: 0 0 18px 0;
	text-transform: uppercase;
}

.contactInfo span {
	font-size: 12px;
	font-family: var(--global-primary-font);
	padding: 8px 0 8px 30px;
	display: block;
	line-height: 18px;
	color: #292929;
	font-weight: normal;

}

.contactInfo span.loc {
	background: url('/imgs/picto/picto.location-black.png') 0 10px no-repeat;
}

.contactInfo span.phone {
	background: url('/imgs/picto/picto.phone-black.png') 0 10px no-repeat;
}

.contactInfo span.mail {
	background: url('/imgs/picto/picto.mail-black.png') 0 10px no-repeat;
}

/**** Carte ***/
.blocMap #map-canvas {
	width: 100%;
	height: 200px;
}


/**********************
***** PRESENTATION ****
***********************/

.presentation .partL,
.presentation .partR {
	width: 50%;
	float: left;
}

.presentation .blocPad h1 {
	padding: 50px 0px 2px 0px;
	letter-spacing: 1px;
	font-size: 30px;
	text-transform: uppercase;
	font-family: var(--global-primary-font);
	font-weight: 400;
}

.presentation .blocPad h2 {
	padding: 15px 0 0 0px;
	letter-spacing: 0.5px;
	font-family: var(--global-primary-font);
	font-weight: 400;
	font-size: 18px;
	color: #9D1B5F;
	text-transform: uppercase;
}

.presentation .blocPad {
	font-size: 13px;
}

.presentation .blocPad p {
	padding: 0 0 0 15px;
	margin: 0px;
	font-size: 13px;
}

.presentation hr {
	margin: 20px auto 0px auto;
}

.presentation .bgContent {
	background: rgba(0, 0, 0, 0.05);
}

.presentation img {
	display: block;
	margin: 0 auto;
}


/**************
***** CGV ****
**************/

.contentCGV {
	padding: 10px 0;
}

.contentCGV h3 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	padding: 15px 0 5px;
	text-transform: uppercase;
}

.contentCGV h4 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	padding: 10px 0;
	text-align: justify;
}

/***************
*** MENTIONS ***
****************/

.mentionsLeg {
	padding: 10px 0;
}

.mentionsLeg h3 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	text-transform: uppercase;
	float: left;
}

.mentionsLeg h4 {
	color: #000000;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	padding: 0 0 0 10px;
	line-height: 15px;
	text-align: justify;
	float: left;
}

#reponsePromo {
	font-size: 16px;
	padding: 20px 0 0 0;
}


/* FAQ */

.faq .contentBlocMid>ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq .contentBlocMid>ul>li {
	border-bottom: 2px solid #F2F2F2;
}

.blocFaq {
	padding: 15px;
}

.faq .content {
	display: none;
	padding-bottom: 25px;
}

.blocFaq .head h2 {
	color: #292929;
	display: block;
	font-family: var(--global-primary-font);
	font-size: 20px;
	line-height: 20px;
	font-style: normal;
	font-weight: 400;
	margin: 0 auto;
	padding: 10px 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.blocFaq .head h2:before {
	content: '+';
	font-size: 32px;
	line-height: 20px;
	margin-right: 15px;
	display: inline-block;
	vertical-align: sub;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.blocFaq .content_text {
	display: block;
	font-size: 16px;
	font-weight: normal;
	line-height: 22px;
	border-radius: 10px;
	margin: 15px 0 0 0;
	color: #9D1B5F;
	background-color: rgba(0, 0, 0, 0.05);
	padding: 25px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.faq cite.infos {
	text-align: center;
	font-size: 15px;
	display: block;
	line-height: 1.35;
}

.faq .head.open h2:before {
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

/* CRISP */

.crisp_chat_btn_container {
	position: fixed;
	z-index: 100;
	bottom: 0;
	left: 0;
	padding: 20px 25px;
}

.crisp_chat_btn_container .crisp_chat_btn {
	width: 60px;
	height: 60px;
	display: block;
	border-radius: 100%;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .05);
	cursor: pointer;
	border: 0;
	background: #1972F5 url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjMwIiB3aWR0aD0iMzUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxkZWZzPjxmaWx0ZXIgaWQ9ImEiIGhlaWdodD0iMTM4LjclIiB3aWR0aD0iMTMxLjQlIiB4PSItMTUuNyUiIHk9Ii0xNS4xJSI+PGZlTW9ycGhvbG9neSBpbj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJkaWxhdGUiIHJhZGl1cz0iMSIgcmVzdWx0PSJzaGFkb3dTcHJlYWRPdXRlcjEiLz48ZmVPZmZzZXQgZHk9IjEiIGluPSJzaGFkb3dTcHJlYWRPdXRlcjEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0T3V0ZXIxIi8+PGZlR2F1c3NpYW5CbHVyIGluPSJzaGFkb3dPZmZzZXRPdXRlcjEiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSIgc3RkRGV2aWF0aW9uPSIxIi8+PGZlQ29tcG9zaXRlIGluPSJzaGFkb3dCbHVyT3V0ZXIxIiBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0IiByZXN1bHQ9InNoYWRvd0JsdXJPdXRlcjEiLz48ZmVDb2xvck1hdHJpeCBpbj0ic2hhZG93Qmx1ck91dGVyMSIgdmFsdWVzPSIwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwLjA3IDAiLz48L2ZpbHRlcj48cGF0aCBpZD0iYiIgZD0iTTE0LjIzIDIwLjQ2bC05LjY1IDEuMUwzIDUuMTIgMzAuMDcgMmwxLjU4IDE2LjQ2LTkuMzcgMS4wNy0zLjUgNS43Mi00LjU1LTQuOHoiLz48L2RlZnM+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48dXNlIGZpbGw9IiMwMDAiIGZpbHRlcj0idXJsKCNhKSIgeGxpbms6aHJlZj0iI2IiLz48dXNlIGZpbGw9IiNmZmYiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiB4bGluazpocmVmPSIjYiIvPjwvZz48L3N2Zz4=) no-repeat center / 32px;
	/*animation-name: cc-emxe;
	animation-duration: .2s;
	animation-fill-mode: both;
	animation-delay: 50ms;*/
}

.crisp_chat_btn_container span {
	position: relative;
	display: block;
	box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.15);
	padding: 25px;
	font-size: 20px;
	font-weight: 700;
	background-color: #fff;
	border-radius: 15px;
	text-align: left;
	margin-bottom: 15px;
}

.crisp_chat_btn_container i.cross {
	transform: rotate(45deg);
	font-size: 25px;
	position: absolute;
	right: 8px;
	top: 3px;
	color: lightgray;
	z-index: 1000;
	cursor: pointer;
	pointer-events: all;
	font-style: normal;
	font-weight: 400;
	font-synthesis: small-caps;
}

.crisp_chat_btn_container .crisp_chat_btn.open {
	background: #1972F5 url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIwIiB3aWR0aD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE5LjM5OSAyLjA0YTEuMzM0IDEuMzM0IDAgMDAtMi4yOS0uOTNsLTcuMDU2IDcuMDU3TDIuOTk1IDEuMTFBMS4zMzMgMS4zMzMgMCAxMDEuMTEgMi45OTVsNy4wNTcgNy4wNThMMS4xMSAxNy4xMWExLjMzNCAxLjMzNCAwIDEwMS44ODUgMS44ODVsNy4wNTgtNy4wNTcgNy4wNTcgNy4wNTdhMS4zMzQgMS4zMzQgMCAxMDEuODg1LTEuODg1bC03LjA1Ny03LjA1NyA3LjA1Ny03LjA1OGExLjMzMiAxLjMzMiAwIDAwLjQwNC0uOTU1eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) no-repeat center / 24px;
	animation-name: cc-yobg;
	animation-duration: .15s;
	animation-fill-mode: both;
}

.crisp_chat_btn_container .crisp_chat_btn.open+span {
	display: none;
}

body .crisp-client .cc-tlyw .cc-kxkl .cc-nsge .cc-imbb {
	/*	display: none !important;*/
}

@keyframes cc-yobg {
	0% {
		opacity: 0;
		transform: rotate(-10deg);
	}

	100% {
		opacity: 1;
		transform: rotate(0);
	}
}

@keyframes cc-emxe {
	0% {
		opacity: 1;
		transform: rotate(0);
	}

	100% {
		opacity: 0;
		transform: rotate(-10deg);
	}
}

/***********
 * ECRAN 13 POUCES
 */

@media screen and (max-width: 1280px) {
	.formContent {
		width: 60%;
	}
	.detailProd .product_description {
		padding: 50px 0;
	}
}

/***********
 * TABLETTE PAYSAGE
 */

@media screen and (max-width: 1024px) {
	.reg_content {
		width: 95%;
	}

	.menuCell a.none {
		margin: 0 14px;
	}

	.menuTab .menuRow .menuCell .rs {
		margin: 0 5px;
	}

	.formContent {
		width: 70%;
	}

	.reg_contentTop .menuTab .menuCell a {
		margin: 0 25px;
	}
}

/***********
 * PETITE TABLETTE PAYSAGE
 */

@media screen and (max-width: 880px) 
{
	.menuL {
		display: none;
	}

	.contentR {
		width: 100%;
	}	

	.contentMenuTop {
		padding: 10px 0;
	}

	.contentMenuTop .menuTab {
		display: block;
		height: 25px;
		overflow: hidden;
		text-align: center;
		padding: 25px 0 0 0;
	}

	.contentMenuTop .menuTab .menuRow {
		display: block;
	}

	.contentMenuTop .menuTab .menuRow .menuCell {
		float: none;
		display: block;
		width: 100%;
		margin: 0;
	}

	.contentMenuTop .menuTab .menuRow .menuCell a {
		margin: 0;
		display: block;
		padding: 2px 0;
	}

	.reg_contentTop .menuTab .menuRow .menuCell.resp {
		display: block;
	}

	a.logo {
		font-size: 17px;
	}

	.wide-container {
		height: 300px;
		margin: 10px auto 0;
	}

	.blocContentType h2 {
		font-size: 12px;
	}

	.dashboard h3,
	.orders h3,
	.addresses h3 {
		text-align: center;
	}

	.dashboard h4,
	.orders h4,
	.addresses h4 {
		text-align: center;
	}

	.dashboard .contentR,
	.orders .contentR,
	.addresses .contentR {
		float: none;
		padding: 10px 0;
		width: 100%;
	}

	.shopping_cart_item span,
	.shopping_cart_header span{
		font-size: 14px;
	}

	.shopping_cart_item_pad{
		padding: 5px;
	}

	.menuAccount {
		margin: 0 auto;
		display: table;
		float: none;
		padding: 10px 0;
		width: auto;
	}

	.menuAccount .menuAccountR {
		display: table-row;
	}

	.menuAccount .menuAccountR .menuAccountC {
		display: table-cell;
		text-align: center;
	}

	.menuAccount .menuAccountR .menuAccountC a.menuAcc {
		display: inline-block;
		color: #aaa;
		margin: 0 30px;
	}

	.dashboard,
	.orders,
	.addresses {
		padding: 0;
	}

	.formAccount,
	.formContent {
		width: 90%;
		margin: 0 auto;
	}

	.detailProd .contentProd {
		width: 100%;
	}

	.prodInfo.flol,
	.prodImg.flol {
		float: none;
	}

	.prodInfo,
	.prodImg {
		width: 100%;
	}

	.prodImg img {
		padding: 20px 0 0 0;
	}

	.prodInfo hr.hr {
		margin: 30px 0;
	}

	.tabSize {
		padding: 8px 0;
	}

	.contentCGV,
	.mentionsLeg {
		width: 80%;
		margin: 0 auto;
	}

	.addresses .tabAdd {
		margin: 0 auto;
	}

	.reg_topGauche img {
		width: 100%;
		max-width: none;
	}

	#dl-menu {
		display: block;
	}

	.desktop_menu {
		display: none;
	}

	.dashboard input.bouton {
		margin: 15px auto;
		padding: 10px 25px;
		font-size: 1.3em;
		font-weight: 600;
		letter-spacing: 0.5px;
		float: none;
		display: block;
	}

	.tabs__section {
		overflow: scroll;
	}

	.tabs__link {
		box-sizing: border-box;
	}

	.dl-menuwrapper>span {
		content: 'Menu';
		position: absolute;
		display: block;
		left: 3.5px;
		bottom: -22px;
		font-size: 14px;
		font-family: var(--global-primary-font);
		font-weight: 700;
		color: #000;
		left: 1px;
		text-shadow: 3px 3px 5px #fff;
		text-transform: uppercase;
	}
}


/***********
 * TABLETTE PORTRAIT
 */

@media screen and (max-width: 768px) {
	.reg_contentTop .panier cite,
	.reg_contentTop .blocAccount .contentUser > span {
		display: none;
	}

	.blocAccountMenu {
		left: -45px;
	}

	a.logo {
		font-size: 15px;
	}

	.blocContentType h2 {
		font-family: var(--global-primary-font);
		font-size: 11px;
	}

	.blocContact .contentTel span,
	.blocContact .contentMail span {
		font-size: 12px;
	}

	.reg_topDroit strong {
		font-size: 12px;
	}

	.blocBot2 span {
		font-size: 10px;
	}

	.blocBot2 a,
	.blocBot2 .credit,
	.blocBot2 span b {
		font-size: 11px;
	}

	.blocBot1 {
		margin: 2px 0 0;
	}

	.shop .contentR.flor {
		float: none;
	}

	.home .blocContentImg {
		min-height: 150px;
	}

	.home .blocPad {
		padding: 10px;
	}

	.tabs__link {
		width: 100%;
		display: block;
		text-align: center;
		padding: 10px 0;
		margin: 0;
	}
	/* Panier */
	.shopping_cart_header {
		display: none;
	}

	.cart .product_quantity .panTaille {
		flex: 0 1 25%;
		padding-bottom: 15px;
	}

	.total_line span {
		font-size: 16px;
	}

	/* Boutique	*/
	.shop .prixVente {
		padding-bottom: 10px;
	}

	/*	Detail produit */
	.detailProd .prodInfo .nom {
		font-size: 30px;
		line-height: 40px;
	}
}


/***********
 * PETITE TABLETTE PORTRAIT
 */

@media screen and (max-width: 600px) {
	.pad25 {
		padding: 15px;
	}

	.pad50 {
		padding: 25px;
	}

	.tableSTD tr td,
	.tableSTD tr th {
		font-size: 11px;
		padding: 1px;
	}

	.blocContentType cite {
		margin: 0 10px 0 0;
	}

	.reg_contentTop .menuTab .menuCell a {
		font-size: 14px;
	}

	.btnMenu a.ref {
		font-size: 12px;
	}

	fieldset {
		padding: 10px 0;
	}

	.presentation .partL {
		display: none;
	}

	.presentation .partR {
		width: 100%;
	}

	.presentation .blocPad h1 {
		padding-top: 0px;
	}

	.presentation .blocPad p {
		padding: 0px;
	}

	.totaux {
		width: 100%;
		padding: 25px 0;
	}

	.miniature a img {
		padding: 0px;
	}

	.overflow {
		/* overflow-x: auto;
		width: 100vw; */
	}

	tr.livraison {
		background: none;
	}

	tr.livraison td:first-child {
		width: 50px;
	}

	/* FAQ */
	.blocFaq .head h2 {
		font-size: 15px;
	}

	.blocFaq p {
		font-size: 13px;
	}

	.blocFaq .head h2:before {
		font-size: 28px;
		line-height: 15px;
	}

	.reg_contentTop {
		flex-wrap: wrap;
	}

	/* OPTIM - Menu */
	.goldPrice.flex {
		justify-content: center;
	}

	.langues {
		display: none;
	}

	#formSearch {
		padding: 10px 20px;
		width: 100%;
		box-sizing: border-box;
	}

	.shop .contentProd p.nom {
		font-size: 14px;
		min-height: 25px;
	}

	.contentProd i.prixVente {
		text-align: left;
	}

	.contentR .width70 {
		width: 100%;
		padding-top: 25px;
	}

	.rangeSlider strong {
		font-size: 14px;
	}

	.prodDetail {
		padding: 15px 10px;
	}

	.ring_size_guide a.bouton.big,
	.contentStockStd a.bouton.big{
		margin-right: 0px;
	}

	.tabSize span {
		text-align: center;
		line-height: 1.5;
	}

	.detailProd img {
		max-width: 320px;
	}

	.prodInfo p.cat,
	.prodInfo p.mat {
		padding: 12px 0;
		font-size: 16px;
	}

	.detailProd .prodInfo {
		padding-bottom: 25px;
	}

	.detailProd .prodInfo p.nom {
		font-size: 18px;
		padding-top: 15px;
		min-height: 0;
	}

	.detailProd hr.hr {
		margin: 15px 0;
	}

	.contact .formContent .width50 {
		width: 100%;
		float: none;
	}

	.contact .formContent .padField {
		padding: 8px 0;
	}

	.contact .formContent input.bouton {
		font-size: 18px;
		margin: 0 auto;
		float: none;
		display: block;
	}

	.contact #map-canvas {
		padding: 10px;
	}

	.blocCoord,
	.blocMap {
		width: 50%;
	}

	.blocCoord .contactInfo {
		padding: 10px;
	}

	.formContent h3 {
		font-size: 16px;
	}

	.formContent label.std {
		font-size: 13px;
		padding-top: 5px;
	}

	.detailProd .ring_size_guide td {
		font-size: 11px;
	}

	.ring_size_guide > .flex.sb,
	.contentStockStd > .flex.sb{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.product_quantity_price_tab,
	.product_description {
		padding: 25px 0;
	}

	.goldPrice {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.goldPriceItem {
		padding-bottom: 5px;
	}

	.panierPanier {
		padding: 0 8px;
	}

	.detailProd {
		padding: 0;
	}

	.product_ratings strong {
		display: block;
		padding-bottom: 5px;
	}

	.article .width50.flol{
		float: none;
		width: 100%;
	}
}

/***********
 * MOBILE PAYSAGE
 */

@media screen and (max-width: 480px) {

	.introduction h1 {
		font-size: 20px;
	}

	.blocBot1 .menuCell{
		width: 100%;
		display: block;
	}

	.orderTxt {
		font-size: 14px;
		line-height: 20px;
	}

	.pad50 {
		padding: 15px;
	}

	/* Détail produit */
	.detailProd .prodInfo .nom {
		font-size: 25px;
		line-height: 35px;
	}

	.reg_topGauche {
		text-align: center;
	}

	.reg_topGauche a {
		margin: 0 auto;
		text-align: center;
		padding: 15px 0 15px 60px;
	}

	.proSpace .introduction h1{
		text-align: center;
	}
	
	.proSpace .introduction p{
		text-align: center;	
	}

	#formSearch input.std{
		margin: 0 auto;
	}

	.txtb2b {
		font-size: 12px;
		text-align: center;
		padding: 0px;
	}

	.shop .formSel {
		float: none;
		width: 100%;
		padding: 15px;
		text-align: center;
	}

	.width70.flol {
		float: none;
		width: 100%;
	}

	.blocContentType cite {
		display: none;
	}

	.blocContentType .type1,
	.blocContentType .type2,
	.blocContentType .type3,
	.blocContentType .type4,
	.blocContentType .type5 {
		height: 70px;
	}

	.blocContentType h2 {
		padding: 16px 10px;
		font-size: 10px;
	}

	.wide-container {
		height: 200px;
	}

	.blocBot1 .menuCell a {
		font-size: 11px;
		padding: 10px 0;
		margin: 0 10px;
	}

	.blocBot2 span.flol,
	.blocBot2 span.flor {
		float: none;
		width: 100%;
		text-align: center;
	}

	.blocType .width20 {
		width: 100%;
	}

	a.blocContentType {
		padding: 2px 0;
	}

	.prodCommande {
		float: none;
		width: 100%;
	}

	.contentStockStd,
	.contentStockSpe {
		width: 100%;
	}

	.menuAccount .menuAccountR .menuAccountC a.menuAcc {
		margin: 0 15px;
	}

	a.menuAcc {
		font-size: 13px;
	}

	.dashboard h3,
	.orders h3,
	.addresses h3 {
		font-size: 12px;
	}

	.addresses .tabAdd .tabAddRow .tabAddCell {
		padding: 0 12px;
	}

	.formContent h3 {
		font-size: 12px;
	}

	.formContent h2 {
		font-size: 14px;
	}

	.presentation img {
		width: 80%;
	}

	.blocPadTexte {
		padding: 10px 25px 35px 25px;
	}

	.contact-pro .width25.flol {
		width: 50%;
	}

	.home .width25 {
		width: 50%
	}

	.home .blocContentImg {
		min-height: 100px;
	}

	#tabs .formPass {
		width: 100%;
	}

	/* OPTIM */
	.goldPrice.flex {
		flex-wrap: wrap;
	}

	.goldPrice.flex>*:first-child {
		padding: 0 0 15px 0;
	}

	.formContent .width50.flol,
	.formContent .width50.flor,
	.formAccount .width50.flol,
	.formAccount .width50.flor {
		float: none;
		width: 100%;
	}

	.formAccount {
		width: 100%;
	}

	.flol .padField,
	.flor .padField {
		padding: 12px 0;
	}

	.dashboard #tabs> :not(#commandes) {
		overflow: initial;
	}

	.aucunesInfos {
		text-align: center;
		padding: 15px 0;
	}

	.presentation .blocPad{
		padding: 0px;
		font-size: 12px;
	}

	.blocContact .contentCatalogue{
		padding: 0 0 0 50px;
	}

	.shopping_cart_item span{
		font-size: 12px;
	}

	.shopping_cart_item span.panier_produit_total{
		font-size: 22px;
	}

	.shopping_cart_item_pad{
		padding: 10px 0;
	}

	.cart .product_image img{
		margin: 0 auto;
	}

	.cart .product_action a.supp{
		margin: 0 auto;
		text-align: center;	
	}

	.shopping_cart_item .product_name,
	.shopping_cart_item .product_ref{
		padding-left: 0px;
		text-align: center;
	}

	.cart .product_quantity .panTaille{
		flex: 0 1 15%;
	}
}


/***********
 * MOBILE PORTRAIT
 */

@media screen and (max-width: 320px) {

	.blocContact .contentTel,
	.blocContact .contentMail {
		margin: 0 2px;
	}

	.reg_topDroit strong {
		font-size: 11px;
	}

	.reg_topDroit .panier cite,
	.reg_topDroit .panier b {
		font-size: 10px;
	}

	.reg_contentTop .menuTab .menuCell a {
		font-size: 13px;
	}

	a.logo {
		font-size: 13px;
	}

	.blocCoord.flol,
	.blocMap.flor {
		float: none;
		width: 100%;
	}

	.blocType .width20 {
		width: 100%;
	}

	a.blocContentType {
		padding: 2px 0;
	}

	.menuAccount .menuAccountR .menuAccountC a.menuAcc {
		margin: 0 10px;
	}

	a.menuAcc {
		font-size: 12px;
	}

	.dashboard h3,
	.orders h3,
	.addresses h3 {
		font-size: 11px;
	}

	.tableSTD tr td,
	.tableSTD tr th {
		font-size: 10px;
	}

	.addresses strong {
		font-size: 12px;
	}

	.addresses .tabAdd .tabAddRow .tabAddCell {
		padding: 0 6px;
	}

	.formContent h3 {
		font-size: 11px;
	}

	.formContent h2 {
		font-size: 13px;
	}

	.presentation .blocPad {
		padding: 5px;
	}

	.presentation .blocPad h1,
	.presentation .blocPad h2 {
		text-align: center;
	}

	.home .blocContentImg {
		min-height: 80px;
	}

	.blocContentType h2 {
		padding: 0px 10px;
		font-size: 12px;
	}

	.contentR .width70 .width50 {
		width: 100%;
		float: none;
	}

	.contentR .width70 .width50:first-child {
		margin-bottom: 15px;
	}
}