@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

*/
/*
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;
	}


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

	GRID
	Ces fichiers contiennent les styles pour la grille type Foundation

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

	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;
  font-size: 16px;
  line-height: 1.38;
  color: #272727;
  font-family: "Roboto", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
body.open {
  overflow: hidden;
  height: 100vh;
}

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

	Text selection/highlighting

*/

::selection {
  background: #272727;
  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: #e5251d;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:hover {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #272727;
}
a img {
  border: none;
}

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

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

	Tous les styles de boutons

*/
.btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-white, .btn-full-gold, .cart-bottom .flex-center input[type=submit].btn-full-gold, .btn-full-red, .btn-full-primary, input[type=submit], .btn-full-black, .btn-full-secondary, .btn-empty, .btn-empty-secondary, input[type=reset], .btn-empty-primary, .btn-empty-gold, .btn-empty-red, .btn-empty-black, .btn-empty-white {
  display: inline-block;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  clear: both;
  font-family: "Roboto", Arial, sans-serif;
  width: auto;
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #fff;
  margin: 30px 0;
}
.btn-neutral:hover, .btn-negative:hover, .btn-positive:hover, .btn-full:hover, .btn-full-white:hover, .btn-full-gold:hover, .cart-bottom .flex-center input[type=submit].btn-full-gold:hover, .btn-full-red:hover, .btn-full-primary:hover, input[type=submit]:hover, .btn-full-black:hover, .btn-full-secondary:hover, .btn-empty:hover, .btn-empty-secondary:hover, input[type=reset]:hover, .btn-empty-primary:hover, .btn-empty-gold:hover, .btn-empty-red:hover, .btn-empty-black:hover, .btn-empty-white:hover {
  text-decoration: none;
}

p:last-child .btn-empty, p:last-child .btn-empty-secondary, p:last-child input[type=reset], p:last-child .btn-empty-primary, p:last-child .btn-empty-gold, p:last-child .btn-empty-red, p:last-child .btn-empty-black, p:last-child .btn-empty-white, p:last-child .btn-full, p:last-child .btn-full-white, p:last-child .btn-full-gold, p:last-child .cart-bottom .flex-center input[type=submit].btn-full-gold, .cart-bottom .flex-center p:last-child input[type=submit].btn-full-gold, p:last-child .btn-full-red, p:last-child .btn-full-primary, p:last-child input[type=submit], p:last-child .btn-full-black, p:last-child .btn-full-secondary {
  margin-bottom: 0;
}

.btn-empty, .btn-empty-secondary, input[type=reset], .btn-empty-primary, .btn-empty-gold, .btn-empty-red, .btn-empty-black, .btn-empty-white {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #f1f1f1;
}
.btn-empty-white {
  border-radius: 3px;
  border: solid 1px #fff;
  color: #fff;
}
.btn-empty-white:hover {
  background: #f1f1f1;
  color: #fff;
}
.btn-empty-black {
  border-radius: 3px;
  border: solid 1px #272727;
  color: #272727;
}
.btn-empty-black:hover {
  background: #f1f1f1;
  color: #272727;
}
.btn-empty-red {
  border-radius: 3px;
  border: solid 1px #e5251d;
  color: #e5251d;
}
.btn-empty-red:hover {
  background: #f1f1f1;
  color: #e5251d;
}
.btn-empty-gold {
  border-radius: 3px;
  border: solid 1px #c1934e;
  color: #c1934e;
}
.btn-empty-gold:hover {
  background: #f1f1f1;
  color: #c1934e;
}
.btn-empty-primary {
  border-color: #272727;
  color: #272727;
}
.btn-empty-primary:hover {
  background: rgb(229.5, 229.5, 229.5);
}
.btn-empty-secondary, input[type=reset] {
  border-color: #e5251d;
  color: #e5251d;
}
.btn-empty-secondary:hover, input[type=reset]:hover {
  background: rgb(229.5, 229.5, 229.5);
}
.btn-full, .btn-full-white, .btn-full-gold, .cart-bottom .flex-center input[type=submit].btn-full-gold, .btn-full-red, .btn-full-primary, input[type=submit], .btn-full-black, .btn-full-secondary {
  border: none;
  color: #fff;
}
.btn-full-black, .btn-full-secondary {
  background: #272727;
}
.btn-full-black:hover, .btn-full-secondary:hover {
  background: #5a5a5a;
  color: #fff;
}
.btn-full-red, .btn-full-primary, input[type=submit] {
  background: #e5251d;
}
.btn-full-red:hover, .btn-full-primary:hover, input[type=submit]:hover {
  background: rgb(139.9047619048, 21.0476190476, 16.0952380952);
  color: #fff;
}
.btn-full-gold, .cart-bottom .flex-center input[type=submit].btn-full-gold {
  background: #c1934e;
}
.btn-full-gold:hover, .cart-bottom .flex-center input[type=submit].btn-full-gold:hover {
  background: rgb(162.9288702929, 120.5857740586, 57.0711297071);
  color: #fff;
}
.btn-full-white {
  background: #fff;
  color: #272727;
}
.btn-full-white:hover {
  background: rgb(229.5, 229.5, 229.5);
  color: #272727;
}
.btn-positive {
  background-color: #24b35d;
  color: #fff;
}
.btn-positive:hover {
  background: rgb(51.8558139535, 214.1441860465, 116.5441860465);
}
.btn-negative {
  background-color: #e5251d;
  color: #fff;
}
.btn-negative:hover {
  background: rgb(234.2619047619, 81.119047619, 74.7380952381);
}
.btn-neutral {
  background: #f1f1f1;
  color: #373737;
}
.btn-neutral:hover {
  background: rgb(215.5, 215.5, 215.5);
}
.btn-small {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

	Boutons de partage (social)

*/
.lienRs {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 64em) {
  .lienRs {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.lienRs a {
  margin: 10px;
}
.lienRs a i {
  display: block;
}

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

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

	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: 20px 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 10px 0;
  }
}
img[style*="float:right"], img[style*="float: right"] {
  float: none !important;
  display: block;
  margin: 20px 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 10px 30px;
  }
}

.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;
}

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

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

.medias .center {
  text-align: center;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 90em) {
  .medias .center {
    margin-left: -100px;
    margin-right: -100px;
  }
}
.medias .center img {
  max-width: auto;
}

.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%;
  width: 100%;
  height: 100%;
}

.formulaire,
iframe:not([src*=recaptcha]),
.medias {
  margin-top: 30px;
  margin-bottom: 30px;
}

.medias {
  margin-top: 60px;
  margin-bottom: 60px;
}

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

	Logo

*/
#logo {
  position: absolute;
  top: 62px;
  left: 5.335%;
  z-index: 1000;
}
@media only screen and (min-width: 78em) {
  #logo {
    top: -20px;
    left: calc(50% - 90px);
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 90em) {
  #logo {
    top: -30px;
    left: 50%;
  }
}

#logo a {
  display: block;
  width: 166px;
  height: 53px;
  text-indent: -9999px;
  background: url("/images/logo/logo-maison-beaussier-1-white.svg") no-repeat center;
  background-size: 100%;
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 200px;
    height: 62px;
  }
}
@media only screen and (min-width: 90em) {
  #logo a {
    width: 270px;
    height: 83px;
  }
}

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

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
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::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before, .product-toggle-content-item .text ul li::before {
  content: "•";
  margin-right: 15px;
}

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 #f1f1f1;
  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: #373737;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #f1f1f1;
  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 #f1f1f1;
  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: #272727;
  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

*/
@font-face {
  font-family: "Roboto";
  src: url("/images/fonts/Roboto-Bold.woff2") format("woff2"), url("/images/fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/images/fonts/PlayfairDisplay-Regular.woff2") format("woff2"), url("/images/fonts/PlayfairDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/images/fonts/Roboto-Regular.woff2") format("woff2"), url("/images/fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Splash";
  src: url("/images/fonts/Splash-Regular.woff2") format("woff2"), url("/images/fonts/Splash-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/images/fonts/PlayfairDisplay-Bold.woff2") format("woff2"), url("/images/fonts/PlayfairDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------

	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: "Playfair Display", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 50px 0 30px;
  color: #272727;
}

h1,
.h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 80px;
    line-height: 1;
  }
}
article #contentForFilter .catalog h1,
article #contentForFilter .catalog .h1 {
  display: none;
}

h2,
.h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #272727;
}
h2 span,
.h2 span {
  font-size: 20px;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 36px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  h2 span,
  .h2 span {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  color: #e5251d;
}
@media only screen and (min-width: 78em) {
  h3,
  .h3 {
    font-size: 27px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.ru-carte h3:not(.title-carte),
.ru-carte .h3:not(.title-carte) {
  margin-top: 50px;
}

h2.title-carte, h3.title-carte {
  font-size: 20px;
  color: #272727;
  font-family: "Playfair Display", Arial, sans-serif;
}
@media only screen and (min-width: 64em) {
  h2.title-carte, h3.title-carte {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
  }
  h2.title-carte::after, h3.title-carte::after {
    order: 2;
    content: "";
    width: 100%;
    height: 13px;
    border-bottom: 1px dotted;
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  h2.title-carte, h3.title-carte {
    font-size: 24px;
  }
}
h2.title-carte em, h3.title-carte em {
  color: #c1934e;
  order: 3;
  display: block;
  margin-top: 5px;
}
@media only screen and (min-width: 64em) {
  h2.title-carte em, h3.title-carte em {
    display: inline-block;
    margin: 0;
  }
}

h4,
.h4 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: #272727;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 25px;
    line-height: 1;
    margin-top: 80px;
  }
}
.ru-carte h4:not(.title-carte),
.ru-carte .h4:not(.title-carte) {
  margin-top: 30px;
  text-transform: none;
  font-weight: bold;
}

h5,
.h5 {
  font-size: 20px;
  color: #e5251d;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  h5,
  .h5 {
    font-size: 22px;
  }
}

h6,
.h6 {
  font-size: 18px;
  color: #272727;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  h6,
  .h6 {
    font-size: 20px;
  }
}

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: 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;
  line-height: 1.67;
  letter-spacing: 0.5px;
  color: #bdbdbd;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    margin-bottom: 20px;
  }
}
.breadcrumb a {
  color: #bdbdbd;
  font-weight: 400;
}
.breadcrumb .separator {
  background: #bdbdbd;
  display: inline-block;
  width: 10px;
  height: 1px;
  margin: 0 8px;
  position: relative;
  top: -4px;
}
.breadcrumb span:last-child a {
  font-weight: bold;
}

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

	Galerie Fancybox 3

*/
.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: #fff;
  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;
  }
}

p .groupCheckBoxUnique label.inline {
  float: left;
  margin-right: 20px;
}
p .groupCheckBoxUnique .group_multi_checkbox {
  float: left;
  margin-bottom: 7px;
  width: 70px;
  margin-top: 0;
}
p .groupCheckBoxUnique small.error {
  margin: 0 !important;
}

.rgpd, .form_creator_footer {
  font-size: 12px;
  color: #707173;
}
.rgpd p, .form_creator_footer p {
  margin: 10px 0;
  line-height: 20px;
}

.form_creator_footer {
  margin-top: 50px;
}
.form_creator_footer a {
  color: #707173;
  text-decoration: underline;
}

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

.fieldGroup {
  overflow: hidden;
}

label.inline, #accountChangePassword label {
  display: block;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 10px;
}
label.inline.error, #accountChangePassword label.error {
  color: #e5251d;
}
label.inline .obligatory, #accountChangePassword label .obligatory {
  color: #e5251d;
}

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
  background-color: #fff;
  appearance: none;
  display: inline-block;
  padding: 20px;
  margin-bottom: 25px;
  border: solid 1px #bdbdbd;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: #bdbdbd;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: #bdbdbd;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  color: #bdbdbd;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: #bdbdbd;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  color: #bdbdbd;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: #272727;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #f1f1f1;
}

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

textarea {
  font-family: "Roboto", Arial, sans-serif;
}
.error textarea {
  border: 1px solid #f1f1f1;
  border-color: #e5251d;
}

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

	Liste déroulante

*/
select {
  background-image: url("/images/icon/icon-chevron-black-bottom.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.error select {
  border: 1px solid #f1f1f1;
  border-color: #e5251d;
}

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

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

	Boutons de validation/annulation

*/
input[type=submit] {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

	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: #272727;
}
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: #272727;
}

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";
}

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

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

	Erreurs -> ENLEVER LES REQUIRED POUR STYLISER

*/
:not(label):not(.form_field).error,
.loginError,
.confirmpasswd,
.strength_password {
  color: #e5251d;
  font-size: 12px !important;
  display: block;
  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: 600;
}
.strength_password::before {
  display: none;
}
.strength_password.shortPass {
  color: #e5251d;
}
.strength_password.badPass {
  color: orange;
}
.strength_password.goodPass, .strength_password.strongPass {
  color: #24b35d;
}

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

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  padding: 15px;
  color: #707173;
  font-size: 12px;
  background-color: #F6F6F6;
}
.aide p {
  font-size: 12px;
  margin: 0;
}

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

	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: 15px;
}

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: block;
  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: 5px 10px 10px 0;
}
input[type=checkbox].checkbox, input[type=radio].checkbox {
  float: none;
  margin-bottom: 20px;
  display: block;
}

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

	CAPCHA

*/
#captcha {
  margin: 10px 0 25px;
}
#captcha .errorForm {
  color: #e5251d;
  font-weight: bold;
  text-align: center;
}
#captcha .error iframe {
  border: 3px solid #e5251d;
}
#captcha iframe {
  margin: 0;
}
#captcha #html_element > div {
  margin-left: auto;
  margin-right: auto;
}

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

	Submit

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

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

	Error / Valid

*/
.errorForm, .error.big {
  text-align: center;
  font-size: 16px !important;
  font-weight: 700;
  color: #e5251d;
  background: rgba(229, 37, 29, 0.1);
  border-radius: 16px;
  padding: 20px 12px;
}

.thanksValid {
  background: rgba(36, 179, 93, 0.2);
  border: 3px solid #24b35d;
  padding: 20px;
  text-align: center;
}
.thanksValid h3 {
  margin-top: 0;
}
.thanksValid p:last-child {
  margin-bottom: 0;
}
.thanksValid a {
  color: #24b35d;
  font-weight: bold;
  text-decoration: underline;
}

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

	Suppression reset form

*/
#reset {
  display: none;
}

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

	Style de la galerie miniature

*/
.medias .gallery {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 90em) {
  .medias .gallery {
    margin-left: -100px;
    margin-right: -100px;
  }
}

