@charset "UTF-8";
/*--------------------------------

	RESET
	Ce fichier contient les styles de reset

*/
/*--------------------------------

	Reset

*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto;
}

body {
  line-height: 1;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------------------------------

	Reset forms

*/
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  appearance: none;
  background-clip: border-box;
  margin: 0;
  outline: 0;
  text-align: left;
  vertical-align: top;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
}

input[type=checkbox] {
  appearance: checkbox;
}

input[type=radio] {
  appearance: radio;
}

textarea,
select[size],
select[multiple] {
  height: auto;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  background-color: transparent;
  color: inherit;
}

textarea {
  resize: vertical;
  height: auto;
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

button {
  appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

button,
.button {
  cursor: pointer;
  display: inline-block;
  font: normal 16px/1 sans-serif;
  outline: 0;
  overflow: visible;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  width: auto;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

[disabled],
[disabled] * {
  box-shadow: none;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}

/*--------------------------------

	HELPERS
	Ces fichiers contiennent les styles "abstraits" utiles au projet

*/
/*--------------------------------

	Typography

*/
/*--------------------------------

	Layout

*/
/*
$breakpoints: (
	'phone':        em(360px),
	'phone-wide':   em(480px),
	'phablet':      em(560px),
	'tablet-small': em(640px),
	'tablet':       em(768px),
	'tablet-wide':  em(1024px),
	'desktop':      em(1248px),
	'desktop-wide': em(1440px),
	'desktop-big': 	em(1650px),
	'desktop-geant': 	em(1920px)
);*/
/*
ordered from high to low
suggested naming convention would be the class/ID the z-index is going on
*/
/*--------------------------------

	Colours

*/
/*--------------------------------

	Other Styles

*/
/*--------------------------------

	Easing/Timing

*/
/*--------------------------------

	Transitions

*/
/*--------------------------------

	EMs calculator

*/
/*--------------------------------

	Grids

*/
/*--------------------------------

	Z-indexing

	use:

		instead of guessing or adding random z-indexes throughout the project (e.g. 100000, 999999, etc.), call the z-index function to generate a z-index from a stacked list of classes

	prerequisits:

		$z-indexes list must exist in variables file

	example:

		.box {
			z-index: z('box');
		}

*/
/*--------------------------------

	Photoshop letter spacing

	use:

		for simple conversion between Photoshop letter-spacing to ems

	prerequisits:

		$ls list must exist in variables file

	example:

		.awesome-heading {
			letter-spacing: ls('awesome-heading');
		}

		could generate (if "awesome-heading") is 2nd in the list:

		.awesome-heading {
			letter-spacing: -0.01em;
		}

*/
/*--------------------------------

	Map deep get

	Get values from anywhere in a variable list

	http://css-tricks.com/snippets/sass/deep-getset-maps/

*/
/*--------------------------------

	Strip unit

*/
/*--------------------------------

	Very simple number functions

*/
/*--------------------------------

	Photoshop letter spacing

	use:

		get the value of a particular breakpoint

	example:

		.box {
			width: breakpoint('phone-wide');
		}

		would generate:

		.box {
			width: 480px;
		}

*/
/*--------------------------------

	Colour map lookup, retrieving base value by default

*/
/*--------------------------------

	Media Queries

	used for outputting content either between media query tags

	example: basic usage

	.element {
		width: 50%;

		@include mq('tablet-small') {
			width: 20%;
		}
	}

	example: using max-width

	.element {
		width: 50%;

		@include mq('tablet-small', 'max') {
			width: 20%;
		}
	}

*/
/*--------------------------------

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*--------------------------------

	Helper mixins

*/
/*--------------------------------

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*--------------------------------

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*--------------------------------

	Content margins

	for removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*--------------------------------

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*--------------------------------

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*--------------------------------

	Typography

	Text image replacement, with responsive ratio

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	.element {
		@include typography(200, 50, 'hello-world');
	}


*/
/*--------------------------------

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*--------------------------------

	Misc

*/
/*--------------------------------

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*--------------------------------

	BASE
	Ces fichiers contiennent la structure principale

*/
/*--------------------------------

	Box sizing

*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*--------------------------------

	Basic document styling

*/
html {
  font-size: 100%;
  min-height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  background-color: #fff;
  color: #0C0C0C;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
body.open, body.filter-active {
  overflow: hidden;
  height: 100vh;
}
@media only screen and (min-width: 78em) {
  body {
    font-size: 18px;
  }
}

main {
  position: relative;
  z-index: 1;
}

article {
  padding: 0 15px;
}
@media only screen and (min-width: 30em) {
  article {
    max-width: 950px;
    width: 85%;
    padding: 0;
    margin: 0 auto;
  }
}

/*--------------------------------

	Text selection/highlighting

*/

::selection {
  background: #0C0C0C;
  color: #fff;
  text-shadow: none;
}

/*--------------------------------

	CORE
	Ces fichiers contiennent les styles généraux des éléments html & les règles de typo

*/
/*--------------------------------

	Style général des liens

*/
a {
  color: #838379;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  text-decoration: underline;
}
a:hover {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #0C0C0C;
}
a img {
  border: none;
}

a:focus {
  outline: none;
}
a:link {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/*--------------------------------

	Tous les styles de boutons

*/
.p-btn {
  text-align: center;
  margin: 30px 0;
}
@media only screen and (min-width: 78em) {
  .p-btn {
    margin: 40px 0;
  }
}

.btn-color2, input[type=reset], .btn-color1, input[type=submit] {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  clear: both;
  text-transform: uppercase;
  padding: 20px 40px;
  text-decoration: none;
  line-height: 1.2;
}
.btn-color2:hover, input[type=reset]:hover, .btn-color1:hover, input[type=submit]:hover {
  text-decoration: none;
}

.btn-color1, input[type=submit] {
  background-color: #0C0C0C;
  color: #fff;
}
.btn-color1:hover, input[type=submit]:hover {
  background: rgb(37.5, 37.5, 37.5);
  color: #fff;
}
.btn-color2, input[type=reset] {
  color: #fff;
  background: #838379;
}
.btn-color2:hover, input[type=reset]:hover {
  background: rgb(180.0952380952, 180.0952380952, 173.9047619048);
  color: #fff;
}

hr,
.clear {
  border: none;
  clear: both;
}
hr.trait, hr.separator,
.clear.trait,
.clear.separator {
  padding-top: 30px;
  margin-bottom: 40px;
  max-width: 70%;
  border-bottom: 1px solid #CCCCC1;
}
@media only screen and (min-width: 35em) {
  hr.trait, hr.separator,
  .clear.trait,
  .clear.separator {
    padding-top: 40px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  hr.trait, hr.separator,
  .clear.trait,
  .clear.separator {
    padding-top: 60px;
    margin-bottom: 80px;
  }
}

/*--------------------------------

	Comportement des images dans le contenu des pages

*/
a img {
  border: none;
}
img[style*="float:left"], img[style*="float: left"] {
  float: none !important;
  display: block;
  margin: 30px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:left"], img[style*="float: left"] {
    float: left !important;
    margin: 10px 30px 30px 0 !important;
  }
}
@media only screen and (min-width: 78em) {
  img[style*="float:left"], img[style*="float: left"] {
    margin: 20px 50px 50px 0 !important;
  }
}
img[style*="float:right"], img[style*="float: right"] {
  float: none !important;
  display: block;
  margin: 30px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:right"], img[style*="float: right"] {
    float: right !important;
    margin: 10px 0 30px 30px !important;
  }
}
@media only screen and (min-width: 78em) {
  img[style*="float:right"], img[style*="float: right"] {
    margin: 20px 0 50px 50px !important;
  }
}

.textAndImages {
  margin: 30px 0;
}
@media only screen and (min-width: 78em) {
  .textAndImages {
    margin: 40px 0;
  }
}
.textAndImages .above_left,
.textAndImages .below_left {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_right,
.textAndImages .below_right {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_center,
.textAndImages .below_center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages > *:first-child {
  margin-top: 0;
}
.textAndImages > *:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 48em) {
  .intext_left, .intext_right {
    max-width: 440px;
    width: 50%;
  }
}

.intext_right {
  float: none !important;
  display: block;
  margin: 30px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .intext_right {
    float: right !important;
    margin: 10px 0 30px 30px !important;
  }
}
@media only screen and (min-width: 78em) {
  .intext_right {
    margin: 20px 0 50px 50px !important;
  }
}

.intext_left {
  float: none !important;
  display: block;
  margin: 30px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .intext_left {
    float: left !important;
    margin: 10px 30px 30px 0 !important;
  }
}
@media only screen and (min-width: 78em) {
  .intext_left {
    margin: 20px 50px 50px 0 !important;
  }
}

.medias .center {
  text-align: center;
}

.fit-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fit-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.custom-object-fit {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.custom-object-fit img {
  opacity: 0;
}

.no-photo:empty {
  background: url("/images/commun/no-photo.jpg") no-repeat scroll center;
  opacity: 0.4;
  background-size: 100%;
}
@media only screen and (min-width: 30em) {
  .no-photo:empty {
    background-size: auto;
  }
}

.formulaire,
iframe:not([src*=recaptcha]),
.medias {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .formulaire,
  iframe:not([src*=recaptcha]),
  .medias {
    margin: 60px 0;
  }
}

/*--------------------------------

	Logo

*/
#logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media only screen and (min-width: 78em) {
  #logo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    background: #0C0C0C;
    height: 100%;
    text-align: center;
    transform: none;
    padding: 45px 30px;
  }
}
@media only screen and (min-width: 90em) {
  #logo {
    padding: 38px 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  #logo {
    padding: 38px 80px;
  }
}

#logo a {
  display: block;
  width: 159px;
  height: 30px;
  text-indent: -9999px;
  background: transparent url("/images/logo/logo-pirotais.png") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 90em) {
  #logo a {
    width: 224px;
    height: 44px;
  }
}

/*--------------------------------

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  article ul {
    margin: 60px 0;
  }
}
article ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .sitemap ul li, .detail-product ul li, .family-pres ul li {
  padding-left: 40px;
  position: relative;
  line-height: 24px;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before, .detail-product ul li::before, .family-pres ul li::before {
  content: "";
  height: 1px;
  width: 40px;
  position: absolute;
  left: -10px;
  top: 12px;
  background: #0C0C0C;
  display: inline-block;
}

article ol {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ol li {
  list-style: inside decimal-leading-zero;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*--------------------------------

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #CCCCC1;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  table {
    font-size: 16px;
  }
}
table caption {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  table caption {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
table thead,
table tfoot {
  background: #F6F6F6;
  color: #838379;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #CCCCC1;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table tr:nth-of-type(even) {
  background: #F6F6F6;
}
table tr td {
  border: 1px solid #CCCCC1;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table.sansBord, table.sansBord *:not(caption) {
  border: none;
  background: none !important;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
}

/*--------------------------------

	Tableaux responsive

*/
.table-responsive {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100% !important;
  margin-bottom: 15px !important;
  -ms-overflow-style: -ms-autohiding-scrollbar !important;
  -webkit-overflow-scrolling: touch !important;
}
.table-responsive > .table {
  margin-bottom: 0;
}
.table-responsive > .table-bordered {
  border: 0;
}

.table-responsive > table > thead > tr > th,
.table-responsive > table > tbody > tr > th,
.table-responsive > table > tfoot > tr > th,
.table-responsive > table > thead > tr > td,
.table-responsive > table > tbody > tr > td,
.table-responsive > table > tfoot > tr > td {
  min-width: 100px;
}

/*--------------------------------

	Règles typographiques

*/
/*--------------------------------

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Khand", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 30px 0 15px;
  color: #000000;
}
@media only screen and (min-width: 48em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    margin: 60px 0 30px;
  }
}

h1,
.h1 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 45px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
  }
}

h2,
.h2 {
  font-size: 20px;
  line-height: 1.3;
}
@media only screen and (min-width: 48em) {
  h2,
  .h2 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (min-width: 78em) {
  h3,
  .h3 {
    font-size: 24px;
  }
}

h4,
.h4 {
  font-weight: 600;
  font-size: 18px;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

h5,
.h5 {
  text-transform: uppercase;
  font-size: 16px;
}
@media only screen and (min-width: 78em) {
  h5,
  .h5 {
    font-size: 18px;
  }
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (min-width: 78em) {
  h6,
  .h6 {
    font-size: 18px;
  }
}

p, ul, ol,
.blockquote, .button-wrapper, .media, .table-wrapper {
  margin-top: 1em;
}
p:first-child, ul:first-child, ol:first-child,
.blockquote:first-child, .button-wrapper:first-child, .media:first-child, .table-wrapper:first-child {
  margin-top: 0;
}

p {
  margin: 15px 0;
}
@media only screen and (min-width: 78em) {
  p {
    margin: 20px 0;
  }
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

/*--------------------------------

	MODULE
	Ces fichiers contiennent les styles généraux des éléments html & les règles de typo

*/
.breadcrumb {
  font-size: 12px;
  color: #9D9E92;
  margin-bottom: 14px;
}
.breadcrumb a {
  color: #9D9E92;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    order: 2;
    position: absolute;
    left: 40px;
    bottom: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1;
  }
}
@media only screen and (min-width: 103.125em) {
  .breadcrumb {
    left: 80px;
  }
}

/*--------------------------------

	Galerie Fancybox 3

*/
.product-picture-gallery a[data-fancybox=group], .medias .gallery a {
  position: relative;
}
.product-picture-gallery a[data-fancybox=group]::after, .medias .gallery a::after {
  content: url(/images/icon/icon-extend.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.product-picture-gallery a[data-fancybox=group]:hover::after, .medias .gallery a:hover::after {
  opacity: 1;
}

.fancybox-enabled {
  overflow: hidden;
}
.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  backface-visibility: hidden;
}
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  backface-visibility: hidden;
}
.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity 0.2s;
  pointer-events: none;
  backface-visibility: hidden;
  direction: ltr;
}
.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}
.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}
.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider, .fancybox-slider-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}
.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #000000;
  overflow: auto;
  box-sizing: border-box;
}
.fancybox-slide--image {
  overflow: hidden;
}
.fancybox-slide--image ::before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide--video .fancybox-content {
  background: transparent;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
.fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  backface-visibility: hidden;
}

.fancybox-image, .fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: zoom-out;
}
.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: zoom-in;
}
.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: grab;
}
.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: grabbing;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  transform: translate(-50%, -50%);
  background: #000000;
  cursor: default;
}
.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}
.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}
.fancybox-close-small::after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #000000;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2;
}
.fancybox-close-small:focus::after {
  outline: 1px dotted #888;
}
.fancybox-close-small:hover::after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}
.fancybox-caption button {
  pointer-events: all;
}
.fancybox-caption a {
  color: #000000;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}
.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.fancybox-button::before, .fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}
.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}
.fancybox-button--disabled::before, .fancybox-button--disabled::after {
  opacity: 0.5;
}
.fancybox-button--left {
  border-bottom-left-radius: 5px;
}
.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: rotate(-135deg);
}
.fancybox-button--right {
  border-bottom-right-radius: 5px;
}
.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: rotate(45deg);
}
.fancybox-button--close {
  float: right;
}
.fancybox-button--close::before, .fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}
.fancybox-button--close::before {
  transform: rotate(45deg);
}
.fancybox-button--close::after {
  transform: rotate(-45deg);
}
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}
.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}
.fancybox-button--thumbs span {
  font-size: 23px;
}
.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }
  .fancybox-button--left, .fancybox-button--right, .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #000000;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}
.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #000000;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  box-sizing: border-box;
}
.fancybox-thumbs > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active::before {
  opacity: 1;
}
.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}
/*--------------------------------

	Style général des formulaires

*/
.formulaire {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 90em) {
  .formulaire {
    max-width: 600px;
  }
}