.medias .gallery ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.no-support-grid .medias .gallery ul {
  display: -ms-grid;
}
@supports (grid-gap: 1px) {
  .no-support-grid .medias .gallery ul > li, .no-support-grid .medias .gallery ul > div {
    margin: 0;
  }
}
.no-support-grid .medias .gallery ul > li:nth-child(1), .no-support-grid .medias .gallery ul > div:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(2), .no-support-grid .medias .gallery ul > div:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(3), .no-support-grid .medias .gallery ul > div:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(4), .no-support-grid .medias .gallery ul > div:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(5), .no-support-grid .medias .gallery ul > div:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(6), .no-support-grid .medias .gallery ul > div:nth-child(6) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(7), .no-support-grid .medias .gallery ul > div:nth-child(7) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(8), .no-support-grid .medias .gallery ul > div:nth-child(8) {
  -ms-grid-row: 8;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(9), .no-support-grid .medias .gallery ul > div:nth-child(9) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(10), .no-support-grid .medias .gallery ul > div:nth-child(10) {
  -ms-grid-row: 10;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(11), .no-support-grid .medias .gallery ul > div:nth-child(11) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(12), .no-support-grid .medias .gallery ul > div:nth-child(12) {
  -ms-grid-row: 12;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(13), .no-support-grid .medias .gallery ul > div:nth-child(13) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(14), .no-support-grid .medias .gallery ul > div:nth-child(14) {
  -ms-grid-row: 14;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(15), .no-support-grid .medias .gallery ul > div:nth-child(15) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(16), .no-support-grid .medias .gallery ul > div:nth-child(16) {
  -ms-grid-row: 16;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(17), .no-support-grid .medias .gallery ul > div:nth-child(17) {
  -ms-grid-row: 17;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(18), .no-support-grid .medias .gallery ul > div:nth-child(18) {
  -ms-grid-row: 18;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(19), .no-support-grid .medias .gallery ul > div:nth-child(19) {
  -ms-grid-row: 19;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(20), .no-support-grid .medias .gallery ul > div:nth-child(20) {
  -ms-grid-row: 20;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(21), .no-support-grid .medias .gallery ul > div:nth-child(21) {
  -ms-grid-row: 21;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(22), .no-support-grid .medias .gallery ul > div:nth-child(22) {
  -ms-grid-row: 22;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(23), .no-support-grid .medias .gallery ul > div:nth-child(23) {
  -ms-grid-row: 23;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(24), .no-support-grid .medias .gallery ul > div:nth-child(24) {
  -ms-grid-row: 24;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(25), .no-support-grid .medias .gallery ul > div:nth-child(25) {
  -ms-grid-row: 25;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(26), .no-support-grid .medias .gallery ul > div:nth-child(26) {
  -ms-grid-row: 26;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(27), .no-support-grid .medias .gallery ul > div:nth-child(27) {
  -ms-grid-row: 27;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(28), .no-support-grid .medias .gallery ul > div:nth-child(28) {
  -ms-grid-row: 28;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(29), .no-support-grid .medias .gallery ul > div:nth-child(29) {
  -ms-grid-row: 29;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(30), .no-support-grid .medias .gallery ul > div:nth-child(30) {
  -ms-grid-row: 30;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(31), .no-support-grid .medias .gallery ul > div:nth-child(31) {
  -ms-grid-row: 31;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(32), .no-support-grid .medias .gallery ul > div:nth-child(32) {
  -ms-grid-row: 32;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(33), .no-support-grid .medias .gallery ul > div:nth-child(33) {
  -ms-grid-row: 33;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(34), .no-support-grid .medias .gallery ul > div:nth-child(34) {
  -ms-grid-row: 34;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(35), .no-support-grid .medias .gallery ul > div:nth-child(35) {
  -ms-grid-row: 35;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(36), .no-support-grid .medias .gallery ul > div:nth-child(36) {
  -ms-grid-row: 36;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(37), .no-support-grid .medias .gallery ul > div:nth-child(37) {
  -ms-grid-row: 37;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(38), .no-support-grid .medias .gallery ul > div:nth-child(38) {
  -ms-grid-row: 38;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(39), .no-support-grid .medias .gallery ul > div:nth-child(39) {
  -ms-grid-row: 39;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(40), .no-support-grid .medias .gallery ul > div:nth-child(40) {
  -ms-grid-row: 40;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(41), .no-support-grid .medias .gallery ul > div:nth-child(41) {
  -ms-grid-row: 41;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(42), .no-support-grid .medias .gallery ul > div:nth-child(42) {
  -ms-grid-row: 42;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(43), .no-support-grid .medias .gallery ul > div:nth-child(43) {
  -ms-grid-row: 43;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(44), .no-support-grid .medias .gallery ul > div:nth-child(44) {
  -ms-grid-row: 44;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(45), .no-support-grid .medias .gallery ul > div:nth-child(45) {
  -ms-grid-row: 45;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(46), .no-support-grid .medias .gallery ul > div:nth-child(46) {
  -ms-grid-row: 46;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(47), .no-support-grid .medias .gallery ul > div:nth-child(47) {
  -ms-grid-row: 47;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(48), .no-support-grid .medias .gallery ul > div:nth-child(48) {
  -ms-grid-row: 48;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(49), .no-support-grid .medias .gallery ul > div:nth-child(49) {
  -ms-grid-row: 49;
  -ms-grid-column: 1;
}
.no-support-grid .medias .gallery ul > li:nth-child(50), .no-support-grid .medias .gallery ul > div:nth-child(50) {
  -ms-grid-row: 50;
  -ms-grid-column: 1;
}
@media only screen and (min-width: 22.5em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
  .no-support-grid .medias .gallery ul {
    display: -ms-grid;
  }
  .no-support-grid .medias .gallery ul > li, .no-support-grid .medias .gallery ul > div {
    margin-left: 10px;
    margin-top: 10px;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .medias .gallery ul > li, .no-support-grid .medias .gallery ul > div {
      margin: 0;
    }
  }
  .no-support-grid .medias .gallery ul > li:nth-child(1), .no-support-grid .medias .gallery ul > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(2), .no-support-grid .medias .gallery ul > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(3), .no-support-grid .medias .gallery ul > div:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(4), .no-support-grid .medias .gallery ul > div:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(5), .no-support-grid .medias .gallery ul > div:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(6), .no-support-grid .medias .gallery ul > div:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(7), .no-support-grid .medias .gallery ul > div:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(8), .no-support-grid .medias .gallery ul > div:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(9), .no-support-grid .medias .gallery ul > div:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(10), .no-support-grid .medias .gallery ul > div:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(11), .no-support-grid .medias .gallery ul > div:nth-child(11) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(12), .no-support-grid .medias .gallery ul > div:nth-child(12) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(13), .no-support-grid .medias .gallery ul > div:nth-child(13) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(14), .no-support-grid .medias .gallery ul > div:nth-child(14) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(15), .no-support-grid .medias .gallery ul > div:nth-child(15) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(16), .no-support-grid .medias .gallery ul > div:nth-child(16) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(17), .no-support-grid .medias .gallery ul > div:nth-child(17) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(18), .no-support-grid .medias .gallery ul > div:nth-child(18) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(19), .no-support-grid .medias .gallery ul > div:nth-child(19) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(20), .no-support-grid .medias .gallery ul > div:nth-child(20) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(21), .no-support-grid .medias .gallery ul > div:nth-child(21) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(22), .no-support-grid .medias .gallery ul > div:nth-child(22) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(23), .no-support-grid .medias .gallery ul > div:nth-child(23) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(24), .no-support-grid .medias .gallery ul > div:nth-child(24) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(25), .no-support-grid .medias .gallery ul > div:nth-child(25) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(26), .no-support-grid .medias .gallery ul > div:nth-child(26) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(27), .no-support-grid .medias .gallery ul > div:nth-child(27) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(28), .no-support-grid .medias .gallery ul > div:nth-child(28) {
    -ms-grid-row: 14;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(29), .no-support-grid .medias .gallery ul > div:nth-child(29) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(30), .no-support-grid .medias .gallery ul > div:nth-child(30) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(31), .no-support-grid .medias .gallery ul > div:nth-child(31) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(32), .no-support-grid .medias .gallery ul > div:nth-child(32) {
    -ms-grid-row: 16;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(33), .no-support-grid .medias .gallery ul > div:nth-child(33) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(34), .no-support-grid .medias .gallery ul > div:nth-child(34) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(35), .no-support-grid .medias .gallery ul > div:nth-child(35) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(36), .no-support-grid .medias .gallery ul > div:nth-child(36) {
    -ms-grid-row: 18;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(37), .no-support-grid .medias .gallery ul > div:nth-child(37) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(38), .no-support-grid .medias .gallery ul > div:nth-child(38) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(39), .no-support-grid .medias .gallery ul > div:nth-child(39) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(40), .no-support-grid .medias .gallery ul > div:nth-child(40) {
    -ms-grid-row: 20;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(41), .no-support-grid .medias .gallery ul > div:nth-child(41) {
    -ms-grid-row: 21;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(42), .no-support-grid .medias .gallery ul > div:nth-child(42) {
    -ms-grid-row: 21;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(43), .no-support-grid .medias .gallery ul > div:nth-child(43) {
    -ms-grid-row: 22;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(44), .no-support-grid .medias .gallery ul > div:nth-child(44) {
    -ms-grid-row: 22;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(45), .no-support-grid .medias .gallery ul > div:nth-child(45) {
    -ms-grid-row: 23;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(46), .no-support-grid .medias .gallery ul > div:nth-child(46) {
    -ms-grid-row: 23;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(47), .no-support-grid .medias .gallery ul > div:nth-child(47) {
    -ms-grid-row: 24;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(48), .no-support-grid .medias .gallery ul > div:nth-child(48) {
    -ms-grid-row: 24;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(49), .no-support-grid .medias .gallery ul > div:nth-child(49) {
    -ms-grid-row: 25;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(50), .no-support-grid .medias .gallery ul > div:nth-child(50) {
    -ms-grid-row: 25;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 48em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .no-support-grid .medias .gallery ul {
    display: -ms-grid;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .medias .gallery ul > li, .no-support-grid .medias .gallery ul > div {
      margin: 0;
    }
  }
  .no-support-grid .medias .gallery ul > li:nth-child(1), .no-support-grid .medias .gallery ul > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(2), .no-support-grid .medias .gallery ul > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(3), .no-support-grid .medias .gallery ul > div:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(4), .no-support-grid .medias .gallery ul > div:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(5), .no-support-grid .medias .gallery ul > div:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(6), .no-support-grid .medias .gallery ul > div:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(7), .no-support-grid .medias .gallery ul > div:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(8), .no-support-grid .medias .gallery ul > div:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(9), .no-support-grid .medias .gallery ul > div:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(10), .no-support-grid .medias .gallery ul > div:nth-child(10) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(11), .no-support-grid .medias .gallery ul > div:nth-child(11) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(12), .no-support-grid .medias .gallery ul > div:nth-child(12) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(13), .no-support-grid .medias .gallery ul > div:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(14), .no-support-grid .medias .gallery ul > div:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(15), .no-support-grid .medias .gallery ul > div:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(16), .no-support-grid .medias .gallery ul > div:nth-child(16) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(17), .no-support-grid .medias .gallery ul > div:nth-child(17) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(18), .no-support-grid .medias .gallery ul > div:nth-child(18) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(19), .no-support-grid .medias .gallery ul > div:nth-child(19) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(20), .no-support-grid .medias .gallery ul > div:nth-child(20) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(21), .no-support-grid .medias .gallery ul > div:nth-child(21) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(22), .no-support-grid .medias .gallery ul > div:nth-child(22) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(23), .no-support-grid .medias .gallery ul > div:nth-child(23) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(24), .no-support-grid .medias .gallery ul > div:nth-child(24) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(25), .no-support-grid .medias .gallery ul > div:nth-child(25) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(26), .no-support-grid .medias .gallery ul > div:nth-child(26) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(27), .no-support-grid .medias .gallery ul > div:nth-child(27) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(28), .no-support-grid .medias .gallery ul > div:nth-child(28) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(29), .no-support-grid .medias .gallery ul > div:nth-child(29) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(30), .no-support-grid .medias .gallery ul > div:nth-child(30) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(31), .no-support-grid .medias .gallery ul > div:nth-child(31) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(32), .no-support-grid .medias .gallery ul > div:nth-child(32) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(33), .no-support-grid .medias .gallery ul > div:nth-child(33) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(34), .no-support-grid .medias .gallery ul > div:nth-child(34) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(35), .no-support-grid .medias .gallery ul > div:nth-child(35) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(36), .no-support-grid .medias .gallery ul > div:nth-child(36) {
    -ms-grid-row: 12;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(37), .no-support-grid .medias .gallery ul > div:nth-child(37) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(38), .no-support-grid .medias .gallery ul > div:nth-child(38) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(39), .no-support-grid .medias .gallery ul > div:nth-child(39) {
    -ms-grid-row: 13;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(40), .no-support-grid .medias .gallery ul > div:nth-child(40) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(41), .no-support-grid .medias .gallery ul > div:nth-child(41) {
    -ms-grid-row: 14;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(42), .no-support-grid .medias .gallery ul > div:nth-child(42) {
    -ms-grid-row: 14;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(43), .no-support-grid .medias .gallery ul > div:nth-child(43) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(44), .no-support-grid .medias .gallery ul > div:nth-child(44) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(45), .no-support-grid .medias .gallery ul > div:nth-child(45) {
    -ms-grid-row: 15;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(46), .no-support-grid .medias .gallery ul > div:nth-child(46) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(47), .no-support-grid .medias .gallery ul > div:nth-child(47) {
    -ms-grid-row: 16;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(48), .no-support-grid .medias .gallery ul > div:nth-child(48) {
    -ms-grid-row: 16;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(49), .no-support-grid .medias .gallery ul > div:nth-child(49) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(50), .no-support-grid .medias .gallery ul > div:nth-child(50) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .no-support-grid .medias .gallery ul {
    display: -ms-grid;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .medias .gallery ul > li, .no-support-grid .medias .gallery ul > div {
      margin: 0;
    }
  }
  .no-support-grid .medias .gallery ul > li:nth-child(1), .no-support-grid .medias .gallery ul > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(2), .no-support-grid .medias .gallery ul > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(3), .no-support-grid .medias .gallery ul > div:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(4), .no-support-grid .medias .gallery ul > div:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(5), .no-support-grid .medias .gallery ul > div:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(6), .no-support-grid .medias .gallery ul > div:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(7), .no-support-grid .medias .gallery ul > div:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(8), .no-support-grid .medias .gallery ul > div:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(9), .no-support-grid .medias .gallery ul > div:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(10), .no-support-grid .medias .gallery ul > div:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(11), .no-support-grid .medias .gallery ul > div:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(12), .no-support-grid .medias .gallery ul > div:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(13), .no-support-grid .medias .gallery ul > div:nth-child(13) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(14), .no-support-grid .medias .gallery ul > div:nth-child(14) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(15), .no-support-grid .medias .gallery ul > div:nth-child(15) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(16), .no-support-grid .medias .gallery ul > div:nth-child(16) {
    -ms-grid-row: 4;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(17), .no-support-grid .medias .gallery ul > div:nth-child(17) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(18), .no-support-grid .medias .gallery ul > div:nth-child(18) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(19), .no-support-grid .medias .gallery ul > div:nth-child(19) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(20), .no-support-grid .medias .gallery ul > div:nth-child(20) {
    -ms-grid-row: 5;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(21), .no-support-grid .medias .gallery ul > div:nth-child(21) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(22), .no-support-grid .medias .gallery ul > div:nth-child(22) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(23), .no-support-grid .medias .gallery ul > div:nth-child(23) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(24), .no-support-grid .medias .gallery ul > div:nth-child(24) {
    -ms-grid-row: 6;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(25), .no-support-grid .medias .gallery ul > div:nth-child(25) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(26), .no-support-grid .medias .gallery ul > div:nth-child(26) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(27), .no-support-grid .medias .gallery ul > div:nth-child(27) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(28), .no-support-grid .medias .gallery ul > div:nth-child(28) {
    -ms-grid-row: 7;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(29), .no-support-grid .medias .gallery ul > div:nth-child(29) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(30), .no-support-grid .medias .gallery ul > div:nth-child(30) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(31), .no-support-grid .medias .gallery ul > div:nth-child(31) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(32), .no-support-grid .medias .gallery ul > div:nth-child(32) {
    -ms-grid-row: 8;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(33), .no-support-grid .medias .gallery ul > div:nth-child(33) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(34), .no-support-grid .medias .gallery ul > div:nth-child(34) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(35), .no-support-grid .medias .gallery ul > div:nth-child(35) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(36), .no-support-grid .medias .gallery ul > div:nth-child(36) {
    -ms-grid-row: 9;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(37), .no-support-grid .medias .gallery ul > div:nth-child(37) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(38), .no-support-grid .medias .gallery ul > div:nth-child(38) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(39), .no-support-grid .medias .gallery ul > div:nth-child(39) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(40), .no-support-grid .medias .gallery ul > div:nth-child(40) {
    -ms-grid-row: 10;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(41), .no-support-grid .medias .gallery ul > div:nth-child(41) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(42), .no-support-grid .medias .gallery ul > div:nth-child(42) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(43), .no-support-grid .medias .gallery ul > div:nth-child(43) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(44), .no-support-grid .medias .gallery ul > div:nth-child(44) {
    -ms-grid-row: 11;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(45), .no-support-grid .medias .gallery ul > div:nth-child(45) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(46), .no-support-grid .medias .gallery ul > div:nth-child(46) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(47), .no-support-grid .medias .gallery ul > div:nth-child(47) {
    -ms-grid-row: 12;
    -ms-grid-column: 3;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(48), .no-support-grid .medias .gallery ul > div:nth-child(48) {
    -ms-grid-row: 12;
    -ms-grid-column: 4;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(49), .no-support-grid .medias .gallery ul > div:nth-child(49) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .medias .gallery ul > li:nth-child(50), .no-support-grid .medias .gallery ul > div:nth-child(50) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
}

.medias .gallery li {
  height: 200px;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .medias .gallery li {
    height: 250px;
  }
}

#spLoader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  width: 180px;
  height: 180px;
}
.lds-ring div {
  width: 164px;
  height: 164px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  margin: 18px;
  border: 18px solid #272727;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #272727 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------

	NAVIGATION

*/
@media only screen and (min-width: 78em) {
  .contain-to-grid {
    width: calc(100% - 260px);
    margin-left: 100px;
    position: relative;
    z-index: 2;
  }
}

#nested {
  height: 83px;
  overflow: hidden;
  position: relative;
}
#nested.expanded {
  height: auto;
}
@media only screen and (min-width: 78em) {
  #nested {
    height: auto;
    overflow: visible;
  }
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  padding: 0 10%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 9999;
  border-top: solid 2px rgba(255, 255, 255, 0.1);
  border-bottom: solid 2px rgba(255, 255, 255, 0.1);
  height: 83px;
}
.title-area a {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.title-area a::before {
  content: url(/images/icon/icon-menu.svg);
  margin-right: 10px;
}
@media only screen and (min-width: 78em) {
  .title-area {
    display: none;
  }
}

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

.top-bar-section a {
  width: 100%;
  display: block;
}
.top-bar-section a:hover {
  text-decoration: none;
}

/* ---------------- FIRST LEVEL ---------------- */
#nested ul.firstLevel {
  max-width: 300px;
  margin: 0 auto;
  padding: 30px 0;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(.me-scndnav) {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 90em) {
  #nested ul.firstLevel > li:not(.me-scndnav) {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 103.125em) {
  #nested ul.firstLevel > li:not(.me-scndnav) {
    margin: 0 30px;
  }
}
#nested ul.firstLevel > li:not(.me-scndnav) > a {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #bdbdbd;
  text-transform: uppercase;
  padding: 15px 20px;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(.me-scndnav) > a {
    font-size: 16px;
    padding: 23px 0;
  }
  #nested ul.firstLevel > li:not(.me-scndnav) > a:hover {
    color: #fff;
  }
}
#nested ul.firstLevel > li:not(.me-scndnav).me-promo {
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(.me-scndnav).me-promo {
    margin-bottom: 0;
  }
}
#nested ul.firstLevel > li:not(.me-scndnav).me-promo > a {
  color: #e5251d;
}
#nested ul.firstLevel > li:not(.me-scndnav).me-promo > a:hover {
  color: #fff;
}
#nested ul.firstLevel > li:not(.me-scndnav).me-promo.active > a {
  color: #e5251d;
}
#nested ul.firstLevel > li:not(.me-scndnav).active > a {
  color: #fff;
}
#nested ul.firstLevel > li:not(.me-scndnav).active > a::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 10px;
  height: 2px;
  width: 50px;
  background: #e5251d;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(.me-scndnav).active > a::after {
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li.me-scndnav {
    display: none;
  }
}
#nested ul.firstLevel > li.me-scndnav > a {
  font-size: 20px;
  line-height: 1.57;
  color: #bdbdbd;
  font-weight: 400;
  padding: 10px 20px;
}
#nested ul.firstLevel > li.me-scndnav.active > a {
  color: #e5251d;
  font-weight: bold;
}
#nested ul.firstLevel > li:last-child {
  padding-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:last-child {
    padding-bottom: 0;
  }
}

#nested .firstLevel > li {
  position: relative;
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li:not(:last-child) {
    margin-right: 15px;
  }
}

#nested .firstLevel > li.has-dropdown > a::after {
  content: "+";
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li.has-dropdown > a::after {
    display: none;
  }
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
  background: #F6F6F6;
}
@media only screen and (min-width: 78em) {
  ul.secondLevel {
    position: absolute !important;
    z-index: 99;
    top: 0;
    left: 100%;
    display: block;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    padding: 0;
    top: auto;
    left: 0;
    min-width: 100%;
    background: transparent;
    right: auto;
    left: 0;
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
  }
}

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

	Listing pagination

*/
.pager {
  margin: 50px 0 0;
}
.pager-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
.pager li {
  margin: 5px;
}
.pager li a {
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.38;
  color: #272727;
  border-radius: 3px;
  border: solid 1px #272727;
}
.pager li a:hover {
  background: #f1f1f1;
}
.pager li a.pager_active_page {
  background-color: #272727;
  color: #fff;
}
.pager li a.pagerFirst, .pager li a.pagerLast {
  display: none;
}
.pager li a.pager-back {
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.2;
}

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

	Bouton retour en haut de page

*/
.scroll-top {
  width: 40px;
  height: 40px;
  border: 1px solid #f1f1f1;
  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 {
  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;
  width: 100%;
}
.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: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.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;
}

.slick-arrow {
  text-indent: -9999px;
  background: url("/images/icon/icon-chevron-black.svg") no-repeat center;
  background-size: 8px;
  height: 30px;
  width: 40px;
  min-width: 40px;
  margin-left: -20px;
  z-index: 10;
}
@media only screen and (min-width: 78em) {
  .slick-arrow {
    width: 20px;
    min-width: 20px;
  }
}
.slick-arrow.slick-prev {
  transform: rotate(180deg);
  margin-right: -20px;
  margin-left: 0;
}
.slick-arrow.slick-disabled {
  opacity: 0.2;
}

.modal-open {
  overflow: hidden;
  height: 100%;
}

#contentWrapper {
  display: unset;
}

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

/* Animation */
#tarteaucitronRoot * {
  transition: border 300ms, background 300ms, opacity 200ms, box-shadow 400ms;
}

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

#tarteaucitronRoot ol, #tarteaucitronRoot ul {
  list-style: none;
}

#tarteaucitronRoot blockquote, #tarteaucitronRoot q {
  quotes: none;
}

#tarteaucitronRoot blockquote:before, #tarteaucitronRoot blockquote:after, #tarteaucitronRoot q:before, #tarteaucitronRoot q:after {
  content: "";
  content: none;
}

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

#tarteaucitronRoot a:focus-visible, #tarteaucitronRoot button:focus-visible {
  outline: 3px dashed #3d86d8;
}

/***
 * Better scroll management
 */
div#tarteaucitronMainLineOffset {
  margin-top: 0 !important;
}

div#tarteaucitronServices {
  margin-top: 21px !important;
}

#tarteaucitronServices::-webkit-scrollbar {
  width: 5px;
}

#tarteaucitronServices::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

#tarteaucitronServices::-webkit-scrollbar-thumb {
  background-color: #ddd;
  outline: 0px solid slategrey;
}

div#tarteaucitronServices {
  box-shadow: 0 40px 60px #545454;
}

/***
 * Responsive layout for the control panel
 */
@media screen and (max-width: 479px) {
  #tarteaucitron .tarteaucitronLine .tarteaucitronName {
    width: 90% !important;
  }
  #tarteaucitron .tarteaucitronLine .tarteaucitronAsk {
    float: left !important;
    margin: 10px 15px 5px;
  }
}
@media screen and (max-width: 767px) {
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer, #tarteaucitron {
    background: #fff;
    border: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    max-height: 100% !important;
    max-width: 100% !important;
    top: 0 !important;
    width: 100% !important;
  }
  #tarteaucitron .tarteaucitronBorder {
    border: 0 !important;
  }
  #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
    border: 0 !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
    text-align: left !important;
  }
  .tarteaucitronName .tarteaucitronH2 {
    max-width: 80%;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
    text-align: center !important;
  }
  #tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk button {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #tarteaucitron {
    border: 0 !important;
    left: 0 !important;
    margin: 0 5% !important;
    max-height: 80% !important;
    width: 90% !important;
  }
}
/***
 * Common value
 */
#tarteaucitronRoot div#tarteaucitron {
  left: 0;
  right: 0;
  margin: auto;
}

#tarteaucitronRoot button#tarteaucitronBack {
  background: #eee;
}

#tarteaucitron .clear {
  clear: both;
}

#tarteaucitron a {
  color: rgb(66, 66, 66);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

#tarteaucitronRoot button {
  background: transparent;
  border: 0;
}

#tarteaucitronAlertBig strong, #tarteaucitronAlertSmall strong,
#tarteaucitronAlertBig a, #tarteaucitronAlertSmall a {
  color: #fff;
}

#tarteaucitron strong {
  font-size: 22px;
  font-weight: 500;
}

#tarteaucitron ul {
  padding: 0;
}

#tarteaucitron .tarteaucitronH1, #tarteaucitron .tarteaucitronH2, #tarteaucitron .tarteaucitronH3, #tarteaucitron .tarteaucitronH4, #tarteaucitron .tarteaucitronH5, #tarteaucitron .tarteaucitronH6 {
  display: block;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/***
 * Root div added just before </body>
 */
#tarteaucitronRoot {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

#tarteaucitronRoot * {
  box-sizing: initial;
  color: #333;
  font-family: sans-serif !important;
  font-size: 14px;
  line-height: normal;
  vertical-align: initial;
}

#tarteaucitronRoot .tarteaucitronH1 {
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  margin: 15px 0 28px;
}

#tarteaucitronRoot .tarteaucitronH2 {
  display: inline-block;
  margin: 12px 0 0 10px;
  color: #fff;
}

#tarteaucitronCookiesNumberBis.tarteaucitronH2 {
  margin-left: 0;
}

/***
 * Control panel
 */
#tarteaucitronBack {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2147483646;
}

#tarteaucitron {
  display: none;
  max-height: 80%;
  left: 50%;
  margin: 0 auto 0 -430px;
  padding: 0;
  position: fixed;
  top: 6%;
  width: 860px;
  z-index: 2147483647;
}

#tarteaucitron .tarteaucitronBorder {
  background: #fff;
  border: 2px solid #333;
  border-top: 0;
  height: auto;
  overflow: auto;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronClosePanelCookie,
#tarteaucitron #tarteaucitronClosePanel {
  background: #333333;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 70px;
}

#tarteaucitron #tarteaucitronDisclaimer {
  color: #555;
  font-size: 12px;
  margin: 15px auto 0;
  width: 80%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden,
#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  background: rgba(51, 51, 51, 0.07);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronHidden {
  display: none;
  position: relative;
}

#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
  width: 100%;
  box-sizing: border-box;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle button,
#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0px 0px;
  padding: 5px 20px;
  text-align: left;
  width: auto;
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  color: #fff;
  font-weight: 500;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a:hover,
#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a:hover {
  text-decoration: none !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName a {
  font-size: 22px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle a {
  font-size: 14px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronTitle {
  padding: 5px 10px;
  margin: 0;
}

#tarteaucitron #tarteaucitronInfo,
#tarteaucitron #tarteaucitronServices .tarteaucitronDetails {
  color: #fff;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
}

#tarteaucitron #tarteaucitronInfo a {
  color: #fff;
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid transparent;
  margin: 0;
  overflow: hidden;
  padding: 15px 5px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed {
  border-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied {
  border-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  background: #333;
  border: 3px solid #333;
  border-left: 9px solid #333;
  border-top: 5px solid #333;
  margin-bottom: 0;
  margin-top: 21px;
  position: relative;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine:hover {
  background: #333;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName {
  margin-left: 15px;
  margin-top: 2px;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronName button {
  color: #fff;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronMainLine .tarteaucitronAsk {
  margin-top: 0px !important;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName {
  display: inline-block;
  float: left;
  margin-left: 10px;
  text-align: left;
  width: 50%;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName a:hover {
  text-decoration: underline;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk {
  display: inline-block;
  float: right;
  margin: 7px 15px 0;
  text-align: right;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronAllow,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronAsk .tarteaucitronDeny,
.tac_activate .tarteaucitronAllow {
  background: gray;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  text-align: center;
  text-decoration: none;
  width: auto;
  border: 0;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected {
  background-color: #1B870B;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied2.tarteaucitronIsSelected {
  background-color: #9C1A1A;
  opacity: 1;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
  background-color: #1B870B;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: #9C1A1A;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronLine .tarteaucitronName .tarteaucitronListCookies {
  color: #333;
  font-size: 12px;
}

#tarteaucitron .tarteaucitronH3 {
  font-size: 18px;
}

#tarteaucitron #tarteaucitronMainLineOffset .tarteaucitronName {
  width: auto !important;
  margin-left: 0 !important;
  font-size: 14px;
}

span#tarteaucitronDisclaimerAlert {
  padding: 0 10px;
  display: inline-block;
}

#tarteaucitron .tarteaucitronBorder, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  border-color: #333 !important;
}

/***
 * Big alert
 */
.tarteaucitronAlertBigTop {
  top: 0;
}

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #fff;
  color: #fff;
  display: none;
  font-size: 15px !important;
  left: 0;
  position: fixed;
  box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  padding: 10px 0 10px 0;
  margin: auto;
  width: 100%;
  max-height: 80%;
  overflow: auto;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 15px verdana;
  color: #000;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-weight: 700;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog {
  cursor: pointer;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronAllow {
  background: #b0c802;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px !important;
  line-height: 1.2;
  padding: 5px 10px;
  text-decoration: none;
  margin-left: 7px;
}

#tarteaucitronRoot .tarteaucitronDeny {
  background: #e5251d;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog {
  background: #838383;
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
  margin-left: 7px;
  padding: 5px 10px;
}

#tarteaucitronPercentage {
  background: #0A0 !important;
  box-shadow: 0 0 2px #fff, 0 1px 2px #555;
  height: 5px;
  left: 0;
  position: fixed;
  width: 0;
  z-index: 2147483644;
}

/***
 * Icon
 */
.tarteaucitronIconBottomRight {
  bottom: 0;
  right: 0;
}

.tarteaucitronIconBottomLeft {
  bottom: 0;
  left: 0;
}

.tarteaucitronIconTopRight {
  top: 0;
  right: 0;
}

.tarteaucitronIconTopLeft {
  top: 0;
  left: 0;
}

.tarteaucitronIconTopLeft #tarteaucitronManager {
  border-radius: 2px 7px 7px 2px;
}

.tarteaucitronIconTopRight #tarteaucitronManager {
  border-radius: 7px 2px 2px 7px;
}

.tarteaucitronIconBottomLeft #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

.tarteaucitronIconBottomRight #tarteaucitronManager {
  border-radius: 7px 7px 2px 2px;
}

#tarteaucitronIcon {
  background: transparent;
  position: fixed;
  display: none;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronIcon #tarteaucitronManager {
  color: transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
  border: none;
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 50px;
  height: 50px;
}

#tarteaucitronRoot .tarteaucitronCross::before {
  content: "✗";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronCheck::before {
  content: "✓";
  display: inline-block;
  color: white;
}

#tarteaucitronRoot .tarteaucitronPlus::before {
  content: "✛";
  display: inline-block;
  color: white;
}

/***
 * Small alert
 */
.tarteaucitronAlertSmallTop, .tarteaucitronAlertSmallBottom {
  bottom: 0;
}

#tarteaucitronAlertSmall {
  background: #333;
  display: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  width: auto;
  z-index: 2147483646;
}

#tarteaucitronAlertSmall #tarteaucitronManager {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 11px !important;
  padding: 8px 10px 8px;
}

#tarteaucitronAlertSmall #tarteaucitronManager:hover {
  background: rgba(255, 255, 255, 0.05);
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot {
  background-color: gray;
  border-radius: 5px;
  display: block;
  height: 8px;
  margin-bottom: 1px;
  margin-top: 5px;
  overflow: hidden;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow,
#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  display: block;
  float: left;
  height: 100%;
  width: 0%;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotGreen {
  background-color: #b0c802;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotYellow {
  background-color: #FBDA26;
}

#tarteaucitronAlertSmall #tarteaucitronManager #tarteaucitronDot #tarteaucitronDotRed {
  background-color: #9C1A1A;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 30px;
  padding: 0px 10px;
  vertical-align: top;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesNumber:hover {
  background: rgba(255, 255, 255, 0.3);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  display: none;
  max-height: 70%;
  max-width: 500px;
  position: fixed;
  right: 0;
  width: 100%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
  background: #fff;
  border: 2px solid #333;
  color: #333;
  font-size: 11px;
  height: auto;
  overflow: auto;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList strong {
  color: #333;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle {
  background: #333;
  margin-top: 21px;
  padding: 13px 0 9px 13px;
  text-align: left;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesTitle strong {
  color: #fff;
  font-size: 16px;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain {
  background: rgba(51, 51, 51, 0.1);
  padding: 7px 5px 10px;
  word-wrap: break-word;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain:hover {
  background: rgba(51, 51, 51, 0.2);
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain a {
  color: #333;
  text-decoration: none;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft {
  display: inline-block;
  width: 50%;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListLeft a strong {
  color: darkred;
}

#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain .tarteaucitronCookiesListRight {
  color: #333;
  display: inline-block;
  font-size: 11px;
  margin-left: 10%;
  vertical-align: top;
  width: 30%;
}

/***
 * Fallback activate link
 */
.tac_activate {
  background: #333;
  color: #fff;
  display: table;
  font-size: 12px;
  height: 100%;
  line-height: initial;
  margin: auto;
  text-align: center;
  width: 100%;
}

.tac_float {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}

.tac_activate .tac_float strong {
  color: #fff;
}

.tac_activate .tac_float .tarteaucitronAllow {
  background-color: #1B870B;
  display: inline-block;
}

/***
 * CSS for services
 */
ins.ferank-publicite, ins.adsbygoogle {
  text-decoration: none;
}

div.amazon_product {
  height: 240px;
  width: 120px;
}

.tarteaucitronIsAllowed .tarteaucitronDeny {
  opacity: 0.4 !important;
}

.tarteaucitronIsDenied .tarteaucitronAllow {
  opacity: 0.4 !important;
}

.tarteaucitronIsAllowed .tarteaucitronAllow {
  opacity: 1 !important;
}

.tarteaucitronIsDenied .tarteaucitronDeny {
  opacity: 1 !important;
}

.tarteaucitronLine .tarteaucitronAllow, .tarteaucitronLine .tarteaucitronDeny {
  opacity: 0.4;
}

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

div#tarteaucitronInfo {
  display: block !important;
  position: relative !important;
  text-align: center !important;
  max-width: 80% !important;
  padding: 15px 0 !important;
  margin: -10px auto 40px !important;
  font-size: 1em !important;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: #555;
}

a.tarteaucitronSelfLink {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  text-align: center !important;
  display: block;
  height: 30px;
}

.tarteaucitronMainLine .tarteaucitronH2 {
  font-size: 1.2em !important;
  margin-top: 4px !important;
}

span.tarteaucitronTitle.tarteaucitronH3 {
  margin-top: 12px !important;
}

.spacer-20 {
  height: 20px;
  display: block;
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
  display: block;
  text-align: center;
  margin: 22px auto 0;
  text-decoration: underline;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
  max-width: 675px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 20px !important;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert, #tarteaucitronRoot span#tarteaucitronDisclaimerAlert ul, #tarteaucitronRoot span#tarteaucitronDisclaimerAlert ul li, #tarteaucitronRoot span#tarteaucitronDisclaimerAlert p {
  color: #000;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert p {
  margin-bottom: 15px;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert ul {
  padding-left: 15px;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert ul li {
  margin: 15px 0;
  list-style: circle;
  font-size: 12px;
  font-weight: 400;
  padding-left: 5px;
  line-height: 1.2;
}

div#tarteaucitronAlertBig::before {
  content: "" !important;
  width: 275px;
  display: block;
  background: url(/images/logo/logo-maison-beaussier-1.svg) no-repeat center;
  background-size: contain;
  height: 80px;
  margin: 0 auto 30px;
}

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

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Layout du contenu des pages

*/
.entry-header {
  padding: 50px 5.335%;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .entry-header {
    padding-bottom: 80px;
  }
}
.entry-header-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.entry-header-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.entry-header-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(39, 39, 39, 0.8);
}

.entry-content {
  padding: 0 5.335%;
}
.entry-content-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.entry-content-inner article {
  margin: 50px 0 80px;
}
@media only screen and (min-width: 78em) {
  .entry-content-inner article {
    margin: 100px 0 120px;
  }
}

.box-avis {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border: solid 1px #bdbdbd;
  background-color: #272727;
  text-align: center;
  color: #fff;
  width: 75px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1.1;
  padding-bottom: 4px;
  z-index: 11;
}
@media only screen and (min-width: 78em) {
  .box-avis {
    width: 100px;
    height: 100px;
    bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .box-avis {
    right: 80px;
  }
}
.box-avis img {
  max-width: 26px;
}
@media only screen and (min-width: 78em) {
  .box-avis img {
    max-width: 100%;
  }
}
.box-avis > span {
  display: block;
}
.box-avis .note {
  font-size: 12px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .box-avis .note {
    font-size: 16px;
  }
}
.box-avis .note span {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .box-avis .note span {
    font-size: 25px;
  }
}
.box-avis .nbAvis {
  font-size: 10px;
}
@media only screen and (min-width: 78em) {
  .box-avis .nbAvis {
    font-size: 12px;
  }
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

.description-style {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #bdbdbd;
  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;
  }
}

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

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #e5251d;
  font-weight: 600;
  background: silver;
  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;
  }
}

body.contact .tac_iframe {
  max-width: 100% !important;
}
body.contact .tac_iframe iframe {
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 48em) {
  body.contact .deux_colonnes {
    align-items: center;
  }
  body.contact .deux_colonnes p:empty {
    display: none;
  }
}

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

	Footer

*/
.footer-top {
  padding: 80px 5.335%;
  background: #373737;
}
@media only screen and (min-width: 78em) {
  .footer-top {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.footer-top-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.footer-top-inner .widgetLastElements > .h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  .footer-top-inner .widgetLastElements > .h2 {
    margin-bottom: 80px;
  }
}
.footer-top-inner .widgetLastElements > .h2 span {
  display: block;
  font-family: "Splash", Arial, sans-serif;
  color: #c1934e;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .footer-top-inner .widgetLastElements > .h2 span {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 48em) {
  .footer-top-inner .news-list {
    justify-content: center;
  }
}
@media only screen and (min-width: 48em) {
  .footer-top-inner .news-list-item:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .footer-top-inner .news-list-item:nth-child(3) {
    display: block;
  }
}
.footer-top-inner .btn-more {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .footer-top-inner .btn-more {
    margin-top: 30px;
  }
}
.footer-top-inner .btn-more a {
  margin: 0;
}

.footer-middle {
  padding: 50px 5.335%;
}
@media only screen and (min-width: 64em) {
  .footer-middle {
    padding: 30px 5.335%;
  }
}
.footer-middle-inner {
  max-width: 220px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .footer-middle-inner {
    max-width: 1150px;
    display: flex;
    justify-content: space-between;
  }
}
.footer-middle-item, .leftbar-reassu-item {
  margin-bottom: 10px;
}
@media only screen and (min-width: 64em) {
  .footer-middle-item, .leftbar-reassu-item {
    margin: 0;
  }
}
.footer-middle-item a, .leftbar-reassu-item a {
  font-size: 14px;
  line-height: 1.43;
  text-align: left;
  color: #272727;
  font-weight: 400;
  padding-left: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 64em) {
  .footer-middle-item a, .leftbar-reassu-item a {
    height: 90px !important;
    background-size: 90px !important;
  }
}
.footer-middle-item a strong, .leftbar-reassu-item a strong {
  display: block;
}
.footer-middle-item.conseil a, .conseil.leftbar-reassu-item a {
  height: 70.6px;
  background: url("/images/icon/picto-conseils.svg") no-repeat left center;
  background-size: auto 70.6px;
}
.footer-middle-item.paiement a, .paiement.leftbar-reassu-item a {
  height: 70.6px;
  background: url("/images/icon/picto-paiement.svg") no-repeat left center;
  background-size: auto 70.6px;
}
.footer-middle-item.livraison a, .livraison.leftbar-reassu-item a {
  height: 80.9px;
  background: url("/images/icon/picto-livraison.svg") no-repeat left center;
  background-size: auto 80.9px;
}
.footer-middle-item.certif a, .certif.leftbar-reassu-item a {
  height: 67.3px;
  background: url("/images/icon/picto-qualit.svg") no-repeat left center;
  background-size: auto 67.3px;
}
.footer-middle-item.click a, .click.leftbar-reassu-item a {
  height: 80px;
  background: url("/images/icon/picto-delai.svg") no-repeat left center;
  background-size: auto 80px;
}

.footer-bottom {
  background-color: #272727;
  padding: 80px 5.335%;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 64em) {
  .footer-bottom {
    text-align: left;
  }
}
.footer-bottom-inner {
  max-width: 1150px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .footer-bottom-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
}
.footer-bottom .title-footer {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.footer-bottom-item:not(:last-child) {
  margin-bottom: 50px;
}
.footer-bottom-item.contact {
  margin-bottom: 80px;
}
@media only screen and (min-width: 64em) {
  .footer-bottom-item.contact {
    margin-bottom: 0;
  }
}
.footer-bottom-item.contact > img:first-child {
  max-width: 120px;
}
.footer-bottom-item.contact .tel-footer {
  margin-top: 30px;
}
.footer-bottom-item.contact .tel-footer a {
  font-size: 18px;
  line-height: 1.44;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .footer-bottom-item.contact .tel-footer a {
    pointer-events: none;
  }
}
.footer-bottom-item.contact .tel-footer a::before {
  content: url("/images/icon/icon-phone.svg");
  margin-right: 15px;
  position: relative;
  top: 5px;
}
.footer-bottom-item.contact .adresse-footer {
  font-size: 14px;
  line-height: 1.43;
  color: #fff;
}
.footer-bottom-item.contact ul {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}
@media only screen and (min-width: 64em) {
  .footer-bottom-item.contact ul {
    justify-content: flex-start;
  }
}
.footer-bottom-item.contact ul li:not(:last-child) {
  margin-right: 20px;
}
.footer-bottom-item.contact ul li a {
  width: 20px;
  height: 20px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: none;
  text-indent: -9999px;
}
.footer-bottom-item.contact ul li a.fb {
  background-image: url(/images/icon/icon-facebook.svg);
}
.footer-bottom-item.contact ul li a.insta {
  background-image: url(/images/icon/icon-instagram.svg);
}
.footer-bottom-item.contact ul li a.pin {
  background-image: url(/images/icon/icon-pinterest.svg);
}
.footer-bottom-item.contact p:last-child {
  margin: 0;
}
.footer-bottom-item.contact p:last-child a {
  margin: 0;
}
.footer-bottom-item.horaires {
  font-size: 14px;
  line-height: 1.57;
}
.footer-bottom-item.horaires p:not(.title-footer) {
  margin: 10px 0;
}
.footer-bottom-item.links ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-bottom-item.links ul li a {
  font-size: 14px;
  line-height: 1.57;
  color: #fff;
  font-weight: 400;
}
@media only screen and (min-width: 64em) {
  .footer-bottom-item.links:last-child {
    position: absolute;
    left: 200px;
    bottom: 0;
  }
  .footer-bottom-item.links:last-child ul {
    display: flex;
  }
  .footer-bottom-item.links:last-child ul li {
    margin: 0;
  }
  .footer-bottom-item.links:last-child ul li:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-bottom-item.links:last-child {
    left: 250px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-bottom-item.links:last-child {
    left: 260px;
  }
}
.footer-bottom-item.newsletter {
  max-width: 297px;
  margin: 0 auto 50px;
}
@media only screen and (min-width: 64em) {
  .footer-bottom-item.newsletter {
    margin: 0;
  }
}
.footer-bottom-item.newsletter p:not(.title-footer) {
  font-size: 14px;
  line-height: 1.43;
  color: #fff;
}
.footer-bottom-item.newsletter #formulairenewsletters {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail {
  margin: 0;
  padding: 9px 10px 9px 42px;
  font-size: 12px;
  line-height: 1.67;
  border-radius: 3px;
  max-width: 245px;
  background-image: url("/images/icon/icons-icon-newsletter.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail.placeholder {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #bdbdbd;
  letter-spacing: 0;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail:-moz-placeholder {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #bdbdbd;
  letter-spacing: 0;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail::-moz-placeholder {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #bdbdbd;
  letter-spacing: 0;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail:-ms-input-placeholder {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #bdbdbd;
  letter-spacing: 0;
}
.footer-bottom-item.newsletter #formulairenewsletters #NewsLettersSubscribeMail::-webkit-input-placeholder {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #bdbdbd;
  letter-spacing: 0;
}
.footer-bottom-item.newsletter #formulairenewsletters input[type=submit] {
  border-radius: 3px;
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 0 0 10px;
}

.footer-signature {
  padding: 30px 5.335%;
  font-size: 14px;
  line-height: 1.43;
  text-align: left;
  color: #272727;
  text-align: center;
}
.footer-signature-inner {
  max-width: 1150px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .footer-signature-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-signature p {
  margin: 0 0 30px;
}
@media only screen and (min-width: 64em) {
  .footer-signature p {
    margin: 0;
  }
}
.footer-signature a {
  color: #272727;
}

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

	Header

*/
header {
  position: relative;
  z-index: 999999;
  background: #272727;
}

.header-top-inner, .header-bottom-inner {
  max-width: 1760px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 78em) {
  .header-top {
    padding: 40px 20px;
  }
  .header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 90em) {
  .header-top {
    padding: 47px 30px;
  }
}
.header-top-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 5.335% 12px;
}
@media only screen and (min-width: 78em) {
  .header-top-left {
    padding: 0;
    justify-content: flex-start;
  }
}
.header-top-left ul {
  display: flex;
}
.header-top-left ul li:not(:last-child) {
  margin-right: 20px;
}
.header-top-left ul li a {
  width: 20px;
  height: 20px;
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: none;
  text-indent: -9999px;
}
.header-top-left ul li a.fb {
  background-image: url(/images/icon/icon-facebook.svg);
}
.header-top-left ul li a.insta {
  background-image: url(/images/icon/icon-instagram.svg);
}
.header-top-left ul li a.pin {
  background-image: url(/images/icon/icon-pinterest.svg);
}
.header-top-left p.tel-header {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .header-top-left p.tel-header {
    margin-left: 50px;
  }
}
.header-top-left p.tel-header a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.57;
  color: #fff;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .header-top-left p.tel-header a {
    font-size: 18px;
    line-height: 1.44;
    pointer-events: none;
  }
}
.header-top-left p.tel-header a::before {
  content: url(/images/icon/icon-phone.svg);
  margin-right: 10px;
  height: 22px;
}
@media only screen and (min-width: 78em) {
  .header-top-left p.tel-header a::before {
    margin-right: 15px;
  }
}
.header-top-right {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-top-right {
    display: block;
  }
}
.header-top-right ul {
  display: flex;
  justify-content: flex-end;
}
.header-top-right ul li:not(:last-child) {
  margin-right: 30px;
}
.header-top-right ul li a {
  font-size: 14px;
  line-height: 1.57;
  color: #bdbdbd;
  font-weight: 400;
}
.header-top-right ul li.active a {
  color: #e5251d;
}

@media only screen and (min-width: 78em) {
  .header-bottom {
    border-top: solid 2px rgba(255, 255, 255, 0.1);
    border-bottom: solid 2px rgba(255, 255, 255, 0.1);
  }
}
@media only screen and (min-width: 90em) {
  .header-bottom {
    padding: 0 4%;
  }
}
.header-bottom-widgets {
  border-bottom: solid 2px rgba(255, 255, 255, 0.1);
  display: flex;
}
@media only screen and (min-width: 78em) {
  .header-bottom-widgets {
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 70px;
  }
  .header-bottom-widgets.open {
    z-index: 2;
  }
  .header-bottom-widgets.open .catalog_search_form input[type=text].wordsbox {
    opacity: 1;
    width: calc(100% - 100px);
  }
  .header-bottom-widgets.open .catalog_search_form .close-search {
    opacity: 1;
  }
}
.header-bottom-widgets .catalog_search_form {
  width: calc(100% - 160px);
  position: relative;
}
@media only screen and (min-width: 78em) {
  .header-bottom-widgets .catalog_search_form {
    display: flex;
  }
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.57;
  color: #fff;
  padding: 23px 15px 23px 50px;
  background: #272727;
  margin: 0;
  border: none;
}
@media only screen and (min-width: 78em) {
  .header-bottom-widgets .catalog_search_form input[type=text].wordsbox {
    order: 2;
    width: calc(100% - 100px);
    width: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox.placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}
.header-bottom-widgets .catalog_search_form input[type=text].wordsbox::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
}
.header-bottom-widgets .catalog_search_form input[type=submit] {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 100%;
  background: url(/images/icon/icon-search.svg) no-repeat center;
  text-indent: -99999px;
}
@media only screen and (min-width: 78em) {
  .header-bottom-widgets .catalog_search_form input[type=submit] {
    order: 1;
    text-indent: 0;
    width: 100px;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-top: 32px;
    background-position: center 15px;
    border-left: solid 2px rgba(255, 255, 255, 0.1);
    border-right: solid 2px rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }
}
.header-bottom-widgets .catalog_search_form .close-search {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-bottom-widgets .catalog_search_form .close-search {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    color: #fff;
    width: 20px;
    height: 20px;
    padding: 0;
    background: url("/images/icon/icon-close-white.svg") no-repeat center;
    text-indent: -9999px;
    background-size: 15px;
    cursor: pointer;
  }
}
.header-bottom-widgets .widget-login, .header-bottom-widgets .widget-cart {
  width: 80px;
}
.header-bottom-widgets .widget-login a, .header-bottom-widgets .widget-cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header-bottom-widgets .widget-login {
  border-left: solid 2px rgba(255, 255, 255, 0.1);
}
.header-bottom-widgets .widget-login a {
  color: #fff;
}
.header-bottom-widgets .widget-login a::before {
  content: url(/images/icon/icon-account.svg);
  position: relative;
  top: 3px;
}
.header-bottom-widgets .widget-cart {
  background: #fff;
}
.header-bottom-widgets .widget-cart a {
  color: #272727;
  position: relative;
}
.header-bottom-widgets .widget-cart a::before {
  content: url(/images/icon/icon-cart.svg);
  position: relative;
  top: 3px;
}
.header-bottom-widgets .widget-cart a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 9px;
  right: 21px;
  width: 15px;
  height: 15px;
  background-color: #c1934e;
  font-size: 8px;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
}

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

	Sidebar

*/
.leftbar-reassu {
  display: none;
}
@media only screen and (min-width: 78em) {
  .leftbar-reassu {
    display: block;
    padding: 50px 60px;
  }
}
/*--------------------------------

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

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

	Page Mon compte

*/
.accountActions ul {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.accountActions ul li {
  margin: 10px;
  width: 100%;
  position: relative;
  background: #fff;
  display: block;
  position: relative;
  border: 2px solid #f1f1f1;
  text-align: center;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 48em) {
  .accountActions ul li {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 64em) {
  .accountActions ul li {
    width: calc(33.333% - 20px);
    padding: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .accountActions ul li {
    width: calc(25% - 20px);
  }
}
.accountActions ul li:hover {
  background: #f1f1f1;
  border-color: #272727;
}
.accountActions ul li.logout {
  border-color: #e5251d;
}
.accountActions ul li.logout h2 {
  color: #e5251d;
}
.accountActions ul li.logout svg {
  fill: #e5251d;
}
.accountActions ul li h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  margin: 7px 0 0;
}
@media only screen and (min-width: 78em) {
  .accountActions ul li h2 {
    margin-top: 10px;
  }
}

#accountActionsUnsubscribe {
  margin-top: 50px;
}
#accountActionsUnsubscribe a {
  color: #272727;
  text-decoration: underline;
}
@media only screen and (min-width: 78em) {
  #accountActionsUnsubscribe {
    margin-top: 80px;
  }
}

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

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

	Création/Modification d'un compte utilisateur

*/
.account-subscription form,
.accountModify form {
  overflow: hidden;
}
.account-subscription form fieldset,
.accountModify form fieldset {
  border: none;
  padding: 0;
}
.account-subscription form fieldset#profileDetail legend,
.accountModify form fieldset#profileDetail legend {
  display: none;
}
.account-subscription form fieldset#profileDetail > div.newsletter,
.accountModify form fieldset#profileDetail > div.newsletter {
  display: flex;
  border-radius: 6px;
  border: 1px solid #f1f1f1;
  border-color: #272727;
}
@media only screen and (min-width: 64em) {
  .account-subscription form fieldset#profileDetail > div.newsletter,
  .accountModify form fieldset#profileDetail > div.newsletter {
    width: 92%;
  }
}
.account-subscription form fieldset#profileDetail > div.newsletter .form_label,
.accountModify form fieldset#profileDetail > div.newsletter .form_label {
  order: 2;
  width: 100%;
}
.account-subscription form fieldset#profileDetail > div.newsletter .form_label label,
.accountModify form fieldset#profileDetail > div.newsletter .form_label label {
  display: block;
  padding: 20px;
  padding-left: 0;
}
.account-subscription form fieldset#profileDetail > div.newsletter .form_field,
.accountModify form fieldset#profileDetail > div.newsletter .form_field {
  padding: 20px;
  padding-right: 5px;
  padding-bottom: 10px;
}
.account-subscription form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div .form_field::before {
  position: absolute;
  margin: 25px 15px;
}

@media only screen and (min-width: 48em) {
  .account-subscription-email + .formulaire fieldset,
  .account-new-password fieldset,
  .accountNewsletter fieldset {
    float: left;
    width: 375px !important;
  }
}
@media only screen and (min-width: 48em) {
  .account-subscription-email + .formulaire input[type=submit],
  .account-new-password input[type=submit],
  .accountNewsletter input[type=submit] {
    display: inline-block;
    margin-left: 60px;
  }
}

.accountModify .formulaire {
  margin-bottom: 0;
}
.accountModify .formulaire p.valid {
  display: none;
}
.accountModify p:empty {
  display: none;
}

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

	Icônes formulaire création de compte

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

	Gestion des adresses

*/
.listAdress {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  justify-content: center;
}
.listAdress .address {
  margin: 10px;
  width: 100%;
  max-width: 285px;
}
.listAdress .address .modify {
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #272727;
  border-radius: 3px;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #272727;
}
.listAdress .address .modify:hover {
  text-decoration: none;
  background: #f1f1f1;
}

.account-adress-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px -10px -10px;
}
.account-adress-btn a {
  margin: 10px;
}

#accountAddress label {
  display: block;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 10px;
}
#accountAddress label.error {
  color: #e5251d;
}
#accountAddress label .obligatory {
  color: #e5251d;
}

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

	Changer le mot de passe

*/
@media only screen and (min-width: 35em) {
  .accountChangePassword .formulaire {
    margin: 30px auto 0;
  }
}
.accountChangePassword .formulaire p.valid {
  display: none;
}
.accountChangePassword p:empty {
  display: none;
}

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

	Inscription à la newsletter

*/
.accountNewsletter legend {
  display: none;
}

@media only screen and (min-width: 48em) {
  .cartEntete {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .cartEntete > div {
    margin: 0;
  }
  .cartEntete > div h5 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #272727;
  }
  .cartEntete > div .address + .address {
    margin-top: 20px;
  }
}
.cartEntete .droite {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .cartEntete .droite {
    margin: 0;
  }
}

#cart_detail h2 {
  font-size: 25px;
  margin: 0;
}
#cart_detail .cartTable {
  width: 100%;
}
#cart_detail .paiement h3 {
  font-size: 20px;
  text-align: center;
}

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

	Etapes du Panier

*/
.cart-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.cart-steps div {
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  position: relative;
  color: #24b35d;
  font-weight: bold;
  width: 50px;
  padding-bottom: 25px;
}
.cart-steps div::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: transparent;
  background: #24b35d;
  border-radius: 100px;
  border: 2px solid #24b35d;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  background-image: url("/images/commun/icon-checked-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px;
}
.cart-steps div:nth-child(1)::before {
  content: "1";
}
.cart-steps div:nth-child(2)::before {
  content: "2";
}
.cart-steps div:nth-child(3)::before {
  content: "3";
}
.cart-steps div:nth-child(4)::before {
  content: "4";
}
.cart-steps div:nth-child(5)::before {
  content: "5";
}
.cart-steps div:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div:not(:last-child) {
    margin-right: 80px;
  }
}
.cart-steps div:not(:last-child)::after {
  content: "";
  height: 2px;
  width: 20px;
  display: inline-block;
  background: #24b35d;
  position: absolute;
  right: -30px;
  top: 24px;
  border-radius: 6px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div:not(:last-child)::after {
    width: 60px;
    right: -70px;
  }
}
.cart-steps div span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
body:not(.finish) .cart-steps div.active {
  color: #272727;
  font-weight: bold;
}
body:not(.finish) .cart-steps div.active::before {
  background: #272727;
  color: #fff;
  border-color: #272727;
}
body:not(.finish) .cart-steps div.active::after {
  background: #bdbdbd;
}
body:not(.finish) .cart-steps div.active + div,
body:not(.finish) .cart-steps div.active + div + div,
body:not(.finish) .cart-steps div.active + div + div + div {
  color: #272727;
  font-weight: 400;
}
body:not(.finish) .cart-steps div.active + div::before,
body:not(.finish) .cart-steps div.active + div + div::before,
body:not(.finish) .cart-steps div.active + div + div + div::before {
  background: #fff;
  color: #272727;
  border-color: #272727;
}
body:not(.finish) .cart-steps div.active + div::after,
body:not(.finish) .cart-steps div.active + div + div::after,
body:not(.finish) .cart-steps div.active + div + div + div::after {
  background: #bdbdbd;
}
.cart-empty + .cart-steps {
  display: none !important;
}

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

	Page Panier

*/
.cart-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.cart-empty .icon-cart {
  float: left;
  margin-right: 30px;
}
.cart-empty .icon-cart::before {
  font-size: 16px;
}
@media only screen and (min-width: 48em) {
  .cart-form-inner {
    display: flex;
  }
}
@media only screen and (min-width: 48em) {
  .cart-content {
    width: 60%;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 64em) {
  .cart-content {
    width: calc(100% - 370px);
  }
}
.cart-product {
  border: solid 2px #f1f1f1;
  margin-bottom: 20px;
}
.cart-product-info {
  padding: 10px 20px 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .cart-product-info {
    padding-right: 30px;
  }
}
.cart-product-description {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-product-img {
  width: 75px;
  height: 60px;
  min-width: 75px;
  margin-right: 15px;
  background: #f1f1f1;
}
@media only screen and (min-width: 78em) {
  .cart-product-img {
    width: 145px;
    height: 120px;
    margin-right: 30px;
  }
}
.cart-product-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cart-product-name a {
  font-size: 18px;
  font-weight: bold;
  color: #272727;
  display: block;
  line-height: 1.2;
}
@media only screen and (min-width: 78em) {
  .cart-product-name a {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.cart-product-name p {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #272727;
}
@media only screen and (min-width: 78em) {
  .cart-product-name p {
    font-size: 16px;
    line-height: 1.38;
  }
}
.cart-product-name p.nolivraison {
  margin: 5px 0 0;
}
.cart-product-name p.nolivraison:empty {
  display: none;
}
.cart-product-variant {
  padding: 10px;
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant {
    padding: 20px;
    font-size: 16px;
  }
}
.cart-product-variant-item {
  display: inline-block;
  align-items: center;
}
.cart-product-variant-item:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item:not(:first-child) {
    margin-left: 60px;
  }
}
.cart-product-variant-item label {
  letter-spacing: 1px;
  font-size: 14px;
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item label {
    display: inline-block;
  }
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item .select-container {
    display: inline-block;
  }
  .cart-product-variant-item .select-container .icon {
    margin-top: -12px;
  }
  .cart-product-variant-item .select-container select {
    margin-top: -5px;
  }
}
.cart-product-price {
  margin-right: 0;
  text-align: right;
  font-weight: 600;
  line-height: 1.3;
}
.cart-product-price-normal {
  font-size: 12px;
  text-decoration: line-through;
  display: block;
  color: #bdbdbd;
}
@media only screen and (min-width: 78em) {
  .cart-product-price-normal {
    font-size: 14px;
  }
}
.cart-product-price-unit {
  margin-left: 10px;
  display: block;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 78em) {
  .cart-product-price-unit {
    font-size: 18px;
  }
}
.cart-product-price-kg {
  display: block;
  font-size: 12px;
  color: #bdbdbd;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .cart-product-price-kg {
    font-size: 14px;
  }
}
.cart-product-options {
  border-top: solid 2px #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 10px;
}
.cart-product-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-product-quantity input {
  margin: 0 10px 0 0 !important;
  padding: 10px !important;
  text-align: center;
  width: 90px;
}
.cart-product-quantity svg {
  margin: 0 20px 0 10px;
}
.cart-product-quantity span {
  font-size: 18px;
  font-weight: bold;
  color: #c1934e;
}
.cart-product-quantity-article {
  margin-left: 10px !important;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity-article {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}
.cart-product-delete {
  height: 44px;
  width: 40px;
  background: url("/images/icon/icon-corbeille.svg") no-repeat center;
}
@media only screen and (min-width: 78em) {
  .cart-product-delete {
    width: 60px;
  }
}
.cart-button {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media only screen and (min-width: 78em) {
  .cart-button {
    margin-top: 25px;
  }
}
.cart-button-refresh, .cart-button-trash {
  margin: 5px;
}
.cart-button-refresh input, .cart-button-trash input {
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  padding-left: 30px;
  min-height: 22px;
}
.cart-button-refresh input {
  color: #bdbdbd;
  background: url("/images/icon/icon-restart.svg") no-repeat left center;
}
.cart-button-refresh input:hover {
  background: url("/images/icon/icon-restart.svg") no-repeat left center;
  color: #bdbdbd;
}
.cart-button-trash input {
  color: #e5251d;
  background: url("/images/icon/icon-corbeille.svg") no-repeat left center;
}
.cart-button-trash input:hover {
  background: url("/images/icon/icon-corbeille.svg") no-repeat left center;
  color: #e5251d;
}
.cart-bottom {
  margin-top: 50px;
}
@media only screen and (min-width: 48em) {
  .cart-bottom {
    width: 40%;
    margin: 0;
  }
}
@media only screen and (min-width: 64em) {
  .cart-bottom {
    width: 370px;
  }
}
.cart-bottom-content {
  border: solid 2px #f1f1f1;
  padding: 30px 20px 0;
}
@media only screen and (min-width: 78em) {
  .cart-bottom-content {
    padding: 30px 30px 0;
  }
}
.cart-bottom-content > h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px !important;
}
@media only screen and (min-width: 78em) {
  .cart-bottom-content > h2 {
    font-size: 30px !important;
  }
}
.cart-bottom .flex-center {
  margin-top: 30px;
}
.cart-bottom .flex-center input[type=submit].btn-full-gold {
  margin: 0;
}
.cart-shipping {
  margin: 50px 0;
}
.cart-shipping > p {
  font-weight: bold;
  margin: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  .cart-shipping > p {
    font-size: 18px;
    margin-left: 0;
  }
}
.cart-shipping-item {
  position: relative;
  margin: 0 -20px;
  border-bottom: 2px solid #f1f1f1;
  padding: 20px 20px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .cart-shipping-item {
    padding: 20px 30px;
    margin: 0 -30px;
  }
}
.cart-shipping-item:nth-child(2) {
  border-top: 2px solid #f1f1f1;
}
.cart-shipping-item > * input[type=radio] {
  display: none;
}
.cart-shipping-item > * input[type=radio] + label {
  margin: 0;
  width: 100%;
  display: block;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
}
.cart-shipping-item > * input[type=radio] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: solid 1px #bdbdbd;
  position: absolute;
  left: 0;
  top: 7px;
}
.cart-shipping-item > * input[type=radio] + label span {
  display: block;
  font-size: 12px;
  color: #bdbdbd;
}
.cart-shipping-item > * input[type=radio]:checked + label::before {
  border-color: #c1934e;
  background: #c1934e;
}
.cart-shipping-item-amount {
  font-size: 14px;
  line-height: 1.43;
  text-align: right;
  color: #272727;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .cart-shipping-item-amount {
    font-size: 16px;
    line-height: 1.38;
  }
}
.cart-shipping-item .infoFdp {
  display: block;
  font-size: 12px;
  color: #bdbdbd;
  padding-left: 35px;
}
.cart-shipping-item .infoFdp p {
  margin: 0;
}
.cart-shipping-item.fdpRdv {
  position: relative;
  display: block;
}
.cart-shipping-item.fdpRdv .cart-shipping-item-name {
  display: flex;
  flex-direction: column;
}
.cart-shipping-item.fdpRdv .name {
  width: calc(100% - 90px);
  order: 1;
}
.cart-shipping-item.fdpRdv .infoFdp {
  order: 2;
  width: calc(100% - 90px);
}
.cart-shipping-item.fdpRdv .freeShipping {
  order: 3;
}
.cart-shipping-item.fdpRdv .blocRdv {
  order: 4;
}
.cart-shipping-item.fdpRdv .blocRdv .rdv-choose {
  color: #c1934e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
}
.cart-shipping-item.fdpRdv .blocRdv .rdv-choose a {
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background: url("/images/icon/icon-modify-gold.svg") no-repeat center;
  background-size: 100%;
  margin-left: 15px;
}
@media only screen and (min-width: 78em) {
  .cart-shipping-item.fdpRdv .blocRdv .rdv-choose a {
    width: 20px;
    height: 20px;
  }
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier {
  margin: 10px -20px -20px -30px;
  padding: 20px 0;
  display: none;
}
@media only screen and (min-width: 78em) {
  .cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier {
    margin-right: -30px;
    padding: 20px;
  }
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours {
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  margin: 0;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours .slick-track {
  display: flex;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide {
  text-align: center;
  margin: 0 5px;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul {
  margin: 0;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li {
  margin: 10px 0;
  padding: 0;
  text-align: center;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li a {
  background: rgba(36, 179, 93, 0.15);
  display: block;
  border-radius: 5px;
  padding: 10px 0;
  color: #272727;
  font-weight: 400;
  font-size: 13px;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li a:hover {
  text-decoration: none;
  background: rgba(36, 179, 93, 0.4);
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li.active a {
  background: #24b35d;
  color: #fff;
  font-weight: bold;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li:empty {
  height: 36.9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide ul li:empty::before {
  content: "";
  background-color: rgba(43, 70, 96, 0.2);
  border-radius: 1px;
  height: 2px;
  width: 12px;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide.close {
  height: auto;
}
.cart-shipping-item.fdpRdv .blocRdv .rdvCalendrier ul.rdvJours li.slick-slide.close::after {
  content: "Fermé";
  display: block;
  height: calc(100% - 55px);
  margin-top: 9px;
  width: 100%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.cart-shipping-item.fdpRdv.active .blocRdv .rdvCalendrier {
  display: block;
}
.cart-shipping-item.fdpRdv.active .blocRdv.ok .rdvCalendrier {
  display: none;
}
.cart-shipping-item.fdpRdv:not(.active) .blocRdv {
  display: none;
}
.cart-shipping-item.fdpRdv .cart-shipping-item-amount {
  position: absolute;
  right: 20px;
  top: 28px;
}
@media only screen and (min-width: 78em) {
  .cart-shipping-item.fdpRdv .cart-shipping-item-amount {
    right: 30px;
  }
}
.cart-amount > p {
  font-weight: bold;
  margin: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  .cart-amount > p {
    font-size: 18px;
    margin-left: 0;
  }
}
.cart-amount-item {
  margin: 0 -20px;
  padding: 20px 20px 20px 30px;
  border-top: 2px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
  color: #272727;
}
@media only screen and (min-width: 78em) {
  .cart-amount-item {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 1.1;
    margin: 0 -30px;
  }
}
.cart-amount-item.total {
  background-color: #272727;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .cart-amount-item.total {
    padding: 30px;
    font-size: 18px;
    line-height: 1.33;
  }
}
.cart-amount-item.total > span:last-child {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .cart-amount-item.total > span:last-child {
    font-size: 22px;
  }
}
.cart-coupon-error:not(label):not(.form_field) {
  margin: 0 0 10px auto !important;
  padding: 0 !important;
  font-weight: bold;
}
.cart-coupon-error:not(label):not(.form_field) .error {
  margin: 0 !important;
  padding: 0 !important;
  font-weight: bold;
}
.cart-coupon-inputs {
  display: flex;
}
.cart-coupon-inputs input#coupon {
  border-radius: 3px;
  background-color: #f1f1f1;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1.67;
  border: none;
  margin: 0 10px 0 0;
}
.cart-coupon-inputs input#submit_coupon {
  margin: 0;
  border-radius: 3px;
  border: solid 1px #272727;
  background-color: rgba(39, 39, 39, 0.1);
  color: #272727;
  width: 44px;
  min-width: 44px;
  height: 40px;
  padding: 0;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 1px;
}
.cart .cart-coupon-current,
.cart .order-action-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(36, 179, 93, 0.15);
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
}
.cart .cart-coupon-current p,
.cart .order-action-item p {
  margin: 0;
}
.cart .cart-coupon-current .value,
.cart .order-action-item .value {
  font-weight: bold;
  font-size: 16px;
  padding-left: 15px;
}
.cart .cart-coupon-current {
  border: 1px dashed #bdbdbd;
  background: #fff;
}
.cart .cart-coupon + .order-action-item {
  margin-top: 10px;
}
.cart-payment label {
  padding-top: 100px;
}
.cart-payment label::before {
  content: "";
}
.cart-payment label[for=modscheques] {
  background: url(/images/commun/payment/icone-paiement-cheques.png) no-repeat top;
}
.cart-payment label[for=modstelephone] {
  background: url(/images/commun/payment/icone-paiement-telephone.png) no-repeat top;
}
.cart-payment label[for=modspaypal] {
  background: url(/images/commun/payment/icone-paiement-paypal.png) no-repeat top;
}
.cart-payment label[for=modsnopayment] {
  background: url("/images/commun/payment/icone-paiement-nopayment.png") no-repeat top;
}
.cart-payment label[for=modssystempay2] {
  background: url("/images/commun/payment/icone-paiement-banque.png") no-repeat top;
}
.cart-payment input[type=radio] {
  float: none;
}

@media only screen and (min-width: 48em) {
  #cartAuthentification .cartAuthentificationInner {
    display: flex;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 48em) {
  #cartAuthentification .bloc {
    width: calc(50% - 15px);
    margin: 0 15px;
  }
}
#cartAuthentification .bloc > h2 {
  font-size: 22px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  #cartAuthentification .bloc > h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 48em) {
  #cartAuthentification .bloc #loginform {
    max-width: 300px;
    margin: 0 auto;
  }
}
#cartAuthentification .bloc .connect {
  position: relative;
}
#cartAuthentification .bloc .connect input {
  padding-left: 50px !important;
}
#cartAuthentification .bloc .connect input#password {
  margin-bottom: 0 !important;
}
#cartAuthentification .bloc .connect svg {
  position: absolute;
  left: 15px;
  top: 17px;
}
#cartAuthentification .bloc p {
  font-size: 14px;
  color: #bdbdbd;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#cartAuthentification .bloc .submit {
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#cartAuthentification .bloc .submit input,
#cartAuthentification .bloc .submit a.btn-full-red,
#cartAuthentification .bloc .submit a.btn-full-primary {
  margin: 0;
}
#cartAuthentification .bloc .submit .lostPassword {
  color: #bdbdbd;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 15px;
}
#cartAuthentification #creaCompte {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  #cartAuthentification #creaCompte {
    margin-bottom: 50px;
  }
}

#accountNewPassword {
  text-align: center;
}
#accountNewPassword #contentNewPasswordForm {
  display: flex;
  max-width: 550px;
  margin: 30px auto 0;
}
#accountNewPassword #contentNewPasswordForm input {
  margin: 0 !important;
}
#accountNewPassword #contentNewPasswordForm input#email {
  margin-right: 10px !important;
  border-radius: 3px;
}

@media only screen and (min-width: 78em) {
  .cart_order_confirmation h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 48em) {
  .adresses {
    display: flex;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 48em) {
  .adresses .address {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
.adresses .address h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.adresses .address .rdv {
  display: block;
  color: #c1934e;
  font-weight: bold;
  margin-top: 10px;
}
.adresses .address .modifyAdressBtn {
  display: flex;
  flex-wrap: wrap;
  margin: 15px -5px 0;
}
.adresses .address .modifyAdressBtn > span {
  margin: 5px;
}
.adresses .address .modifyAdress {
  display: block;
  margin-top: 20px;
}
.adresses .address .modifyAdress a {
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #272727;
  border-radius: 3px;
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 14px;
  color: #272727;
}
.adresses .address .modifyAdress a:hover {
  text-decoration: none;
  background: #f1f1f1;
}

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

#manage_address h3 {
  text-align: center;
  font-size: 25px;
}
@media only screen and (min-width: 78em) {
  #manage_address h3 {
    font-size: 30px;
  }
}

#adresseselectionform ul {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  justify-content: center;
}
#adresseselectionform ul li {
  margin: 10px;
  width: 100%;
  max-width: 285px;
}
#adresseselectionform ul li .bloc {
  margin: 0;
  width: 100%;
}
#adresseselectionform ul li input[type=radio] {
  margin-top: 2px;
}
#adresseselectionform ul li label {
  font-weight: bold;
}
#adresseselectionform ul li address {
  clear: both;
  margin-top: 10px;
}
#adresseselectionform ul li .modify {
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #272727;
  border-radius: 3px;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #272727;
}
#adresseselectionform ul li .modify:hover {
  text-decoration: none;
  background: #f1f1f1;
}
#adresseselectionform .submit {
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  #adresseselectionform .submit {
    margin-top: 40px;
  }
}
#adresseselectionform .submit input {
  margin: 0;
}

/* -----------------------------------
CONFIRMATION
----------------------------------- */
#payment_module .paymentRow {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
#payment_module .paymentRow .paymentChoice {
  width: 100%;
  max-width: 230px;
}
#payment_module input[type=radio] {
  display: none;
}
#payment_module input[type=radio] + label {
  border: 2px solid #f1f1f1;
  text-align: center;
  padding: 30px 20px 20px;
  display: block;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#payment_module input[type=radio] + label:hover {
  background: #f1f1f1;
  border-color: #272727;
}
#payment_module input[type=radio] + label::before {
  content: "";
  display: block;
  width: 130px;
  height: 93px;
  margin: 0 auto;
}
#payment_module input[type=radio] + label[for=modscheques]::before {
  background: url(/images/commun/payment/icone-paiement-cheques.png) no-repeat center;
}
#payment_module input[type=radio] + label[for=modstelephone]::before {
  background: url(/images/commun/payment/icone-paiement-telephone.png) no-repeat center;
}
#payment_module input[type=radio] + label[for=modspaypal]::before {
  background: url(/images/commun/payment/icone-paiement-paypal.png) no-repeat center;
}
#payment_module input[type=radio] + label[for=modsnopayment]::before {
  background: url("/images/commun/payment/icone-paiement-nopayment.png") no-repeat center;
}
#payment_module input[type=radio] + label[for=modssystempay2]::before {
  background: url("/images/commun/payment/icone-paiement-banque.png") no-repeat center;
}
#payment_module input[type=radio] + label {
  /*&[for='modsCustomPaymentModules_stupCofidis3x']::before {
  	background: url("/images/commun/payment/icone-paiement-cofidis3x.png")no-repeat center;
  } 
     &[for='modsCustomPaymentModules_stupCofidis4x']::before {
  	background: url("/images/commun/payment/icone-paiement-cofidis4x.png")no-repeat center;
  } */
}
#payment_module input[type=radio] + label span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
#payment_module input[type=radio]:checked + label {
  background: #f1f1f1;
  border-color: #272727;
}