.form_creator_header {
  margin-bottom: 30px;
}

/* RGPD */
article .groupCheckboxUnique label.inline {
  float: left;
  margin-right: 20px;
}
article .groupCheckboxUnique .group_multi_checkbox {
  float: left;
  margin-bottom: 7px;
  width: 70px;
  margin-top: 0;
}

.form_creator_footer {
  margin-top: 30px;
}

.rgpd, .form_creator_footer, .alertMail {
  font-size: 12px;
  color: #9D9E92;
}
.rgpd p, .form_creator_footer p, .alertMail p {
  margin: 10px 0;
  line-height: 1.6;
}

.footerForm {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fieldGroup {
  overflow: hidden;
}

label.inline, .newsletter article .fieldGroup > label {
  display: block;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 7px;
}
label.inline.error, .newsletter article .fieldGroup > label.error {
  color: #f50023;
}
label.inline .obligatory, .newsletter article .fieldGroup > label .obligatory {
  color: #f50023;
}

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: inherit;
  background-color: #F4F2F0;
  appearance: none;
  display: inline-block;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #CCCCC1;
  border-color: #F4F2F0;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
    font-size: 16px;
  }
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
    font-size: 16px;
  }
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  letter-spacing: 1px;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
    font-size: 16px;
  }
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
    font-size: 16px;
  }
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  letter-spacing: 1px;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
    font-size: 16px;
  }
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: #ddd;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #ddd;
}

.error input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border: 1px solid #CCCCC1;
  border-color: #f50023;
}

.error textarea {
  border: 1px solid #CCCCC1;
  border-color: #f50023;
}

/*--------------------------------

	Liste déroulante

*/
select {
  box-sizing: border-box;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 0 rgba(160, 160, 160, 0.25);
  padding-left: 20px;
}
.error select {
  border: 1px solid #CCCCC1;
  border-color: #f50023;
}
select:hover {
  background: #F6F6F6;
}
select .select-mini, .select-mini select {
  font-size: 12px;
  padding: 10px;
  min-width: 120px;
  max-width: 200px;
  margin: 10px 0;
}

.select-container {
  position: relative;
}
.select-container .icon, .select-container :not(label):not(.form_field).error,
.select-container .loginError,
.select-container .confirmpasswd,
.select-container .strength_password {
  transform: rotate(90deg);
  top: 26px;
}
.select-container .icon::after, .select-container .error:not(label):not(.form_field)::after,
.select-container .loginError::after,
.select-container .confirmpasswd::after,
.select-container .strength_password::after {
  content: "";
  height: 60px;
  width: 1px;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 6px;
  left: 5px;
  transform: rotate(-90deg);
}
.select-container.select-mini .icon, .select-container.select-mini :not(label):not(.form_field).error,
.select-container.select-mini .loginError,
.select-container.select-mini .confirmpasswd,
.select-container.select-mini .strength_password {
  top: 14px;
  right: 10px;
}
.select-container.select-mini .icon::after, .select-container.select-mini .error:not(label):not(.form_field)::after,
.select-container.select-mini .loginError::after,
.select-container.select-mini .confirmpasswd::after,
.select-container.select-mini .strength_password::after {
  height: 36px;
  top: 12px;
  left: 5px;
}

/*--------------------------------

	Boutons de validation/annulation

*/
input[type=submit] {
  font-size: 16px;
  box-shadow: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: auto;
}

/*--------------------------------

	Upload d'un fichier

*/
input[type=file] {
  padding-left: 20px !important;
  font-size: 12px !important;
}

/*--------------------------------

	Validation par Captcha

*/
.captcha {
  overflow: hidden;
  text-align: center;
}
.captcha #html_element > div {
  width: inherit !important;
  height: inherit !important;
}
.captcha #html_element > div iframe {
  margin: 30px 0px 10px;
}

/*--------------------------------

	Ensemble de champs

*/
fieldset {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
fieldset + fieldset {
  margin-top: 40px;
}
fieldset > legend {
  font-size: 24px;
  display: table-cell;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #0C0C0C;
}
fieldset > legend::before {
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 12px;
  text-align: center;
  color: #fff;
  background-color: #0C0C0C;
}

form > fieldset:first-child > legend::before {
  content: "1";
}

form > fieldset:nth-child(2) > legend::before {
  content: "2";
}

form > fieldset:nth-child(3) > legend::before {
  content: "3";
}

form > fieldset:nth-child(4) > legend::before {
  content: "4";
}

.newsletter legend {
  display: none;
}

.form-group {
  margin-bottom: 25px;
}

/*--------------------------------

	Erreurs -> ENLEVER LES REQUIRED POUR STYLISER

*/
:not(label):not(.form_field).error,
.loginError,
.confirmpasswd,
.strength_password {
  color: #f50023;
  font-size: 12px !important;
  display: block;
  padding: 2px 10px;
  margin: -10px 0 30px;
  letter-spacing: 1px;
}
:not(label):not(.form_field).error::before,
.loginError::before,
.confirmpasswd::before,
.strength_password::before {
  font-size: 4px;
  margin-right: 8px;
  margin-top: -2px;
}
:not(label):not(.form_field).error .errorMessage,
.loginError .errorMessage,
.confirmpasswd .errorMessage,
.strength_password .errorMessage {
  display: inline;
}

.strength_password {
  font-weight: 700;
}
.strength_password::before {
  display: none;
}
.strength_password.shortPass {
  color: #f50023;
}
.strength_password.badPass {
  color: orange;
}
.strength_password.goodPass, .strength_password.strongPass {
  color: #24b35d;
}

.confirmpasswd {
  font-weight: 700;
}
.confirmpasswd::before {
  display: none;
}
.confirmpasswd.notequalpasswd {
  color: #f50023;
}
.confirmpasswd.equalpasswd {
  color: #24b35d;
}

/*--------------------------------

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  color: #9D9E92;
}
.aide p {
  font-size: 12px;
  line-height: 20px;
}

/*--------------------------------

	Checkboxes et boutons radios

*/
.group_multi_radio,
.groupMultiRadio,
.groupMulticheckbox,
.group_multi,
.groupMulti {
  display: block;
  margin-top: 10px;
  padding-bottom: 20px;
}
.group_multi_radio.groupCheckBoxUnique,
.groupMultiRadio.groupCheckBoxUnique,
.groupMulticheckbox.groupCheckBoxUnique,
.group_multi.groupCheckBoxUnique,
.groupMulti.groupCheckBoxUnique {
  padding-bottom: 0;
}
.group_multi_radio p,
.groupMultiRadio p,
.groupMulticheckbox p,
.group_multi p,
.groupMulti p {
  margin: 0;
}

.group_multi_radio {
  display: flex;
  flex-wrap: wrap;
}
.group_multi_radio .multi_radio:not(:first-child) {
  margin-left: 20px;
}

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.multi_radio.other input[type=text],
.multiRadio.other input[type=text],
.multi_checkbox.other input[type=text],
.multiCheckbox.other input[type=text] {
  margin-bottom: 0;
}

input[type=checkbox], input[type=radio] {
  float: left;
  margin: 0 15px 0 0;
}

.filter-inner .multi_checkbox,
.filter-inner .multiCheckbox {
  display: block;
  overflow: hidden;
}
.filter-inner .multi_checkbox.other input[type=text],
.filter-inner .multiCheckbox.other input[type=text] {
  margin-bottom: 0;
}

.filter-inner input[type=checkbox], .filter-inner input[type=radio] {
  float: left;
  margin: 9px 15px 0 0;
}
.filter-inner input[type=checkbox].checkbox, .filter-inner input[type=radio].checkbox {
  float: none;
  margin-bottom: 20px;
  display: block;
}

/*--------------------------------

	CAPCHA

*/
#captcha {
  margin: 10px 0 25px;
}
#captcha iframe {
  margin: 0;
}
#captcha #html_element > div {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------

	Submit

*/
.submit {
  text-align: center;
}

/*--------------------------------

	Suppression reset form

*/
#reset {
  display: none;
}

/*--------------------------------

	Style de la galerie miniature

*/
.medias .gallery ul {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  -moz-appearance: menuimage;
  scrollbar-width: none;
  -webkit-overflow-x-scrolling: touch;
  margin: 0 -15px;
  padding: 0 15px;
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul {
    margin: 0 -10px;
    padding: 0;
    overflow: hidden;
    flex-wrap: wrap;
  }
}
.medias .gallery ul::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
.medias .gallery ul li {
  margin: 0;
  margin-right: 20px;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul li {
    width: calc(33.333% - 20px);
    margin: 0 10px 10px;
  }
}
@media only screen and (min-width: 90em) {
  .medias .gallery ul li {
    width: calc(25% - 20px);
    height: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .medias .gallery ul li {
    height: 200px;
  }
}
.medias .gallery ul li a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.medias .gallery ul li .fit-contain {
  height: 115px;
  width: 140px;
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul li .fit-contain {
    height: 100%;
    width: 100%;
  }
}
.medias .gallery ul li .fit-contain img {
  height: 92px;
  width: 121.52px;
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul li .fit-contain img {
    height: 87%;
    width: 87%;
  }
}

/*--------------------------------

	NAVIGATION

*/
#nested {
  position: relative;
}
@media only screen and (min-width: 78em) {
  #nested {
    height: auto;
    overflow: visible;
  }
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  z-index: 9999;
  padding: 20px;
}
@media only screen and (min-width: 78em) {
  .title-area {
    display: none;
  }
}

.toggle-topbar a {
  width: 27px;
  height: 20px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.toggle-topbar a::before, .toggle-topbar a::after {
  content: "";
  position: absolute;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle-topbar a::before {
  background-image: url("/images/icon/icon-menu.svg");
  bottom: 0;
}
.toggle-topbar a::after {
  background-image: url("/images/icon/icon-menu-cross.svg");
  top: -27px;
}
.toggle-topbar a span {
  display: none;
}
.expanded .toggle-topbar a::before {
  bottom: -27px;
}
.expanded .toggle-topbar a::after {
  top: 0;
}

/* ---------------- TOP BAR ---------------- */
.top-bar-section {
  position: absolute;
  left: -100vw;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: #fff;
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 60px);
}
.top-bar-section::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
.expanded .top-bar-section {
  left: 0;
  width: 100vw;
}
@media only screen and (min-width: 78em) {
  .top-bar-section {
    left: auto;
    position: relative;
    overflow: visible;
    width: auto;
    height: auto;
  }
}

.top-bar-section a {
  width: 100%;
  display: block;
}

/* ---------------- FIRST LEVEL ---------------- */
.top-bar-section ul {
  margin: 0 auto;
  max-width: 400px;
}
@media only screen and (min-width: 78em) {
  .top-bar-section ul {
    margin: 0;
    max-width: none;
  }
}

@media only screen and (min-width: 78em) {
  #nested ul.firstLevel {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
  }
}
#nested ul.firstLevel > li {
  position: relative;
}
#nested ul.firstLevel > li > a {
  padding: 20px 30px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #0C0C0C;
  text-decoration: none;
  font-size: 18px;
}
#nested ul.firstLevel > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  width: 40px;
  height: 2px;
  background: #838379;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li > a {
    padding: 30px 22px;
  }
  #nested ul.firstLevel > li > a::after {
    height: 40px;
    width: 1.5px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -30px;
    background: #AFAFAF;
  }
}
@media only screen and (min-width: 90em) {
  #nested ul.firstLevel > li > a {
    padding: 30px 30px;
  }
}
#nested ul.firstLevel > li.active > a, #nested ul.firstLevel > li:hover > a, #nested ul.firstLevel > li:focus > a {
  background: #F4F2F0;
}
#nested ul.firstLevel > li.active > a::after, #nested ul.firstLevel > li:hover > a::after, #nested ul.firstLevel > li:focus > a::after {
  opacity: 1;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:hover > a, #nested ul.firstLevel > li:focus > a {
    background: #FBFAFA;
  }
  #nested ul.firstLevel > li:not(.has-dropdown) > a::after {
    opacity: 0;
  }
  #nested ul.firstLevel > li.active:hover > a::after, #nested ul.firstLevel > li.active:focus > a::after {
    opacity: 1;
  }
}

.subheader-list a {
  padding: 14px 30px;
  color: #0C0C0C;
  text-decoration: none;
}
.subheader-list a.active {
  font-weight: 700;
}

.footer-menu {
  background: #0C0C0C;
  text-align: center;
  padding: 15px 30px 30px;
}
@media only screen and (min-width: 78em) {
  .footer-menu {
    display: none;
  }
}
.footer-menu .tel {
  font-family: "Khand", sans-serif;
  font-size: 20px;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.langues {
  display: flex;
  justify-content: center;
  align-items: center;
}
.langues li:last-child {
  margin-left: 20px;
}
.langues li:last-child a {
  color: #CCCCC1;
}

/* ---------------- SECOND LEVEL ---------------- */
@media only screen and (min-width: 78em) {
  .bg-ul {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #FBFAFA;
    height: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    top: 100%;
    z-index: -1;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  }
}
ul.secondLevel {
  display: none;
  margin: 0;
  background: #F4F2F0;
  padding: 10px 0;
}
@media only screen and (min-width: 78em) {
  ul.secondLevel {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 100%;
    display: block;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    padding: 0;
    background: none;
    top: auto;
    left: 0;
    min-width: 100%;
    right: auto;
    left: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 50px 0 40px;
  }
  .has-dropdown:hover ul.secondLevel {
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    opacity: 1;
  }
}
ul.secondLevel li > a {
  padding: 5px 30px;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  ul.secondLevel li > a {
    white-space: nowrap;
  }
}
ul.secondLevel li.active > a, ul.secondLevel li:hover > a {
  color: #0C0C0C;
}

/*--------------------------------

	Listing pagination

*/
.pager-listing {
  padding: 0 15px;
  margin: 40px 0 0;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  .pager-listing {
    margin-top: 50px;
  }
}
.pager-listing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.pager-listing a {
  padding: 6px 14px;
  font-size: 18px;
  display: inline-block;
  color: #000000;
  background: #fff;
  margin-left: 0.5em;
  margin-right: 0.5em;
  border: 1px solid #CCCCC1;
  border-color: #DBD4CE;
  text-decoration: none;
  margin-bottom: 10px;
}
.pager-listing a.pager_active_page {
  background: #0C0C0C;
  color: #fff;
  font-weight: 700;
}
.pager-listing a:hover {
  border-color: #000;
}
.pager-listing a .icon, .pager-listing a :not(label):not(.form_field).error,
.pager-listing a .loginError,
.pager-listing a .strength_password,
.pager-listing a .confirmpasswd {
  display: inline-block;
}

.catalog-search-btn {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn {
    height: 80px;
    min-width: 213px;
    width: 100%;
    background: #0C0C0C;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .catalog-search-btn:hover {
    background: rgb(37.5, 37.5, 37.5);
  }
}
.catalog-search-btn::before, .catalog-search-btn::after {
  content: "";
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn::before, .catalog-search-btn::after {
    text-transform: uppercase;
    text-align: center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    left: 50%;
  }
}
.catalog-search-btn::before {
  background-image: url(/images/icon/icon-search.svg);
  bottom: 0;
  width: 25px;
  height: 25px;
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn::before {
    content: "Rechercher";
    width: auto;
    height: auto;
    bottom: auto;
    bottom: 50%;
    transform: translateY(50%) translateX(-50%);
  }
}
.catalog-search-btn::after {
  background-image: url(/images/icon/icon-menu-cross.svg);
  top: -25px;
  width: 20px;
  height: 20px;
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn::after {
    content: "Fermer";
    width: auto;
    height: auto;
    top: -50%;
    transform: translateY(-50%) translateX(-50%);
  }
}
.catalog-search-btn.open-search::before {
  bottom: -25px;
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn.open-search::before {
    bottom: -100%;
  }
}
.catalog-search-btn.open-search::after {
  top: 0;
}
@media only screen and (min-width: 78em) {
  .catalog-search-btn.open-search::after {
    top: 50%;
  }
}

.catalog-search-form {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}
.catalog-search-form.open-search {
  top: 70px;
}
@media only screen and (min-width: 78em) {
  .catalog-search-form.open-search {
    top: 120px;
  }
}
.catalog-search-form-inner {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
}
.catalog-search-form-inner input#catalog_search_string_in_box_recherche {
  height: 60px;
  padding: 15px;
  margin: 0;
  border: none;
  background: #fff;
  border-radius: 0;
}
@media only screen and (min-width: 78em) {
  .catalog-search-form-inner input#catalog_search_string_in_box_recherche {
    height: 70px;
    padding: 15px 30px;
    background: #FBFAFA;
  }
}
@media only screen and (min-width: 90em) {
  .catalog-search-form-inner input#catalog_search_string_in_box_recherche {
    padding: 15px 80px;
    height: 80px;
  }
}
.catalog-search-form-inner .submit {
  background: url(/images/icon/icon-search.svg) no-repeat, #0C0C0C;
  background-position: center;
}
@media only screen and (min-width: 78em) {
  .catalog-search-form-inner .submit {
    background-size: 15px;
    background-position: 40px center;
  }
}
.catalog-search-form-inner .submit input {
  text-indent: -999999px;
  background: none;
  border: none;
  box-shadow: none;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 0;
}
@media only screen and (min-width: 78em) {
  .catalog-search-form-inner .submit input {
    height: 70px;
    width: 213px;
    text-indent: 0;
    text-transform: uppercase;
    font-size: 15px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .catalog-search-form-inner .submit input {
    height: 80px;
  }
}

/*--------------------------------

	Bouton retour en haut de page

*/
.scroll-top {
  width: 40px;
  height: 40px;
  border: 1px solid #CCCCC1;
  border-color: #000;
  border-radius: 100px;
  display: inline-block;
  position: fixed;
  z-index: 1000;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  box-shadow: 0 0 4px 0 rgba(87, 87, 87, 0.75);
  background: #fff;
}
.scroll-top .icon, .scroll-top :not(label):not(.form_field).error,
.scroll-top .loginError,
.scroll-top .strength_password,
.scroll-top .confirmpasswd {
  transform: rotate(-90deg);
  left: 13px;
  top: 6px;
  position: absolute;
  display: inline-block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

*/
/*--------------------------------

	Layout du contenu des pages

*/
.article-title {
  background: #F4F2F0;
  padding: 10px 15px 12px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .article-title {
    margin-bottom: 30px;
    padding: 10px 15px 20px;
  }
}
@media only screen and (min-width: 78em) {
  .article-title {
    display: flex;
    flex-direction: column;
    padding: 45px 0;
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 48em) {
  .simpleText,
  .textAndImages {
    overflow: hidden;
  }
}

.description-style {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #888;
  font-style: italic;
}

@media only screen and (min-width: 48em) {
  .deux_colonnes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .deux_colonnes {
    grid-column-gap: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .deux_colonnes {
    grid-column-gap: 60px;
  }
}

.code_html > *:last-child {
  margin-bottom: 0;
}

.moretext {
  display: none;
}
.moretext > h2:first-child {
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .moretext > h2:first-child {
    margin-top: 60px;
  }
}

.moreless-button {
  background: #000000;
  color: #fff;
  padding: 13px 20px 10px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 20px;
}

/*--------------------------------

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #838379;
  font-weight: 700;
  background: #a5a5a5;
  padding: 10px 20px;
}
.site-map .rubrique_sommaire_ {
  font-size: 24px;
}
.site-map .rubrique_sommaire_::before {
  display: none;
}
.site-map .sitemap_level1 {
  font-size: 18px;
}
.site-map .sitemap_level1 > li {
  margin-top: 20px;
}
.site-map .sitemap_level2 {
  font-size: 16px;
}
.site-map .sitemap_level2 > li {
  margin-top: 10px;
}
.site-map .sitemap_level2 > li a {
  font-weight: 400;
}
.site-map .sitemap_level3 {
  font-size: 14px;
}

/*--------------------------------

	Page vide

*/
.error-page .icon-website-update::before {
  font-size: 12px;
}
@media only screen and (min-width: 48em) {
  .error-page .icon-website-update::before {
    font-size: 16px;
  }
}

/*--------------------------------

	Footer

*/
footer {
  position: relative;
  z-index: 1;
}

.subfooter {
  margin: 60px 0;
}
@media only screen and (min-width: 48em) {
  .subfooter {
    width: 85%;
    margin: 60px auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter {
    justify-content: space-between;
    max-width: 1273px;
    margin: 80px auto 50px;
  }
}
.subfooter-item {
  position: relative;
  text-align: center;
  max-width: 225px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .subfooter-item {
    width: 50%;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-item {
    width: 100%;
    margin: 0;
  }
}
.subfooter-item:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .subfooter-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-item:not(:last-child) {
    margin: 0;
  }
}
.subfooter-item:nth-last-child(2) img {
  width: 75px;
}
@media only screen and (min-width: 48em) {
  .subfooter-item:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.subfooter-item .h4 {
  font-size: 20px;
  margin: 12px 0 8px;
}
.subfooter-item p:not(.h4) {
  margin: 0;
  color: #838379;
  font-size: 14px;
  line-height: 20px;
}
.subfooter-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer, .signature {
  color: #fff;
}
.footer a, .signature a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .footer a:hover, .signature a:hover {
    text-decoration: underline;
  }
}

.footer {
  background: #0C0C0C;
  padding: 30px 15px 20px;
}
@media only screen and (min-width: 48em) {
  .footer {
    padding: 30px 0;
  }
  .footer-inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 78em) {
  .footer {
    padding: 60px 0 40px;
  }
  .footer-inner {
    max-width: 1273px;
  }
}
.footer-newsletter {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
}
@media only screen and (min-width: 78em) {
  .footer-newsletter {
    font-size: 24px;
  }
}
.footer-newsletter::after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url(/images/icon/icon-arrow-right-white.svg) no-repeat center;
  background-size: 100%;
  position: relative;
  top: 2px;
  margin-left: 5px;
}
@media only screen and (min-width: 78em) {
  .footer-newsletter::after {
    width: 18px;
    height: 18px;
    margin-left: 20px;
  }
}
.footer-rs {
  text-align: center;
  margin: 30px 0 40px;
}
@media only screen and (min-width: 78em) {
  .footer-rs {
    margin: 40px 0 50px;
  }
}
.footer-rs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 20px;
}
.footer-rs ul li:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (min-width: 78em) {
  .footer-rs ul li:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 48em) {
  .footer-rs {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-rs img {
    order: 2;
  }
  .footer-rs ul {
    order: 1;
    margin: 0;
  }
  .footer-rs a {
    order: 3;
  }
}
@media only screen and (min-width: 48em) {
  .footer-shortcut {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  .footer-shortcut {
    max-width: 1150px;
  }
}
.footer-shortcut-item {
  max-width: 240px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .footer-shortcut-item {
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .footer-shortcut-item {
    font-size: 14px;
    line-height: 1.43;
  }
}
.footer-shortcut-item:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .footer-shortcut-item:not(:last-child) {
    margin: 0;
  }
}
.footer-shortcut-item:first-child p:not(.h3), .footer-shortcut-item:first-child a {
  position: relative;
  padding-left: 27px;
}
.footer-shortcut-item:first-child p:not(.h3)::before, .footer-shortcut-item:first-child a::before {
  position: absolute;
  left: 0;
  top: 3px;
}
.footer-shortcut-item:first-child a {
  padding-left: 35px;
  text-decoration: underline;
  font-size: 18px;
}
.footer-shortcut-item:first-child a::before {
  content: url(/images/icon/icon-contact.svg);
  top: 0;
}
.footer-shortcut .h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 18px;
}
@media only screen and (min-width: 78em) {
  .footer-shortcut .h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.footer-shortcut ul {
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .footer-shortcut ul span {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .footer-shortcut ul span {
    display: inline;
  }
}
.footer-shortcut .footer-address {
  font-size: 14px;
  line-height: 1.4;
  margin: 20px 0 0;
}
.footer-shortcut .footer-address::before {
  content: url(/images/icon/icon-map.svg);
}
.footer-shortcut .footer-tel {
  margin: 15px 0 25px;
  font-size: 16px;
  font-family: "Khand", sans-serif;
  font-weight: bold;
}
.footer-shortcut .footer-tel::before {
  content: url(/images/icon/icon-tel.svg);
}

.signature {
  background: #1E1E1E;
  text-align: center;
  font-size: 12px;
  padding: 20px 15px;
}
@media only screen and (min-width: 48em) {
  .signature {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 78em) {
  .signature {
    padding: 14px 0 11px;
  }
}
@media only screen and (min-width: 78em) {
  .signature-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    max-width: 1273px;
  }
}
.signature-inner p {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .signature-inner p:first-child {
    text-align: right;
    order: 3;
  }
}
.signature-inner p:first-child a:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (min-width: 78em) {
  .signature-inner p:first-child a:not(:last-child):nth-child(2) {
    margin-right: 0;
  }
}
.signature-inner p:first-child br {
  display: none;
}
@media only screen and (min-width: 78em) {
  .signature-inner p:first-child br {
    display: block;
  }
}
.signature-inner > img {
  max-width: 168px;
  margin: 20px auto;
  display: block;
}
@media only screen and (min-width: 78em) {
  .signature-inner > img {
    max-width: 140px;
    margin: 0;
    order: 2;
    max-width: 168px;
  }
}

/*--------------------------------

	Header

*/
header {
  position: relative;
  z-index: 10;
}

.header-inner {
  z-index: 2;
  background: #0C0C0C;
  color: #fff;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    background: #fff;
    align-items: flex-end;
  }
  .header-inner::after {
    content: "";
    background: #CCCCC1;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
  }
}

.subheader, .header-right .langues {
  display: none;
}
@media only screen and (min-width: 78em) {
  .subheader, .header-right .langues {
    display: block;
  }
}

@media only screen and (min-width: 78em) {
  .subheader {
    position: absolute;
    top: 5px;
    right: 25px;
    display: flex;
  }
  .subheader-list {
    display: flex;
    font-size: 14px;
  }
  .subheader-list li:not(:last-child) {
    margin-right: 40px;
  }
  .subheader-list a {
    padding: 0;
  }
  .subheader-list a:hover {
    color: #838379;
  }
  .subheader .tel {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #0C0C0C;
    font-family: "Khand", sans-serif;
    margin-left: 120px;
  }
}
@media only screen and (min-width: 90em) {
  .subheader {
    right: 40px;
  }
  .subheader .tel {
    margin-left: 125px;
  }
}
.header-right {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 78em) {
  .header-right {
    position: relative;
    width: auto;
    height: auto;
  }
  .header-right .langues {
    margin-right: 20px;
  }
  .header-right .langues li {
    margin: 0;
    line-height: 1.3;
  }
  .header-right .langues li a {
    color: #0C0C0C;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
  }
  .header-right .langues li:last-child a {
    color: #CCCCC1;
  }
}
@media only screen and (min-width: 90em) {
  .header-right .langues {
    margin-right: 40px;
  }
}

/*--------------------------------

	Sidebar

*/
#leftbar .catalog-search-form {
  display: none;
}

/*--------------------------------

	PUBLICATION
	Ces fichiers contiennent les styles des différents type de publication

*/
/*--------------------------------

	Familles du catalogue

*/
.ru-family .article-title, .newsList .article-title {
  margin-bottom: 0;
  width: 100%;
}
.ru-family .retour-liste, .newsList .retour-liste {
  display: none;
}
.ru-family main, .newsList main {
  overflow: hidden;
  z-index: 2;
  background: #F4F2F0;
}
@media only screen and (min-width: 78em) {
  .ru-family main, .newsList main {
    display: flex;
    flex-wrap: wrap;
  }
}
.ru-family article, .newsList article {
  width: 100%;
  max-width: none;
  padding: 0;
}
@media only screen and (min-width: 90em) {
  .ru-family .subfooter, .newsList .subfooter {
    margin-top: 40px;
  }
}
.ru-family #leftbar, .newsList #leftbar {
  display: none;
}

.catalogProductsList.ru-sans-retour .article-title {
  margin-bottom: 0;
  width: 100%;
}
.catalogProductsList.ru-sans-retour .retour-liste {
  display: none;
}

@media only screen and (min-width: 48em) {
  article .family-list-item, article .news-list-item, article .page-menu-list-item {
    width: 33.3333%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  article .family-list-item:first-child, article .news-list-item:first-child, article .family-list-item:nth-child(2), article .news-list-item:nth-child(2), article .family-list-item:nth-child(3), article .news-list-item:nth-child(3), article .family-list-item:nth-of-type(2n+2):nth-child(2), article .page-menu-list-item:first-child, article .page-menu-list-item:nth-child(2), article .page-menu-list-item:nth-child(3), article .page-menu-list-item:nth-of-type(2n+2):nth-child(2) {
    border-top: 1px solid #DBD4CE;
  }
  article .family-list-item:nth-of-type(2n+2), article .news-list-item:nth-of-type(2n+2), article .page-menu-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  article .family-list-item:last-child, article .news-list-item:last-child, article .family-list-item:nth-of-type(2n+2):last-child, article .page-menu-list-item:last-child, article .page-menu-list-item:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  article .family-list-item:nth-of-type(3n+1), article .news-list-item:nth-of-type(3n+1), article .page-menu-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 78em) {
  article .family-list-item, article .news-list-item, article .page-menu-list-item {
    width: 25%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  article .family-list-item:first-child, article .news-list-item:first-child, article .family-list-item:nth-child(2), article .news-list-item:nth-child(2), article .family-list-item:nth-child(3), article .news-list-item:nth-child(3), article .family-list-item:nth-of-type(2n+2):nth-child(2), article .family-list-item:nth-child(4), article .news-list-item:nth-child(4), article .family-list-item:nth-of-type(2n+2):nth-child(4), article .page-menu-list-item:first-child, article .page-menu-list-item:nth-child(2), article .page-menu-list-item:nth-child(3), article .page-menu-list-item:nth-of-type(2n+2):nth-child(2), article .page-menu-list-item:nth-child(4), article .page-menu-list-item:nth-of-type(2n+2):nth-child(4) {
    border-top: 1px solid #DBD4CE;
  }
  article .family-list-item:nth-of-type(2n+2), article .news-list-item:nth-of-type(2n+2), article .page-menu-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  article .family-list-item:last-child, article .news-list-item:last-child, article .family-list-item:nth-of-type(2n+2):last-child, article .page-menu-list-item:last-child, article .page-menu-list-item:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  article .family-list-item:nth-of-type(3n+1), article .news-list-item:nth-of-type(3n+1), article .page-menu-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
  article .family-list-item-inner::before, article .news-list-item-text::before, article .page-menu-list-item-inner::before {
    content: "Voir les produits" !important;
  }
}
@media only screen and (min-width: 90em) {
  article .family-list-item-inner, article .news-list-item-text, article .page-menu-list-item-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  article .family-list-item-inner::before, article .news-list-item-text::before, article .page-menu-list-item-inner::before {
    bottom: 28px;
  }
}
article .family-list-item-picture, article .page-menu-list-item-picture {
  height: 145px;
}
@media only screen and (min-width: 48em) {
  article .family-list-item-picture, article .page-menu-list-item-picture {
    height: 220px;
  }
}
@media only screen and (min-width: 90em) {
  article .family-list-item-picture, article .page-menu-list-item-picture {
    height: 320px;
  }
}
article .family-list-item h2, article .news-list-item h2, article .page-menu-list-item h2 {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 15px;
  margin: 8px 0 0;
}
@media only screen and (min-width: 90em) {
  article .family-list-item h2, article .news-list-item h2, article .page-menu-list-item h2 {
    font-size: 30px;
    margin: 30px 0 0;
  }
}
@media only screen and (min-width: 103.125em) {
  article .family-list-item h2, article .news-list-item h2, article .page-menu-list-item h2 {
    margin-top: 40px;
  }
}

/*
.salle_a_manger article .family-list{
	&-item {
		&-picture {
			img {
				object-position: left;
			}
		}
	}
}

.salle_a_manger #contentForFilter .family-list:not(.page-menu-list) .family-list-item-inner {
	padding-left: 0;
}*/
/*--------------------------------

	Produits du catalogue

*/
.no-result {
  text-align: center;
  border: 1px solid #DBD4CE;
  background: #fff;
  padding: 20px;
  max-width: 500px;
  width: 85%;
  margin: 0 auto;
}

.catalogProductsList:not(.ru-family):not(.newsList):not(.ru-sans-retour) .breadcrumb {
  margin: 0;
}

.catalogProductsList:not(.ru-family):not(.newsList) .article-title {
  margin-bottom: 0;
  width: 100%;
}
.catalogProductsList:not(.ru-family):not(.newsList) main {
  z-index: 2;
  background: #F4F2F0;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList:not(.ru-family):not(.newsList) main {
    display: flex;
    flex-wrap: wrap;
  }
}
.catalogProductsList:not(.ru-family):not(.newsList) article {
  width: 100%;
  max-width: none;
  padding: 0;
  background: #FFF;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList:not(.ru-family):not(.newsList) article {
    width: 78%;
  }
}
@media only screen and (min-width: 90em) {
  .catalogProductsList:not(.ru-family):not(.newsList) article {
    width: calc(100% - 300px);
  }
}
@media only screen and (min-width: 78em) {
  .catalogProductsList:not(.ru-family):not(.newsList) .article-title {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 90em) {
  .catalogProductsList:not(.ru-family):not(.newsList) .subfooter {
    margin-top: 40px;
  }
}

.ru-sansfiltre.catalogProductsList:not(.ru-family):not(.newsList) article {
  width: 100% !important;
}

#contentForFilter h1 {
  display: none;
}

.product-list, #product .associated-product .associated-product-list, .family-list, article .page-menu-list, .news-list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 30em) {
  .product-list, #product .associated-product .associated-product-list, .family-list, article .page-menu-list, .news-list {
    margin: 0;
  }
}

.family-pres {
  padding: 30px 15px 20px;
  width: 100%;
}
@media only screen and (min-width: 48em) {
  .family-pres {
    padding: 40px 10% 40px;
  }
}
@media only screen and (min-width: 78em) {
  .family-pres {
    padding: 50px 10% 50px;
    max-width: 1210px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .family-pres {
    padding: 60px 0;
    max-width: 950px;
  }
}
@media only screen and (min-width: 103.125em) {
  .family-pres {
    padding: 80px 0;
  }
}
.family-pres h2 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 90em) {
  .family-pres h2 {
    margin-bottom: 30px;
  }
}
.family-pres p:last-child {
  margin-bottom: 0;
}

#leftbar {
  padding: 7px 15px 15px;
}
@media only screen and (min-width: 78em) {
  #leftbar {
    width: 22%;
    padding: 0;
  }
}
@media only screen and (min-width: 90em) {
  #leftbar {
    width: 100%;
    max-width: 300px;
    background: white;
  }
}