#validCommand {
  font-size: 14px;
  display: flex;
  padding: 20px;
  align-items: center;
  background-color: #FFFFFF;
  border: solid 1px #272727;
  background: #f1f1f1;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
}
#validCommand .condition_field {
  float: left;
  margin-right: 10px;
}
#validCommand .condition_field input {
  margin: 0;
}
#validCommand p {
  margin: 0;
  line-height: 1.2;
}
#validCommand a {
  color: #272727;
  text-decoration: underline;
}

.invalidOrder {
  background: rgba(202, 0, 71, 0.2);
  border: 1px solid #CA0047;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
}
.invalidOrder + h2 {
  display: none;
}
@media only screen and (min-width: 78em) {
  .invalidOrder {
    padding: 40px;
    margin-bottom: 50px;
  }
}
.invalidOrder h2 {
  margin-top: 0;
  padding: 0;
  margin-bottom: 16px;
  font-size: 20px;
}
@media only screen and (min-width: 78em) {
  .invalidOrder h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.invalidOrder h2::before {
  display: none;
}
.invalidOrder p {
  margin-bottom: 0;
}

/*---------- GENERAL ----------- */
#payment_actions a.confirmVir,
#payment_actions input[type=submit] {
  font-size: 20px;
  padding: 10px 20px;
}