@media only screen and (min-width: 78em) {
  .filter {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: sticky;
    top: 0;
  }
}

.btn-filter {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #0C0C0C;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 99999;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0px 0px 5px 0px rgb(255, 255, 255);
}
@media only screen and (min-width: 78em) {
  .btn-filter {
    display: none;
  }
}
.btn-filter::before, .btn-filter::after {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-filter::before {
  content: "Filtrer";
  background: url(/images/icon/icon-filter-white.svg) no-repeat no-repeat center top;
  padding-top: 19px;
  bottom: 11px;
  left: 9px;
}
.btn-filter::after {
  content: "Fermer";
  top: -60px;
  background: url(/images/icon/icon-menu-cross.svg) no-repeat no-repeat center top;
  padding-top: 16px;
  background-size: 15px;
  left: 8px;
}
.filter-active .btn-filter::before {
  bottom: -60px;
}
.filter-active .btn-filter::after {
  top: 11px;
}

.filter-header {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .filter-header {
    text-align: left;
    padding: 30px 40px 15px;
    background: #F4F2F0;
  }
}
@media only screen and (min-width: 90em) {
  .filter-header {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .filter-header {
    padding: 40px 40px 15px 80px;
  }
}
.filter-header .h3 {
  text-transform: none;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .filter-header .h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

#filtreMaSelection {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection {
    margin-top: 0;
  }
}
#filtreMaSelection:empty {
  margin: 0;
}
#filtreMaSelection a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
#filtreMaSelection > a {
  color: #fff;
  background: #0C0C0C;
  padding: 5px 10px;
}
#filtreMaSelection > a::after {
  content: url(/images/icon/icon-cross-white.svg);
  margin-left: 8px;
  position: relative;
  top: 1px;
}
#filtreMaSelection > a:not(:nth-last-child(2)) {
  margin-right: 20px;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection > a:not(:nth-last-child(2)) {
    margin-right: 10px;
  }
}
#filtreMaSelection .suppr-filter {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection .suppr-filter {
    margin-top: 10px;
    line-height: 1;
    text-align: right;
  }
}
#filtreMaSelection .suppr-filter a {
  color: #DB5252;
}

.filter-inner {
  position: fixed;
  top: 70px;
  left: -100vw;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: #fff;
  overflow-y: scroll;
  z-index: 9999;
  padding: 40px 30px;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 70px);
}
.filter-inner::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
.filter-active .filter-inner {
  left: 0;
  width: 100vw;
}
@media only screen and (min-width: 78em) {
  .filter-inner {
    left: auto;
    top: auto;
    position: relative;
    overflow: visible;
    width: auto;
    height: auto;
    padding: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .filter-inner {
    padding: 40px 40px 40px 80px;
  }
}
.filter-inner .formulaire {
  margin: 0 auto;
}
.filter-inner #reinitid {
  display: none;
}
.filter-inner .fieldGroup:not(:last-child) {
  margin-bottom: 40px;
}
.filter-inner .fieldGroup label.inline {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Khand", sans-serif;
  font-weight: 600;
  margin: 0 0 15px;
  line-height: 1;
}
.filter-inner .fieldGroup label.inline::after {
  content: url(/images/icon/icon-chevron-down-black.svg);
  position: relative;
  top: -3px;
  margin-left: 10px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline-block;
}
.filter-inner .fieldGroup .form_field {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.filter-inner .fieldGroup.filtre-close label.inline::after {
  transform: rotate(-90deg);
}
.filter-inner .multi_checkbox input {
  display: none;
}
.filter-inner .multi_checkbox label {
  cursor: pointer;
}
.filter-inner .multi_checkbox label .total {
  display: none;
}
.filter-inner .multi_checkbox input[checked=checked] + label {
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}
.filter-inner .multi_checkbox input[checked=checked] + label::before {
  content: "";
  height: 1px;
  width: 40px;
  position: absolute;
  left: -10px;
  top: 12px;
  background: #0C0C0C;
  display: inline-block;
}

.catalogProductDetail main, .newsDetail main {
  overflow: hidden;
}
.catalogProductDetail .breadcrumb, .newsDetail .breadcrumb {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail .article-title, .newsDetail .article-title {
    margin-bottom: 0;
  }
}
.catalogProductDetail #leftbar, .newsDetail #leftbar {
  display: none;
}

#product h2 {
  text-transform: uppercase;
  font-size: 14px;
  margin: 30px 0 10px;
  font-family: "Karla", sans-serif;
}
@media only screen and (min-width: 78em) {
  #product h2 {
    font-size: 18px;
  }
}

.retour-liste {
  font-size: 14px;
  text-transform: uppercase;
  color: #0C0C0C;
  text-decoration: none;
  margin: 5px 0 10px;
  display: inline-block;
}
@media only screen and (min-width: 78em) {
  .retour-liste {
    position: absolute;
    bottom: 70px;
    left: 40px;
    margin: 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .retour-liste {
    left: 80px;
  }
}
.retour-liste::before {
  content: "";
  width: 16px;
  height: 12px;
  background: url(/images/icon/icon-arrow-left-black.svg) no-repeat center;
  background-size: auto 100%;
  margin-right: 10px;
  display: inline-block;
}

@media only screen and (min-width: 78em) {
  .product-row, .news-row {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
  }
  .product-row .col-item, .news-row .col-item {
    width: 50%;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-row .col-item:first-child, .news-row .col-item:first-child {
    width: 54.7%;
  }
  .product-row .col-item:last-child, .news-row .col-item:last-child {
    width: 45.3%;
    margin-bottom: 80px;
  }
}

.product-pictures .novelty .new {
  top: -20px;
  right: -15px;
}
@media only screen and (min-width: 30em) {
  .product-pictures .novelty .new {
    right: -10%;
  }
}
@media only screen and (min-width: 30em) {
  .product-pictures .novelty .new {
    top: 0;
    right: 0;
  }
}

.product-picture-full, .news-picture-full {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .product-picture-full, .news-picture-full {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 50px;
  }
  .product-picture-full img, .news-picture-full img {
    max-width: 85%;
  }
}
@media only screen and (min-width: 90em) {
  .product-picture-full, .news-picture-full {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-picture-full, .news-picture-full {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 78em) {
  .product-picture-gallery {
    padding: 0 40px;
  }
  .product-picture-gallery h2 {
    margin: 0 0 30px 60px !important;
  }
}
@media only screen and (min-width: 90em) {
  .product-picture-gallery {
    padding: 0 20px 0 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-picture-gallery {
    padding: 0 20px 0 80px;
  }
  .product-picture-gallery h2 {
    margin: 0 0 15px 80px !important;
  }
}
.product-picture-gallery-item:last-child h2 {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .product-picture-gallery-item:last-child {
    margin-top: 50px;
  }
}
.product-picture-gallery ul {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  -moz-appearance: menuimage;
  scrollbar-width: none;
  -webkit-overflow-x-scrolling: touch;
  margin: 0 -15px;
  padding: 0 15px;
}
@media only screen and (min-width: 78em) {
  .product-picture-gallery ul {
    margin: 0 -10px;
    padding: 0;
    overflow: hidden;
    flex-wrap: wrap;
  }
}
.product-picture-gallery ul::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
.product-picture-gallery ul li {
  margin: 0;
  margin-right: 20px;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .product-picture-gallery ul li {
    width: calc(33.333% - 20px);
    margin: 0 10px 10px;
  }
}
@media only screen and (min-width: 90em) {
  .product-picture-gallery ul li {
    width: calc(25% - 20px);
    height: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .product-picture-gallery ul li {
    height: 200px;
  }
}
.product-picture-gallery ul li a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-picture-gallery ul li .fit-contain {
  height: 115px;
  width: 140px;
}
@media only screen and (min-width: 78em) {
  .product-picture-gallery ul li .fit-contain {
    height: 100%;
    width: 100%;
  }
}
.product-picture-gallery ul li .fit-contain img {
  height: 92px;
  width: 121.52px;
}
@media only screen and (min-width: 78em) {
  .product-picture-gallery ul li .fit-contain img {
    height: 87%;
    width: 87%;
  }
}

.info-product, .info-news {
  margin: 10px -15px 30px;
  padding: 20px 15px 34px;
  background: #F4F2F0;
}
@media only screen and (min-width: 78em) {
  .info-product, .info-news {
    margin: 0;
    padding: 20px 40px 40px;
  }
}
@media only screen and (min-width: 90em) {
  .info-product, .info-news {
    padding: 20px 60px 50px;
  }
}
@media only screen and (min-width: 103.125em) {
  .info-product, .info-news {
    padding: 20px 80px 60px;
  }
}
.info-product .reference, .info-news .reference, .info-news .date {
  color: #9D9E92;
  margin: 0 0 20px;
  line-height: 1;
  font-size: 16px;
}
.info-product .product-finitions, .info-news .product-finitions, .info-news .news-description {
  margin: 20px 0 30px;
  line-height: 24px;
  font-size: 16px;
}
.info-product .reference + .product-contact, .info-news .reference + .product-contact, .info-news .reference + .news-contact, .info-news .date + .product-contact, .info-news .date + .news-contact {
  margin: 30px 0 0;
}
.info-product .product-contact, .info-news .product-contact, .info-news .news-contact {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .info-product .product-contact, .info-news .product-contact, .info-news .news-contact {
    text-align: left;
    margin-bottom: 40px;
  }
}
.info-product .product-contact .btn-color1, .info-news .product-contact .btn-color1, .info-news .news-contact .btn-color1, .info-product .product-contact input[type=submit], .info-news .product-contact input[type=submit], .info-news .news-contact input[type=submit] {
  padding: 20px 0;
  width: 100%;
  max-width: 344px;
  margin: 0 auto;
  border: 1px solid #0C0C0C;
  margin: 5px;
  margin-left: 0;
}
.info-product .product-contact .btn-color1::before, .info-news .product-contact .btn-color1::before, .info-news .news-contact .btn-color1::before, .info-product .product-contact input[type=submit]::before, .info-news .product-contact input[type=submit]::before, .info-news .news-contact input[type=submit]::before {
  content: url(/images/icon/icon-mail-white.svg);
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.info-product .product-contact #lien_shop, .info-news .product-contact #lien_shop, .info-news .news-contact #lien_shop {
  background: transparent;
  border: 1px solid #0C0C0C;
  color: #0C0C0C;
}
.info-product .product-contact #lien_shop::before, .info-news .product-contact #lien_shop::before, .info-news .news-contact #lien_shop::before {
  content: url(/images/icon/icon-newtab.svg);
  margin-right: 10px;
  position: relative;
  top: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.info-product .product-contact #lien_shop:hover, .info-news .product-contact #lien_shop:hover, .info-news .news-contact #lien_shop:hover {
  background: #0C0C0C;
  color: #fff;
}
.info-product .product-contact #lien_shop:hover::before, .info-news .product-contact #lien_shop:hover::before, .info-news .news-contact #lien_shop:hover::before {
  filter: brightness(0) invert(1);
}
.info-product .product-contact .tel, .info-news .product-contact .tel, .info-news .news-contact .tel {
  display: block;
  font-family: "Khand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .info-product .product-contact .tel, .info-news .product-contact .tel, .info-news .news-contact .tel {
    display: inline-block;
    margin-top: 17px;
    margin-left: 80px;
  }
}
.info-product .product-contact #lien_shop + .tel, .info-news .product-contact #lien_shop + .tel, .info-news .news-contact #lien_shop + .tel {
  display: none;
}
.info-product .product-links, .info-news .product-links {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .info-product .product-links, .info-news .product-links {
    flex-direction: row;
  }
}
.info-product .product-links a, .info-news .product-links a {
  color: #0C0C0C;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .info-product .product-links a:hover, .info-news .product-links a:hover {
    color: #838379;
  }
}
.info-product .product-links a::before, .info-news .product-links a::before {
  margin-right: 15px;
  height: 20px;
  position: relative;
  top: 4px;
}
.info-product .product-links a:first-child, .info-news .product-links a:first-child {
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .info-product .product-links a:first-child, .info-news .product-links a:first-child {
    margin-bottom: 0;
    margin-right: 60px;
  }
}
.info-product .product-links a:first-child::before, .info-news .product-links a:first-child::before {
  content: url(/images/icon/icon-filter-black.svg);
}
.info-product .product-links a:last-child::before, .info-news .product-links a:last-child::before {
  content: url(/images/icon/icon-nuancier-black.svg);
}

#product .detail-product > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  #product .detail-product {
    padding: 0 40px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 90em) {
  #product .detail-product {
    padding: 0 60px;
    margin-top: 50px;
  }
}
@media only screen and (min-width: 103.125em) {
  #product .detail-product {
    padding: 0 80px;
    margin-top: 60px;
  }
}
#product .detail-product h2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Khand", sans-serif;
}
@media only screen and (min-width: 78em) {
  #product .detail-product h2 {
    position: relative;
  }
  #product .detail-product h2::before {
    content: url(/images/icon/icon-arrow-right-black.svg);
    position: absolute;
    left: -30px;
    top: 0;
  }
}
@media only screen and (min-width: 78em) {
  #product .detail-product h3 {
    margin: 40px 0 12px;
    font-size: 20px;
  }
}
#product .detail-product h2 + ul, #product .detail-product h3 + ul {
  margin-top: 15px;
}
@media only screen and (min-width: 78em) {
  #product .detail-product ul {
    margin-bottom: 40px;
  }
}
#product .detail-product .product-dimensions ul {
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  #product .detail-product .product-dimensions ul {
    margin-bottom: 5px;
  }
}
#product .detail-product .product-dimensions li {
  padding: 0;
  margin: 0;
  display: inline;
}
#product .detail-product .product-dimensions li::before {
  display: none;
}
#product .detail-product .product-dimensions li:not(:last-child)::after {
  content: "|";
  margin: 0 3px 0 5px;
}
#product .detail-product .product-dimensions p {
  font-style: italic;
  line-height: 1.2;
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 10px;
}
#product .detail-product .product-dimensions p + ul {
  margin-top: 0;
  line-height: 1;
  margin-bottom: 20px;
}
#product .detail-product .product-fabrication > p {
  margin: -12px 0 0 60px;
  line-height: 24px;
  font-size: 16px;
}
#product .detail-product .product-fabrication ul {
  margin: 15px 0;
}