#payment_actions a.confirmVir:hover,
#payment_actions input[type=submit]:hover {
  color: #3f3f3f;
  background: #ebebeb;
}

#payment_actions > a,
#payment_actions input[type=submit] {
  display: block;
  margin: auto;
  text-align: center;
}

/*---------- RIB ----------- */
#payment_actions table {
  margin: auto;
}

/*---------- PAYPAL ----------- */
#payment_actions form {
  text-align: center;
}

#payment_actions input {
  width: auto;
  margin: 0 0 5px;
  padding: 8px 11px;
  cursor: pointer;
  background: SlateGrey;
}

#cart_payment_confirmation .adresses {
  margin-top: 20px;
  margin-bottom: 20px;
}

#cart_payment_confirmation .cartRight {
  color: #000000 !important;
}

#payment_infos {
  margin-top: 50px;
}
#payment_infos h3 {
  text-align: center;
}
#payment_infos h4 {
  font-size: 18px;
  text-transform: none;
  margin: 0 0 20px;
  font-weight: bold;
}

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

	Ajout au Panier

*/
#overDiv.od_ad_to_cart {
  position: fixed !important;
  z-index: 999999 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  flex-direction: column;
}

#overlibheader .overlibcaption, #overlibfooter {
  display: none !important;
}
#overlibheader {
  width: 100%;
  max-width: 580px;
  padding: 10px 10px;
  font-size: 22px;
  margin-bottom: -41px;
  z-index: 1;
  text-align: right;
}
@media only screen and (min-width: 48em) {
  #overlibheader {
    padding-right: 20px;
    padding-top: 15px;
    margin-bottom: -50px;
  }
}
#overlibheader a {
  color: #272727;
}
#overlibcontent {
  border-radius: 2px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 580px;
  background: #fff;
  padding: 20px;
}
@media only screen and (min-width: 48em) {
  #overlibcontent {
    padding: 30px;
  }
}
#overlibcontent .add2cartConfirmationText {
  padding-left: 60px;
}
#overlibcontent .add2cartConfirmationText.ok {
  background: url("/images/commun/icon-cart-ok.svg") no-repeat left top;
  background-size: 40px;
}
#overlibcontent .add2cartConfirmationText.out {
  background: url("/images/commun/icon-cart-stop.svg") no-repeat left top;
  background-size: 40px;
}
#overlibcontent .add2cartConfirmationText p {
  margin: 0;
}
#overlibcontent .add2cartConfirmationBtn {
  text-align: center;
  margin-top: 20px;
}
@media only screen and (min-width: 48em) {
  #overlibcontent .add2cartConfirmationBtn {
    display: flex;
    margin-top: 30px;
  }
}
#overlibcontent .add2cartConfirmationBtn a {
  margin: 0;
}
#overlibcontent .add2cartConfirmationBtn a:first-child {
  margin-bottom: 15px;
}
@media only screen and (min-width: 48em) {
  #overlibcontent .add2cartConfirmationBtn a:first-child {
    margin-right: 20px;
    margin-bottom: 0;
  }
}

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

	Familles du catalogue