.product-realisation {
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .product-realisation {
    max-width: 800px;
    margin: 0 auto;
  }
}
.product-realisation h2 {
  margin-bottom: 15px !important;
}
@media only screen and (min-width: 78em) {
  .product-realisation h2 {
    margin: 0 0 20px 60px !important;
  }
}
@media only screen and (min-width: 90em) {
  .product-realisation h2 {
    margin: 0 0 30px 60px !important;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-realisation h2 {
    margin: 0 0 40px 60px !important;
  }
}
.product-realisation .fit-cover {
  margin: 0 -15px;
  height: auto;
}
@media only screen and (min-width: 78em) {
  .product-realisation .fit-cover {
    margin: 0;
    position: relative;
  }
  .product-realisation .fit-cover::after {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    content: "";
    height: 100px;
    position: absolute;
    bottom: 0;
    background: #F4F2F0;
    z-index: -1;
  }
}
.product-realisation .product-realisation-text {
  font-size: 16px;
}
@media only screen and (min-width: 78em) {
  .product-realisation .product-realisation-text {
    position: relative;
    padding: 20px 0 0;
    max-width: 630px;
    margin: 0 auto;
  }
  .product-realisation .product-realisation-text *:last-child {
    margin-bottom: 0;
  }
}
.product-realisation .product-realisation-text::before {
  content: url(/images/icon/icon-arrow-down-black.svg);
  margin: 20px 0;
  display: block;
  text-align: center;
  height: 18px;
}
@media only screen and (min-width: 78em) {
  .product-realisation .product-realisation-text::before {
    margin: 0 0 20px;
    text-align: left;
  }
}
@media only screen and (min-width: 78em) {
  .product-realisation .product-realisation-text::after {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    content: "";
    height: 100%;
    position: absolute;
    bottom: 0;
    background: #F4F2F0;
    z-index: -1;
  }
}

.product-contact-bottom, .news-contact-bottom {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .product-contact-bottom, .news-contact-bottom {
    position: relative;
    padding: 30px 0;
  }
  .product-realisation + .product-contact-bottom, .product-realisation + .news-contact-bottom {
    padding-bottom: 40px;
  }
  .product-contact-bottom::after, .news-contact-bottom::after {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    content: "";
    height: 100%;
    position: absolute;
    bottom: 0;
    background: #F4F2F0;
    z-index: -1;
  }
}
@media only screen and (min-width: 90em) {
  .product-contact-bottom, .news-contact-bottom {
    padding: 40px 0;
  }
  .product-realisation + .product-contact-bottom, .product-realisation + .news-contact-bottom {
    padding: 30px 0 40px;
  }
}
.product-contact-bottom .btn-color1::before, .news-contact-bottom .btn-color1::before, .product-contact-bottom input[type=submit]::before, .news-contact-bottom input[type=submit]::before {
  content: url(/images/icon/icon-mail-white.svg);
  position: relative;
  top: 3px;
  margin-right: 15px;
}

.product-rs, .news-rs {
  margin: 40px 0;
}
@media only screen and (min-width: 78em) {
  .product-rs, .news-rs {
    margin: 20px 0 30px;
    line-height: 1;
  }
}
.product-rs ul, .news-rs ul {
  text-align: center;
  margin: 0;
}
.product-rs ul li, .news-rs ul li {
  display: inline-block;
  margin: 0;
}
.product-rs ul li:not(:last-child), .news-rs ul li:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (min-width: 78em) {
  .product-rs ul li:not(:last-child), .news-rs ul li:not(:last-child) {
    margin-right: 40px;
  }
}
.product-rs ul li:not(:last-child) img, .news-rs ul li:not(:last-child) img {
  margin-right: 8px;
}
.product-rs ul a, .news-rs ul a {
  font-size: 14px;
  color: #0C0C0C;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 78em) {
  .product-rs ul a:hover, .news-rs ul a:hover {
    color: #838379;
  }
}

#product .associated-product {
  margin: 0 -15px;
}
@media only screen and (min-width: 30em) {
  #product .associated-product {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
#product .associated-product > h2 {
  margin: 40px 15px 15px;
}
@media only screen and (min-width: 30em) {
  #product .associated-product > h2 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 48em) {
  #product .associated-product > h2 {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 78em) {
  #product .associated-product > h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  #product .associated-product > h2 {
    margin-bottom: 40px;
    margin-top: 0;
  }
}
#product .associated-product .short_product h2, #product .associated-product .family-list-item h2, #product .associated-product article .page-menu-list-item h2, article #product .associated-product .page-menu-list-item h2, #product .associated-product .news-list-item h2 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Khand", sans-serif;
  text-transform: none;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  #product .associated-product .short_product, #product .associated-product .family-list-item, #product .associated-product article .page-menu-list-item, article #product .associated-product .page-menu-list-item, #product .associated-product .news-list-item {
    width: 33.3333%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  #product .associated-product .short_product h2, #product .associated-product .family-list-item h2, #product .associated-product article .page-menu-list-item h2, article #product .associated-product .page-menu-list-item h2, #product .associated-product .news-list-item h2 {
    font-size: 18px;
  }
  #product .associated-product .short_product:nth-child(4), #product .associated-product .family-list-item:nth-child(4), #product .associated-product article .page-menu-list-item:nth-child(4), article #product .associated-product .page-menu-list-item:nth-child(4), #product .associated-product .news-list-item:nth-child(4) {
    display: none;
  }
  #product .associated-product .short_product:first-child, #product .associated-product .family-list-item:first-child, #product .associated-product article .page-menu-list-item:first-child, article #product .associated-product .page-menu-list-item:first-child, #product .associated-product .news-list-item:first-child, #product .associated-product .short_product:nth-child(2), #product .associated-product .family-list-item:nth-child(2), #product .associated-product article .page-menu-list-item:nth-child(2), article #product .associated-product .page-menu-list-item:nth-child(2), #product .associated-product .news-list-item:nth-child(2), #product .associated-product .short_product:nth-child(3), #product .associated-product .family-list-item:nth-child(3), #product .associated-product article .page-menu-list-item:nth-child(3), article #product .associated-product .page-menu-list-item:nth-child(3), #product .associated-product .news-list-item:nth-child(3), #product .associated-product .short_product:nth-of-type(2n+2):nth-child(2) {
    border-top: 1px solid #DBD4CE;
  }
  #product .associated-product .short_product:nth-of-type(2n+2), #product .associated-product .family-list-item:nth-of-type(2n+2), #product .associated-product article .page-menu-list-item:nth-of-type(2n+2), article #product .associated-product .page-menu-list-item:nth-of-type(2n+2), #product .associated-product .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  #product .associated-product .short_product:last-child, #product .associated-product .family-list-item:last-child, #product .associated-product article .page-menu-list-item:last-child, article #product .associated-product .page-menu-list-item:last-child, #product .associated-product .news-list-item:last-child, #product .associated-product .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  #product .associated-product .short_product:nth-of-type(3n+1), #product .associated-product .family-list-item:nth-of-type(3n+1), #product .associated-product article .page-menu-list-item:nth-of-type(3n+1), article #product .associated-product .page-menu-list-item:nth-of-type(3n+1), #product .associated-product .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 78em) {
  #product .associated-product .short_product, #product .associated-product .family-list-item, #product .associated-product article .page-menu-list-item, article #product .associated-product .page-menu-list-item, #product .associated-product .news-list-item {
    width: 25%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  #product .associated-product .short_product:nth-child(4), #product .associated-product .family-list-item:nth-child(4), #product .associated-product article .page-menu-list-item:nth-child(4), article #product .associated-product .page-menu-list-item:nth-child(4), #product .associated-product .news-list-item:nth-child(4) {
    display: block;
  }
  #product .associated-product .short_product:first-child, #product .associated-product .family-list-item:first-child, #product .associated-product article .page-menu-list-item:first-child, article #product .associated-product .page-menu-list-item:first-child, #product .associated-product .news-list-item:first-child, #product .associated-product .short_product:nth-child(2), #product .associated-product .family-list-item:nth-child(2), #product .associated-product article .page-menu-list-item:nth-child(2), article #product .associated-product .page-menu-list-item:nth-child(2), #product .associated-product .news-list-item:nth-child(2), #product .associated-product .short_product:nth-child(3), #product .associated-product .family-list-item:nth-child(3), #product .associated-product article .page-menu-list-item:nth-child(3), article #product .associated-product .page-menu-list-item:nth-child(3), #product .associated-product .news-list-item:nth-child(3), #product .associated-product .short_product:nth-of-type(2n+2):nth-child(2), #product .associated-product .short_product:nth-child(4), #product .associated-product .family-list-item:nth-child(4), #product .associated-product article .page-menu-list-item:nth-child(4), article #product .associated-product .page-menu-list-item:nth-child(4), #product .associated-product .news-list-item:nth-child(4), #product .associated-product .short_product:nth-of-type(2n+2):nth-child(4) {
    border-top: 1px solid #DBD4CE;
  }
  #product .associated-product .short_product:nth-of-type(2n+2), #product .associated-product .family-list-item:nth-of-type(2n+2), #product .associated-product article .page-menu-list-item:nth-of-type(2n+2), article #product .associated-product .page-menu-list-item:nth-of-type(2n+2), #product .associated-product .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  #product .associated-product .short_product:last-child, #product .associated-product .family-list-item:last-child, #product .associated-product article .page-menu-list-item:last-child, article #product .associated-product .page-menu-list-item:last-child, #product .associated-product .news-list-item:last-child, #product .associated-product .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  #product .associated-product .short_product:nth-of-type(3n+1), #product .associated-product .family-list-item:nth-of-type(3n+1), #product .associated-product article .page-menu-list-item:nth-of-type(3n+1), article #product .associated-product .page-menu-list-item:nth-of-type(3n+1), #product .associated-product .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 90em) {
  #product .associated-product .short_product h2, #product .associated-product .family-list-item h2, #product .associated-product article .page-menu-list-item h2, article #product .associated-product .page-menu-list-item h2, #product .associated-product .news-list-item h2 {
    font-size: 20px;
  }
  #product .associated-product .short_product-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #product .associated-product .short_product-inner::before {
    bottom: 28px;
  }
}