*/
@media only screen and (max-width: 34.99em) {
  .catalog-family-presentation {
    display: none;
  }
}
.catalog-family-item-picture {
  position: relative;
  margin-bottom: 20px;
}
.catalog-family-item-picture.fit-cover {
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}
@media only screen and (min-width: 78em) {
  .catalog-family-item-picture.fit-cover {
    height: 250px;
  }
}
.catalog-family-item-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #f1f1f1;
}
.catalog-family-item-container h2 {
  margin: 10px 0;
  font-size: 24px;
}

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

	Produits du catalogue

*/
@media only screen and (min-width: 78em) {
  body.catalogProductsList .entry-content {
    padding: 0;
  }
  body.catalogProductsList .entry-content-inner {
    display: flex;
    max-width: 100%;
    margin: 0;
  }
  body.catalogProductsList .entry-content-inner #leftbar {
    border-right: solid 2px #f1f1f1;
    min-width: 375px;
  }
  body.catalogProductsList .entry-content-inner article {
    width: calc(100% - 375px);
    padding: 0 80px;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList .entry-content article {
    padding-right: 200px;
  }
}

.nbProducts {
  font-size: 16px;
  line-height: 1.38;
  text-align: left;
  color: #bdbdbd;
}

@media only screen and (min-width: 48em) {
  .product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
}

.family-desc {
  padding: 80px 5.3335%;
  background-color: #f1f1f1;
}
.family-desc-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.family-desc-inner h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: #272727;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .family-desc-inner h2 {
    font-size: 30px;
    line-height: 1;
  }
}
.family-desc-inner h3 {
  font-family: "Playfair Display", Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.3;
  color: #272727;
}
@media only screen and (min-width: 78em) {
  .family-desc-inner h3 {
    font-size: 30px;
  }
}
.family-desc-inner p:last-child {
  margin-bottom: 0;
}

.box_predefined_cat_search {
  border-bottom: solid 2px #f1f1f1;
  margin: 0 -6%;
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search {
    margin: 0;
  }
}

#boxFiltreTitre {
  padding: 30px 5.335%;
  margin: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #272727;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre {
    padding: 100px 80px 30px;
    display: block;
  }
}
#boxFiltreTitre > span:first-child {
  position: relative;
  font-size: 22px;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre > span:first-child {
    font-size: 30px;
  }
}
#boxFiltreTitre > span:first-child::before {
  content: url("/images/icon/icon-chevron-black.svg");
  margin-right: 13px;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre > span:first-child::before {
    display: none;
  }
}
#boxFiltreTitre > span:first-child #maSelectionCompteur {
  background-color: #e5251d;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre > span:first-child #maSelectionCompteur {
    right: -13px;
    top: -5px;
  }
}
#boxFiltreTitre > span:first-child #maSelectionCompteur:empty {
  display: none;
}
#boxFiltreTitre #filtreMaSelection {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  text-align: left;
  color: #e5251d;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre #filtreMaSelection {
    display: block;
    margin-top: 10px;
  }
}
#boxFiltreTitre #filtreMaSelection a {
  text-decoration: underline;
}

.box_predefined_cat_search_form .formulaire {
  margin: 0;
  max-width: 100%;
}
.box_predefined_cat_search_form form .fieldGroup {
  border-bottom: 2px solid #f1f1f1;
  padding: 20px 5.335%;
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search_form form .fieldGroup {
    padding: 50px 80px;
  }
}
.box_predefined_cat_search_form form .fieldGroup:last-child {
  border-bottom: none;
}
.box_predefined_cat_search_form form .fieldGroup label.inline {
  font-family: "Playfair Display", Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #272727;
  margin: 0 0 20px;
  line-height: 1;
}
.box_predefined_cat_search_form form .fieldGroup .multi_checkbox {
  margin-bottom: 6px;
}
.box_predefined_cat_search_form form .fieldGroup .multi_checkbox input {
  display: none;
}
.box_predefined_cat_search_form form .fieldGroup .multi_checkbox input + label {
  font-size: 14px;
  line-height: 1.43;
}
.box_predefined_cat_search_form form .fieldGroup .multi_checkbox input + label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: solid 1px #bdbdbd;
  background: #fff;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.box_predefined_cat_search_form form .fieldGroup .multi_checkbox input[checked=checked] + label::before {
  border-color: #c1934e;
  background-color: #c1934e;
}
.box_predefined_cat_search_form form .fieldGroup select {
  padding: 10px 30px 10px 10px;
  max-width: 205px;
  margin: 0;
}
.box_predefined_cat_search_form form .submit {
  display: none;
}

p.nolivraison {
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  background: #373737;
  border-radius: 3px;
  border: 1px solid #373737;
  padding: 3px 10px;
  font-size: 13px;
  margin: 0 0 20px;
}

body.catalogProductDetail .entry-header {
  padding-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  body.catalogProductDetail .entry-header {
    padding-bottom: 50px;
  }
}
body.catalogProductDetail .entry-header .breadcrumb {
  margin-bottom: 0;
}
body.catalogProductDetail .entry-header-img {
  display: none;
}
body.catalogProductDetail #leftbar {
  display: none;
}
body.catalogProductDetail article {
  margin: 0;
}

.avis-product span[class*=star] {
  width: 95px;
  height: 15px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-right: 10px;
}
.avis-product .star-5 {
  background-image: url("/images/star/start-5.png");
}
.avis-product .nbr {
  font-size: 12px;
  line-height: 1.67;
  color: #272727;
  position: relative;
  top: -2px;
  font-weight: 400;
}

.product-label ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -7.5px;
  text-indent: -9999px;
}
.product-label ul li {
  margin: 7.5px;
}
.product-label ul li[data-label="AOP Prés-Salés du Mont-Saint-Michel"] {
  background: url("/images/labels/Logo-AOC-Pres-sales.png") no-repeat center;
  width: 65px;
  height: 65px;
}
.product-label ul li[data-label="Bleu Blanc Coeur"] {
  background: url("/images/labels/logo-Bleu-Blanc-Coeur.png") no-repeat center;
  width: 65px;
  height: 60px;
}
.product-label ul li[data-label="Label Rouge"] {
  background: url("/images/labels/logo-label-rouge.jpg") no-repeat center;
  width: 61px;
  height: 45px;
}
.product-label ul li[data-label="Le grévin"] {
  background: url("/images/labels/logo-le-grevin.png") no-repeat center;
  width: 65px;
  height: 59px;
}
.product-label ul li[data-label="Race à Viande"] {
  background: url("/images/labels/logo-race-a-viande.jpg") no-repeat center;
  width: 65px;
  height: 45px;
}
.product-label ul li[data-label="Viande Bovine Française"] {
  background: url("/images/labels/logos-logo-vbf.svg") no-repeat center;
  width: 65px;
  height: 65px;
}
.product-label ul li[data-label="Le Porc Français"] {
  background: url("/images/labels/logo-porc-francais.svg") no-repeat center;
  width: 62px;
  height: 65px;
}
.product-label ul li[data-label="Viande Ovine Française"] {
  background: url("/images/labels/logo-viande-ovine-francaise.png") no-repeat center;
  width: 65px;
  height: 65px;
}
.product-label ul li[data-label="Viande de Veau Française"] {
  background: url("/images/labels/logo-viande-veau-francaise.png") no-repeat center;
  width: 64px;
  height: 65px;
}
.product-label ul li[data-label="Volaille Française"] {
  background: url("/images/labels/logo-volaille-francaise.png") no-repeat center;
  width: 65px;
  height: 65px;
}

@media only screen and (min-width: 78em) {
  .product-intro {
    display: flex;
    justify-content: space-between;
  }
}
.product-intro-left {
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .product-intro-left {
    margin: 0;
    width: calc(50% - 25px);
  }
}
@media only screen and (min-width: 78em) {
  .product-intro-right {
    width: calc(50% - 25px);
  }
}
.product-intro-title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .product-intro-title {
    margin-bottom: 30px;
  }
  #product > .product-intro-title {
    display: none;
  }
}
.product-intro-right > .product-intro-title {
  display: none;
}
@media only screen and (min-width: 78em) {
  .product-intro-right > .product-intro-title {
    display: block;
  }
}
.product-intro-title h1 {
  color: #272727;
  margin: 12px 0 0;
}
.product-intro-title h1:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 78em) {
  .product-intro-title h1 {
    font-size: 50px;
    margin-top: 20px;
    line-height: 1;
  }
}
.product-intro-title h1 span {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  color: #bdbdbd;
  margin-top: 5px;
}
@media only screen and (min-width: 78em) {
  .product-intro-title h1 span {
    font-size: 22px;
    margin-top: 20px;
  }
}
.product-intro-img {
  position: relative;
  min-height: 200px;
  background: url("/images/icon/icon-no-photo.svg") no-repeat center, #f1f1f1;
}
@media only screen and (min-width: 78em) {
  .product-intro-img {
    min-height: 400px;
  }
}
.product-intro-img img {
  border-radius: 5px;
}
.product-intro-img-tag {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 5px;
  top: 5px;
  position: absolute;
}
.product-intro-img-tag span {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin: 5px;
}
.product-intro-img-tag span.promo {
  background: #e5251d;
}
.product-intro-img-tag span.promo:empty {
  display: none;
}
.product-intro-img-tag span.novelty {
  background: #272727;
}
.product-intro-addi-img {
  display: flex;
  flex-wrap: wrap;
  margin: 5px -5px 0;
}
.product-intro-addi-img li {
  margin: 5px;
  width: calc(33.3333% - 10px);
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .product-intro-addi-img li {
    width: calc(20% - 10px);
  }
}
.product-intro-price {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-intro-price .price:not(.old_price),
.product-intro-price .special-price {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  color: #e5251d;
  order: 1;
}
.product-intro-price .price.old_price {
  font-size: 14px;
  line-height: 1.57;
  color: #bdbdbd;
  text-decoration: line-through;
  order: 2;
  margin-left: 10px;
}
.product-intro-price .price-kg {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #bdbdbd;
  order: 3;
  width: 100%;
}
.product-intro #formproductversion .addToCart {
  display: flex;
}
.product-intro #formproductversion .addToCart input.add_to_cart_quantity {
  width: 75px;
  margin: 0;
  padding: 15px;
  border-radius: 3px;
  border: solid 1px #bdbdbd;
}
.product-intro #formproductversion .addToCart .panier {
  width: calc(100% - 75px);
  padding-left: 10px;
}
.product-intro #formproductversion .addToCart .panier .btn-full-gold {
  margin: 0;
  background-image: url("/images/icon/icon-add-panier.svg");
  background-repeat: no-repeat;
  background-position: 27px center;
  text-align: left;
  line-height: 1.2;
  padding: 17.4px 25px 17.4px 64px;
}
.product-intro.stock_in.off #stock {
  display: none;
}
.product-intro.stock_out #formproductversion {
  opacity: 0.2;
}
.product-intro.stock_out #formproductversion .panier a,
.product-intro.stock_out #formproductversion input.add_to_cart_quantity {
  pointer-events: none;
}
.product-intro #stock {
  margin-top: 20px;
  font-size: 14px;
  padding: 20px 20px 20px 60px;
  border: 2px solid;
  line-height: 1.2;
  max-width: 345px;
  border-radius: 5px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .product-intro #stock {
    padding-left: 75px;
  }
}
@media only screen and (min-width: 78em) {
  .product-intro #stock {
    margin-top: 30px;
  }
}
.product-intro #stock #stock_waiting span:not(:empty) {
  margin-top: 5px;
  display: block;
}
.product-intro #stock.stock_out {
  border-color: #e5251d;
  background: rgba(229, 37, 29, 0.1);
}
.product-intro #stock.stock_out::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url("/images/commun/icon-cart-stop.svg") no-repeat center;
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 48em) {
  .product-intro #stock.stock_out::before {
    left: 20px;
  }
}
.product-intro #stock.stock_in {
  border-color: orange;
  background: rgba(255, 165, 0, 0.1);
  color: orange;
}
.product-intro #stock.stock_in::before {
  content: "";
  height: 35px;
  width: 31px;
  background: url("/images/icon/icon-warning-orange.svg") no-repeat center;
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 48em) {
  .product-intro #stock.stock_in::before {
    left: 20px;
  }
}
.product-intro #stock .stock_out.on {
  color: #e5251d;
}
.product-intro #stock .stock_out.on::before {
  content: "Indisponible";
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.product-intro #stock .stockDetail.stock_in.on {
  font-weight: bold;
  font-size: 16px;
}
.product-intro .offer-delivery {
  font-size: 14px;
  line-height: 1.43;
  text-align: left;
}
@media only screen and (min-width: 78em) {
  .product-intro .offer-delivery {
    margin: 30px 0 0;
  }
}
.product-intro .offer-delivery a {
  color: #272727;
  font-weight: 400;
}
.product-intro .offer-delivery a::before {
  content: url("/images/icon/icon-gift.svg");
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.product-intro .secure-paiement {
  margin-top: 50px;
}
@media only screen and (min-width: 78em) {
  .product-intro .secure-paiement {
    margin-top: 30px;
  }
}
.product-intro .secure-paiement a {
  font-size: 14px;
  line-height: 1.43;
  text-align: left;
  color: #272727;
  text-align: center;
  font-weight: 400;
}
.product-intro .secure-paiement a span {
  display: block;
  margin-bottom: 10px;
}
.product-intro .secure-paiement a img {
  max-width: 315px;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 78em) {
  .product-intro .secure-paiement a img {
    max-width: 100%;
  }
}

.product-toggle {
  margin: 80px -6% 0;
}
@media only screen and (min-width: 78em) {
  .product-toggle {
    margin: 80px 0 100px;
  }
}
@media only screen and (min-width: 90em) {
  .product-toggle {
    margin-bottom: 120px;
  }
}
.product-toggle-title {
  display: none;
}
@media only screen and (min-width: 78em) {
  .product-toggle-title {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    border-top: solid 2px #f1f1f1;
    border-bottom: solid 2px #f1f1f1;
  }
  .product-toggle-title:empty {
    display: none;
  }
  .product-toggle-title a {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #bdbdbd;
    text-transform: uppercase;
    padding: 23px 0;
    margin: 0 30px;
  }
  .product-toggle-title a:hover {
    text-decoration: none;
    color: #272727;
  }
  .product-toggle-title a.avis::before {
    content: url("/images/star/icons-icon-star.svg");
    margin-right: 8px;
    position: relative;
    top: 1px;
  }
  .product-toggle-title a#current {
    color: #272727;
    position: relative;
  }
  .product-toggle-title a#current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background: #272727;
  }
}
.product-toggle-content-item .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1px;
  text-align: center;
  color: #bdbdbd;
  text-transform: uppercase;
  border-bottom: solid 1px #f1f1f1;
  border-top: solid 1px #f1f1f1;
  background-color: #fff;
  padding: 23px 5.335%;
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item .title {
    display: none;
  }
}
.product-toggle-content-item:first-child .title {
  border-top: solid 2px #f1f1f1;
}
.product-toggle-content-item:last-child .title {
  border-bottom: solid 2px #f1f1f1;
}
.product-toggle-content-item.avis .title::before {
  content: url("/images/star/icons-icon-star.svg");
  margin-right: 8px;
}
.product-toggle-content-item .text {
  padding: 50px 5.3335%;
  display: none;
  border-top: 1px solid #272727;
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item .text {
    display: block;
    border: none;
    padding: 80px 0 0;
  }
}
.product-toggle-content-item .text:first-child {
  margin-top: 0;
}
.product-toggle-content-item .text:last-child {
  margin-bottom: 0;
}
.product-toggle-content-item .text h2 {
  font-size: 20px;
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item .text h2 {
    font-size: 30px;
  }
}
.product-toggle-content-item.open .title {
  border-bottom-color: #272727;
  color: #272727;
}

.associated-product {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 5.335%;
  background: url("/images/img/pattern.jpg");
}
@media only screen and (min-width: 78em) {
  .associated-product {
    padding-top: 100px;
  }
}
.associated-product-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.associated-product-inner .h2 {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .associated-product-inner .h2 {
    margin-bottom: 80px;
  }
}
.associated-product-inner .h2 span {
  display: block;
  font-family: "Splash", Arial, sans-serif;
  color: #e5251d;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .associated-product-inner .h2 span {
    font-size: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .associated-product-inner .product-list {
    justify-content: center;
  }
}
@media only screen and (min-width: 78em) {
  .associated-product-inner .product-list .short_product {
    width: calc(33.333% - 30px);
  }
}
@media only screen and (min-width: 48em) {
  .associated-product-inner .product-list .short_product:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .associated-product-inner .product-list .short_product:nth-child(3) {
    display: block;
  }
}

.short_product {
  border: solid 2px #f1f1f1;
  background-color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 0 30px 0 rgba(39, 39, 39, 0);
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    display: flex;
    flex-direction: column;
    max-width: 360px;
  }
}
.short_product:hover {
  box-shadow: 0 0 30px 0 rgba(39, 39, 39, 0.2);
  border-color: #bdbdbd;
}
.short_product_container {
  position: relative;
  padding: 10px;
  height: calc(100% - 60px);
}
.short_product_img {
  height: 280px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: url("/images/icon/icon-no-photo.svg") no-repeat center, #f1f1f1;
}
.short_product_img_tags {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 5px;
  top: 5px;
  position: absolute;
}
.short_product_img_tags span {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin: 5px;
}
.short_product_img_tags span:empty {
  display: none;
}
.short_product_img_tags span.promo {
  background: #e5251d;
}
.short_product_img_tags span.novelty {
  background: #272727;
}
.short_product_txt {
  padding: 20px 10px 10px;
}
.short_product_txt h2 {
  font-size: 22px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.2;
  margin-bottom: 0;
}
.short_product_txt h2 span {
  color: #bdbdbd;
  font-size: 18px;
  display: inline-block;
}
.short_product_txt h2 span::before {
  content: "-";
  margin: 0 3px 0 0;
}
@media only screen and (min-width: 48em) {
  .short_product_txt h2 span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
  }
  .short_product_txt h2 span::before {
    display: none;
  }
}
.short_product p.nolivraison {
  margin: 14px 0 0;
}
.short_product_bottom {
  display: flex;
  align-items: center;
}
.short_product_bottom .product-label {
  width: calc(100% - 126px);
  margin: -7.5px;
}
.short_product_bottom .product-label ul {
  justify-content: flex-end;
}
.short_product_price {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 140px;
}
.short_product_price .price:not(.old_price), .short_product_price .special-price {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #e5251d;
  order: 1;
}
.short_product_price .price.old_price {
  font-size: 14px;
  line-height: 1.57;
  color: #bdbdbd;
  text-decoration: line-through;
  order: 2;
  margin-left: 10px;
}
.short_product_price .price-kg {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #bdbdbd;
  order: 3;
  width: 100%;
  margin-top: 3px;
}
.short_product .panier {
  border-top: solid 2px #f1f1f1;
}
.short_product .panier a {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: 0.5px;
  padding: 0;
  height: 60px;
  background: #fff;
  color: #c1934e;
}
.short_product .panier a::before {
  content: url("/images/icon/icon-add-panier-gold.svg");
  margin-right: 8px;
}
.short_product .panier a:hover {
  background: #f1f1f1;
}
.short_product.enRupture .panier a {
  pointer-events: none;
  opacity: 0.2;
}

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

	Page listing actualités

*/
@media only screen and (min-width: 48em) {
  .news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
  }
}
.news-list-item {
  position: relative;
  margin-bottom: 50px;
  min-height: 400px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .news-list-item {
    width: calc(50% - 50px);
    margin: 0 25px 50px;
  }
}
@media only screen and (min-width: 78em) {
  .news-list-item {
    width: calc(33.3333% - 50px);
  }
  .news-list-item:hover .news-list-item-txt {
    transform: translateY(-42px);
  }
}
.news-list-item-img {
  height: 400px;
  background: url("/images/icon/icon-no-photo.svg") no-repeat center, #f1f1f1;
}
.news-list-item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(55, 55, 55, 0) 40%, rgba(55, 55, 55, 0.7) 69%, #373737 100%);
}
.news-list-item-txt {
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% + 42px);
  width: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 20px;
  transform: translateY(0);
}
.news-list-item-txt h2,
.news-list-item-txt .h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px;
}
.news-list-item-txt-date,
.news-list-item-txt .desc {
  font-size: 16px;
  line-height: 1.5;
  color: #bdbdbd;
}
body.actus_promos .news-list-item-txt-date {
  display: none;
}
.news-list-item-txt .desc {
  margin-bottom: 5px;
}
body.blog .news-list-item-txt .desc {
  display: none;
}
.news-list-item-txt::after {
  content: "En savoir plus";
  color: #c1934e;
  font-weight: bold;
  display: block;
  margin-top: 10px;
  background: url("/images/icon/icon-arrow-right-gold.svg") no-repeat 110px center;
}

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

#newsArchives table {
  width: 100%;
}
#newsArchives table tr td:nth-child(2) {
  text-align: center;
}

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

	Page détail actualité

*/
@media only screen and (min-width: 78em) {
  body.newsDetail .entry-header {
    padding-bottom: 50px;
  }
}
body.newsDetail .entry-header h1 {
  font-size: 30px;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  body.newsDetail .entry-header h1 {
    font-size: 50px;
  }
}

.chapo-date {
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .chapo-date {
    margin-top: 30px;
  }
}
.chapo-date::before {
  content: url("/images/icon/icon-calendar-white.svg");
  margin-right: 10px;
}

.chapo-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #373737;
  font-style: italic;
}
@media only screen and (min-width: 78em) {
  .chapo-description {
    font-size: 20px;
  }
}
.entry-header .chapo-description {
  margin: 20px 0 0;
  color: #fff;
}

.entry-header .close {
  margin-top: 20px;
}
.entry-header .close span {
  background: #e5251d;
  padding: 5px 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.entry-content .chapo-picture {
  display: none;
}

@media only screen and (min-width: 48em) {
  .simpleCatalogSearch {
    margin-bottom: 50px;
  }
}
.simpleCatalogSearch .fieldset {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .simpleCatalogSearch .fieldset {
    flex-direction: row;
  }
}
.simpleCatalogSearch .fieldset input {
  margin: 0 !important;
}
.simpleCatalogSearch .fieldset input:first-child {
  border-radius: 4px 0 0 4px;
}
.simpleCatalogSearch .fieldset input:last-child {
  border-radius: 0 4px 4px 0;
}

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

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

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

	Page Contact

*/
body.ru-accueil .entry-header {
  display: none;
}
body.ru-accueil .entry-content {
  padding: 0;
}
body.ru-accueil .entry-content-inner {
  max-width: 100%;
}
body.ru-accueil .entry-content-inner article {
  margin: 0;
}
body.ru-accueil #responsiveSlide {
  position: relative;
}
body.ru-accueil #responsiveSlide ul.rslides {
  overflow: hidden;
  height: 600px;
  position: relative;
  margin: 0;
}
@media only screen and (min-width: 103.125em) {
  body.ru-accueil #responsiveSlide ul.rslides {
    height: 800px;
  }
}
body.ru-accueil #responsiveSlide ul.rslides li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 82%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  body.ru-accueil #responsiveSlide ul.rslides li::before {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 59%, rgba(0, 0, 0, 0) 100%);
  }
}
body.ru-accueil #responsiveSlide ul.rslides li {
  width: 100%;
  height: 100%;
  margin: 0;
}
body.ru-accueil #responsiveSlide ul.rslides li:not(.callbacks1_on) {
  position: absolute;
}
body.ru-accueil #responsiveSlide ul.rslides li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
body.ru-accueil #responsiveSlide ul.rslides li .caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 30px 8%;
}
body.ru-accueil #responsiveSlide ul.rslides li .caption-inner {
  max-width: 1450px;
  margin: 0 auto;
  width: 100%;
}
body.ru-accueil #responsiveSlide ul.rslides li .caption .title {
  font-family: "Splash", Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  color: #c1934e;
}
@media only screen and (min-width: 78em) {
  body.ru-accueil #responsiveSlide ul.rslides li .caption .title {
    font-size: 40px;
  }
}
body.ru-accueil #responsiveSlide ul.rslides li .caption .content {
  font-family: "Playfair Display", Arial, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  body.ru-accueil #responsiveSlide ul.rslides li .caption .content {
    font-size: 80px;
    line-height: 1.13;
    max-width: 600px;
  }
  body.ru-accueil #responsiveSlide ul.rslides li .caption .content p:last-child {
    margin-top: 40px;
  }
}
body.ru-accueil #responsiveSlide ul.callbacks_tabs {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  z-index: 2;
}
body.ru-accueil #responsiveSlide ul.callbacks_tabs li {
  margin: 0 7.5px;
}
body.ru-accueil #responsiveSlide ul.callbacks_tabs li a {
  display: block;
  width: 12px;
  height: 12px;
  border: solid 1px #fff;
  text-indent: -99999px;
  border-radius: 50%;
}
body.ru-accueil #responsiveSlide ul.callbacks_tabs li.callbacks_here a {
  background: #fff;
}

.promote-accueil-inner, .pres-accueil-inner, .discover-accueil-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.promote-accueil-inner > h2, .pres-accueil-inner > h2, .discover-accueil-inner > h2 {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .promote-accueil-inner > h2, .pres-accueil-inner > h2, .discover-accueil-inner > h2 {
    margin-bottom: 80px;
  }
}
.promote-accueil-inner > h2 span, .pres-accueil-inner > h2 span, .discover-accueil-inner > h2 span {
  display: block;
  font-family: Splash;
  font-size: 25px;
  line-height: 1;
  color: #e5251d;
  font-weight: 400;
  margin-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .promote-accueil-inner > h2 span, .pres-accueil-inner > h2 span, .discover-accueil-inner > h2 span {
    font-size: 40px;
  }
}