.short_product, .family-list-item, article .page-menu-list-item, .news-list-item {
  position: relative;
  width: 50%;
  border: 1px solid #DBD4CE;
  border-top: none;
  background: #fff;
}
.short_product .short-product-inner, .family-list-item .short-product-inner, article .page-menu-list-item .short-product-inner, .news-list-item .short-product-inner, .short_product .family-list-item-inner, .short_product article .page-menu-list-item-inner, article .short_product .page-menu-list-item-inner, .short_product .news-list-item-text, .family-list-item .family-list-item-inner, .family-list-item article .page-menu-list-item-inner, article .family-list-item .page-menu-list-item-inner, article .page-menu-list-item .family-list-item-inner, article .page-menu-list-item .page-menu-list-item-inner, .family-list-item .news-list-item-text, article .page-menu-list-item .news-list-item-text, .news-list-item .family-list-item-inner, .news-list-item article .page-menu-list-item-inner, article .news-list-item .page-menu-list-item-inner, .news-list-item .news-list-item-text {
  padding: 10px 15px;
}
.short_product:first-child, .family-list-item:first-child, article .page-menu-list-item:first-child, .news-list-item:first-child, .short_product:nth-child(2), .family-list-item:nth-child(2), article .page-menu-list-item:nth-child(2), .news-list-item:nth-child(2) {
  border-top: 1px solid #DBD4CE;
}
.short_product:nth-of-type(2n+2), .family-list-item:nth-of-type(2n+2), article .page-menu-list-item:nth-of-type(2n+2), .news-list-item:nth-of-type(2n+2) {
  border-left: none;
}
@media only screen and (min-width: 48em) {
  .short_product, .family-list-item, article .page-menu-list-item, .news-list-item {
    width: 33.3333%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .short_product:first-child, .family-list-item:first-child, article .page-menu-list-item:first-child, .news-list-item:first-child, .short_product:nth-child(2), .family-list-item:nth-child(2), article .page-menu-list-item:nth-child(2), .news-list-item:nth-child(2), .short_product:nth-child(3), .family-list-item:nth-child(3), article .page-menu-list-item:nth-child(3), .news-list-item:nth-child(3), .short_product:nth-of-type(2n+2):nth-child(2) {
    border-top: 1px solid #DBD4CE;
  }
  .short_product:nth-of-type(2n+2), .family-list-item:nth-of-type(2n+2), article .page-menu-list-item:nth-of-type(2n+2), .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .short_product:last-child, .family-list-item:last-child, article .page-menu-list-item:last-child, .news-list-item:last-child, .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .short_product:nth-of-type(3n+1), .family-list-item:nth-of-type(3n+1), article .page-menu-list-item:nth-of-type(3n+1), .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 78em) {
  .short_product, .family-list-item, article .page-menu-list-item, .news-list-item {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: opacity-in 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s forwards;
    opacity: 0;
  }
  .short_product .viewproduct, .family-list-item .viewproduct, article .page-menu-list-item .viewproduct, .news-list-item .viewproduct {
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .short_product .short-product-inner, .family-list-item .short-product-inner, article .page-menu-list-item .short-product-inner, .news-list-item .short-product-inner, .short_product .family-list-item-inner, .short_product article .page-menu-list-item-inner, article .short_product .page-menu-list-item-inner, .short_product .news-list-item-text, .family-list-item .family-list-item-inner, .family-list-item article .page-menu-list-item-inner, article .family-list-item .page-menu-list-item-inner, article .page-menu-list-item .family-list-item-inner, article .page-menu-list-item .page-menu-list-item-inner, .family-list-item .news-list-item-text, article .page-menu-list-item .news-list-item-text, .news-list-item .family-list-item-inner, .news-list-item article .page-menu-list-item-inner, article .news-list-item .page-menu-list-item-inner, .news-list-item .news-list-item-text {
    position: relative;
    overflow: hidden;
    padding: 20px;
  }
  .short_product .short-product-inner::before, .family-list-item .short-product-inner::before, article .page-menu-list-item .short-product-inner::before, .news-list-item .short-product-inner::before, .short_product .family-list-item-inner::before, .short_product article .page-menu-list-item-inner::before, article .short_product .page-menu-list-item-inner::before, .short_product .news-list-item-text::before, .family-list-item .family-list-item-inner::before, .family-list-item article .page-menu-list-item-inner::before, article .family-list-item .page-menu-list-item-inner::before, article .page-menu-list-item .family-list-item-inner::before, article .page-menu-list-item .page-menu-list-item-inner::before, .family-list-item .news-list-item-text::before, article .page-menu-list-item .news-list-item-text::before, .news-list-item .family-list-item-inner::before, .news-list-item article .page-menu-list-item-inner::before, article .news-list-item .page-menu-list-item-inner::before, .news-list-item .news-list-item-text::before, .short_product .short-product-inner::after, .family-list-item .short-product-inner::after, article .page-menu-list-item .short-product-inner::after, .news-list-item .short-product-inner::after, .short_product .family-list-item-inner::after, .short_product article .page-menu-list-item-inner::after, article .short_product .page-menu-list-item-inner::after, .short_product .news-list-item-text::after, .family-list-item .family-list-item-inner::after, .family-list-item article .page-menu-list-item-inner::after, article .family-list-item .page-menu-list-item-inner::after, article .page-menu-list-item .family-list-item-inner::after, article .page-menu-list-item .page-menu-list-item-inner::after, .family-list-item .news-list-item-text::after, article .page-menu-list-item .news-list-item-text::after, .news-list-item .family-list-item-inner::after, .news-list-item article .page-menu-list-item-inner::after, article .news-list-item .page-menu-list-item-inner::after, .news-list-item .news-list-item-text::after {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .short_product .short-product-inner::before, .family-list-item .short-product-inner::before, article .page-menu-list-item .short-product-inner::before, .news-list-item .short-product-inner::before, .short_product .family-list-item-inner::before, .short_product article .page-menu-list-item-inner::before, article .short_product .page-menu-list-item-inner::before, .short_product .news-list-item-text::before, .family-list-item .family-list-item-inner::before, .family-list-item article .page-menu-list-item-inner::before, article .family-list-item .page-menu-list-item-inner::before, article .page-menu-list-item .family-list-item-inner::before, article .page-menu-list-item .page-menu-list-item-inner::before, .family-list-item .news-list-item-text::before, article .page-menu-list-item .news-list-item-text::before, .news-list-item .family-list-item-inner::before, .news-list-item article .page-menu-list-item-inner::before, article .news-list-item .page-menu-list-item-inner::before, .news-list-item .news-list-item-text::before {
    content: "Voir le produit";
    position: absolute;
    bottom: 9px;
    right: 120px;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
  }
  .short_product .short-product-inner::after, .family-list-item .short-product-inner::after, article .page-menu-list-item .short-product-inner::after, .news-list-item .short-product-inner::after, .short_product .family-list-item-inner::after, .short_product article .page-menu-list-item-inner::after, article .short_product .page-menu-list-item-inner::after, .short_product .news-list-item-text::after, .family-list-item .family-list-item-inner::after, .family-list-item article .page-menu-list-item-inner::after, article .family-list-item .page-menu-list-item-inner::after, article .page-menu-list-item .family-list-item-inner::after, article .page-menu-list-item .page-menu-list-item-inner::after, .family-list-item .news-list-item-text::after, article .page-menu-list-item .news-list-item-text::after, .news-list-item .family-list-item-inner::after, .news-list-item article .page-menu-list-item-inner::after, article .news-list-item .page-menu-list-item-inner::after, .news-list-item .news-list-item-text::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #DBD4CE;
    float: right;
    margin-right: 0;
    margin-top: 15px;
  }
  .short_product:hover .viewproduct, .family-list-item:hover .viewproduct, article .page-menu-list-item:hover .viewproduct, .news-list-item:hover .viewproduct {
    box-shadow: inset 0px 0px 0px 1px rgb(0, 0, 0);
  }
  .short_product:hover .short-product-inner::before, .family-list-item:hover .short-product-inner::before, article .page-menu-list-item:hover .short-product-inner::before, .news-list-item:hover .short-product-inner::before, .short_product:hover .family-list-item-inner::before, .short_product:hover article .page-menu-list-item-inner::before, article .short_product:hover .page-menu-list-item-inner::before, .short_product:hover .news-list-item-text::before, .family-list-item:hover .family-list-item-inner::before, .family-list-item:hover article .page-menu-list-item-inner::before, article .family-list-item:hover .page-menu-list-item-inner::before, article .page-menu-list-item:hover .family-list-item-inner::before, article .page-menu-list-item:hover .page-menu-list-item-inner::before, .family-list-item:hover .news-list-item-text::before, article .page-menu-list-item:hover .news-list-item-text::before, .news-list-item:hover .family-list-item-inner::before, .news-list-item:hover article .page-menu-list-item-inner::before, article .news-list-item:hover .page-menu-list-item-inner::before, .news-list-item:hover .news-list-item-text::before {
    right: 105px;
    opacity: 1;
  }
  .short_product:hover .short-product-inner::after, .family-list-item:hover .short-product-inner::after, article .page-menu-list-item:hover .short-product-inner::after, .news-list-item:hover .short-product-inner::after, .short_product:hover .family-list-item-inner::after, .short_product:hover article .page-menu-list-item-inner::after, article .short_product:hover .page-menu-list-item-inner::after, .short_product:hover .news-list-item-text::after, .family-list-item:hover .family-list-item-inner::after, .family-list-item:hover article .page-menu-list-item-inner::after, article .family-list-item:hover .page-menu-list-item-inner::after, article .page-menu-list-item:hover .family-list-item-inner::after, article .page-menu-list-item:hover .page-menu-list-item-inner::after, .family-list-item:hover .news-list-item-text::after, article .page-menu-list-item:hover .news-list-item-text::after, .news-list-item:hover .family-list-item-inner::after, .news-list-item:hover article .page-menu-list-item-inner::after, article .news-list-item:hover .page-menu-list-item-inner::after, .news-list-item:hover .news-list-item-text::after {
    width: 70px;
    background: #000;
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product, .family-list-item, article .page-menu-list-item, .news-list-item {
    width: 25%;
  }
  .short_product .short-product-inner, .family-list-item .short-product-inner, article .page-menu-list-item .short-product-inner, .news-list-item .short-product-inner, .short_product .family-list-item-inner, .short_product article .page-menu-list-item-inner, article .short_product .page-menu-list-item-inner, .short_product .news-list-item-text, .family-list-item .family-list-item-inner, .family-list-item article .page-menu-list-item-inner, article .family-list-item .page-menu-list-item-inner, article .page-menu-list-item .family-list-item-inner, article .page-menu-list-item .page-menu-list-item-inner, .family-list-item .news-list-item-text, article .page-menu-list-item .news-list-item-text, .news-list-item .family-list-item-inner, .news-list-item article .page-menu-list-item-inner, article .news-list-item .page-menu-list-item-inner, .news-list-item .news-list-item-text {
    padding: 30px 40px;
  }
  .short_product .short-product-inner::before, .family-list-item .short-product-inner::before, article .page-menu-list-item .short-product-inner::before, .news-list-item .short-product-inner::before, .short_product .family-list-item-inner::before, .short_product article .page-menu-list-item-inner::before, article .short_product .page-menu-list-item-inner::before, .short_product .news-list-item-text::before, .family-list-item .family-list-item-inner::before, .family-list-item article .page-menu-list-item-inner::before, article .family-list-item .page-menu-list-item-inner::before, article .page-menu-list-item .family-list-item-inner::before, article .page-menu-list-item .page-menu-list-item-inner::before, .family-list-item .news-list-item-text::before, article .page-menu-list-item .news-list-item-text::before, .news-list-item .family-list-item-inner::before, .news-list-item article .page-menu-list-item-inner::before, article .news-list-item .page-menu-list-item-inner::before, .news-list-item .news-list-item-text::before {
    bottom: 18px;
    right: 130px;
    bottom: 21px;
  }
  .short_product:hover .short-product-inner::before, .family-list-item:hover .short-product-inner::before, article .page-menu-list-item:hover .short-product-inner::before, .news-list-item:hover .short-product-inner::before, .short_product:hover .family-list-item-inner::before, .short_product:hover article .page-menu-list-item-inner::before, article .short_product:hover .page-menu-list-item-inner::before, .short_product:hover .news-list-item-text::before, .family-list-item:hover .family-list-item-inner::before, .family-list-item:hover article .page-menu-list-item-inner::before, article .family-list-item:hover .page-menu-list-item-inner::before, article .page-menu-list-item:hover .family-list-item-inner::before, article .page-menu-list-item:hover .page-menu-list-item-inner::before, .family-list-item:hover .news-list-item-text::before, article .page-menu-list-item:hover .news-list-item-text::before, .news-list-item:hover .family-list-item-inner::before, .news-list-item:hover article .page-menu-list-item-inner::before, article .news-list-item:hover .page-menu-list-item-inner::before, .news-list-item:hover .news-list-item-text::before {
    right: 165px;
  }
  .short_product:hover .short-product-inner::after, .family-list-item:hover .short-product-inner::after, article .page-menu-list-item:hover .short-product-inner::after, .news-list-item:hover .short-product-inner::after, .short_product:hover .family-list-item-inner::after, .short_product:hover article .page-menu-list-item-inner::after, article .short_product:hover .page-menu-list-item-inner::after, .short_product:hover .news-list-item-text::after, .family-list-item:hover .family-list-item-inner::after, .family-list-item:hover article .page-menu-list-item-inner::after, article .family-list-item:hover .page-menu-list-item-inner::after, article .page-menu-list-item:hover .family-list-item-inner::after, article .page-menu-list-item:hover .page-menu-list-item-inner::after, .family-list-item:hover .news-list-item-text::after, article .page-menu-list-item:hover .news-list-item-text::after, .news-list-item:hover .family-list-item-inner::after, .news-list-item:hover article .page-menu-list-item-inner::after, article .news-list-item:hover .page-menu-list-item-inner::after, .news-list-item:hover .news-list-item-text::after {
    width: 105px;
    background: #000;
  }
}
.short_product h2, .family-list-item h2, article .page-menu-list-item h2, .news-list-item h2 {
  font-size: 15px;
  text-align: right;
  font-weight: 600;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .short_product h2, .family-list-item h2, article .page-menu-list-item h2, .news-list-item h2 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product h2, .family-list-item h2, article .page-menu-list-item h2, .news-list-item h2 {
    font-size: 20px;
  }
}
.short_product .short-product-picture, .family-list-item .short-product-picture, article .page-menu-list-item .short-product-picture, .news-list-item .short-product-picture {
  height: 150px;
}
@media only screen and (min-width: 48em) {
  .short_product .short-product-picture, .family-list-item .short-product-picture, article .page-menu-list-item .short-product-picture, .news-list-item .short-product-picture {
    height: 200px;
  }
}
@media only screen and (min-width: 64em) {
  .short_product .short-product-picture, .family-list-item .short-product-picture, article .page-menu-list-item .short-product-picture, .news-list-item .short-product-picture {
    height: 300px;
  }
}
@media only screen and (min-width: 90em) {
  .short_product .short-product-picture, .family-list-item .short-product-picture, article .page-menu-list-item .short-product-picture, .news-list-item .short-product-picture {
    height: 400px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product .short-product-picture, .family-list-item .short-product-picture, article .page-menu-list-item .short-product-picture, .news-list-item .short-product-picture {
    width: 100%;
    margin: 0 auto;
  }
}

.novelty .new {
  position: absolute;
  top: 0;
  right: 0;
  background: #0C0C0C;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 9px 11px;
  line-height: 1;
}
@media only screen and (min-width: 30em) {
  .novelty .new {
    padding: 11px 15px;
  }
}
.product-pictures .novelty {
  position: relative;
}

.ru-sansfiltre .short_product-inner {
  padding-left: 0;
}
@media only screen and (min-width: 48em) {
  .ru-sansfiltre .short_product, .ru-sansfiltre .family-list-item, .ru-sansfiltre article .page-menu-list-item, article .ru-sansfiltre .page-menu-list-item, .ru-sansfiltre .news-list-item {
    width: 33.3333%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-sansfiltre .short_product:first-child, .ru-sansfiltre .family-list-item:first-child, .ru-sansfiltre article .page-menu-list-item:first-child, article .ru-sansfiltre .page-menu-list-item:first-child, .ru-sansfiltre .news-list-item:first-child, .ru-sansfiltre .short_product:nth-child(2), .ru-sansfiltre .family-list-item:nth-child(2), .ru-sansfiltre article .page-menu-list-item:nth-child(2), article .ru-sansfiltre .page-menu-list-item:nth-child(2), .ru-sansfiltre .news-list-item:nth-child(2), .ru-sansfiltre .short_product:nth-child(3), .ru-sansfiltre .family-list-item:nth-child(3), .ru-sansfiltre article .page-menu-list-item:nth-child(3), article .ru-sansfiltre .page-menu-list-item:nth-child(3), .ru-sansfiltre .news-list-item:nth-child(3), .ru-sansfiltre .short_product:nth-of-type(2n+2):nth-child(2) {
    border-top: 1px solid #DBD4CE;
  }
  .ru-sansfiltre .short_product:nth-of-type(2n+2), .ru-sansfiltre .family-list-item:nth-of-type(2n+2), .ru-sansfiltre article .page-menu-list-item:nth-of-type(2n+2), article .ru-sansfiltre .page-menu-list-item:nth-of-type(2n+2), .ru-sansfiltre .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-sansfiltre .short_product:last-child, .ru-sansfiltre .family-list-item:last-child, .ru-sansfiltre article .page-menu-list-item:last-child, article .ru-sansfiltre .page-menu-list-item:last-child, .ru-sansfiltre .news-list-item:last-child, .ru-sansfiltre .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .ru-sansfiltre .short_product:nth-of-type(3n+1), .ru-sansfiltre .family-list-item:nth-of-type(3n+1), .ru-sansfiltre article .page-menu-list-item:nth-of-type(3n+1), article .ru-sansfiltre .page-menu-list-item:nth-of-type(3n+1), .ru-sansfiltre .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 78em) {
  .ru-sansfiltre .short_product, .ru-sansfiltre .family-list-item, .ru-sansfiltre article .page-menu-list-item, article .ru-sansfiltre .page-menu-list-item, .ru-sansfiltre .news-list-item {
    width: 25%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-sansfiltre .short_product:first-child, .ru-sansfiltre .family-list-item:first-child, .ru-sansfiltre article .page-menu-list-item:first-child, article .ru-sansfiltre .page-menu-list-item:first-child, .ru-sansfiltre .news-list-item:first-child, .ru-sansfiltre .short_product:nth-child(2), .ru-sansfiltre .family-list-item:nth-child(2), .ru-sansfiltre article .page-menu-list-item:nth-child(2), article .ru-sansfiltre .page-menu-list-item:nth-child(2), .ru-sansfiltre .news-list-item:nth-child(2), .ru-sansfiltre .short_product:nth-child(3), .ru-sansfiltre .family-list-item:nth-child(3), .ru-sansfiltre article .page-menu-list-item:nth-child(3), article .ru-sansfiltre .page-menu-list-item:nth-child(3), .ru-sansfiltre .news-list-item:nth-child(3), .ru-sansfiltre .short_product:nth-of-type(2n+2):nth-child(2), .ru-sansfiltre .short_product:nth-child(4), .ru-sansfiltre .family-list-item:nth-child(4), .ru-sansfiltre article .page-menu-list-item:nth-child(4), article .ru-sansfiltre .page-menu-list-item:nth-child(4), .ru-sansfiltre .news-list-item:nth-child(4), .ru-sansfiltre .short_product:nth-of-type(2n+2):nth-child(4) {
    border-top: 1px solid #DBD4CE;
  }
  .ru-sansfiltre .short_product:nth-of-type(2n+2), .ru-sansfiltre .family-list-item:nth-of-type(2n+2), .ru-sansfiltre article .page-menu-list-item:nth-of-type(2n+2), article .ru-sansfiltre .page-menu-list-item:nth-of-type(2n+2), .ru-sansfiltre .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-sansfiltre .short_product:last-child, .ru-sansfiltre .family-list-item:last-child, .ru-sansfiltre article .page-menu-list-item:last-child, article .ru-sansfiltre .page-menu-list-item:last-child, .ru-sansfiltre .news-list-item:last-child, .ru-sansfiltre .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .ru-sansfiltre .short_product:nth-of-type(3n+1), .ru-sansfiltre .family-list-item:nth-of-type(3n+1), .ru-sansfiltre article .page-menu-list-item:nth-of-type(3n+1), article .ru-sansfiltre .page-menu-list-item:nth-of-type(3n+1), .ru-sansfiltre .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 90em) {
  .ru-sansfiltre .short_product-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ru-sansfiltre .short_product-inner::before {
    bottom: 28px;
  }
}

@media only screen and (min-width: 30em) {
  .ru-nuancier .short_product, .ru-nuancier .family-list-item, .ru-nuancier article .page-menu-list-item, article .ru-nuancier .page-menu-list-item, .ru-nuancier .news-list-item {
    width: 33.3333%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:first-child, .ru-nuancier .family-list-item:first-child, .ru-nuancier article .page-menu-list-item:first-child, article .ru-nuancier .page-menu-list-item:first-child, .ru-nuancier .news-list-item:first-child, .ru-nuancier .short_product:nth-child(2), .ru-nuancier .family-list-item:nth-child(2), .ru-nuancier article .page-menu-list-item:nth-child(2), article .ru-nuancier .page-menu-list-item:nth-child(2), .ru-nuancier .news-list-item:nth-child(2), .ru-nuancier .short_product:nth-child(3), .ru-nuancier .family-list-item:nth-child(3), .ru-nuancier article .page-menu-list-item:nth-child(3), article .ru-nuancier .page-menu-list-item:nth-child(3), .ru-nuancier .news-list-item:nth-child(3), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(2) {
    border-top: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(2n+2), .ru-nuancier .family-list-item:nth-of-type(2n+2), .ru-nuancier article .page-menu-list-item:nth-of-type(2n+2), article .ru-nuancier .page-menu-list-item:nth-of-type(2n+2), .ru-nuancier .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:last-child, .ru-nuancier .family-list-item:last-child, .ru-nuancier article .page-menu-list-item:last-child, article .ru-nuancier .page-menu-list-item:last-child, .ru-nuancier .news-list-item:last-child, .ru-nuancier .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(3n+1), .ru-nuancier .family-list-item:nth-of-type(3n+1), .ru-nuancier article .page-menu-list-item:nth-of-type(3n+1), article .ru-nuancier .page-menu-list-item:nth-of-type(3n+1), .ru-nuancier .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 48em) {
  .ru-nuancier .short_product, .ru-nuancier .family-list-item, .ru-nuancier article .page-menu-list-item, article .ru-nuancier .page-menu-list-item, .ru-nuancier .news-list-item {
    width: 25%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:first-child, .ru-nuancier .family-list-item:first-child, .ru-nuancier article .page-menu-list-item:first-child, article .ru-nuancier .page-menu-list-item:first-child, .ru-nuancier .news-list-item:first-child, .ru-nuancier .short_product:nth-child(2), .ru-nuancier .family-list-item:nth-child(2), .ru-nuancier article .page-menu-list-item:nth-child(2), article .ru-nuancier .page-menu-list-item:nth-child(2), .ru-nuancier .news-list-item:nth-child(2), .ru-nuancier .short_product:nth-child(3), .ru-nuancier .family-list-item:nth-child(3), .ru-nuancier article .page-menu-list-item:nth-child(3), article .ru-nuancier .page-menu-list-item:nth-child(3), .ru-nuancier .news-list-item:nth-child(3), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(2), .ru-nuancier .short_product:nth-child(4), .ru-nuancier .family-list-item:nth-child(4), .ru-nuancier article .page-menu-list-item:nth-child(4), article .ru-nuancier .page-menu-list-item:nth-child(4), .ru-nuancier .news-list-item:nth-child(4), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(4) {
    border-top: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(2n+2), .ru-nuancier .family-list-item:nth-of-type(2n+2), .ru-nuancier article .page-menu-list-item:nth-of-type(2n+2), article .ru-nuancier .page-menu-list-item:nth-of-type(2n+2), .ru-nuancier .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:last-child, .ru-nuancier .family-list-item:last-child, .ru-nuancier article .page-menu-list-item:last-child, article .ru-nuancier .page-menu-list-item:last-child, .ru-nuancier .news-list-item:last-child, .ru-nuancier .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(3n+1), .ru-nuancier .family-list-item:nth-of-type(3n+1), .ru-nuancier article .page-menu-list-item:nth-of-type(3n+1), article .ru-nuancier .page-menu-list-item:nth-of-type(3n+1), .ru-nuancier .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
}
@media only screen and (min-width: 78em) {
  .ru-nuancier .short_product, .ru-nuancier .family-list-item, .ru-nuancier article .page-menu-list-item, article .ru-nuancier .page-menu-list-item, .ru-nuancier .news-list-item {
    width: 20%;
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:first-child, .ru-nuancier .family-list-item:first-child, .ru-nuancier article .page-menu-list-item:first-child, article .ru-nuancier .page-menu-list-item:first-child, .ru-nuancier .news-list-item:first-child, .ru-nuancier .short_product:nth-child(2), .ru-nuancier .family-list-item:nth-child(2), .ru-nuancier article .page-menu-list-item:nth-child(2), article .ru-nuancier .page-menu-list-item:nth-child(2), .ru-nuancier .news-list-item:nth-child(2), .ru-nuancier .short_product:nth-child(3), .ru-nuancier .family-list-item:nth-child(3), .ru-nuancier article .page-menu-list-item:nth-child(3), article .ru-nuancier .page-menu-list-item:nth-child(3), .ru-nuancier .news-list-item:nth-child(3), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(2), .ru-nuancier .short_product:nth-child(4), .ru-nuancier .family-list-item:nth-child(4), .ru-nuancier article .page-menu-list-item:nth-child(4), article .ru-nuancier .page-menu-list-item:nth-child(4), .ru-nuancier .news-list-item:nth-child(4), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(4), .ru-nuancier .short_product:nth-of-type(2n+2):nth-child(5), .ru-nuancier .short_product:nth-child(5), .ru-nuancier .family-list-item:nth-child(5), .ru-nuancier article .page-menu-list-item:nth-child(5), article .ru-nuancier .page-menu-list-item:nth-child(5), .ru-nuancier .news-list-item:nth-child(5) {
    border-top: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(2n+2), .ru-nuancier .family-list-item:nth-of-type(2n+2), .ru-nuancier article .page-menu-list-item:nth-of-type(2n+2), article .ru-nuancier .page-menu-list-item:nth-of-type(2n+2), .ru-nuancier .news-list-item:nth-of-type(2n+2) {
    border: 1px solid #DBD4CE;
    border-right: 0;
    border-top: 0;
  }
  .ru-nuancier .short_product:last-child, .ru-nuancier .family-list-item:last-child, .ru-nuancier article .page-menu-list-item:last-child, article .ru-nuancier .page-menu-list-item:last-child, .ru-nuancier .news-list-item:last-child, .ru-nuancier .short_product:nth-of-type(2n+2):last-child {
    border-right: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product:nth-of-type(3n+1), .ru-nuancier .family-list-item:nth-of-type(3n+1), .ru-nuancier article .page-menu-list-item:nth-of-type(3n+1), article .ru-nuancier .page-menu-list-item:nth-of-type(3n+1), .ru-nuancier .news-list-item:nth-of-type(3n+1) {
    border-left: 1px solid #DBD4CE;
  }
  .ru-nuancier .short_product .short-product-inner::before, .ru-nuancier .family-list-item .short-product-inner::before, .ru-nuancier article .page-menu-list-item .short-product-inner::before, article .ru-nuancier .page-menu-list-item .short-product-inner::before, .ru-nuancier .news-list-item .short-product-inner::before, .ru-nuancier .short_product .family-list-item-inner::before, .ru-nuancier .short_product article .page-menu-list-item-inner::before, article .ru-nuancier .short_product .page-menu-list-item-inner::before, .ru-nuancier .short_product .news-list-item-text::before, .ru-nuancier .family-list-item .family-list-item-inner::before, .ru-nuancier .family-list-item article .page-menu-list-item-inner::before, article .ru-nuancier .family-list-item .page-menu-list-item-inner::before, .ru-nuancier article .page-menu-list-item .family-list-item-inner::before, .ru-nuancier article .page-menu-list-item .page-menu-list-item-inner::before, article .ru-nuancier .page-menu-list-item .family-list-item-inner::before, article .ru-nuancier .page-menu-list-item .page-menu-list-item-inner::before, .ru-nuancier .family-list-item .news-list-item-text::before, .ru-nuancier article .page-menu-list-item .news-list-item-text::before, article .ru-nuancier .page-menu-list-item .news-list-item-text::before, .ru-nuancier .news-list-item .family-list-item-inner::before, .ru-nuancier .news-list-item article .page-menu-list-item-inner::before, article .ru-nuancier .news-list-item .page-menu-list-item-inner::before, .ru-nuancier .news-list-item .news-list-item-text::before {
    content: "Voir la couleur";
    font-size: 12px;
  }
  .ru-nuancier .short_product .short-product-inner::after, .ru-nuancier .family-list-item .short-product-inner::after, .ru-nuancier article .page-menu-list-item .short-product-inner::after, article .ru-nuancier .page-menu-list-item .short-product-inner::after, .ru-nuancier .news-list-item .short-product-inner::after, .ru-nuancier .short_product .family-list-item-inner::after, .ru-nuancier .short_product article .page-menu-list-item-inner::after, article .ru-nuancier .short_product .page-menu-list-item-inner::after, .ru-nuancier .short_product .news-list-item-text::after, .ru-nuancier .family-list-item .family-list-item-inner::after, .ru-nuancier .family-list-item article .page-menu-list-item-inner::after, article .ru-nuancier .family-list-item .page-menu-list-item-inner::after, .ru-nuancier article .page-menu-list-item .family-list-item-inner::after, .ru-nuancier article .page-menu-list-item .page-menu-list-item-inner::after, article .ru-nuancier .page-menu-list-item .family-list-item-inner::after, article .ru-nuancier .page-menu-list-item .page-menu-list-item-inner::after, .ru-nuancier .family-list-item .news-list-item-text::after, .ru-nuancier article .page-menu-list-item .news-list-item-text::after, article .ru-nuancier .page-menu-list-item .news-list-item-text::after, .ru-nuancier .news-list-item .family-list-item-inner::after, .ru-nuancier .news-list-item article .page-menu-list-item-inner::after, article .ru-nuancier .news-list-item .page-menu-list-item-inner::after, .ru-nuancier .news-list-item .news-list-item-text::after {
    margin-right: 20px;
  }
  .ru-nuancier .short_product:hover .short-product-inner::before, .ru-nuancier .family-list-item:hover .short-product-inner::before, .ru-nuancier article .page-menu-list-item:hover .short-product-inner::before, article .ru-nuancier .page-menu-list-item:hover .short-product-inner::before, .ru-nuancier .news-list-item:hover .short-product-inner::before, .ru-nuancier .short_product:hover .family-list-item-inner::before, .ru-nuancier .short_product:hover article .page-menu-list-item-inner::before, article .ru-nuancier .short_product:hover .page-menu-list-item-inner::before, .ru-nuancier .short_product:hover .news-list-item-text::before, .ru-nuancier .family-list-item:hover .family-list-item-inner::before, .ru-nuancier .family-list-item:hover article .page-menu-list-item-inner::before, article .ru-nuancier .family-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier article .page-menu-list-item:hover .family-list-item-inner::before, .ru-nuancier article .page-menu-list-item:hover .page-menu-list-item-inner::before, article .ru-nuancier .page-menu-list-item:hover .family-list-item-inner::before, article .ru-nuancier .page-menu-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier .family-list-item:hover .news-list-item-text::before, .ru-nuancier article .page-menu-list-item:hover .news-list-item-text::before, article .ru-nuancier .page-menu-list-item:hover .news-list-item-text::before, .ru-nuancier .news-list-item:hover .family-list-item-inner::before, .ru-nuancier .news-list-item:hover article .page-menu-list-item-inner::before, article .ru-nuancier .news-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier .news-list-item:hover .news-list-item-text::before {
    right: 130px;
  }
}
@media only screen and (min-width: 103.125em) {
  .ru-nuancier .short_product .short-product-inner, .ru-nuancier .family-list-item .short-product-inner, .ru-nuancier article .page-menu-list-item .short-product-inner, article .ru-nuancier .page-menu-list-item .short-product-inner, .ru-nuancier .news-list-item .short-product-inner, .ru-nuancier .short_product .family-list-item-inner, .ru-nuancier .short_product article .page-menu-list-item-inner, article .ru-nuancier .short_product .page-menu-list-item-inner, .ru-nuancier .short_product .news-list-item-text, .ru-nuancier .family-list-item .family-list-item-inner, .ru-nuancier .family-list-item article .page-menu-list-item-inner, article .ru-nuancier .family-list-item .page-menu-list-item-inner, .ru-nuancier article .page-menu-list-item .family-list-item-inner, .ru-nuancier article .page-menu-list-item .page-menu-list-item-inner, article .ru-nuancier .page-menu-list-item .family-list-item-inner, article .ru-nuancier .page-menu-list-item .page-menu-list-item-inner, .ru-nuancier .family-list-item .news-list-item-text, .ru-nuancier article .page-menu-list-item .news-list-item-text, article .ru-nuancier .page-menu-list-item .news-list-item-text, .ru-nuancier .news-list-item .family-list-item-inner, .ru-nuancier .news-list-item article .page-menu-list-item-inner, article .ru-nuancier .news-list-item .page-menu-list-item-inner, .ru-nuancier .news-list-item .news-list-item-text {
    padding-top: 20px;
  }
  .ru-nuancier .short_product:hover .short-product-inner::before, .ru-nuancier .family-list-item:hover .short-product-inner::before, .ru-nuancier article .page-menu-list-item:hover .short-product-inner::before, article .ru-nuancier .page-menu-list-item:hover .short-product-inner::before, .ru-nuancier .news-list-item:hover .short-product-inner::before, .ru-nuancier .short_product:hover .family-list-item-inner::before, .ru-nuancier .short_product:hover article .page-menu-list-item-inner::before, article .ru-nuancier .short_product:hover .page-menu-list-item-inner::before, .ru-nuancier .short_product:hover .news-list-item-text::before, .ru-nuancier .family-list-item:hover .family-list-item-inner::before, .ru-nuancier .family-list-item:hover article .page-menu-list-item-inner::before, article .ru-nuancier .family-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier article .page-menu-list-item:hover .family-list-item-inner::before, .ru-nuancier article .page-menu-list-item:hover .page-menu-list-item-inner::before, article .ru-nuancier .page-menu-list-item:hover .family-list-item-inner::before, article .ru-nuancier .page-menu-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier .family-list-item:hover .news-list-item-text::before, .ru-nuancier article .page-menu-list-item:hover .news-list-item-text::before, article .ru-nuancier .page-menu-list-item:hover .news-list-item-text::before, .ru-nuancier .news-list-item:hover .family-list-item-inner::before, .ru-nuancier .news-list-item:hover article .page-menu-list-item-inner::before, article .ru-nuancier .news-list-item:hover .page-menu-list-item-inner::before, .ru-nuancier .news-list-item:hover .news-list-item-text::before {
    right: 200px;
  }
  .ru-nuancier .short_product:hover .short-product-inner::after, .ru-nuancier .family-list-item:hover .short-product-inner::after, .ru-nuancier article .page-menu-list-item:hover .short-product-inner::after, article .ru-nuancier .page-menu-list-item:hover .short-product-inner::after, .ru-nuancier .news-list-item:hover .short-product-inner::after, .ru-nuancier .short_product:hover .family-list-item-inner::after, .ru-nuancier .short_product:hover article .page-menu-list-item-inner::after, article .ru-nuancier .short_product:hover .page-menu-list-item-inner::after, .ru-nuancier .short_product:hover .news-list-item-text::after, .ru-nuancier .family-list-item:hover .family-list-item-inner::after, .ru-nuancier .family-list-item:hover article .page-menu-list-item-inner::after, article .ru-nuancier .family-list-item:hover .page-menu-list-item-inner::after, .ru-nuancier article .page-menu-list-item:hover .family-list-item-inner::after, .ru-nuancier article .page-menu-list-item:hover .page-menu-list-item-inner::after, article .ru-nuancier .page-menu-list-item:hover .family-list-item-inner::after, article .ru-nuancier .page-menu-list-item:hover .page-menu-list-item-inner::after, .ru-nuancier .family-list-item:hover .news-list-item-text::after, .ru-nuancier article .page-menu-list-item:hover .news-list-item-text::after, article .ru-nuancier .page-menu-list-item:hover .news-list-item-text::after, .ru-nuancier .news-list-item:hover .family-list-item-inner::after, .ru-nuancier .news-list-item:hover article .page-menu-list-item-inner::after, article .ru-nuancier .news-list-item:hover .page-menu-list-item-inner::after, .ru-nuancier .news-list-item:hover .news-list-item-text::after {
    width: 120px;
  }
}

@keyframes opacity-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------

	Page listing actualités

*/
article .news-list {
  padding: 0 5px 20px;
}
@media only screen and (min-width: 48em) {
  article .news-list {
    padding: 0 10px 50px;
  }
}
@media only screen and (min-width: 90em) {
  article .news-list {
    padding: 0 20px 60px;
  }
}
article .news-list-item {
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  border: 1px solid #DBD4CE !important;
}
@media only screen and (min-width: 48em) {
  article .news-list-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 64em) {
  article .news-list-item {
    width: calc(33.333% - 20px);
  }
}
@media only screen and (min-width: 90em) {
  article .news-list-item {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  article .news-list-item {
    width: calc(25% - 30px);
  }
}
article .news-list-item-inner {
  padding: 0;
}
article .news-list-item-picture {
  height: 150px;
}
@media only screen and (min-width: 48em) {
  article .news-list-item-picture {
    height: 200px;
  }
}
@media only screen and (min-width: 78em) {
  article .news-list-item-picture {
    height: 250px;
  }
}
@media only screen and (min-width: 103.125em) {
  article .news-list-item-picture {
    height: 320px;
  }
}
article .news-list-item-text {
  padding: 15px;
  text-align: right;
}
@media only screen and (min-width: 78em) {
  article .news-list-item-text {
    padding: 20px;
  }
  article .news-list-item-text::before {
    content: "En savoir plus" !important;
  }
}
@media only screen and (min-width: 90em) {
  article .news-list-item-text::before {
    bottom: 9px;
  }
}
@media only screen and (min-width: 103.125em) {
  article .news-list-item-text {
    padding: 30px 40px 30px;
  }
  article .news-list-item-text::before {
    bottom: 18px;
  }
  article .news-list-item-text::after {
    margin-top: 20px;
  }
}
article .news-list-item-text h2 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
}
@media only screen and (min-width: 48em) {
  article .news-list-item-text h2 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 103.125em) {
  article .news-list-item-text h2 {
    font-size: 20px;
  }
}
article .news-list-item-text .date {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1;
}

/*--------------------------------

	Page détail actualité

*/
.news-picture-full {
  margin-bottom: 0 !important;
}
.news-picture-full img {
  max-height: 500px;
}

.news-rs {
  margin-top: 40px !important;
}

/*--------------------------------

	PAGE
	Ces fichiers contiennent les styles des pages "spéciales"

*/
/*--------------------------------

	Page Contact

*/
.ru-accueil .article-title {
  display: none;
}
.ru-accueil article {
  width: 100%;
  max-width: none;
  padding: 0;
}
.ru-accueil article h1 {
  display: block;
}
.ru-accueil .subfooter {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .ru-accueil .subfooter {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 78em) {
  .ru-accueil .subfooter {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-accueil .subfooter {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .ru-accueil .subfooter {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 48em) {
  .entrees {
    display: flex;
  }
}
.entrees-item {
  position: relative;
}
@media only screen and (min-width: 48em) {
  .entrees-item {
    width: 33.3333%;
  }
}
.entrees-item-picture {
  height: 125px;
}
@media only screen and (min-width: 48em) {
  .entrees-item-picture {
    height: 300px;
  }
}
@media only screen and (min-width: 78em) {
  .entrees-item-picture {
    height: 375px;
  }
}
@media only screen and (min-width: 90em) {
  .entrees-item-picture {
    height: 450px;
  }
}
.entrees-item-picture::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.entrees-item-text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: right;
  padding: 30px 60px;
}
@media only screen and (min-width: 48em) {
  .entrees-item-text {
    padding: 30px 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .entrees-item-text {
    padding: 30px 95px 33px;
  }
}
.entrees-item-text .h3 {
  color: #fff;
  font-size: 25px;
}
@media only screen and (min-width: 78em) {
  .entrees-item-text .h3 {
    font-size: 30px;
  }
}
.entrees-item-text::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  float: right;
  margin-right: 40px;
  margin-top: 15px;
}
@media only screen and (min-width: 78em) {
  .entrees-item-text::before, .entrees-item-text::after {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .entrees-item-text::before {
    content: "Voir les catégories";
    position: absolute;
    bottom: 17px;
    right: 130px;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    color: #fff;
  }
}
@media only screen and (min-width: 103.125em) {
  .entrees-item-text::before {
    right: 190px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .entrees-item:hover .entrees-item-text::before {
    right: 250px;
    opacity: 1;
  }
  .entrees-item:hover .entrees-item-text::after {
    width: 150px;
  }
}
@media only screen and (min-width: 103.125em) {
  .entrees-item:hover .entrees-item-text::before {
    right: 310px;
  }
}

.presentation-accueil {
  background: #F4F2F0;
  padding: 40px 15px;
  text-align: center;
}
@media only screen and (min-width: 90em) {
  .presentation-accueil {
    padding: 48px 15px;
  }
}
.presentation-accueil h1 {
  margin-bottom: 20px;
  font-size: 28px;
}
@media only screen and (min-width: 78em) {
  .presentation-accueil h1 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 90em) {
  .presentation-accueil h1 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
.presentation-accueil p {
  line-height: 24px;
}
@media only screen and (min-width: 48em) {
  .presentation-accueil p {
    max-width: 623px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
}
.presentation-accueil > *:last-child {
  margin-bottom: 0;
}

.product-popular {
  margin-bottom: 40px;
}
.product-popular-title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 68px;
  font-size: 18px;
  padding: 0 15px;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .product-popular-title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-popular-title {
    margin-bottom: 40px;
  }
}
.product-popular-list {
  position: relative;
}
.product-popular-list .slick-arrow {
  position: absolute;
  top: -50px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background-size: 100%;
  background-repeat: none;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -99999px;
}
@media only screen and (min-width: 90em) {
  .product-popular-list .slick-arrow {
    top: -60px;
  }
}
.product-popular-list .slick-arrow.slick-prev {
  left: calc(50% - 20px);
  background-image: url(/images/icon/icon-arrow-left-black.svg);
}
@media only screen and (min-width: 48em) {
  .product-popular-list .slick-arrow.slick-prev {
    left: calc(50% - 190px);
  }
}
@media only screen and (min-width: 90em) {
  .product-popular-list .slick-arrow.slick-prev {
    left: calc(50% - 200px);
  }
}
.product-popular-list .slick-arrow.slick-next {
  left: calc(50% + 20px);
  background-image: url(/images/icon/icon-arrow-right-black.svg);
}
@media only screen and (min-width: 48em) {
  .product-popular-list .slick-arrow.slick-next {
    left: calc(50% + 190px);
  }
}
@media only screen and (min-width: 90em) {
  .product-popular-list .slick-arrow.slick-next {
    left: calc(50% + 200px);
  }
}
.product-popular-list .slick-track, .product-popular-list .slick-list {
  display: flex;
}
.product-popular-list .short_product, .product-popular-list .family-list-item, .product-popular-list article .page-menu-list-item, article .product-popular-list .page-menu-list-item, .product-popular-list .news-list-item {
  border-top: 1px solid #DBD4CE !important;
  border-right: none !important;
  border-left: 1px solid #DBD4CE !important;
  height: 100%;
}

.descritpion-detaillee {
  background: #F4F2F0;
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee {
    margin: 100px 0 120px;
  }
}
@media only screen and (min-width: 103.125em) {
  .descritpion-detaillee {
    margin: 120px 0 160px;
  }
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee-inner {
    display: flex;
    justify-content: flex-end;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .descritpion-detaillee-inner {
    max-width: 1280px;
  }
}
@media only screen and (min-width: 103.125em) {
  .descritpion-detaillee-inner {
    max-width: 1350px;
  }
}
.descritpion-detaillee-img {
  height: 250px;
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee-img {
    height: calc(100% + 120px);
    position: absolute;
    width: 570px;
    left: 0;
    top: -60px;
  }
}
@media only screen and (min-width: 90em) {
  .descritpion-detaillee-img {
    width: 633px;
  }
}
@media only screen and (min-width: 103.125em) {
  .descritpion-detaillee-img {
    top: -80px;
    height: calc(100% + 160px);
  }
}
.descritpion-detaillee-text {
  padding: 30px 15px 40px;
}
@media only screen and (min-width: 48em) {
  .descritpion-detaillee-text {
    padding: 30px 10% 40px;
  }
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee-text {
    width: 545px;
    font-size: 16px;
    padding: 60px 0 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .descritpion-detaillee-text {
    padding: 80px 0 80px;
  }
}
.descritpion-detaillee-text h2 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee-text h2 {
    max-width: 465px;
  }
}
@media only screen and (min-width: 103.125em) {
  .descritpion-detaillee-text h2 {
    margin-bottom: 40px;
  }
}
.descritpion-detaillee-text .p-btn {
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  .descritpion-detaillee-text .p-btn {
    text-align: left;
  }
}

/*--------------------------------

	Page menu

*/
article .page-menu-list-item-inner::before {
  content: "En savoir plus" !important;
}

/*--------------------------------

	UTILITIES
	Ces fichiers contiennent les classes utiles

*/
/*--------------------------------

	Classes utilisables telles quelles dans fichier html

*/
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.hide {
  display: none !important;
  visibility: hidden;
}

.block {
  display: block !important;
}

.i-block {
  display: inline-block !important;
}

.flex {
  display: flex;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}

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

.o-hidden {
  overflow: hidden !important;
}

.viewproduct {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  text-indent: -99999px;
}
.viewproduct a {
  width: 100%;
  height: 100%;
  display: block;
}
.viewproduct a:hover {
  background: none !important;
}

.bloc {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #CCCCC1;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 48em) {
  .bloc {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.bold {
  font-weight: 700;
}

.f-right {
  float: right !important;
}

.f-left {
  float: left !important;
}

.f-none {
  float: none !important;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.fz-normal {
  font-size: 16px !important;
}

.fz-xxx-small {
  font-size: 8px !important;
}

.fz-small {
  font-size: 14px !important;
}

.fz-medium {
  font-size: 18px !important;
}

.fz-large {
  font-size: 24px !important;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.rotate-0 {
  transform: rotate(0deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

.rotate-270 {
  transform: rotate(270deg);
}

.rotate--90 {
  transform: rotate(-90deg);
}

.rotate--180 {
  transform: rotate(-180deg);
}

.rotate--270 {
  transform: rotate(-270deg);
}

.no-photo:empty {
  background: url("/images/commun/no-photo.jpg") no-repeat scroll center;
  opacity: 0.4;
  background-size: 100%;
}
@media only screen and (min-width: 30em) {
  .no-photo:empty {
    background-size: auto;
  }
}

.icon-container, .icon-right, .icon-left {
  display: inline;
  position: relative;
}
.icon-container .icon, .icon-right .icon, .icon-left .icon, .icon-container :not(label):not(.form_field).error, .icon-right :not(label):not(.form_field).error, .icon-left :not(label):not(.form_field).error,
.icon-container .loginError,
.icon-right .loginError,
.icon-left .loginError,
.icon-container .strength_password,
.icon-right .strength_password,
.icon-left .strength_password,
.icon-container .confirmpasswd,
.icon-right .confirmpasswd,
.icon-left .confirmpasswd {
  position: absolute;
  top: 25px;
}

.icon-left .icon, .icon-left :not(label):not(.form_field).error,
.icon-left .loginError,
.icon-left .strength_password,
.icon-left .confirmpasswd {
  left: 20px;
}

.icon-right .icon, .icon-right :not(label):not(.form_field).error,
.icon-right .loginError,
.icon-right .strength_password,
.icon-right .confirmpasswd {
  right: 20px;
}

.integration_toolbar {
  position: fixed !important;
  width: 220px !important;
}

div[style*="display: block; visibility: visible;"] {
  position: relative !important;
  top: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
}

.icon, :not(label):not(.form_field).error,
.loginError,
.strength_password,
.confirmpasswd {
  font-size: inherit;
}
.icon::before, .error:not(label):not(.form_field)::before,
.loginError::before,
.strength_password::before,
.confirmpasswd::before {
  font-size: 8px;
}

.color1 {
  color: #0C0C0C;
}

.color2 {
  color: #838379;
}

.color3 {
  color: #888;
}

.color4 {
  color: #f50023;
}

.exergue {
  font-size: 18px;
  color: #838379;
  font-style: italic;
}

/*--------------------------------

	PRINT
	Ces fichiers contiennent les styles pour l'impression

*/
/*--------------------------------

	Style lors de l'impression

*/
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    page-break-inside: avoid;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote,
  table {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  ul,
  ol,
  dl {
    page-break-before: avoid;
  }
}
/*# sourceMappingURL=styles.css.map */