.promote-accueil {
  border: solid 2px #f1f1f1;
  background: url("/images/img/pattern.jpg");
  background-size: 100%;
  padding: 80px 5.335%;
}
@media only screen and (min-width: 78em) {
  .promote-accueil {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.promote-accueil .btn-more {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .promote-accueil .btn-more {
    margin-top: 20px;
  }
}
.promote-accueil .btn-more a {
  margin-bottom: 0;
}
@media only screen and (min-width: 64em) {
  .promote-accueil .short_product {
    width: calc(33.333% - 30px);
  }
}

.pres-accueil {
  background-color: #272727;
  padding: 80px 5.335%;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .pres-accueil {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 103.125em) {
  .pres-accueil {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 64em) {
  .pres-accueil-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.pres-accueil-item:first-child {
  margin-bottom: 80px;
}
.pres-accueil-item:last-child {
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .pres-accueil-item {
    width: calc(50% - 30px);
  }
  .pres-accueil-item:first-child {
    order: 2;
    margin: 0;
  }
  .pres-accueil-item:last-child {
    order: 1;
    text-align: left;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil-item {
    width: calc(50% - 50px);
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil-item {
    width: 450px;
  }
}
.pres-accueil h1 {
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.pres-accueil h1 span {
  display: block;
  font-family: Splash;
  font-size: 25px;
  line-height: 1;
  color: #e5251d;
  font-weight: 400;
  margin-bottom: 5px;
}
@media only screen and (min-width: 78em) {
  .pres-accueil h1 {
    font-size: 50px;
    margin-bottom: 50px;
  }
  .pres-accueil h1 span {
    font-size: 40px;
  }
}
.pres-accueil img[style*="float: left"] {
  float: left !important;
  margin: 0 16px 0 0;
  width: 102px;
  height: 65px;
  object-fit: contain;
}
.pres-accueil p {
  margin: 30px 0;
}
.pres-accueil p:last-child {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .pres-accueil p:last-child a.btn-empty-white {
    margin-top: 50px;
  }
}

.discover-accueil {
  padding: 80px 5.335%;
}
@media only screen and (min-width: 78em) {
  .discover-accueil {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 78em) {
  .discover-accueil-inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.discover-accueil-inner > h2 {
  margin-bottom: 80px;
}
@media only screen and (min-width: 78em) {
  .discover-accueil-inner > h2 {
    width: 100%;
  }
}
.discover-accueil h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.5px;
  color: #272727;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
}
@media only screen and (min-width: 78em) {
  .discover-accueil h3 {
    text-align: left;
  }
}
.discover-accueil-product {
  margin-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  .discover-accueil-product {
    width: calc(100% - 365px);
    padding-right: 30px;
    margin: 0;
  }
}
.discover-accueil-product .product-list {
  justify-content: center;
}
@media only screen and (min-width: 78em) {
  .discover-accueil-product .product-list {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 78em) {
  .discover-accueil-product .product-list .short_product {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 78em) {
  .discover-accueil-colis {
    width: 365px;
  }
}
.discover-accueil-colis-inner {
  position: relative;
  max-width: 365px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .discover-accueil-colis-inner {
    height: calc(100% - 44px);
  }
}
.discover-accueil-colis-inner-img {
  height: 513px;
  position: relative;
  z-index: 1;
}
.discover-accueil-colis-inner-txt {
  background-image: linear-gradient(to top, #272727 20%, rgba(39, 39, 39, 0.1));
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  flex-direction: column;
  padding: 50px 4%;
  color: #fff;
}
.discover-accueil-colis-inner-txt .title {
  font-family: "Splash", Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 15px;
}
.discover-accueil-colis-inner-txt p {
  margin: 15px 0;
}
.discover-accueil-colis-inner-txt p:first-child {
  margin-top: 0;
}
.discover-accueil-colis-inner-txt p:last-child {
  margin: 30px 0 0;
}
.discover-accueil-colis-inner-txt p:last-child a {
  margin: 0;
  padding: 13px 30px;
}

.chrono-accueil {
  padding: 80px 8%;
  border-top: solid 2px #f1f1f1;
  background-color: #f1f1f1;
}
.chrono-accueil h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #272727;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil h2 {
    margin-bottom: 50px;
  }
}
.chrono-accueil h2 img {
  display: block;
  margin: 0 auto;
}
.chrono-accueil-list {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }
}
.chrono-accueil-list::before {
  content: "";
  position: absolute;
  left: 52.5px;
  top: 33px;
  width: 1px;
  height: calc(100% - 90px);
  background: #bdbdbd;
  z-index: -1;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list::before {
    height: 1px;
    width: 100%;
    left: 0;
    top: 65px;
  }
}
.chrono-accueil-list-item {
  display: flex;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list-item {
    flex-direction: column;
    align-items: flex-end;
    width: 258px;
  }
}
.chrono-accueil-list-item:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list-item:not(:last-child) {
    margin: 0;
  }
}
.chrono-accueil-list-item p {
  margin: 10px 0;
}
.chrono-accueil-list-item p:first-child {
  margin-top: 0;
}
.chrono-accueil-list-item p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.43;
}
.chrono-accueil-list-item .chiffre {
  font-size: 40px;
  font-weight: bold;
  color: #bdbdbd;
}
.chrono-accueil-list-item-img {
  width: 105px;
  height: 70px;
  min-width: 105px;
  margin-top: 30px;
  background: #f1f1f1;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list-item-img {
    margin: 0;
    width: 180px;
    height: 120px;
    margin-bottom: -42px;
  }
}
.chrono-accueil-list-item-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 78em) {
  .chrono-accueil-list-item-txt {
    width: 100%;
  }
  .chrono-accueil-list-item-txt p {
    max-width: 230px;
  }
}

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

	Page menu

*/
.page-menu-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.no-support-grid .page-menu-list {
  display: -ms-grid;
}
@supports (grid-gap: 1px) {
  .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
    margin: 0;
  }
}
.no-support-grid .page-menu-list > li:nth-child(1), .no-support-grid .page-menu-list > div:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(2), .no-support-grid .page-menu-list > div:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(3), .no-support-grid .page-menu-list > div:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(4), .no-support-grid .page-menu-list > div:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(5), .no-support-grid .page-menu-list > div:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(6), .no-support-grid .page-menu-list > div:nth-child(6) {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(7), .no-support-grid .page-menu-list > div:nth-child(7) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(8), .no-support-grid .page-menu-list > div:nth-child(8) {
  -ms-grid-row: 8;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(9), .no-support-grid .page-menu-list > div:nth-child(9) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(10), .no-support-grid .page-menu-list > div:nth-child(10) {
  -ms-grid-row: 10;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(11), .no-support-grid .page-menu-list > div:nth-child(11) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(12), .no-support-grid .page-menu-list > div:nth-child(12) {
  -ms-grid-row: 12;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(13), .no-support-grid .page-menu-list > div:nth-child(13) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(14), .no-support-grid .page-menu-list > div:nth-child(14) {
  -ms-grid-row: 14;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(15), .no-support-grid .page-menu-list > div:nth-child(15) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(16), .no-support-grid .page-menu-list > div:nth-child(16) {
  -ms-grid-row: 16;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(17), .no-support-grid .page-menu-list > div:nth-child(17) {
  -ms-grid-row: 17;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(18), .no-support-grid .page-menu-list > div:nth-child(18) {
  -ms-grid-row: 18;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(19), .no-support-grid .page-menu-list > div:nth-child(19) {
  -ms-grid-row: 19;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(20), .no-support-grid .page-menu-list > div:nth-child(20) {
  -ms-grid-row: 20;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(21), .no-support-grid .page-menu-list > div:nth-child(21) {
  -ms-grid-row: 21;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(22), .no-support-grid .page-menu-list > div:nth-child(22) {
  -ms-grid-row: 22;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(23), .no-support-grid .page-menu-list > div:nth-child(23) {
  -ms-grid-row: 23;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(24), .no-support-grid .page-menu-list > div:nth-child(24) {
  -ms-grid-row: 24;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(25), .no-support-grid .page-menu-list > div:nth-child(25) {
  -ms-grid-row: 25;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(26), .no-support-grid .page-menu-list > div:nth-child(26) {
  -ms-grid-row: 26;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(27), .no-support-grid .page-menu-list > div:nth-child(27) {
  -ms-grid-row: 27;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(28), .no-support-grid .page-menu-list > div:nth-child(28) {
  -ms-grid-row: 28;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(29), .no-support-grid .page-menu-list > div:nth-child(29) {
  -ms-grid-row: 29;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(30), .no-support-grid .page-menu-list > div:nth-child(30) {
  -ms-grid-row: 30;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(31), .no-support-grid .page-menu-list > div:nth-child(31) {
  -ms-grid-row: 31;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(32), .no-support-grid .page-menu-list > div:nth-child(32) {
  -ms-grid-row: 32;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(33), .no-support-grid .page-menu-list > div:nth-child(33) {
  -ms-grid-row: 33;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(34), .no-support-grid .page-menu-list > div:nth-child(34) {
  -ms-grid-row: 34;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(35), .no-support-grid .page-menu-list > div:nth-child(35) {
  -ms-grid-row: 35;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(36), .no-support-grid .page-menu-list > div:nth-child(36) {
  -ms-grid-row: 36;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(37), .no-support-grid .page-menu-list > div:nth-child(37) {
  -ms-grid-row: 37;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(38), .no-support-grid .page-menu-list > div:nth-child(38) {
  -ms-grid-row: 38;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(39), .no-support-grid .page-menu-list > div:nth-child(39) {
  -ms-grid-row: 39;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(40), .no-support-grid .page-menu-list > div:nth-child(40) {
  -ms-grid-row: 40;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(41), .no-support-grid .page-menu-list > div:nth-child(41) {
  -ms-grid-row: 41;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(42), .no-support-grid .page-menu-list > div:nth-child(42) {
  -ms-grid-row: 42;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(43), .no-support-grid .page-menu-list > div:nth-child(43) {
  -ms-grid-row: 43;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(44), .no-support-grid .page-menu-list > div:nth-child(44) {
  -ms-grid-row: 44;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(45), .no-support-grid .page-menu-list > div:nth-child(45) {
  -ms-grid-row: 45;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(46), .no-support-grid .page-menu-list > div:nth-child(46) {
  -ms-grid-row: 46;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(47), .no-support-grid .page-menu-list > div:nth-child(47) {
  -ms-grid-row: 47;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(48), .no-support-grid .page-menu-list > div:nth-child(48) {
  -ms-grid-row: 48;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(49), .no-support-grid .page-menu-list > div:nth-child(49) {
  -ms-grid-row: 49;
  -ms-grid-column: 1;
}
.no-support-grid .page-menu-list > li:nth-child(50), .no-support-grid .page-menu-list > div:nth-child(50) {
  -ms-grid-row: 50;
  -ms-grid-column: 1;
}
@media only screen and (min-width: 22.5em) {
  .page-menu-list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
  }
  .no-support-grid .page-menu-list {
    display: -ms-grid;
  }
  .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
    margin-left: 15px;
    margin-top: 15px;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
      margin: 0;
    }
  }
  .no-support-grid .page-menu-list > li:nth-child(1), .no-support-grid .page-menu-list > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(2), .no-support-grid .page-menu-list > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(3), .no-support-grid .page-menu-list > div:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(4), .no-support-grid .page-menu-list > div:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(5), .no-support-grid .page-menu-list > div:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(6), .no-support-grid .page-menu-list > div:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(7), .no-support-grid .page-menu-list > div:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(8), .no-support-grid .page-menu-list > div:nth-child(8) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(9), .no-support-grid .page-menu-list > div:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(10), .no-support-grid .page-menu-list > div:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(11), .no-support-grid .page-menu-list > div:nth-child(11) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(12), .no-support-grid .page-menu-list > div:nth-child(12) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(13), .no-support-grid .page-menu-list > div:nth-child(13) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(14), .no-support-grid .page-menu-list > div:nth-child(14) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(15), .no-support-grid .page-menu-list > div:nth-child(15) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(16), .no-support-grid .page-menu-list > div:nth-child(16) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(17), .no-support-grid .page-menu-list > div:nth-child(17) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(18), .no-support-grid .page-menu-list > div:nth-child(18) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(19), .no-support-grid .page-menu-list > div:nth-child(19) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(20), .no-support-grid .page-menu-list > div:nth-child(20) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(21), .no-support-grid .page-menu-list > div:nth-child(21) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(22), .no-support-grid .page-menu-list > div:nth-child(22) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(23), .no-support-grid .page-menu-list > div:nth-child(23) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(24), .no-support-grid .page-menu-list > div:nth-child(24) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(25), .no-support-grid .page-menu-list > div:nth-child(25) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(26), .no-support-grid .page-menu-list > div:nth-child(26) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(27), .no-support-grid .page-menu-list > div:nth-child(27) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(28), .no-support-grid .page-menu-list > div:nth-child(28) {
    -ms-grid-row: 14;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(29), .no-support-grid .page-menu-list > div:nth-child(29) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(30), .no-support-grid .page-menu-list > div:nth-child(30) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(31), .no-support-grid .page-menu-list > div:nth-child(31) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(32), .no-support-grid .page-menu-list > div:nth-child(32) {
    -ms-grid-row: 16;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(33), .no-support-grid .page-menu-list > div:nth-child(33) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(34), .no-support-grid .page-menu-list > div:nth-child(34) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(35), .no-support-grid .page-menu-list > div:nth-child(35) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(36), .no-support-grid .page-menu-list > div:nth-child(36) {
    -ms-grid-row: 18;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(37), .no-support-grid .page-menu-list > div:nth-child(37) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(38), .no-support-grid .page-menu-list > div:nth-child(38) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(39), .no-support-grid .page-menu-list > div:nth-child(39) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(40), .no-support-grid .page-menu-list > div:nth-child(40) {
    -ms-grid-row: 20;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(41), .no-support-grid .page-menu-list > div:nth-child(41) {
    -ms-grid-row: 21;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(42), .no-support-grid .page-menu-list > div:nth-child(42) {
    -ms-grid-row: 21;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(43), .no-support-grid .page-menu-list > div:nth-child(43) {
    -ms-grid-row: 22;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(44), .no-support-grid .page-menu-list > div:nth-child(44) {
    -ms-grid-row: 22;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(45), .no-support-grid .page-menu-list > div:nth-child(45) {
    -ms-grid-row: 23;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(46), .no-support-grid .page-menu-list > div:nth-child(46) {
    -ms-grid-row: 23;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(47), .no-support-grid .page-menu-list > div:nth-child(47) {
    -ms-grid-row: 24;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(48), .no-support-grid .page-menu-list > div:nth-child(48) {
    -ms-grid-row: 24;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(49), .no-support-grid .page-menu-list > div:nth-child(49) {
    -ms-grid-row: 25;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(50), .no-support-grid .page-menu-list > div:nth-child(50) {
    -ms-grid-row: 25;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 48em) {
  .page-menu-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .no-support-grid .page-menu-list {
    display: -ms-grid;
  }
  .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
    margin-left: 20px;
    margin-top: 20px;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
      margin: 0;
    }
  }
  .no-support-grid .page-menu-list > li:nth-child(1), .no-support-grid .page-menu-list > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(2), .no-support-grid .page-menu-list > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(3), .no-support-grid .page-menu-list > div:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(4), .no-support-grid .page-menu-list > div:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(5), .no-support-grid .page-menu-list > div:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(6), .no-support-grid .page-menu-list > div:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(7), .no-support-grid .page-menu-list > div:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(8), .no-support-grid .page-menu-list > div:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(9), .no-support-grid .page-menu-list > div:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(10), .no-support-grid .page-menu-list > div:nth-child(10) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(11), .no-support-grid .page-menu-list > div:nth-child(11) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(12), .no-support-grid .page-menu-list > div:nth-child(12) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(13), .no-support-grid .page-menu-list > div:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(14), .no-support-grid .page-menu-list > div:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(15), .no-support-grid .page-menu-list > div:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(16), .no-support-grid .page-menu-list > div:nth-child(16) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(17), .no-support-grid .page-menu-list > div:nth-child(17) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(18), .no-support-grid .page-menu-list > div:nth-child(18) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(19), .no-support-grid .page-menu-list > div:nth-child(19) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(20), .no-support-grid .page-menu-list > div:nth-child(20) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(21), .no-support-grid .page-menu-list > div:nth-child(21) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(22), .no-support-grid .page-menu-list > div:nth-child(22) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(23), .no-support-grid .page-menu-list > div:nth-child(23) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(24), .no-support-grid .page-menu-list > div:nth-child(24) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(25), .no-support-grid .page-menu-list > div:nth-child(25) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(26), .no-support-grid .page-menu-list > div:nth-child(26) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(27), .no-support-grid .page-menu-list > div:nth-child(27) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(28), .no-support-grid .page-menu-list > div:nth-child(28) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(29), .no-support-grid .page-menu-list > div:nth-child(29) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(30), .no-support-grid .page-menu-list > div:nth-child(30) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(31), .no-support-grid .page-menu-list > div:nth-child(31) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(32), .no-support-grid .page-menu-list > div:nth-child(32) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(33), .no-support-grid .page-menu-list > div:nth-child(33) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(34), .no-support-grid .page-menu-list > div:nth-child(34) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(35), .no-support-grid .page-menu-list > div:nth-child(35) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(36), .no-support-grid .page-menu-list > div:nth-child(36) {
    -ms-grid-row: 12;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(37), .no-support-grid .page-menu-list > div:nth-child(37) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(38), .no-support-grid .page-menu-list > div:nth-child(38) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(39), .no-support-grid .page-menu-list > div:nth-child(39) {
    -ms-grid-row: 13;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(40), .no-support-grid .page-menu-list > div:nth-child(40) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(41), .no-support-grid .page-menu-list > div:nth-child(41) {
    -ms-grid-row: 14;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(42), .no-support-grid .page-menu-list > div:nth-child(42) {
    -ms-grid-row: 14;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(43), .no-support-grid .page-menu-list > div:nth-child(43) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(44), .no-support-grid .page-menu-list > div:nth-child(44) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(45), .no-support-grid .page-menu-list > div:nth-child(45) {
    -ms-grid-row: 15;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(46), .no-support-grid .page-menu-list > div:nth-child(46) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(47), .no-support-grid .page-menu-list > div:nth-child(47) {
    -ms-grid-row: 16;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(48), .no-support-grid .page-menu-list > div:nth-child(48) {
    -ms-grid-row: 16;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(49), .no-support-grid .page-menu-list > div:nth-child(49) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(50), .no-support-grid .page-menu-list > div:nth-child(50) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .no-support-grid .page-menu-list {
    display: -ms-grid;
  }
  @supports (grid-gap: 1px) {
    .no-support-grid .page-menu-list > li, .no-support-grid .page-menu-list > div {
      margin: 0;
    }
  }
  .no-support-grid .page-menu-list > li:nth-child(1), .no-support-grid .page-menu-list > div:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(2), .no-support-grid .page-menu-list > div:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(3), .no-support-grid .page-menu-list > div:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(4), .no-support-grid .page-menu-list > div:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(5), .no-support-grid .page-menu-list > div:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(6), .no-support-grid .page-menu-list > div:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(7), .no-support-grid .page-menu-list > div:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(8), .no-support-grid .page-menu-list > div:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(9), .no-support-grid .page-menu-list > div:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(10), .no-support-grid .page-menu-list > div:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(11), .no-support-grid .page-menu-list > div:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(12), .no-support-grid .page-menu-list > div:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(13), .no-support-grid .page-menu-list > div:nth-child(13) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(14), .no-support-grid .page-menu-list > div:nth-child(14) {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(15), .no-support-grid .page-menu-list > div:nth-child(15) {
    -ms-grid-row: 4;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(16), .no-support-grid .page-menu-list > div:nth-child(16) {
    -ms-grid-row: 4;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(17), .no-support-grid .page-menu-list > div:nth-child(17) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(18), .no-support-grid .page-menu-list > div:nth-child(18) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(19), .no-support-grid .page-menu-list > div:nth-child(19) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(20), .no-support-grid .page-menu-list > div:nth-child(20) {
    -ms-grid-row: 5;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(21), .no-support-grid .page-menu-list > div:nth-child(21) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(22), .no-support-grid .page-menu-list > div:nth-child(22) {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(23), .no-support-grid .page-menu-list > div:nth-child(23) {
    -ms-grid-row: 6;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(24), .no-support-grid .page-menu-list > div:nth-child(24) {
    -ms-grid-row: 6;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(25), .no-support-grid .page-menu-list > div:nth-child(25) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(26), .no-support-grid .page-menu-list > div:nth-child(26) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(27), .no-support-grid .page-menu-list > div:nth-child(27) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(28), .no-support-grid .page-menu-list > div:nth-child(28) {
    -ms-grid-row: 7;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(29), .no-support-grid .page-menu-list > div:nth-child(29) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(30), .no-support-grid .page-menu-list > div:nth-child(30) {
    -ms-grid-row: 8;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(31), .no-support-grid .page-menu-list > div:nth-child(31) {
    -ms-grid-row: 8;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(32), .no-support-grid .page-menu-list > div:nth-child(32) {
    -ms-grid-row: 8;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(33), .no-support-grid .page-menu-list > div:nth-child(33) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(34), .no-support-grid .page-menu-list > div:nth-child(34) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(35), .no-support-grid .page-menu-list > div:nth-child(35) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(36), .no-support-grid .page-menu-list > div:nth-child(36) {
    -ms-grid-row: 9;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(37), .no-support-grid .page-menu-list > div:nth-child(37) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(38), .no-support-grid .page-menu-list > div:nth-child(38) {
    -ms-grid-row: 10;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(39), .no-support-grid .page-menu-list > div:nth-child(39) {
    -ms-grid-row: 10;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(40), .no-support-grid .page-menu-list > div:nth-child(40) {
    -ms-grid-row: 10;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(41), .no-support-grid .page-menu-list > div:nth-child(41) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(42), .no-support-grid .page-menu-list > div:nth-child(42) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(43), .no-support-grid .page-menu-list > div:nth-child(43) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(44), .no-support-grid .page-menu-list > div:nth-child(44) {
    -ms-grid-row: 11;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(45), .no-support-grid .page-menu-list > div:nth-child(45) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(46), .no-support-grid .page-menu-list > div:nth-child(46) {
    -ms-grid-row: 12;
    -ms-grid-column: 2;
  }
  .no-support-grid .page-menu-list > li:nth-child(47), .no-support-grid .page-menu-list > div:nth-child(47) {
    -ms-grid-row: 12;
    -ms-grid-column: 3;
  }
  .no-support-grid .page-menu-list > li:nth-child(48), .no-support-grid .page-menu-list > div:nth-child(48) {
    -ms-grid-row: 12;
    -ms-grid-column: 4;
  }
  .no-support-grid .page-menu-list > li:nth-child(49), .no-support-grid .page-menu-list > div:nth-child(49) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .no-support-grid .page-menu-list > li:nth-child(50), .no-support-grid .page-menu-list > div:nth-child(50) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
}

.page-menu-item {
  position: relative;
  border: solid 2px #f1f1f1;
  background-color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 0 30px 0 rgba(39, 39, 39, 0);
  padding: 10px;
}
.page-menu-item:hover {
  box-shadow: 0 0 30px 0 rgba(39, 39, 39, 0.2);
  border-color: #bdbdbd;
}
.page-menu-item h2 {
  padding: 20px 10px 10px;
  font-size: 22px;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.2;
  margin: 0;
}
.page-menu-item .fit-cover {
  height: 280px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: url("/images/icon/icon-no-photo.svg") no-repeat center, #f1f1f1;
}

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

	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: -9999px;
}
.viewproduct a {
  width: 100%;
  height: 100%;
  display: block;
}

.bloc {
  padding: 20px;
  position: relative;
  margin: 0 0 20px;
  background-color: #FFFFFF;
  overflow: hidden;
  border: solid 2px #f1f1f1;
  background-color: #fff;
}
.bloc > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 48em) {
  .bloc {
    padding: 30px;
  }
}

.bold {
  font-weight: 600;
}

.valid {
  font-size: 18px;
  color: #24b35d;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.valid .icon-checked-white {
  border-radius: 100px;
  background: #24b35d;
  display: inline-block;
  padding: 0px 9px 2px;
  margin-right: 10px;
}

.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);
}

.icon-container, .icon-right, .icon-left {
  display: inline;
  position: relative;
}
.icon-container .icon, .icon-right .icon, .icon-left .icon {
  position: absolute;
  top: 25px;
}

.icon-left .icon {
  left: 20px;
}

.icon-right .icon {
  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 {
  font-size: inherit;
}
.icon::before {
  font-size: 8px;
}

.color1 {
  color: #e5251d;
}

.color2 {
  color: #bdbdbd;
}

.color3 {
  color: #c1934e;
}

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

	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 */