@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;
  color: #1d1e23;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
body.open {
  overflow: hidden;
  height: 100vh;
}

main {
  padding: 0 4%;
  position: relative;
}
main article {
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  main article {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  main article {
    margin-bottom: 100px;
  }
}

#page {
  position: relative;
  z-index: 1;
}

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

	Text selection/highlighting

*/

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

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

#contentForFilter a:not([class]):not([data-fancybox]), .product_detail a:not([class]):not([data-fancybox]) {
  color: #0f572a;
  text-decoration: none;
  flex: 1;
  line-height: 1.2;
  position: relative;
  background-position: 0 100%;
  background-image: linear-gradient(315deg, #0f572a, #0f572a);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#contentForFilter a:not([class]):not([data-fancybox]):hover, #contentForFilter a:not([class]):not([data-fancybox]):focus, .product_detail a:not([class]):not([data-fancybox]):hover, .product_detail a:not([class]):not([data-fancybox]):focus {
  color: #ffffff;
  background-size: 100% 100%;
  text-decoration: none;
}

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

	Tous les styles de boutons

*/
.modifyAdress a, .cart-button-refresh input, .cart-button-trash input, .btn-neutral, .btn-negative, .btn-positive, .btn-full, .cart .flex-center input, input[type=submit], .btn-empty {
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  clear: both;
  display: inline-block;
  padding: 15px 30px 14px;
  border-radius: 5px;
  font-weight: bold;
}
.modifyAdress a:hover, .cart-button-refresh input:hover, .cart-button-trash input:hover, .btn-neutral:hover, .btn-negative:hover, .btn-positive:hover, .btn-full:hover, .cart .flex-center input:hover, input[type=submit]:hover, .btn-empty:hover {
  text-decoration: none;
}

.btn-empty {
  background-color: #ffffff;
  color: #0f572a;
  border: solid 1px rgba(29, 30, 35, 0.1);
}
.btn-empty:hover {
  background: rgb(229.5, 229.5, 229.5);
}
.btn-full, .cart .flex-center input, input[type=submit] {
  border: none;
  background: linear-gradient(315deg, #cfdc24 0%, #7bbe34 50%, #7bbe34 50%, #cfdc24 100%);
  background-size: 200% 100%;
  background-position: right center;
  color: #1d1e23;
}
.btn-full:hover, .cart .flex-center input:hover, input[type=submit]:hover {
  background-position: left center;
}
.btn-medium {
  padding: 20px 30px 19px;
  text-transform: uppercase;
  line-height: 1.3;
  font-size: 16px;
}
.btn-big {
  font-size: 20px;
  padding: 17px 40px;
}
.btn-positive {
  background-color: #24b35d;
  color: #fff;
}
.btn-positive:hover {
  background: rgb(51.8558139535, 214.1441860465, 116.5441860465);
}
.btn-negative {
  background-color: #f50023;
  color: #fff;
}
.btn-negative:hover {
  background: rgb(255, 41, 71.5714285714);
}
.btn-neutral {
  background: #ddd;
  color: #444;
}
.btn-neutral:hover {
  background: rgb(195.5, 195.5, 195.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 #ddd;
}
@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: 40px 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: 40px 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: 40px 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: 40px 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: -4.4%;
  margin-right: -4.4%;
}
.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/_v2/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;
}

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

	Logo

*/
#logo {
  position: absolute;
  top: 74px;
  left: 4%;
  z-index: 1000;
}
@media only screen and (min-width: 48em) {
  #logo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    order: 1;
  }
}

#logo a {
  display: block;
  width: 175px;
  height: 30px;
  text-indent: -9999px;
  background: transparent url("/images/_v2/logo/logo-bdu-white.png") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 48em) {
  #logo a {
    width: 230px;
    height: 42px;
  }
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 291px;
    height: 50px;
  }
}

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

	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;
}
article ul li {
  padding-left: 35px;
  position: relative;
  background: no-repeat !important;
}
article ul li:first-child {
  margin-top: 0;
}
article ul li:last-child {
  margin-bottom: 0;
}
article ul li::before {
  content: "•";
  position: absolute;
  top: 2px;
  left: 12px;
}
article ul li ul {
  margin: 10px 0;
}

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

/*
@changelog 2021-04-29 vincent
.table-responsive > table > thead > tr > th,
.table-responsive > table > tbody > tr > th,
.table-responsive > table > tfoot > tr > th,
.table-responsive > table > thead > tr > td,
.table-responsive > table > tbody > tr > td,
.table-responsive > table > tfoot > tr > td {
	min-width: 100px;
}*/
/*--------------------------------

	Règles typographiques

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

	Basic, low level typography

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

h1,
.h1 {
  font-size: 25px;
  line-height: 1.4;
  color: #1d1e23;
  margin: 10px 0 15px;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 35px;
    line-height: 1.29;
    margin: 20px 0 40px;
  }
}

h2,
.h2 {
  font-size: 20px;
  color: #1d1e23;
  margin: 40px 0 20px;
  line-height: 1.4;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 25px;
    margin: 50px 0 30px;
  }
}
h2 strong,
.h2 strong {
  font-weight: 400;
}

h3,
.h3 {
  text-transform: uppercase;
  font-size: 18px;
  background-repeat: no-repeat !important;
}
@media only screen and (min-width: 78em) {
  h3,
  .h3 {
    font-size: 20px;
  }
}
h3 strong,
.h3 strong {
  font-weight: 400;
}

h4,
.h4 {
  font-size: 18px;
  color: #0f572a;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 20px;
  }
}
h4 strong,
.h4 strong {
  font-weight: 400;
}

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

h6,
.h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: #0f572a;
}
@media only screen and (min-width: 48em) {
  h6,
  .h6 {
    font-size: 16px;
  }
}
h6 strong,
.h6 strong {
  font-weight: 400;
}

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

i, em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

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

*/
#bandeau {
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  font-weight: 600;
  color: #0f572a;
  padding: 6px calc(4% + 30px) 6px 4%;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.17;
}
@media only screen and (min-width: 48em) {
  #bandeau {
    text-align: center;
    padding: 6px 4%;
    font-size: 14px;
  }
}
#bandeau p {
  margin: 0;
}
#bandeau #bandeauFermer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30px;
  text-indent: -9999999px;
  background: url(/images/_v2/icon/icon-cross.svg) no-repeat center;
}
#bandeau a.btn-full {
  background: #0f572a;
  color: #ffffff;
  padding: 7px 10px 8px;
  margin: 0 10px;
  font-size: 12px;
}

.breadcrumb {
  font-size: 12px;
  color: #1d1e23;
  text-transform: uppercase;
  margin: 15px 0 10px;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    margin: 40px 0 20px;
  }
}
.breadcrumb a {
  font-size: 12px;
  color: #1d1e23;
}
.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: 999999999;
  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

*/
.ru_form {
  background: #eff7f8;
}
.ru_form main article {
  margin-bottom: 0;
}

.formulaire form, .formulaire .form_creator_header {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 90em) {
  .formulaire form, .formulaire .form_creator_header {
    max-width: 600px;
  }
}
.simpleText + .formulaire {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .simpleText + .formulaire {
    margin-top: 40px;
  }
}
.formulaire:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .formulaire:not(:last-child) {
    margin-bottom: 60px;
  }
}

.form_creator_header {
  margin-bottom: 40px;
}

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

.rgpd, .form_creator_footer {
  font-size: 14px;
  color: #707173;
  margin-top: 40px;
}
.rgpd p, .form_creator_footer p {
  margin: 10px 0;
  line-height: 20px;
}
.rgpd p a, .form_creator_footer p a {
  text-decoration: underline;
}

.fieldGroup {
  overflow: hidden;
}

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

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border-radius: 6px;
  font-size: inherit;
  appearance: none;
  display: inline-block;
  margin-bottom: 25px;
  padding: 16px 20px 13px;
  border-radius: 6px;
  border: solid 1px rgba(29, 30, 35, 0.2);
  background-color: #ebebeb;
  font-size: 16px;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 0;
  font-size: 14px;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 0;
  font-size: 14px;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  letter-spacing: 0;
  font-size: 14px;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 0;
  font-size: 14px;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  letter-spacing: 0;
  font-size: 14px;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: #ddd;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #ddd;
}

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

textarea {
  font-family: "Rajdhani", Arial, sans-serif;
}
.error textarea {
  border: 1px solid #ddd;
  border-color: #f50023;
}

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

	Liste déroulante

*/
select {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Rajdhani", Arial, sans-serif;
  width: auto;
  font-size: 16px;
  font-weight: bold;
  color: #1d1e23;
  padding: 0 42px 0 20px;
  border-radius: 6px;
  border: solid 1px rgba(29, 30, 35, 0.2);
  background-color: #ebebeb;
  background-image: url(/images/_v2/icon/icon-chevron-bottom-black.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 17px) center;
  height: 50px;
  cursor: pointer;
}
.error select {
  border: 1px solid #ddd;
  border-color: #f50023;
}
select .select-mini, .select-mini select {
  font-size: 12px;
  padding: 10px;
  min-width: 120px;
  max-width: 200px;
  margin: 10px 0;
}

.select-container {
  position: relative;
}
.select-container .icon {
  transform: rotate(90deg);
  top: 26px;
}
.select-container .icon::after {
  content: "";
  height: 60px;
  width: 1px;
  background: #ddd;
  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);
  width: auto;
  margin: 0;
  font-size: 16px;
  font-family: "Rajdhani", Arial, sans-serif;
}

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

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

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

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

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

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: 10px 0 20px;
  padding: 15px;
  background-color: #ebebeb;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.3;
}
.aide p {
  font-size: 13px;
  line-height: 1.3;
  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 iframe {
  margin: 0;
}
#captcha #html_element > div {
  margin-left: auto;
  margin-right: auto;
}

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

	Submit

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

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

	Suppression reset form

*/
#reset {
  display: none;
}

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

	Style de la galerie miniature

*/
.medias .gallery {
  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;
  padding: 0;
}
.medias .gallery li::before {
  display: none;
}
@media only screen and (min-width: 78em) {
  .medias .gallery li {
    height: 250px;
  }
}

#spLoader {
  position: fixed;
  z-index: 999999;
  top: 0;
  width: 100%;
  height: 100%;
  animation: heartbeat;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  text-align: center;
  background: #fff;
  background: url("/images/_v2/logo/logo-bdu-white.png") no-repeat center center rgba(0, 0, 0, 0.95);
}
@keyframes heartbeat {
  0% {
    background-size: 225px;
  }
  20% {
    background-size: 245px;
  }
  40% {
    background-size: 225px;
  }
  60% {
    background-size: 245px;
  }
  80% {
    background-size: 225px;
  }
  100% {
    background-size: 225px;
  }
}
/*--------------------------------

	NAVIGATION

*/
.contain-to-grid {
  background: #343539;
  position: relative;
  z-index: 50;
}
@media only screen and (min-width: 48em) {
  .contain-to-grid {
    order: 3;
    width: 100%;
  }
}

#nested {
  height: 60px;
  overflow: hidden;
  position: relative;
}
#nested.expanded {
  height: auto;
}
@media only screen and (min-width: 48em) {
  #nested {
    height: auto;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
  #nested::after {
    content: "";
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: solid 2px #131415;
    background: #343539;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: -1;
    width: calc(100vw - 8px);
  }
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  height: 60px;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  background: #1d1e23;
}
.title-area .toggle-topbar a {
  border: solid 2px #131415;
  background-color: #313338;
  background-repeat: no-repeat;
  background-position: center;
  width: 110px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  padding-top: 2px;
}
.title-area .toggle-topbar a::after {
  content: "";
  background: url("/images/_v2/icon/icon-menu.svg") no-repeat center;
  margin-left: 15px;
  height: 20px;
  width: 20px;
  margin-top: -2px;
}
.expanded .title-area .toggle-topbar a {
  color: transparent;
  background-image: url(/images/_v2/icon/icon-cross-white.svg);
  width: 60px;
}
.expanded .title-area .toggle-topbar a::after {
  opacity: 0;
}
@media only screen and (min-width: 48em) {
  .title-area {
    display: none;
  }
}

/* ---------------- TOP BAR ---------------- */
.top-bar-section {
  position: relative;
  left: -100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.expanded .top-bar-section {
  left: 0;
}
@media only screen and (min-width: 48em) {
  .top-bar-section {
    left: auto;
  }
}

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

/* ---------------- FIRST LEVEL ---------------- */
#nested ul.firstLevel {
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 120px);
}
#nested ul.firstLevel::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel {
    display: flex;
    justify-content: center;
    height: auto;
    overflow: visible;
    height: 80px;
  }
  #nested ul.firstLevel li.me-scndnav {
    display: none;
  }
}

#nested .firstLevel > li {
  position: relative;
}
#nested .firstLevel > li:last-child {
  margin-bottom: 100px;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:last-child {
    margin-bottom: 0;
  }
}
#nested .firstLevel > li:not(.me-scndnav) > a {
  padding: 15px 4%;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  border-bottom: solid 2px #131415;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:not(.me-scndnav) > a {
    border: none;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li:not(.me-scndnav) > a {
    padding: 0 42.5px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:not(.me-scndnav):not(.active):not(:first-child) {
    position: relative;
  }
  #nested .firstLevel > li:not(.me-scndnav):not(.active):not(:first-child)::before {
    content: url(/images/_v2/icon/icon-square.svg);
    position: absolute;
    top: calc(50% - 3px);
    transform: translateY(-50%);
    left: -4px;
  }
  #nested .firstLevel > li:not(.me-scndnav).active + li::before {
    display: none;
  }
}
#nested .firstLevel > li:not(.me-scndnav):first-child > a {
  border-top: solid 2px #131415;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:not(.me-scndnav):first-child > a {
    border: none;
  }
}
#nested .firstLevel > li:not(.me-scndnav).active > a {
  position: relative;
  background: #1D1E23;
  color: #cfdc24;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:not(.me-scndnav).active > a {
    border-top: 2px solid #131415;
  }
}
#nested .firstLevel > li:not(.me-scndnav).active > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  border: solid 1px rgba(15, 87, 42, 0.1);
  background-color: #cfdc24;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:not(.me-scndnav).active > a::before {
    height: 4px;
    border-radius: 2px 2px 0 0;
  }
}
#nested .firstLevel > li.me-scndnav > a {
  padding: 15px 4%;
  background: #131415;
  color: #ffffff;
}
#nested .firstLevel > li.me-scndnav.active > a {
  color: #cfdc24;
}

#nested .firstLevel > li.has-dropdown > a {
  position: relative;
  padding-right: calc(4% + 50px);
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.has-dropdown > a {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li.has-dropdown > a {
    padding-right: 42.5px;
  }
}
#nested .firstLevel > li.has-dropdown > a::after {
  content: url(/images/_v2/icon/icon-arrow-right-w.svg);
  position: absolute;
  right: 4%;
  top: 14px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 30px;
  height: 30px;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.has-dropdown > a::after {
    display: none;
  }
}
#nested .firstLevel > li.has-dropdown.open-ul > a::after {
  transform: rotate(90deg);
}
#nested .firstLevel > li.has-dropdown.active > a::after {
  content: url(/images/_v2/icon/icon-arrow-right-g.svg);
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
}
li:not(.me-scndnav) ul.secondLevel {
  background: #343539;
  border-bottom: solid 2px #131415;
  padding: 10px 0;
}
li:not(.me-scndnav) ul.secondLevel a {
  padding: 5px calc(4% + 10px);
  font-size: 18px;
  color: #ebebeb;
}
@media only screen and (min-width: 48em) {
  li:not(.me-scndnav) ul.secondLevel a {
    padding: 5px 15px;
  }
  li:not(.me-scndnav) ul.secondLevel a:hover {
    color: #cfdc24;
  }
}
li:not(.me-scndnav) ul.secondLevel li.active a {
  font-weight: bold;
  color: #cfdc24;
  position: relative;
  padding-left: calc(4% + 25px);
}
li:not(.me-scndnav) ul.secondLevel li.active a::before {
  content: "";
  position: absolute;
  left: calc(4% + 10px);
  top: 3px;
  height: calc(100% - 6px);
  width: 2px;
  background: #cfdc24;
  border-radius: 2px;
}
li.me-scndnav ul.secondLevel {
  background: #ffffff;
  padding: 10px 0;
}
li.me-scndnav ul.secondLevel a {
  padding: 5px calc(4% + 10px);
  font-size: 18px;
  color: #131415;
}
li.me-scndnav ul.secondLevel li.active > a {
  font-weight: bold;
  position: relative;
  padding-left: calc(4% + 25px);
}
li.me-scndnav ul.secondLevel li.active > a::before {
  content: "";
  position: absolute;
  left: calc(4% + 10px);
  top: 3px;
  height: calc(100% - 6px);
  width: 2px;
  background: #131415;
  border-radius: 2px;
}
@media only screen and (min-width: 48em) {
  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;
    border-top: 2px solid #1d1e23;
  }
  ul.secondLevel li {
    white-space: nowrap;
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
  }
}

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

	Listing pagination

*/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .pager {
    margin-top: 60px;
  }
  .blog-list + .pager {
    margin-top: 30px;
  }
}
.pager-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pager a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  border: 1px solid #D2D4D5;
  border-radius: 6px;
  color: #1d1e23;
  background: #ffffff;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .pager a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
}
.pager a:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .pager a:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .pager a:not(:last-child) {
    margin-right: 20px;
  }
}
.pager a.pager_active_page {
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  font-weight: 700;
  color: #fff;
}
.pager a:hover {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
}

.newsDetail .pager li {
  margin: 0 10px !important;
  padding: 0;
}
.newsDetail .pager li::before {
  display: none;
}
.newsDetail .pager a.pager-back {
  width: auto;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 16px;
}

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

	Bouton retour en haut de page

*/
.scroll-top {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  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;
}

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

	Search

*/
.widget-search {
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  padding: 10px 4%;
  width: 100%;
}
@media only screen and (min-width: 48em) {
  .widget-search {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: absolute;
    z-index: 9999;
  }
}
@media only screen and (min-width: 78em) {
  .widget-search {
    height: 100px;
  }
}
.widget-search-inner {
  display: flex;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .widget-search-inner {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 78em) {
  .widget-search-inner {
    margin-top: 9px;
  }
}
.widget-search form {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20px);
}
.widget-search form input {
  margin: 0 !important;
  height: 40px;
  line-height: 40px;
  letter-spacing: 0;
}
@media only screen and (min-width: 78em) {
  .widget-search form input {
    height: 60px;
    line-height: 60px;
  }
}
.widget-search form input[type=text] {
  width: calc(100% - 40px);
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media only screen and (min-width: 78em) {
  .widget-search form input[type=text] {
    width: calc(100% - 60px);
  }
}
.widget-search form input[type=submit] {
  background-color: #1d1e23;
  background-image: url(/images/_v2/icon/icon-search.svg);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  color: #ffffff;
  padding: 0;
  width: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media only screen and (min-width: 78em) {
  .widget-search form input[type=submit] {
    width: 60px;
  }
}
.widget-search-close {
  position: absolute;
  top: -1px;
  right: -2px;
  height: 10px;
  cursor: pointer;
}
@media only screen and (min-width: 78em) {
  .widget-search-close {
    width: 20px;
    height: 20px;
    top: -5px;
    right: -30px;
  }
}
.widget-search-close img {
  vertical-align: top;
}
.widget-search-button {
  height: 60px;
  width: 80px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget-search-button span {
  display: none;
}
@media only screen and (min-width: 78em) {
  .widget-search-button {
    height: 100px;
    min-width: 230px;
  }
  .widget-search-button span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    color: rgba(235, 235, 235, 0.8);
  }
}
@keyframes rotateCubeBottomOut {
  50% {
    animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
}
@keyframes rotateCubeBottomIn {
  0% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
  50% {
    animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
}
@keyframes rotateCubeTopOut {
  50% {
    animation-timing-function: ease-out;
    transform: translateY(-50%) translateZ(-200px) rotateX(45deg);
  }
  100% {
    opacity: 0.3;
    transform: translateY(-100%) rotateX(90deg);
  }
}
@keyframes rotateCubeTopIn {
  0% {
    opacity: 0.3;
    transform: translateY(100%) rotateX(-90deg);
  }
  50% {
    animation-timing-function: ease-out;
    transform: translateY(50%) translateZ(-200px) rotateX(-45deg);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  height: auto;
  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-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .slick-dots {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 78em) {
  .slick-dots {
    margin-top: 30px;
  }
}
.slick-dots li {
  padding: 0;
  margin: 0 5px;
  height: 10px;
}
.slick-dots li::before {
  display: none;
}
.slick-dots li button {
  text-indent: -99999px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(29, 30, 35, 0.5);
}
.slick-dots li.slick-active button {
  border: solid 1px rgba(29, 30, 35, 0.1);
  background-color: #cfdc24;
}

/* min ready */
div#tarteaucitronMainLineOffset,
.tarteaucitronBorder {
  border: 0 !important;
}

#tarteaucitron [aria-pressed=true] {
  font-weight: 700;
}

.tac_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

div#tarteaucitronAlertBig:focus {
  outline: 0;
}

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

#tarteaucitronContentWrapper {
  display: unset;
}

/** 10082023 **/
div#tarteaucitronServices {
  border-radius: 8px;
}

button#tarteaucitronClosePanel {
  border-radius: 5px 5px 0 0;
  right: 15px !important;
}

button.tarteaucitron-toggle-group {
  background: transparent !important;
  padding: 10px 0 0;
  cursor: pointer;
}

#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronAllow .tarteaucitronCheck::before {
  content: "☐" !important;
}

#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronAllow .tarteaucitronCheck::before {
  content: "☑" !important;
}

#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny .tarteaucitronCross::before {
  content: "☑" !important;
}

#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronDeny .tarteaucitronCross::before {
  content: "☐" !important;
}

#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCheck::before {
  content: "☐" !important;
}

#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross::before {
  content: "☐" !important;
}

#tarteaucitronRoot #tarteaucitronServices_mandatory .tarteaucitronCheck::before {
  content: "☑" !important;
}

#tarteaucitronRoot .tarteaucitronCheck::before,
#tarteaucitronRoot .tarteaucitronCross::before {
  font-size: 20px;
}

/* hide useless mandatory button */
#tarteaucitronRoot #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronAsk {
  display: none !important;
}

/* remove icon from the banner */
#tarteaucitronRoot button.tarteaucitronCTAButton,
#tarteaucitronRoot button#tarteaucitronCloseAlert,
#tarteaucitronRoot button#tarteaucitronPrivacyUrl {
  border: 0;
  border-radius: 4px;
}

#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCross,
#tarteaucitronRoot button.tarteaucitronCTAButton .tarteaucitronCheck {
  display: none;
}

/* dont use bold to avoid bigger button */
#tarteaucitronRoot #tarteaucitron [aria-pressed=true] {
  font-weight: initial;
  text-shadow: 0px 0px 1px;
}

/* fix padding if no cookies */
#tarteaucitronRoot #tarteaucitronServices li#tarteaucitronNoServicesTitle {
  padding: 20px;
}

/* hide info about cookies number */
#tarteaucitronRoot .tarteaucitronStatusInfo {
  display: none;
}

#tarteaucitronRoot .tarteaucitronName {
  padding-top: 5px;
}

/***************/
/** 14042021 **/
span.tarteaucitronReadmoreSeparator {
  display: inline !important;
}

/******/
/** 09052021 **/
.tarteaucitronName .tacCurrentStatus,
.tarteaucitronName .tarteaucitronReadmoreSeparator {
  color: #333 !important;
  font-size: 12px !important;
  text-transform: capitalize;
}

/**************/
/** 27032021 **/
button.tarteaucitron-toggle-group {
  display: block;
}

span.tarteaucitronH3 {
  font-weight: 700 !important;
}

#tarteaucitron #tarteaucitronServices_mandatory .tarteaucitronH3 {
  font-weight: 500 !important;
  font-size: 14px;
  margin-top: 7px;
}

.tarteaucitronLine {
  border-left: 0px solid transparent !important;
}

/*****/
/** PARTNERS LIST **/
html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList {
  text-align: left;
  background: rgba(255, 255, 255, 0.0901960784);
  margin: 15px 0px 10px;
  padding: 15px;
  display: block;
  border-radius: 4px;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList b {
  font-weight: 700;
  padding-bottom: 8px;
  display: block;
  font-size: 16px;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul {
  margin-left: 22px;
}

html body #tarteaucitronRoot #tarteaucitronAlertBig div.tarteaucitronPartnersList ul li {
  list-style: circle;
  font-size: 14px;
}

/**********************/
/** SAVE BUTTON **/
html body #tarteaucitronRoot button#tarteaucitronSaveButton {
  font-size: 18px !important;
  padding: 7px 20px;
  border-radius: 5px;
  cursor: pointer;
}

html body #tarteaucitronRoot div#tarteaucitronSave {
  background-color: #FFF;
  text-align: right;
  padding: 20px;
}

/******************/
/** BETTER MOBILE MODE **/
@media screen and (max-width: 767px) {
  html body #tarteaucitronRoot #tarteaucitron ul#tarteaucitronServices_mandatory .tarteaucitronDeny {
    display: none !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button,
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAsk,
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronName {
    width: 100% !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    margin-bottom: 8px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder ul .tarteaucitronLine {
    padding: 16px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron div#tarteaucitronMainLineOffset .tarteaucitronName {
    display: none !important;
  }
  #tarteaucitronServices_mandatory li.tarteaucitronLine .tarteaucitronName span {
    width: 100% !important;
    display: inline-block;
  }
  li.tarteaucitronLine .tarteaucitronName span {
    width: 80% !important;
    display: inline-block;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group {
    width: 10% !important;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0px;
    padding: 10px 0;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:before {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:before {
    content: "▴";
  }
}
@media screen and (min-width: 768px) {
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:after {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:after {
    content: "▴";
    margin-left: 15px;
  }
}
/****/
/***
* 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 15px;
  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,
#tarteaucitronRoot .asCatToggleBtn {
  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:not(.tarteaucitronDetailsInline) {
  color: #fff;
  display: none;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0;
  max-width: 270px;
  padding: 20px;
  position: absolute;
  z-index: 2147483647;
}

#tarteaucitron #tarteaucitronServices .tarteaucitronTitle + [id^=tarteaucitronDetails] {
  width: calc(100% - 40px);
  font-weight: 500;
  margin: 0;
  padding: 5px 20px 20px;
  background: rgba(51, 51, 51, 0.2);
  color: #333;
}

#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: 15px;
  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: #555;
  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,
#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow {
  background-color: #1B870B;
}

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

#tarteaucitron #tarteaucitronServices #tarteaucitronServices_mandatory .tarteaucitronLine button.tarteaucitronAllow {
  opacity: 0.4;
}

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

.tarteaucitronAlertBigBottom span#tarteaucitronDisclaimerAlert,
.tarteaucitronAlertBigTop span#tarteaucitronDisclaimerAlert {
  display: inline-flex;
}

span#tarteaucitronDisclaimerAlert {
  padding: 0 10px;
  display: inline-block;
  overflow-y: auto;
  max-height: 50vh;
  line-height: normal;
}

@media only screen and (max-width: 768px) {
  #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
    font-size: 16px;
  }
}
#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: #333;
  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%;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font: 15px verdana;
  /*startup*/
  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: #000;
  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: #d50505;
  color: white;
}

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

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

#tarteaucitronCloseCross {
  position: absolute;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  top: 10px;
  right: 26px;
}

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

.tarteaucitron-display-block {
  display: block;
}

.tarteaucitron-display-none {
  display: none;
}

/*
STARTUP***********************************************************************************
*/
body #tarteaucitronRoot #tarteaucitronAlertBig {
  display: none;
  position: fixed;
  box-sizing: content-box;
  z-index: 2147483645;
  text-align: center;
  margin: auto;
  overflow: auto;
  background: #ffffff;
  max-width: 480px;
  width: 90%;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert p.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

#tarteaucitronRoot span#tarteaucitronDisclaimerAlert p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

div#tarteaucitronAlertBig::before {
  display: none;
}

body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
  position: relative;
  padding: 80px 0 0;
  margin: 0 0 20px;
}

#tarteaucitronDisclaimerAlert::before {
  content: "🍪";
  font-size: 35px;
  background: #F4F4F4;
  padding: 15px;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#tarteaucitronRoot button#tarteaucitronPrivacyUrl {
  margin-bottom: 0 !important;
  margin-top: 15px !important;
}

/*--------------------------------------- à partir de 768px - MEDIUM ---------------------------------------*/
@media only screen and (min-width: 48em) {
  body #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
    padding: 0 0 0 80px;
  }
  #tarteaucitronDisclaimerAlert::before {
    left: 0;
    transform: none;
  }
}
/*--------------------------------

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Layout du contenu des pages

*/
.simpleText,
.textAndImages {
  overflow: hidden;
}

.description-style {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #131415;
  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: #7bbe34;
  font-weight: 600;
  background: #a8f0c3;
  padding: 10px 20px;
}
.site-map .rubrique_sommaire_ {
  font-size: 24px;
}
.site-map .rubrique_sommaire_::before {
  display: none;
}
.site-map .sitemap_level1 {
  font-size: 18px;
}
.site-map .sitemap_level1 > li {
  margin-top: 20px;
}
.site-map .sitemap_level2 {
  font-size: 16px;
}
.site-map .sitemap_level2 > li {
  margin-top: 10px;
}
.site-map .sitemap_level2 > li a {
  font-weight: 400;
}
.site-map .sitemap_level3 {
  font-size: 14px;
}

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

	Page vide

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

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

	Footer

*/
.subfooter {
  padding: 60px 4%;
  background: #eff7f8;
}
@media only screen and (min-width: 78em) {
  .subfooter {
    padding: 80px 4%;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter {
    padding: 100px 4%;
  }
}
.subfooter-inner > *:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .subfooter-inner > *:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter-inner > *:not(:last-child) {
    margin-bottom: 100px;
  }
}
.subfooter + footer {
  margin-top: 0;
}

.shortcut-terrasse-intro {
  text-align: center;
  margin-bottom: 40px;
}
.shortcut-terrasse-intro p:not(.h2) {
  font-size: 16px;
}
@media only screen and (min-width: 48em) {
  .shortcut-terrasse-intro {
    max-width: 820px;
    margin: 0 auto 40px;
  }
}
@media only screen and (min-width: 78em) {
  .shortcut-terrasse-intro {
    margin-bottom: 60px;
  }
  .shortcut-terrasse-intro p.h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .shortcut-terrasse-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 78em) {
  .shortcut-terrasse-inner {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
  }
}
.shortcut-terrasse-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .shortcut-terrasse-item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 0 5px 0 rgba(29, 30, 35, 0);
  }
  .shortcut-terrasse-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 5px 0 rgba(29, 30, 35, 0.5);
  }
}
@media only screen and (min-width: 78em) {
  .shortcut-terrasse-item {
    width: calc(33.333% - 10px);
  }
  .shortcut-terrasse-item .shortcut-terrasse-item-top p {
    height: 185px;
  }
  .shortcut-terrasse-item.big .shortcut-terrasse-item-top p {
    height: 440px;
  }
  .shortcut-terrasse-item:last-child {
    left: 33.333%;
    top: 255px;
    position: absolute;
    z-index: 2;
  }
}
.shortcut-terrasse-item-top {
  position: relative;
  z-index: 2;
}
.shortcut-terrasse-item-top p {
  padding: 40px 40px 35px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-image: linear-gradient(121deg, #1d1e23, rgba(62, 64, 73, 0.25));
  margin: 0;
}
.shortcut-terrasse-item-top p span {
  font-size: 30px;
  font-weight: bold;
  display: block;
  margin-top: 3px;
}
.shortcut-terrasse-item-top p::after {
  content: "";
  border-radius: 2px;
  background-color: #7bbe34;
  height: 2px;
  width: 40px;
  display: block;
  margin-top: 20px;
}
.shortcut-terrasse-item-top img {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.shortcut-terrasse-item-bottom {
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 21px;
  border-radius: 0 0 5px 5px;
}
.shortcut-terrasse-item-bottom::before {
  content: "";
  height: 30px;
  width: 30px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 15px;
}
.shortcut-terrasse-item-bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  color: #1d1e23;
  text-align: center;
}
.shortcut-terrasse-item:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .shortcut-terrasse-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.shortcut-terrasse-item.new::after {
  content: "Nouveau !";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 6px 10px 5px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0f572a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #cfdc24;
  z-index: 3;
  line-height: 1;
}
.shortcut-terrasse-item.icon-arrow .shortcut-terrasse-item-bottom::before {
  background-image: url(/images/_v2/icon/icon-arrow-right.svg);
}
.shortcut-terrasse-item.icon-config .shortcut-terrasse-item-bottom::before {
  background-image: url(/images/_v2/icon/icon-config.svg);
}

.widget-news > .h2 {
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .widget-news > .h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .widget-news > .h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .widget-news > .h2 {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 48em) {
  .blog-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
}
@media only screen and (min-width: 78em) {
  .blog-list {
    max-width: 1250px;
    margin: 0 auto;
  }
}
.blog-list-item {
  border-radius: 6px;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  padding: 5px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .blog-list-item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
  .blog-list-item:hover .no-photo::before {
    opacity: 0.5;
  }
  .blog-list-item:hover .no-photo::after {
    opacity: 1;
  }
}
.blog-list-item:not(:last-child) {
  margin-bottom: 10px;
}
.blog-list-item-left {
  width: 125px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .blog-list-item-left {
    width: 200px;
  }
}
.blog-list-item-left img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.blog-list-item-tag {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 4px 5px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0f572a;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #cfdc24;
  z-index: 3;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .blog-list-item-tag {
    font-size: 12px;
    padding: 6px 10px 4px;
  }
}
.blog-list-item-right {
  width: calc(100% - 125px);
  padding: 15px 20px 5px;
}
@media only screen and (min-width: 78em) {
  .blog-list-item-right {
    padding: 15px 30px 5px;
    width: calc(100% - 200px);
  }
}
.blog-list-item-right .h3, .blog-list-item-right h2 {
  text-transform: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.11;
  font-family: "Rajdhani", Arial, sans-serif;
}
@media only screen and (min-width: 78em) {
  .blog-list-item-right .h3, .blog-list-item-right h2 {
    font-size: 22px;
    line-height: 1.27;
    margin-bottom: 28px;
  }
}
.blog-list-item-date {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #7bbe34;
  text-transform: uppercase;
  border-top: solid 1px #ebebeb;
  padding-top: 8px;
}

.link-all {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .link-all {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .link-all {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .link-all {
    margin-top: 60px;
  }
  .link-all a {
    font-size: 20px;
    padding: 17px 40px 17px;
  }
}

.site-footer {
  margin-top: 60px;
}
@media only screen and (min-width: 78em) {
  .site-footer {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .site-footer {
    margin-top: 100px;
  }
}
.site-footer-top {
  padding: 40px 4%;
  border: solid 1px #131415;
  background-color: rgba(29, 30, 35, 0.9);
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .site-footer-top {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer-top-inner {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
  }
}
@media only screen and (min-width: 90em) {
  .site-footer-top-inner {
    max-width: 1240px;
    margin: 0 auto;
  }
}
.site-footer-top-item {
  max-width: 190px;
  margin: 0 auto 60px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .site-footer-top-item {
    margin: 0 10px;
  }
}
@media only screen and (min-width: 90em) {
  .site-footer-top-item {
    margin: 0;
  }
}
.site-footer-top-item p {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.13;
  color: #ffffff;
}
@media only screen and (min-width: 48em) {
  .site-footer-top-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }
}
.site-footer-top-logos img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 48em) {
  .site-footer-top-logos img {
    margin: 0;
  }
}
.site-footer-top-logos img:first-child {
  max-width: 328px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .site-footer-top-logos img:first-child {
    margin: 0 10px 0 0;
  }
}
.site-footer-top-logos img:last-child {
  max-width: 293px;
}
.site-footer-bottom {
  padding: 40px 57px;
  border: solid 1px #131415;
  background-color: #1d1e23;
  color: #ebebeb;
}
@media only screen and (min-width: 78em) {
  .site-footer-bottom {
    padding: 60px 4%;
  }
}
@media only screen and (min-width: 90em) {
  .site-footer-bottom {
    padding: 70px 4% 80px;
  }
}
.site-footer-bottom-inner {
  max-width: 261px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .site-footer-bottom-inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 90em) {
  .site-footer-bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer-bottom-item {
    width: calc(33.333% - 15px);
  }
  .site-footer-bottom-item:last-child {
    width: 100%;
  }
}
@media only screen and (min-width: 78em) {
  .site-footer-bottom-item {
    width: calc(25% - 15px);
  }
  .site-footer-bottom-item:last-child {
    width: calc(25% - 15px);
  }
}
.site-footer-bottom-item:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .site-footer-bottom-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.site-footer-bottom-item .h4 {
  color: #ebebeb;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  font-family: "Rajdhani", Arial, sans-serif;
  margin: 0 0 20px;
}
.site-footer-bottom-item a {
  font-size: 16px;
  line-height: 2;
  color: #ebebeb;
}
.site-footer-bottom-item a:hover {
  color: #cfdc24;
}
.site-footer-bottom-item img {
  max-width: 175px;
}
.site-footer-bottom-item p {
  font-size: 16px;
  line-height: 1.57;
}
.site-footer-bottom-item p:nth-child(2) {
  font-size: 12px;
}
.site-footer-bottom-item p:last-child {
  margin-bottom: 0;
}

.signature {
  padding: 23px 37px 20px;
  border: solid 1px #131415;
  background-color: #131415;
  font-size: 14px;
  color: #ebebeb;
}
@media only screen and (min-width: 78em) {
  .signature {
    padding: 8px 4%;
  }
  .signature-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.signature a {
  color: #ebebeb;
}
.signature a:hover {
  color: #cfdc24;
}
.signature p:first-child {
  margin: 0 -15px 30px;
}
@media only screen and (min-width: 78em) {
  .signature p:first-child {
    margin: 0;
    order: 2;
  }
}
.signature p:first-child a {
  margin: 0 15px 10px;
  display: inline-block;
}
@media only screen and (min-width: 78em) {
  .signature p:first-child a {
    margin: 0 30px 0 0;
  }
  .signature p:first-child a:last-child {
    margin: 0;
  }
}
.signature p:last-child {
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .signature p:last-child {
    order: 1;
  }
}

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

	Header

*/
header {
  position: relative;
  background: #343539;
  color: #ffffff;
  z-index: 9999999;
}

.subheader {
  border: solid 1px #131415;
  background-color: #131415;
  padding: 8px 4%;
}
.subheader-inner {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 11px;
  color: #ebebeb;
}
@media only screen and (min-width: 48em) {
  .subheader-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 78em) {
  .subheader-inner {
    font-size: 13px;
  }
}
.subheader-inner a {
  color: #ebebeb;
}
@media only screen and (min-width: 48em) {
  .subheader {
    padding: 0 calc(4% - 10px) 0 4%;
    position: relative;
    z-index: 30000;
  }
  .subheader-right ul {
    display: flex;
  }
  .subheader-right ul li {
    position: relative;
  }
  .subheader-right ul li a {
    padding: 7px 10px;
    display: block;
  }
  .subheader-right ul li:hover > a {
    color: #cfdc24;
  }
  .subheader-right ul li ul.secondLevel li.active > a {
    padding-left: 30px;
  }
  .subheader-right ul li ul.secondLevel a {
    font-size: 14px;
    white-space: nowrap;
    display: block;
    width: 100%;
    padding: 5px 15px;
  }
  .subheader-right ul li ul.secondLevel a:hover {
    color: #1d1e23;
    text-decoration: underline;
  }
}
@media only screen and (min-width: 78em) {
  .subheader-right ul li a {
    font-size: 14px;
    padding: 9px 10px;
  }
}

.header {
  position: relative;
  background: #1d1e23;
}
@media only screen and (min-width: 48em) {
  .header {
    overflow: hidden;
    position: relative;
  }
  .header, .header .header-inner, .header .widget-search {
    perspective: 3000px;
    transform-style: preserve-3d;
  }
}
.header.mode-search .header-boxes-inner {
  transform-origin: 50% 0%;
  animation: rotateCubeBottomOut 0.6s both ease-in;
}
.header.mode-search .widget-search {
  transform-origin: 50% 100%;
  animation: rotateCubeBottomIn 0.6s both ease-in;
  visibility: visible;
}
@media only screen and (min-width: 48em) {
  .header.mode-search #logo {
    transform-origin: 50% 0%;
    animation: rotateCubeBottomOut 0.6s both ease-in;
  }
}
.header.mode-boxes .header-boxes-inner {
  transform-origin: 50% 0%;
  animation: rotateCubeTopIn 0.6s both ease-in;
}
.header.mode-boxes .widget-search {
  transform-origin: 50% 100%;
  animation: rotateCubeTopOut 0.6s both ease-in;
  visibility: visible;
}
@media only screen and (min-width: 48em) {
  .header.mode-boxes #logo {
    transform-origin: 50% 0%;
    animation: rotateCubeTopIn 0.6s both ease-in;
  }
}
@media only screen and (min-width: 48em) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
  }
}
@media only screen and (min-width: 78em) {
  .header-inner {
    max-width: calc(1240px + 8%);
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .header-inner {
    max-width: 1240px;
    padding: 0;
  }
}
.header-boxes {
  position: relative;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  height: 60px;
  background: #1d1e23;
  z-index: 2000;
}
@media only screen and (min-width: 48em) {
  .header-boxes {
    order: 2;
    width: 400px;
    perspective: 700px;
  }
}
@media only screen and (min-width: 78em) {
  .header-boxes {
    height: 100px;
    width: 100%;
    min-width: 400px;
    max-width: calc(100% - 391px);
  }
}
.header-boxes-inner {
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: solid 2px #131415;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 48em) {
  .header-boxes-inner {
    border-bottom: none;
  }
}
.header-boxes-inner > *:not(:last-child) {
  border-right: solid 2px #131415;
}
.header-boxes-inner > *:not(:last-child):first-child {
  border-left: solid 2px #131415;
}

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

	Sidebar

*/
.leftbar {
  display: none;
}
@media only screen and (min-width: 78em) {
  .leftbar {
    background: #323438;
    border-top: solid 1px #131415;
    border-bottom: solid 1px #131415;
    padding: 40px 0;
    min-width: 340px;
    max-width: 340px;
  }
  .leftbar #notNested {
    padding: 0 40px 37px;
  }
  .leftbar #notNested .h4-like {
    font-size: 20px;
    color: #ffffff;
    font-family: "Anton", sans-serif;
  }
  .leftbar #notNested ul {
    margin-top: 12px;
    padding-left: 10px;
  }
  .leftbar #notNested ul li a {
    font-size: 16px;
    line-height: 2;
    color: #ebebeb;
  }
  .leftbar #notNested ul li a:hover {
    color: #cfdc24;
  }
  .leftbar #notNested ul li.active a {
    font-weight: bold;
    color: #cfdc24;
    position: relative;
    padding-left: 15px;
  }
  .leftbar #notNested ul li.active a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #cfdc24;
    border-radius: 2px;
  }
}

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

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

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

	Authentification

*/
.connexion main, .mon_compte main {
  background: #eff7f8;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .connexion main, .mon_compte main {
    padding-top: 40px;
  }
}

.mon_compte .breadcrumb {
  margin-top: 0;
}
.mon_compte .subfooter {
  padding-top: 0;
}

.connexion main article {
  max-width: 975px;
  margin-bottom: 0;
}

@media only screen and (min-width: 48em) {
  .accountAuthentificationInner, .cartAuthentificationInner {
    display: flex;
    justify-content: space-between;
  }
  .accountAuthentificationInner h2, .cartAuthentificationInner h2 {
    font-size: 24px;
  }
  .accountAuthentificationInner > .bloc, .accountAuthentificationInner > .formulaire, .cartAuthentificationInner > .bloc, .cartAuthentificationInner > .formulaire {
    width: calc(50% - 10px);
  }
  .accountAuthentificationInner > .bloc input, .accountAuthentificationInner > .formulaire input, .cartAuthentificationInner > .bloc input, .cartAuthentificationInner > .formulaire input {
    height: 60px;
  }
  .accountAuthentificationInner .submit, .cartAuthentificationInner .submit {
    margin: 30px 0 0;
  }
}
.accountAuthentificationInner .connect, .cartAuthentificationInner .connect {
  margin-bottom: 15px;
}
.accountAuthentificationInner .connect span, .cartAuthentificationInner .connect span {
  position: relative;
}
.accountAuthentificationInner .connect span svg, .cartAuthentificationInner .connect span svg {
  position: absolute;
  left: 15px;
  top: 11px;
}
.accountAuthentificationInner .connect span input, .cartAuthentificationInner .connect span input {
  padding-left: 50px !important;
  margin-bottom: 0 !important;
  height: 50px;
  font-size: 16px !important;
}
.accountAuthentificationInner .submit, .cartAuthentificationInner .submit {
  margin: 10px 0 0;
}
.accountAuthentificationInner .submit input, .cartAuthentificationInner .submit input {
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 16px;
  display: inline-block;
  width: auto;
}
.accountAuthentificationInner p, .cartAuthentificationInner p {
  font-size: 14px;
  line-height: 1.57;
}

.lostPassword {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
  text-decoration: underline;
}
.lostPassword a {
  text-decoration: underline;
  font-weight: 600;
  color: #647388;
}
.lostPassword a::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 7px;
  position: relative;
  top: 3px;
  background: url("/images/_v2/icon/icon-info-grey.svg");
  background-size: 100%;
  display: inline-block;
}

.alertMail {
  font-size: 14px;
  line-height: 1.57;
}

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

	Souscription

*/
#accountSubscription .formulaire legend {
  display: none;
}

.back-account {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}
.back-account a {
  text-decoration: underline;
  font-weight: 600;
  color: #0f572a;
}

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

	Page Mon compte

*/
#accountActions ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#accountActions ul li {
  position: relative;
  width: calc(50% - 5px);
  border-radius: 10px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
}
#accountActions ul li::before {
  display: none;
}
@media only screen and (min-width: 48em) {
  #accountActions ul li {
    width: calc(33.333% - 10px);
    margin: 0 5px 10px;
  }
}
@media only screen and (min-width: 64em) {
  #accountActions ul li {
    padding: 25px;
  }
}
#accountActions ul li h2 {
  font-size: 16px;
  margin: 5px 0 0;
}
@media only screen and (min-width: 64em) {
  #accountActions ul li h2 {
    font-size: 20px;
    margin: 10px 0 0;
  }
}
#accountActions ul li svg {
  height: 60px;
}

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

	Création/Modification d'un compte utilisateur

*/
#accountModify legend {
  display: none;
}

.back-account {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}
.back-account a {
  text-decoration: underline;
  font-weight: 600;
  color: #0f572a;
}

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

	Gestion des adresses

*/
.links-adress {
  text-align: center;
  margin-top: 30px;
}

@media only screen and (min-width: 48em) {
  .listAdress {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .listAdress .address {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 64em) {
  .listAdress {
    justify-content: center;
  }
  .listAdress .address {
    width: calc(33.333% - 10px);
    margin: 0 5px 10px;
  }
}
/*--------------------------------

	Inscription à la newsletter

*/
.widgetNewsletterComment {
  margin: 0;
}

#newsletter .bloc, #newsletter .formulaire {
  margin-bottom: 40px;
}
#newsletter .formulaire {
  margin-bottom: 0;
}
#newsletter legend {
  display: none;
}
#newsletter .multi_checkbox label {
  margin: 0;
  font-weight: 400;
}

#optInRGPD {
  margin-bottom: 0 !important;
}

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

	Widget compte

*/
.widgetLogin {
  display: none;
}

.widget-account {
  width: 80px;
  height: 60px;
}
@media only screen and (min-width: 78em) {
  .widget-account {
    height: 100px;
  }
}
.widget-account a {
  background: url(/images/_v2/icon/icon-user.svg) no-repeat center;
  text-indent: -99999px;
  display: block;
  width: 100%;
  height: 100%;
}

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

	Etapes du Panier

*/
.cart-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .cart-steps {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .cart-steps {
    justify-content: space-between;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cart-steps div {
  margin: 0 10px;
  position: relative;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div {
    font-size: 12px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div {
    font-size: 14px;
  }
}
.cart-steps div::before {
  content: "";
  line-height: 44px;
  font-size: 16px;
  color: #ffffff;
  background: url("/images/_v2/icon/icon-round-green.svg") no-repeat center center;
  background-size: 100%;
  border-radius: 100px;
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div::before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 7px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.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 > span {
  line-height: 1;
  display: block;
  width: 55px;
  color: #0f572a;
}
@media only screen and (min-width: 48em) {
  .cart-steps div > span {
    line-height: 1.2;
    width: 90px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div > span {
    width: 160px;
  }
}
@media only screen and (min-width: 90em) {
  .cart-steps div > span {
    width: auto;
  }
}
.cart-steps div.active {
  color: #cfdc24;
}
.cart-steps div.active::before {
  background: url("/images/_v2/icon/icon-round-green-light.svg") no-repeat center;
  background-size: 100%;
  color: #1d1e23;
}
.cart-steps div.active span {
  color: #1d1e23;
}
.cart-steps div.active + div,
.cart-steps div.active + div + div,
.cart-steps div.active + div + div + div,
.cart-steps div.active + div + div + div + div {
  color: #cfdc24;
}
.cart-steps div.active + div::before,
.cart-steps div.active + div + div::before,
.cart-steps div.active + div + div + div::before,
.cart-steps div.active + div + div + div + div::before {
  background: url("/images/_v2/icon/icon-round-grey.svg") no-repeat center;
  background-size: 100%;
  color: #ffffff;
}
.cart-steps div.active + div span,
.cart-steps div.active + div + div span,
.cart-steps div.active + div + div + div span,
.cart-steps div.active + div + div + div + div span {
  color: #8e99a8;
}
.cart-empty + .cart-steps {
  display: none !important;
}

.finish .cart-steps div:last-child.active::before {
  background: url("/images/_v2/icon/icon-round-green.svg") no-repeat center;
  background-size: 100%;
  color: #ffffff;
}
.finish .cart-steps div:last-child.active span {
  color: #0f572a;
}

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

	Page Panier

*/
.mon_panier .breadcrumb, .mon_panier .leftbar, .mon_panier .subfooter {
  display: none;
}
.mon_panier main {
  background: #eff7f8;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .mon_panier main {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .mon_panier main {
    padding-bottom: 100px;
  }
}
.mon_panier main article {
  max-width: 975px;
  margin-bottom: 0;
}
.mon_panier .subfooter {
  padding-top: 0;
}

.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-number {
    font-size: 18px;
  }
}
.cart-form > div {
  margin: 25px 0;
}
@media only screen and (min-width: 78em) {
  .cart-form > div {
    margin: 50px 0;
  }
}
.cart-product {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.cart-product-info {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .cart-product-info {
    padding: 20px;
    padding-bottom: 10px;
  }
}
.cart-product-customised {
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.38;
  color: #0f572a;
  display: inline-block;
}
@media only screen and (min-width: 48em) {
  .cart-product-customised {
    padding: 0 20px;
  }
}
.cart-product-description {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-product-img {
  max-width: 60px;
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-img {
    margin-right: 20px;
    max-width: 90px;
  }
}
.cart-product-name a {
  font-size: 16px;
  line-height: 1.2;
  color: #0f572a;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}
.cart-product-name span {
  /*display: block;
  margin-top: 5px;*/
}
.cart-product-reference {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .cart-product-reference {
    font-size: 14;
  }
}
.cart-product-rupture {
  display: inline-block;
  margin: 10px 0;
  padding: 7px 10px 6px;
  border-radius: 5px;
  border: #f50023;
  background-color: #f50023;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}
.cart-product-variant-item {
  display: flex;
  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: 0;
    height: auto;
  }
}
.cart-product-price {
  margin-right: 0;
  text-align: right;
  font-weight: 600;
}
.cart-product-price-normal {
  font-size: 10px;
  text-decoration: line-through;
  display: block;
  color: #131415;
}
@media only screen and (min-width: 78em) {
  .cart-product-price-normal {
    font-size: 12px;
  }
}
.cart-product-price-unit {
  margin-left: 10px;
  display: block;
  font-size: 12px;
}
@media only screen and (min-width: 48em) {
  .cart-product-price-unit {
    font-size: 16px;
  }
}
.cart-product-options {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-product-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}
.cart-product-quantity input {
  padding: 10px !important;
  text-align: center;
  border-radius: 2px !important;
  border: solid 1px rgba(2, 12, 38, 0.15) !important;
  background-color: #ffffff !important;
  width: 65px;
  text-align: center;
  margin: 0 !important;
  height: 40px;
  padding: 0;
}
.cart-product-quantity svg {
  margin: 0 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity svg {
    margin: 20px;
  }
}
.cart-product-quantity span {
  font-size: 18px;
  font-weight: 600;
  color: #7bbe34;
}
.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 {
  border-left: 1px solid #ddd;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-delete {
    font-size: 12px;
    padding: 20px;
  }
}
.cart-button {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 48em) {
  .cart-button {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  .cart-button {
    margin-top: -25px !important;
  }
}
.cart-button-refresh, .cart-button-trash {
  margin: 0 5px 10px;
}
.cart-button-refresh input, .cart-button-trash input {
  font-size: 14px;
  background: #ffffff;
  border-radius: 5px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 20px center;
  padding-left: 50px;
  margin: 0;
}
.cart-button-refresh input:hover, .cart-button-trash input:hover {
  background-position: 20px center;
}
@media only screen and (min-width: 48em) {
  .cart-button-refresh input, .cart-button-trash input {
    margin: 0;
  }
}
.cart-button-refresh input {
  color: #131415;
  background-image: url("/images/_v2/commun/icon-refresh.svg");
}
.cart-button-refresh input:hover {
  background-color: rgb(249.225, 249.5, 249.775);
}
.cart-button-trash input {
  color: #f50023;
  background-image: url("/images/_v2/commun/delete.png");
}
.cart-button-trash input:hover {
  background-color: rgb(255, 245, 246.4285714286);
}
.cart-bottom-content {
  max-width: 450px;
  margin: 30px 0 30px auto;
}
.cart-shipping {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.cart-shipping-item:not(:last-child) {
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
}
.cart-shipping-item {
  position: relative;
  font-size: 14px;
  line-height: 60px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item {
    font-size: 16px;
  }
}
.cart-shipping-item > * {
  height: 65px;
  position: relative;
  display: flex;
  align-items: center;
}
.cart-shipping-item > * input[type=radio] {
  position: absolute;
  top: 28%;
  left: 12px;
  display: none;
}
.cart-shipping-item > * input[type=radio] + label {
  margin: 0;
  width: 100%;
  padding: 0 0 0 50px;
  display: block;
  line-height: 1.2;
}
.cart-shipping-item > * input[type=radio] + label .selectFdp {
  margin: 3px 0 0;
  font-weight: 400;
  color: #131415;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.cart-shipping-item > * input[type=radio] + label .selectFdp select {
  margin: 0 0 0 8px !important;
  font-size: 12px;
  height: 21px;
  background-position: calc(100% - 7px) center;
  padding: 0 21px 0 9px;
  background-size: 9px;
  font-family: Arial;
  font-weight: 400;
}
.cart-shipping-item > * input[type=radio] + label .infoFdp p {
  margin: 3px 0 0;
  font-weight: 400;
  color: #131415;
  font-size: 13px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio] + label {
    padding: 0 0 0 60px;
  }
}
.cart-shipping-item > * input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  width: 20px;
  height: 20px;
  display: block;
  color: #1d1e23;
  background: #ddd;
  border-radius: 100px;
  border: 1px solid #ddd;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio] + label::before {
    left: 20px;
  }
}
.cart-shipping-item > * input[type=radio] + label::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 60px;
  right: 0;
  z-index: 1;
}
.cart-shipping-item > * input[type=radio]:checked + label {
  color: #0f572a;
  z-index: 2;
  font-weight: bold;
}
.cart-shipping-item > * input[type=radio]:checked + label .icon {
  position: absolute;
  left: 20px;
  display: block !important;
  visibility: visible;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio]:checked + label .icon {
    left: 25px;
  }
}
.cart-shipping-item > * input[type=radio]:checked + label::before {
  border-color: #0f572a;
  background: #0f572a;
}
.cart-shipping-item-name {
  width: 100%;
}
.cart-shipping-item-amount {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 1;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item-amount {
    right: 20px;
  }
}
.cart-shipping-item.active .cart-shipping-item-amount {
  color: #0f572a;
  font-weight: bold;
}
.cart-amount {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.cart-amount-item:not(:last-child) {
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
}
.cart-amount-item {
  display: flex;
  justify-content: space-between;
  height: 40px;
  position: relative;
  align-items: center;
  font-size: 14px;
  padding: 0 20px;
}
@media only screen and (min-width: 48em) {
  .cart-amount-item {
    font-size: 16px;
    height: 50px;
  }
}
.cart-amount-item.total {
  font-size: 18px;
  height: 60px;
  color: #0f572a;
  font-weight: 600;
}
@media only screen and (min-width: 48em) {
  .cart-amount-item.total {
    font-size: 24px;
  }
}
.cart-amount-item.ordersActions_additionnal_cost {
  height: 60px;
}
.cart-amount-item.ordersActions_additionnal_cost > div:first-child > span:first-child {
  font-weight: bold;
}
.cart-amount-item.ordersActions_additionnal_cost > div:first-child > div p {
  margin: -3px 0 0;
  font-weight: 400;
  color: #131415;
  font-size: 13px;
}
.cart-coupon.bloc, .cart-coupon.formulaire {
  padding: 20px;
  max-width: 450px;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 0 auto;
}
.cart-coupon.bloc-error {
  margin: 0px 0 20px !important;
}
.cart-coupon.bloc .cart-coupon-inputs, .cart-coupon.formulaire .cart-coupon-inputs {
  display: flex;
}
.cart-coupon.bloc .cart-coupon-inputs input, .cart-coupon.formulaire .cart-coupon-inputs input {
  display: inline-block;
  padding: 5px 15px !important;
  margin: 0 10px 0 0 !important;
  height: 40px;
  max-width: 250px !important;
  font-size: 14px;
  width: auto;
}
.cart-coupon.bloc .cart-coupon-inputs input:first-child, .cart-coupon.formulaire .cart-coupon-inputs input:first-child {
  width: 100%;
  max-width: 310px !important;
}
@media only screen and (min-width: 78em) {
  .cart-coupon.bloc-current {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.cart-coupon.bloc-current .bloc, .cart-coupon.bloc-current .formulaire {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px dashed #ddd;
}
@media only screen and (min-width: 48em) {
  .cart-coupon.bloc-current .bloc, .cart-coupon.bloc-current .formulaire {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .formulaire p {
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  .cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .formulaire p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .formulaire p {
    font-size: 18px;
  }
}
.cart-coupon.bloc-current .bloc a, .cart-coupon.bloc-current .formulaire a {
  margin: 10px 0;
}
.cart .flex-center {
  justify-content: flex-end;
}
.cart .flex-center input {
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  width: auto;
  font-size: 16px;
  font-weight: bold;
}
.cart-payment-address h2 {
  line-height: 1.07;
  text-align: center;
  margin: 50px 0 25px;
}
@media only screen and (min-width: 48em) {
  .cart-payment-address h2 {
    margin: 60px 0 30px;
  }
}
.cart-payment-address .submit {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .cart-payment-address .adresses {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .cart-payment-address .adresses > * {
    width: calc(50% - 10px);
  }
}
.cart-payment-address .cart-bottom {
  margin-top: 25px !important;
}
@media only screen and (min-width: 78em) {
  .cart-payment-address .cart-content {
    margin-bottom: 0 !important;
  }
}
.cart-payment-address .cartAlternatives {
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}
.cart-payment .bloc, .cart-payment .formulaire {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-payment .bloc, .cart-payment .formulaire {
    padding-bottom: 25px;
  }
}
@media only screen and (min-width: 64em) {
  .cart-payment .bloc, .cart-payment .formulaire {
    padding-bottom: 35px;
  }
}
.cart-payment .paymentChoice {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 130px;
  text-align: center;
  margin: 0 10px 20px;
  cursor: pointer;
}
.cart-payment label {
  padding-top: 100px;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  min-width: 130px;
  cursor: pointer;
}
.cart-payment label::before {
  content: "";
}
.cart-payment label[for=modscheques] {
  background: url(/images/_v2/commun/payment/icone-paiement-cheques.png) no-repeat top;
}
.cart-payment label[for=modstelephone] {
  background: url(/images/_v2/commun/payment/icone-paiement-telephone.png) no-repeat top;
}
.cart-payment label[for=modspaypal] {
  background: url(/images/_v2/commun/payment/icone-paiement-paypal.png) no-repeat top;
}
.cart-payment label[for=modsnopayment] {
  background: url("/images/_v2/commun/payment/icone-paiement-nopayment.png") no-repeat top;
}
.cart-payment label[for=modspayline], .cart-payment label[for=modspayline4] {
  background: url("/images/_v2/commun/payment/icone-paiement-banque.png") no-repeat top;
}
.cart-payment input[type=radio] {
  float: none;
  margin: 10px 0 0;
  cursor: pointer;
}
.cart-authentification > * {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .cart-authentification > * {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .cart-authentification > .row {
    display: flex;
    align-items: center;
  }
}
.cart-confirmation h2.toggleTitle {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -30px;
  margin-right: -30px;
  font-size: 22px;
  background: #F6F6F6;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle:hover {
  background: #ddd;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle:not(.tab-open) + .cart-confirmation-tab {
  display: none;
}
.cart-confirmation h2.toggleTitle.tab-open {
  background: #ddd;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle.tab-open span {
  transform: rotate(90deg);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle span.icon {
  position: absolute;
  right: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation .cart-confirmation-tab {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cart-confirmation textarea {
  max-width: 100%;
}

#validCommand {
  font-size: 14px;
  display: flex;
  padding: 15px;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(210, 212, 213, 0.75);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  font-weight: bold;
}
#validCommand .condition_field {
  float: left;
  margin-right: 20px;
}
#validCommand .condition_field input {
  margin: 0;
}
#validCommand p {
  margin: 0;
  line-height: 1.2;
}

.invalidOrder {
  background: rgba(202, 0, 71, 0.2);
  border: 1px solid #CA0047;
  border-radius: 5px;
  padding: 40px 20px;
}
.invalidOrder h2 {
  margin-top: 0;
  text-align: center;
}
.invalidOrder p {
  margin-bottom: 0;
}

#customer_message textarea {
  background: #ffffff;
}

#creaCompte {
  text-align: center;
}

input[name=newsletter] {
  margin-top: 10px;
}

.modifyAdress-row > .modifyAdress:last-child:not(:first-child) {
  margin-top: 5px;
}
@media only screen and (min-width: 78em) {
  .modifyAdress-row {
    display: flex;
    justify-content: space-between;
  }
  .modifyAdress-row > .modifyAdress:last-child:not(:first-child) {
    margin-top: 25px;
  }
  .modifyAdress-row > * {
    width: calc(50% - 8px);
  }
}

#manage_address {
  margin-top: 20px;
}

#adresseselectionform {
  margin-bottom: 50px;
}

.adress-list {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .adress-list {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 30px;
  }
  .adress-list > .bloc, .adress-list > .formulaire {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}
@media only screen and (min-width: 78em) {
  .adress-list {
    margin-top: 0;
  }
  .adress-list > .bloc, .adress-list > .formulaire {
    width: calc(33.333% - 10px);
  }
}
.adress-list-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
}

.modifyAdress {
  margin-top: 25px;
  display: block;
}
.modifyAdress a {
  background: #ffffff;
  border-radius: 5px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f572a;
  font-size: 16px;
}
.modifyAdress a svg {
  margin-right: 10px;
}

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

@media only screen and (min-width: 48em) {
  #cart_payment_confirmation .adresses {
    display: flex;
    justify-content: space-between;
  }
  #cart_payment_confirmation .adresses > .address {
    width: calc(50% - 12px);
  }
}

.cart-steps + .bloc, .cart-steps + .formulaire, .cart-steps + .panierInner {
  margin-top: 25px;
}

.thanks.mb15 {
  margin: 0 !important;
}
.thanks.mb15 > h2 {
  margin-top: 0;
}

.cart-empty-text {
  line-height: 1.2;
}

.cart-subscription h2, #manage_address h2 {
  margin-top: 0;
  text-align: center;
}

#adresseselectionvalidationform {
  margin-top: 30px;
}

.modifyAddress {
  display: block;
  line-height: 1.2;
  margin-top: 10px;
}

@media only screen and (min-width: 48em) {
  #currentAddress .row {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  #currentAddress .row > * {
    width: calc(50% - 10px);
  }
}

#adresseselectionform label {
  font-weight: bold;
}
#adresseselectionform .submit {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  #adresseselectionform .submit {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 48em) {
  .carnet_adresse {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .carnet_adresse > .bloc, .carnet_adresse > .formulaire {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 64em) {
  .carnet_adresse {
    justify-content: flex-start;
    margin: 0 -5px;
  }
  .carnet_adresse > .bloc, .carnet_adresse > .formulaire {
    width: calc(33.333% - 10px);
    margin: 0 5px;
  }
}
.carnet_adresse address {
  margin: 10px 0;
}
.carnet_adresse .btn-empty {
  padding: 8px 21px 7px;
  font-size: 16px;
}

.cart-bottom-content + .lostPassword {
  text-align: right;
  margin: 0;
}

#payment_actions {
  text-align: center;
}
#payment_actions .table-responsive {
  margin-bottom: 40px !important;
}
#payment_actions .btn-full, #payment_actions input[type=submit], #payment_actions .cart .flex-center input, .cart .flex-center #payment_actions input {
  margin-bottom: 20px;
}
#payment_actions .table-responsive + .btn-empty {
  margin-top: 20px;
}

.paylineLink {
  margin-top: 30px;
}

#payment_infos > h3 {
  text-align: center;
}
#payment_infos .table-responsive > table {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  margin-top: 20px;
}

#cart_payment_confirmation .cartAlternatives {
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}

.cart-shipping .cart-shipping-item:first-child .cart-shipping-item-amount {
  height: 38px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping .cart-shipping-item:first-child .cart-shipping-item-amount {
    height: 65px;
  }
}

.cart-shipping-item > * input[type=radio] + label .selectFdp {
  margin-top: 6px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio] + label .selectFdp {
    margin-top: 3px;
  }
}

.mon_panier .widgetProduct {
  display: none;
}
.mon_panier .widgetProduct > .h2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}
@media only screen and (min-width: 78em) {
  .mon_panier .widgetProduct > .h2 {
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
.mon_panier .widgetProduct .widgetContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 48em) {
  .mon_panier .widgetProduct .short_product:last-child {
    display: none;
  }
}
@media only screen and (min-width: 90em) {
  .mon_panier .widgetProduct .short_product:last-child {
    display: block;
  }
}

.cart-first-step.mon_panier .widgetProduct {
  display: block;
}

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

	Ajout au Panier

*/
#overDiv.od_ad_to_cart {
  position: fixed !important;
  z-index: 9999 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh !important;
  visibility: visible !important;
}

#overlibheader, #overlibcontent, #overlibfooter {
  width: 100%;
  max-width: 375px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1.2;
}
#overlibheader {
  margin-top: -145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #0f572a;
}
#overlibcontent {
  height: 260px;
  padding: 30px 20px;
}
#overlibcontent .link-add-to-cart {
  display: flex;
  flex-direction: column;
  text-align: center;
}
#overlibcontent p {
  padding: 5px 0px 4px 85px;
  background: url(/images/_v2/icon/icon-added-to-cart.svg) no-repeat 10px 50%;
  background-size: 50px;
  font-size: 14px;
  margin-bottom: 30px;
}
#overlibcontent p br {
  display: none;
}
#overlibcontent p strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
#overlibcontent a {
  line-height: 1;
}
#overlibcontent a:first-child {
  margin-bottom: 10px;
}
#overlibfooter {
  margin-top: 145px;
  padding: 10px 20px;
  border-radius: 0 0 5px 5px;
}

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

	Widget panier

*/
.widget-cart {
  position: relative;
  min-width: 80px;
  width: auto;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
@media only screen and (min-width: 78em) {
  .widget-cart {
    height: 100px;
    min-width: 80px;
  }
}
.widget-cart-left {
  width: 20px;
  height: 20px;
  background: url(/images/_v2/icon/icon-cart.svg) no-repeat center;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .widget-cart-left {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
}
.widget-cart-left .product-number {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -10px;
  right: -8px;
  background-color: #cfdc24;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  line-height: 0.83;
  text-align: center;
  color: #1d1e23;
  padding-top: 3px;
}
@media only screen and (min-width: 78em) {
  .widget-cart-left .product-number {
    width: 20px;
    height: 20px;
    font-size: 14px;
    padding-top: 4px;
    top: -19px;
    right: -17px;
  }
}
.widget-cart-right {
  margin-left: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
@media only screen and (min-width: 78em) {
  .widget-cart-right {
    margin-left: 20px;
    font-size: 18px;
  }
}

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

	Familles du catalogue

*/
.ru_family .bloc-tri-item.sort-results {
  display: none;
}
.ru_family .catalog-content {
  padding-top: 30px;
}
@media only screen and (min-width: 78em) {
  .ru_family .catalog-content {
    padding-top: 50px;
  }
}

@media only screen and (min-width: 48em) {
  .family-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
}
.family-list-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .family-list-item {
    width: calc(50% - 40px);
    margin: 0 20px 20px;
  }
  .family-list-item:hover .no-photo::before {
    opacity: 0.5;
  }
  .family-list-item:hover .no-photo::after {
    opacity: 1;
  }
}
@media only screen and (min-width: 64em) {
  .family-list-item {
    width: calc(33.333% - 40px);
  }
}
@media only screen and (min-width: 78em) {
  .family-list-item {
    margin-bottom: 40px;
  }
}
.family-list-item-picture {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  overflow: hidden;
}
.family-list-item-picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.family-list-item h2 {
  width: calc(100% - 120px);
  padding-left: 20px;
  margin: 0;
  font-size: 20px;
  color: #1d1e23;
  text-transform: uppercase;
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: bold;
}
.family-list-item h2::after {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #7bbe34;
  width: 40px;
  height: 2px;
  margin-top: 10px;
}

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

	Produits listing

*/
.catalogProductsList .leftbar {
  display: block;
}
.catalogProductsList #notNested {
  display: none;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList #notNested {
    display: block;
  }
}
.catalogProductsList main {
  padding: 0;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList main {
    display: flex;
    background: #eff7f8;
  }
}
.catalogProductsList main article {
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.catalogProductsList .breadcrumb {
  padding: 0 4%;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .breadcrumb {
    padding: 40px 4% 20px;
    margin: 0;
    background: white;
  }
}
@media only screen and (min-width: 90em) {
  .catalogProductsList .breadcrumb {
    padding: 40px 105px 20px;
  }
}
@media only screen and (min-width: 120em) {
  .catalogProductsList .breadcrumb {
    padding: 40px 6.7% 20px;
  }
}
.catalogProductsList .subfooter {
  display: none;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList h1 {
    margin-bottom: 20px;
  }
}

.no_product_found {
  font-size: 20px;
}

.catalog-intro {
  padding: 0 4%;
}
@media only screen and (min-width: 78em) {
  .catalog-intro {
    background: #ffffff;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .catalog-intro {
    padding: 0 105px 30px;
  }
  .catalog-intro-inner {
    max-width: 1135px;
  }
}
@media only screen and (min-width: 120em) {
  .catalog-intro {
    padding: 0 6.7% 30px;
  }
}

@media only screen and (min-width: 78em) {
  .bloc-tri {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
@media only screen and (min-width: 78em) {
  .bloc-tri-item:first-child {
    display: flex;
  }
}
.bloc-tri-item.sort-results {
  padding: 15px 4%;
  border: solid 1px #131415;
  background-color: #323438;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px -4.3% 0;
}
@media only screen and (min-width: 78em) {
  .bloc-tri-item.sort-results {
    background: none;
    padding: 0;
    border: none;
    margin: 0;
    position: absolute;
    right: 0;
    top: -70px;
  }
}
.bloc-tri-item.sort-results .filtre-mobile-open {
  padding: 6px 15px 0 40px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.25);
  background-color: #1d1e23;
  background-image: url(/images/_v2/icon/icon-filter.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  height: 40px;
  cursor: pointer;
}
.bloc-tri-item.sort-results .filtre-mobile-open:first-child:last-child {
  display: none;
}
@media only screen and (min-width: 78em) {
  .bloc-tri-item.sort-results .filtre-mobile-open {
    display: none;
  }
}
.bloc-tri-item.sort-results #sort_form {
  width: calc(100% - 114px);
  margin-left: 15px;
  max-width: 260px;
}
@media only screen and (min-width: 78em) {
  .bloc-tri-item.sort-results #sort_form {
    margin: 0;
    width: 100%;
  }
}
.bloc-tri-item.sort-results #sort_value {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #1d1e23;
  padding: 0 42px 0 20px;
  border-radius: 6px;
  border: solid 1px rgba(29, 30, 35, 0.2);
  background-color: #ebebeb;
  background-image: url(/images/_v2/icon/icon-chevron-bottom-black.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 17px) center;
  height: 40px;
}
@media only screen and (min-width: 78em) {
  .bloc-tri-item.sort-results #sort_value {
    height: 50px;
  }
}

.product-counter {
  font-size: 14px;
  font-weight: 600;
  color: #1d1e23;
  margin-bottom: 15px;
}
.product-counter:empty {
  display: none;
}
@media only screen and (min-width: 78em) {
  .product-counter {
    margin: 7px 20px 5px 0;
    white-space: nowrap;
    font-size: 16px;
  }
}
.product-counter::after {
  content: url(/images/_v2/icon/icon-chevron-right-black.svg);
  transform: rotate(90deg);
  margin-left: 10px;
  display: inline-block;
}
@media only screen and (min-width: 78em) {
  .product-counter::after {
    transform: none;
  }
}

.catalog-content {
  padding: 20px 4% 60px;
  background: #eff7f8;
}
@media only screen and (min-width: 78em) {
  .catalog-content {
    padding: 40px 4% 60px;
  }
}
@media only screen and (min-width: 90em) {
  .catalog-content {
    padding: 40px 105px 80px;
  }
  .catalog-content-inner {
    max-width: 1135px;
  }
}
@media only screen and (min-width: 120em) {
  .catalog-content {
    padding: 40px 6.7% 80px;
  }
}

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

.family-presentation {
  margin-top: 50px;
  font-size: 16px;
}
.family-presentation:empty {
  display: none;
}
> .family-presentation:last-child {
  margin-bottom: 0;
}

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

	Filter

*/
#boxFiltre {
  position: fixed;
  left: -100vw;
  top: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: #323438;
  z-index: 999999;
  color: #ffffff;
  padding: 60px 4%;
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  max-height: 100vh;
}
@media only screen and (min-width: 78em) {
  #boxFiltre {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: 340px;
    min-width: 340px;
    overflow: hidden;
    border-top: solid 1px #131415;
    padding: 37px 40px;
    height: auto;
  }
}
#boxFiltre.open-filtre {
  left: 0;
}
#boxFiltre .formulaire {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.content-filtre-selection {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.content-filtre-selection:empty {
  display: none;
}
.content-filtre-selection a:not(.enleverFiltre) {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  color: #1d1e23;
  padding: 10px 30px 9px 10px;
  border-radius: 5px;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  display: inline-block;
  margin: 0 5px 10px;
  position: relative;
}
.content-filtre-selection a:not(.enleverFiltre)::after {
  position: absolute;
  top: 10px;
  right: 10px;
  content: url(/images/_v2/icon/icon-cross-black.svg);
}
.content-filtre-selection a.enleverFiltre {
  font-size: 16px;
  line-height: 1.13;
  color: #ff0000;
  max-width: 94px;
  margin: 0 0 10px 15px;
  display: inline-block;
}
@media only screen and (min-width: 78em) {
  .content-filtre-selection a.enleverFiltre {
    max-width: 165px;
    margin-left: 20px;
    margin-top: 9px;
    white-space: nowrap;
  }
}

.box-filtre-titre {
  font-size: 20px;
  color: #ffffff;
  font-family: "Anton", sans-serif;
  max-width: 450px;
  margin: 0 auto 20px;
}
.box-filtre-inner {
  max-width: 450px;
  margin: 0 auto;
}
.box-filtre label.inline {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.box-filtre .submit {
  display: none;
}
.box-filtre .fieldGroup {
  margin-bottom: 40px;
}
.box-filtre .group_multi_checkbox .multi_checkbox {
  margin-bottom: 15px;
}
.box-filtre .group_multi_checkbox .multi_checkbox:last-child {
  margin-bottom: 0;
}
.box-filtre .group_multi_checkbox .multi_checkbox input {
  display: none;
}
.box-filtre .group_multi_checkbox .multi_checkbox label {
  cursor: pointer;
  display: block;
  font-size: 16px;
  color: #ebebeb;
  display: flex;
  align-items: center;
  line-height: 1;
}
.box-filtre .group_multi_checkbox .multi_checkbox label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  margin-right: 15px;
}
.box-filtre .group_multi_checkbox .multi_checkbox label .total {
  display: none;
}
.box-filtre .group_multi_checkbox .multi_checkbox input[checked=checked] + label {
  font-weight: bold;
  color: #cfdc24;
}
.box-filtre .group_multi_checkbox .multi_checkbox input[checked=checked] + label::before {
  background-color: #cfdc24;
  content: url(/images/_v2/icon/icon-check-black.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.box-filtre select {
  font-size: 16px;
  padding: 11px 42px 11px 20px;
  background-image: url(/images/_v2/icon/icon-chevron-bottom-white.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 17px) center;
  margin-bottom: 0;
  border-radius: 6px;
  border: solid 2px rgba(255, 255, 255, 0.2);
  background-color: #1d1e23;
  color: #ebebeb;
  max-width: 260px;
}
.box-filtre .content-filtre-selection {
  max-width: 460px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .box-filtre .content-filtre-selection {
    display: none;
  }
}
.box-filtre .content-filtre-selection a.enleverFiltre {
  color: #cfdc24;
}
.box-filtre form > fieldset > .enleverFiltre {
  color: #cfdc24;
  font-weight: bold;
  text-align: center;
}

.filtre-mobile-close {
  position: absolute;
  background-image: url(/images/_v2/icon/icon-cross-white.svg);
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 2px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  background-color: #1d1e23;
}
@media only screen and (min-width: 78em) {
  .filtre-mobile-close {
    display: none;
  }
}

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

	Produit

*/
.catalogProductDetail main {
  padding: 0;
}
.catalogProductDetail main article {
  max-width: 100%;
  margin: 0;
}
.catalogProductDetail #product .first-part, .catalogProductDetail #product .scnd-part {
  padding: 0 4%;
}
.catalogProductDetail .first-part {
  background: #ffffff;
  margin-bottom: 20px;
}
.catalogProductDetail .first-part-inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail .first-part {
    margin-bottom: 50px;
  }
}
.catalogProductDetail .scnd-part {
  background: #eff7f8;
}
.catalogProductDetail .breadcrumb {
  padding: 0 4%;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail .breadcrumb {
    max-width: calc(1240px + 8%);
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 90em) {
  .catalogProductDetail .breadcrumb {
    padding: 0;
    max-width: 1240px;
  }
}
.catalogProductDetail .catalog {
  display: none;
}

@media only screen and (min-width: 48em) {
  #product .product-intro {
    display: flex;
    justify-content: space-between;
  }
  #product .product-intro-item {
    width: calc(50% - 20px);
    max-width: 510px;
  }
  #product .product-intro-item:first-child {
    order: 2;
  }
  #product .product-intro-item:last-child {
    order: 1;
  }
}
#product .product-intro-picture {
  margin: 40px 0 30px;
}
#product .product-intro-picture a {
  position: relative;
  z-index: 9999;
}
@media only screen and (min-width: 48em) {
  #product .product-intro-picture {
    margin: 0;
  }
}
@media only screen and (min-width: 64em) {
  #product .product-intro-picture {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 78em) {
  #product .product-intro-picture {
    margin-bottom: 150px;
  }
}
#product .product-intro-picture-principale, #product .product-intro-picture-addi-item {
  border-radius: 5px;
  border: solid 1px #ebebeb;
  overflow: hidden;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
}
#product .product-intro-picture-principale a, #product .product-intro-picture-addi-item a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#product .product-intro-picture-principale a img, #product .product-intro-picture-addi-item a img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#product .product-intro-picture-principale {
  height: 245px;
  margin-bottom: 12px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #product .product-intro-picture-principale {
    height: 375px;
  }
}
#product .product-intro-picture-principale .promo {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 18px 14.5px 16px;
  border-radius: 5px;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #0f572a;
  line-height: 1.3;
  z-index: 3;
}
#product .product-intro-picture-principale .novelty {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px 4px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0f572a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #cfdc24;
  z-index: 3;
  line-height: 1;
}
#product .product-intro-picture-principale .rupture {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px 6px;
  border-radius: 5px;
  border: #f50023;
  background-color: #f50023;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  z-index: 3;
  line-height: 1;
}
#product .product-intro-picture-principale .mise-en-avant {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 10px 5px;
  border-radius: 5px;
  border: 1px solid #000;
  background-color: #FFF64C;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  z-index: 3;
  line-height: 1;
}
#product .product-intro-picture-addi {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
#product .product-intro-picture-addi-item {
  width: calc(33.333% - 10px);
  margin: 0 5px 10px;
  height: 80px;
  background: #ffffff;
}
@media only screen and (min-width: 48em) {
  #product .product-intro-picture-addi-item {
    height: 130px;
  }
}
#product .product-intro .reference {
  font-size: 18px;
  color: rgba(29, 30, 35, 0.5);
}
#product .product-intro .short-desc {
  margin: 20px 0 10px;
}
#product .product-intro .short-desc > *:first-child {
  margin-top: 0;
}
#product .product-intro .short-desc > *:last-child {
  margin-bottom: 0;
}
#product .product-intro .price {
  font-size: 30px;
  color: #0f572a;
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin: 40px 0 0;
}
#product .product-intro .price .old_price {
  font-size: 20px;
  color: rgba(29, 30, 35, 0.5);
  text-decoration: line-through;
  margin-right: 20px;
}
#product .product-intro .price .tva {
  font-size: 15px;
  color: #0f572a;
  font-family: "Rajdhani", Arial, sans-serif;
  margin-left: 8px;
}
@media only screen and (min-width: 78em) {
  #product .product-intro .add-to-cart {
    display: flex;
    align-items: center;
  }
}
#product .product-intro .addToCart {
  display: flex;
  margin: 20px 0 15px;
}
@media only screen and (min-width: 78em) {
  #product .product-intro .addToCart {
    margin-right: 30px;
  }
}
#product .product-intro .addToCart input.add_to_cart_quantity {
  width: 60px;
  height: 60px;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  border: solid 1px #131415;
  background-color: #1d1e23;
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", Arial, sans-serif;
}
#product .product-intro .addToCart .btn-full, #product .product-intro .addToCart input[type=submit], #product .product-intro .addToCart .cart .flex-center input, .cart .flex-center #product .product-intro .addToCart input {
  border-radius: 0 5px 5px 0;
  height: 60px;
  padding: 20px 30px;
  line-height: 1;
  text-align: left;
}
@media only screen and (min-width: 22.5em) {
  #product .product-intro .addToCart .btn-full, #product .product-intro .addToCart input[type=submit], #product .product-intro .addToCart .cart .flex-center input, .cart .flex-center #product .product-intro .addToCart input {
    padding: 20px 40px;
    white-space: nowrap;
  }
}
#product .product-intro .qte_au_m2 {
  text-transform: uppercase;
  color: #0f572a;
  font-weight: bold;
  margin-bottom: 20px;
}
#product .product-intro .logo-reassu {
  margin: 40px 0;
  max-width: 471px;
  width: 100%;
}
@media only screen and (min-width: 64em) {
  #product .product-intro .logo-reassu {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 78em) {
  #product .product-intro .logo-reassu {
    margin-top: 20px;
    margin-bottom: 115px;
  }
}
@media only screen and (min-width: 90em) {
  #product .product-intro .logo-reassu {
    margin-bottom: 167px;
  }
}

.more-desc a {
  font-size: 14px;
  text-decoration: underline;
  padding-right: 20px;
  background: url(/images/_v2/icon/icon-chevron-right.svg) no-repeat right 7px;
}

.product-variantes {
  margin: 30px 0;
}
.product-variantes p {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
}
.product-variantes select {
  margin: 0;
  width: auto;
  font-size: 16px;
  font-weight: bold;
  color: #1d1e23;
  padding: 0 42px 0 20px;
  border-radius: 6px;
  border: solid 1px rgba(29, 30, 35, 0.2);
  background-color: #ebebeb;
  background-image: url(/images/_v2/icon/icon-chevron-bottom-black.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 17px) center;
  height: 50px;
  min-width: 290px;
}
@media only screen and (min-width: 78em) {
  .product-variantes select {
    min-width: 450px;
  }
}
.product-variantes + .add-to-cart .addToCart {
  margin-top: 0 !important;
}

.info-stock-delai {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .info-stock-delai {
    font-size: 16px;
  }
}
.info-stock-delai > * {
  padding-left: 27px;
  background-repeat: no-repeat;
  background-position: left center;
}
.info-stock-delai .rupture {
  color: #f50023;
  background-image: url(/images/_v2/icon/icon-cross-red.svg);
}
.info-stock-delai .en-stock {
  color: #7bbe34;
  background-image: url(/images/_v2/icon/icon-check.svg);
}
.info-stock-delai .rupture + .en-stock {
  display: none;
}
.info-stock-delai .delai {
  background-image: url(/images/_v2/icon/icon-delivery-black.svg);
  line-height: 1;
  margin-top: 5px;
}

.product-desc h3 {
  text-transform: none;
}
@media only screen and (min-width: 64em) {
  .product-desc h3 {
    margin: 40px 0 20px;
  }
  .product-desc h3 + ul {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 64em) {
  .product-desc {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .product-desc-title {
    max-width: 630px;
    padding-right: 125px;
  }
}
.product-desc-title > h2 span {
  display: block;
  font-size: 14px;
  color: #1d1e23;
  font-family: "Rajdhani", Arial, sans-serif;
  margin-top: 5px;
}
@media only screen and (min-width: 64em) {
  .product-desc-left {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
}
.product-desc-left-inner {
  background: #eff7f8;
  padding: 20px 0 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 64em) {
  .product-desc-left-inner {
    padding-bottom: 0;
    max-width: 630px;
    padding-right: 80px;
    width: 100%;
  }
}
@media only screen and (min-width: 78em) {
  .product-desc-left-inner {
    max-width: 630px;
    padding-right: 125px;
    padding-top: 50px;
  }
}
.product-desc-left-inner > *:first-child {
  margin-top: 0;
}
.product-desc-left-inner > *:last-child {
  margin-bottom: 0;
}

.bloc-image {
  background: url(/images/_v2/img/fond-bloc-image.jpg) no-repeat center, #1d1e23;
  background-blend-mode: multiply;
  background-size: cover;
  margin: 0 -4.3%;
  padding: 40px 4%;
  color: #ffffff;
}
.bloc-image a {
  background-image: none !important;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bloc-image a:hover {
  transform: scale(1.05);
}
@media only screen and (min-width: 48em) {
  .bloc-image-inner {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 64em) {
  .bloc-image {
    margin-left: 0;
    margin-top: -100px;
    border-radius: 5px 0 0 5px;
    min-height: 600px;
    max-height: 712px;
    display: flex;
    align-items: center;
    width: 54.3%;
  }
}
@media only screen and (min-width: 78em) {
  .bloc-image {
    margin-right: -4.4%;
    margin-top: -175px;
  }
}
@media only screen and (min-width: 90em) {
  .bloc-image {
    padding-left: 105px;
  }
  .bloc-image-inner {
    margin: 0;
  }
}
.bloc-image > *:first-child {
  margin-top: 0;
}
.bloc-image > *:last-child {
  margin-bottom: 0;
}
.bloc-image .h2 {
  color: #ffffff;
}
.bloc-image ul {
  margin: 20px 0 40px;
}
@media only screen and (min-width: 64em) {
  .bloc-image ul {
    margin-top: 40px;
  }
}
.bloc-image ul li {
  padding: 0;
}
.bloc-image ul li::before {
  display: none;
}
.bloc-image ul li a {
  border-radius: 5px;
  background-color: #ffffff;
  display: flex;
  overflow: hidden;
}
.bloc-image ul li a span:first-child {
  width: 60px;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  display: flex;
  justify-content: center;
  align-content: center;
}
@media only screen and (min-width: 64em) {
  .bloc-image ul li a span:first-child {
    width: 80px;
  }
}
.bloc-image ul li a span:first-child img {
  max-width: 30px;
}
@media only screen and (min-width: 64em) {
  .bloc-image ul li a span:first-child img {
    max-width: 40px;
  }
}
.bloc-image ul li a span:nth-child(2) {
  padding: 12px 40px 12px 20px;
  width: calc(100% - 60px);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  color: #1d1e23;
  border: solid 1px rgba(15, 87, 42, 0.1);
  background: url(/images/_v2/icon/icon-chevron-right-black.svg) no-repeat calc(100% - 15px) center;
  min-height: 60px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .bloc-image ul li a span:nth-child(2) {
    width: calc(100% - 80px);
    padding: 12px 50px 12px 20px;
    min-height: 80px;
  }
}

.conseil-product {
  max-width: 1240px;
  margin: 60px auto 0;
  border: solid 1px #ebebeb;
  overflow: hidden;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
  padding: 20px;
  background: white;
}
@media only screen and (min-width: 48em) {
  .conseil-product {
    padding: 30px;
  }
}
@media only screen and (min-width: 64em) {
  .conseil-product {
    padding: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .conseil-product {
    margin: 80px auto;
    padding: 60px 90px;
  }
}
@media only screen and (min-width: 90em) {
  .conseil-product {
    margin: 100px auto;
    padding: 75px 120px;
  }
}

.video-product {
  background: #eff7f8;
  position: relative;
  text-align: center;
  margin: 60px auto 0;
  max-width: 1240px;
}
@media only screen and (min-width: 78em) {
  .video-product {
    margin: 80px auto;
  }
}
@media only screen and (min-width: 90em) {
  .video-product {
    margin: 100px auto;
  }
}
.video-product .video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-product .video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  margin: 0;
}
.video-product > h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .video-product > h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

.associated_products {
  background: #eff7f8;
  position: relative;
  margin-top: 60px;
}
@media only screen and (min-width: 48em) {
  .associated_products_list:not(.slick-slider) {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 78em) {
  .associated_products {
    margin-top: 80px;
  }
  .associated_products .associated_products_list {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .associated_products {
    margin-top: 100px;
  }
  .associated_products + .link-all {
    margin-top: 60px;
  }
}
.associated_products > h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .associated_products > h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .associated_products > h2 {
    margin-bottom: 60px;
  }
}

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

	Produit Configurateur

*/
.catalogProductDetail.configurateur .link-all {
  display: none;
}
.catalogProductDetail.configurateur .addToCart {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail.configurateur .addToCart {
    margin-top: 40px;
  }
}
.catalogProductDetail.configurateur .addToCart a {
  line-height: 1;
}
.catalogProductDetail.configurateur .info-stock-delai {
  margin: 20px 0 30px;
  text-align: left;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail.configurateur .info-stock-delai {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .catalogProductDetail.configurateur #page {
    background: #eff7f8;
  }
  .catalogProductDetail.configurateur #product .first-part {
    margin: 0;
    padding: 40px 4%;
  }
}
.catalogProductDetail.configurateur h1 {
  margin-bottom: 20px;
  max-width: 610px;
  padding: 0 4%;
}
@media only screen and (min-width: 48em) {
  .catalogProductDetail.configurateur h1 {
    padding: 0;
  }
}
.catalogProductDetail.configurateur #product .product-intro {
  padding: 0 4%;
}
.catalogProductDetail.configurateur #product .product-intro-picture {
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .catalogProductDetail.configurateur #product .product-intro {
    max-width: calc(1240px + 8%);
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .catalogProductDetail.configurateur #product .product-intro {
    max-width: 1240px;
    padding: 0;
  }
}

.calc-blue, .calc-white, .intro {
  padding: 0 4%;
}
.calc-blue-inner, .calc-white-inner, .intro-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.product-intro {
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .product-intro {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
}
.product-intro p {
  margin: 0 0 5px;
  line-height: 1.33;
}
.product-intro .more-desc {
  line-height: 1.3;
}

.calc-blue {
  background: #eff7f8;
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
  margin: 20px -4% 0;
}
@media only screen and (min-width: 48em) {
  .calc-blue {
    padding-top: 0;
    margin-top: 30px;
    padding-bottom: 45px;
  }
}

.calc-white {
  background: #ffffff;
}

.calc-black {
  background-color: #1d1e23;
  color: #ffffff;
  margin: 0 -4.4%;
  padding: 30px 4% 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .calc-black:not(.calculated) {
    background: none;
    color: #1d1e23;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .calc-black:not(.calculated) {
    padding: 0;
    margin: 40px 0 100px;
  }
}
.calc-black::before {
  content: "";
  position: absolute;
  left: 0;
  top: -21px;
  width: 100%;
  height: 21px;
  background: url(/images/_v2/shape/triangle-bottom-black.svg) no-repeat center;
  background-size: cover;
}
@media only screen and (min-width: 48em) {
  .calc-black::before {
    display: none;
  }
}
.calc-black.calculated {
  padding-bottom: 50px;
  padding-top: 38px;
}
@media only screen and (min-width: 48em) {
  .calc-black.calculated {
    border-radius: 5px 0 0 5px;
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .calc-black.calculated {
    padding: 40px;
  }
}
.calc-black.calculated a {
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
}
.calc-black.calculated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 21px;
  background: url(/images/_v2/shape/triangle-bottom-white.svg) no-repeat center;
  background-size: cover;
}
@media only screen and (min-width: 48em) {
  .calc-black.calculated::after {
    background: url(/images/_v2/shape/triangle-left-black.svg) no-repeat right center;
    right: -21px;
    left: auto;
    top: 0;
    height: 100%;
    width: 21px;
    background-size: auto 100%;
  }
}
.calc-black.calculated .calc-black-item:not(:last-child) {
  margin-bottom: 20px;
}

@media only screen and (min-width: 64em) {
  #formCalc {
    max-width: 780px;
    margin: 0 auto;
  }
}
#formCalc .field-calc {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  #formCalc .field-calc {
    margin-bottom: 20px;
  }
}
#formCalc .field-calc.surface input {
  background-image: url(/images/_v2/icon/icon-measure.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 59px !important;
}
#formCalc .field-calc label:not(.dd-selected-text) {
  font-size: 14px;
  font-weight: bold;
  color: #1d1e23;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
#formCalc .field-calc select, #formCalc .field-calc input {
  margin: 0;
  background: #ffffff;
  font-weight: bold;
  width: 100%;
}
#formCalc .field-calc .dd-container {
  width: 100% !important;
  position: relative;
}
#formCalc .field-calc .dd-container .dd-select {
  border-radius: 6px !important;
  border: solid 1px rgba(29, 30, 35, 0.2);
  background-color: #ffffff !important;
  width: 100% !important;
}
#formCalc .field-calc .dd-container .dd-selected, #formCalc .field-calc .dd-container .dd-option {
  display: flex;
  padding: 3px;
  align-items: center;
  cursor: pointer;
}
#formCalc .field-calc .dd-container .dd-selected:hover, #formCalc .field-calc .dd-container .dd-option:hover {
  background: #eff7f8;
}
#formCalc .field-calc .dd-container .dd-selected {
  background: url(/images/_v2/icon/icon-chevron-bottom-black.svg) no-repeat;
  background-position: calc(100% - 20px) center;
}
#formCalc .field-calc .dd-container .dd-selected-text, #formCalc .field-calc .dd-container .dd-option-text {
  line-height: 1 !important;
  margin: 0;
  font-size: 16px;
  color: #1d1e23;
}
#formCalc .field-calc .dd-container .dd-selected-text {
  padding: 7px 70px 7px 12px;
  font-weight: bold;
}
#formCalc .field-calc .dd-container .dd-option-text {
  padding: 7px 12px;
  font-weight: 400;
}
#formCalc .field-calc .dd-container .dd-option-selected .dd-option-text {
  font-weight: bold;
}
#formCalc .field-calc .dd-container .dd-selected-image, #formCalc .field-calc .dd-container .dd-option-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
#formCalc .field-calc .dd-container .dd-pointer {
  display: none;
}
#formCalc .field-calc .dd-container .dd-click-off-close {
  border: solid 1px rgba(29, 30, 35, 0.2);
  border-radius: 6px;
}
#formCalc .field-calc .dd-container .dd-options {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  background: #ffffff;
  z-index: 10;
  height: auto !important;
}
#formCalc .field-calc .dd-container .dd-options li {
  padding: 0;
  margin: 0;
}
#formCalc .field-calc .dd-container .dd-options li:not(:last-child) {
  border-bottom: solid 1px rgba(29, 30, 35, 0.2);
}
#formCalc .field-calc .dd-container .dd-options li::before {
  display: none;
}
#formCalc .submit {
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 48em) {
  #formCalc .submit {
    margin-top: 30px;
    text-align: left;
  }
}

.configurateur .first-part {
  margin-top: 40px;
}

@media only screen and (min-width: 48em) {
  #resultat {
    display: flex;
    justify-content: space-between;
  }
}
#resultat .resultat-left, #resultat .resultat-right {
  text-align: center;
}
@media only screen and (min-width: 48em) {
  #resultat .resultat-left, #resultat .resultat-right {
    width: calc(50% - 40px);
  }
}
@media only screen and (min-width: 78em) {
  #resultat .resultat-left, #resultat .resultat-right {
    margin-bottom: 130px;
  }
}
@media only screen and (min-width: 90em) {
  #resultat .resultat-left, #resultat .resultat-right {
    margin-bottom: 150px;
  }
}
#resultat .resultat-left > p, #resultat .resultat-right > p {
  margin: 20px 0 30px;
}
@media only screen and (min-width: 48em) {
  #resultat .resultat-left > p, #resultat .resultat-right > p {
    line-height: 1.2;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 78em) {
  #resultat .resultat-left > p, #resultat .resultat-right > p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 78em) {
  #resultat .resultat-left {
    max-width: 609px;
    width: 100%;
    margin-right: 100px;
  }
}
@media only screen and (min-width: 90em) {
  #resultat .resultat-left {
    margin-right: 150px;
  }
}
@media only screen and (min-width: 48em) {
  #resultat .resultat-right {
    text-align: left;
  }
}
@media only screen and (min-width: 78em) {
  #resultat .resultat-right {
    width: 100%;
    max-width: calc(100% - 100px - 609px);
  }
}
@media only screen and (min-width: 90em) {
  #resultat .resultat-right {
    max-width: calc(100% - 150px - 609px);
  }
}
#resultat .resultat-right > p {
  margin-bottom: 10px;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  #resultat .resultat-right > p {
    margin-bottom: 20px;
  }
}

.resultat-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media only screen and (min-width: 48em) {
  .resultat-price {
    justify-content: flex-start;
  }
}
.resultat-price .prix {
  font-size: 30px;
  color: #0f572a;
  font-family: "Anton", sans-serif;
  margin-right: 8px;
  line-height: 1.4;
}
.resultat-price .tva {
  font-size: 15px;
  color: #0f572a;
}

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

	Shortproduct

*/
.short_product {
  border-radius: 5px;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slick-slider .short_product {
  box-shadow: none;
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
  .short_product:hover .no-photo::before {
    opacity: 0.5;
  }
  .short_product:hover .no-photo::after {
    opacity: 1;
  }
}
@media only screen and (min-width: 90em) {
  .short_product {
    width: calc(33.333% - 10px);
  }
}
.short_product:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .short_product:not(:last-child) {
    margin-bottom: 10px;
  }
}
.short_product_picture {
  height: 200px;
  position: relative;
}
.short_product_picture img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.short_product_picture .promo {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 18px 14.5px 16px;
  border-radius: 5px;
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #0f572a;
  line-height: 1.3;
}
.short_product_picture .novelty {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px 5px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0f572a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #cfdc24;
  z-index: 3;
  line-height: 1;
}
.short_product_picture .rupture {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px 6px;
  border-radius: 5px;
  border: #f50023;
  background-color: #f50023;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  z-index: 3;
  line-height: 1;
}
.short_product_picture .mise-en-avant {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 10px 5px;
  border-radius: 5px;
  border: 1px solid #000;
  background-color: #FFF64C;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  z-index: 3;
  line-height: 1;
}
.short_product_text {
  padding: 38px 20px 31px;
  text-align: center;
}
.short_product_text .h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #1d1e23;
  font-family: "Rajdhani", Arial, sans-serif;
  margin: 0 0 15px;
}
.short_product_text .prixM2 {
  font-size: 14px;
  color: #0f572a;
  font-family: "Rajdhani", Arial, sans-serif;
}
.short_product_price {
  font-size: 22px;
  color: #0f572a;
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}
.short_product_price .old_price {
  font-size: 14px;
  color: rgba(29, 30, 35, 0.5);
  text-decoration: line-through;
  margin-right: 7px;
}
.short_product_price .tva, .short_product_price .texte {
  font-size: 14px;
  color: #0f572a;
  font-family: "Rajdhani", Arial, sans-serif;
  margin-left: 7px;
}

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

	Page listing actualités

*/
#contentForFilter #actuTags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  #contentForFilter #actuTags {
    margin-bottom: 34px;
  }
}
#contentForFilter #actuTags li {
  margin: 0 5px 13px;
  padding: 0;
}
#contentForFilter #actuTags li::before {
  display: none;
}
#contentForFilter #actuTags li a {
  border-radius: 5px;
  border: 1px solid #0f572a;
  background: none;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f572a;
  line-height: 1;
  font-size: 14px;
  padding: 4px 12px;
}
#contentForFilter #actuTags li a:hover {
  background: #0f572a;
  color: #ffffff;
}
@media only screen and (min-width: 78em) {
  #contentForFilter #actuTags li a {
    font-size: 16px;
    padding: 6px 10px 4px;
  }
}
#contentForFilter #actuTags li.actif a {
  color: #cfdc24;
  background-color: #0f572a;
}
#contentForFilter #actuTags li.actif a:hover {
  color: #cfdc24;
}

.newsList main {
  padding: 0;
}
.newsList .breadcrumb {
  padding: 0 4%;
}
.newsList .breadcrumb-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.newsList .blog-title {
  padding: 0 4%;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .newsList .blog-title {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .newsList .blog-title {
    margin-bottom: 40px;
  }
}
.newsList .blog-title h1 {
  max-width: 1240px;
  margin: 0 auto;
}
.newsList article {
  margin: 0;
  max-width: 100%;
}
.newsList article .blog-inner {
  padding: 20px 4% 60px;
  background: #eff7f8;
}
@media only screen and (min-width: 48em) {
  .newsList article .blog-inner {
    padding: 30px calc(4% - 15px) 60px;
  }
}
@media only screen and (min-width: 78em) {
  .newsList article .blog-inner {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .newsList article .blog-inner {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 48em) {
  .newsList article .blog-list {
    margin: 0 auto;
    max-width: 1260px;
  }
  .newsList article .blog-list-item {
    display: block;
    width: calc(50% - 20px);
    margin: 0 10px 30px;
  }
  .newsList article .blog-list-item-left {
    width: 100%;
    height: 200px;
  }
  .newsList article .blog-list-item-right {
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .newsList article .blog-list-item {
    display: block;
    width: calc(33.333% - 20px);
  }
}
@media only screen and (min-width: 78em) {
  .newsList article .blog-list-item-right {
    padding: 15px 20px 10px;
  }
  .newsList article .blog-list-item-right h2 {
    margin-bottom: 15px;
  }
}
.newsList .subfooter {
  display: none;
}

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

	Page détail actualité

*/
.chapo {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 20px 20px;
  margin-bottom: 40px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  border-radius: 6px;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
  border: solid 1px #ebebeb;
  background-color: #ffffff;
}
@media only screen and (min-width: 64em) {
  .chapo {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .chapo {
    padding: 50px;
    margin-bottom: 50px;
  }
}
.chapo-img {
  margin: -15px -15px 0;
  overflow: hidden;
  border-radius: 6px;
  height: 210px;
}
@media only screen and (min-width: 64em) {
  .chapo-img {
    height: inherit;
    margin: -15px 0 -15px -15px;
    min-width: 250px;
  }
}
@media only screen and (min-width: 78em) {
  .chapo-img {
    margin: -45px 0 -45px -45px;
  }
}
.chapo-description {
  margin-top: 20px;
  width: 100%;
}
.chapo-description:first-child {
  margin-top: 0;
  padding-left: 0;
}
@media only screen and (min-width: 64em) {
  .chapo-description {
    margin: 0;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .chapo-description {
    padding-left: 50px;
  }
}
.chapo-date {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #7bbe34;
  text-transform: uppercase;
  border-top: solid 1px #ebebeb;
  padding-top: 8px;
  display: block;
}
@media only screen and (min-width: 90em) {
  .chapo {
    padding: 50px;
  }
}

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

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

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

	Page Contact

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

	Home

*/
.ru-accueil .breadcrumb {
  display: none;
}
.ru-accueil main {
  padding: 0;
}
.ru-accueil main article {
  max-width: 100%;
  margin: 0;
}

.accueil-intro {
  margin-bottom: 60px;
}
@media only screen and (min-width: 90em) {
  .accueil-intro {
    margin-bottom: 87px;
  }
}
.accueil-intro-title {
  padding: 60px 4% 207px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (min-width: 78em) {
  .accueil-intro-title {
    padding: 80px 4% 227px;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-intro-title {
    padding: 100px 4% 284px;
  }
}
.accueil-intro-title::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(29, 30, 35, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.accueil-intro-title h1 {
  font-size: 40px;
  line-height: 1.13;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 50px rgba(29, 30, 35, 0.75);
  margin: 0;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 90em) {
  .accueil-intro-title h1 {
    font-size: 50px;
  }
}
.accueil-intro-title h1 span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-family: "Rajdhani", Arial, sans-serif;
  margin-top: 20px;
}
.accueil-intro-title #responsiveSlide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.accueil-intro-title #responsiveSlide ul {
  margin: 0;
  width: 100%;
  height: 100%;
}
.accueil-intro-title #responsiveSlide ul li {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.accueil-intro-title #responsiveSlide ul li::before {
  display: none;
}
.accueil-intro-title #responsiveSlide ul li img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.accueil-intro-shortcut {
  padding: 0 4%;
  margin-top: -147px;
}
@media only screen and (min-width: 90em) {
  .accueil-intro-shortcut {
    margin-top: -184px;
  }
}
@media only screen and (min-width: 48em) {
  .accueil-intro-shortcut-inner {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-intro-shortcut-inner {
    max-width: 1240px;
    margin: 0 auto;
  }
}
.accueil-intro-shortcut-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .accueil-intro-shortcut-item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    z-index: 10;
    box-shadow: 0 0 5px 0 rgba(29, 30, 35, 0);
  }
  .accueil-intro-shortcut-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 5px 0 rgba(29, 30, 35, 0.5);
  }
}
@media only screen and (min-width: 78em) {
  .accueil-intro-shortcut-item {
    width: calc(33.333% - 10px);
  }
  .accueil-intro-shortcut-item .shortcut-terrasse-item-top p {
    height: 185px;
  }
}
.accueil-intro-shortcut-item-top {
  position: relative;
  z-index: 2;
}
.accueil-intro-shortcut-item-top p {
  padding: 40px 40px 30px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-image: linear-gradient(121deg, #1d1e23, rgba(62, 64, 73, 0.25));
  margin: 0;
}
@media only screen and (min-width: 90em) {
  .accueil-intro-shortcut-item-top p {
    padding-bottom: 67px;
  }
}
.accueil-intro-shortcut-item-top p span {
  font-size: 30px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}
.accueil-intro-shortcut-item-top p::after {
  content: "";
  border-radius: 2px;
  background-color: #7bbe34;
  height: 2px;
  width: 40px;
  display: block;
  margin-top: 20px;
}
.accueil-intro-shortcut-item-top img {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.accueil-intro-shortcut-item-bottom {
  background: linear-gradient(315deg, #cfdc24, #7bbe34);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 21px;
  border-radius: 0 0 5px 5px;
}
.accueil-intro-shortcut-item-bottom::before {
  content: "";
  height: 30px;
  width: 30px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 15px;
  background-size: 100%;
}
.accueil-intro-shortcut-item-bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.13;
  color: #1d1e23;
  text-align: center;
}
.accueil-intro-shortcut-item:not(:last-child) {
  margin-bottom: 10px;
}
.accueil-intro-shortcut-item.new::after {
  content: "Nouveau !";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 6px 10px 5px;
  border-radius: 5px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-color: #0f572a;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #cfdc24;
  z-index: 3;
  line-height: 1;
}
.accueil-intro-shortcut-item.icon-arrow-bottom .shortcut-terrasse-item-bottom::before {
  background-image: url(/images/_v2/icon/icon-arrow-down.svg);
}
.accueil-intro-shortcut-item.icon-plus .shortcut-terrasse-item-bottom::before {
  background-image: url(/images/_v2/icon/icon-plus-black.svg);
}
.accueil-intro-shortcut-item.icon-config .shortcut-terrasse-item-bottom::before {
  background-image: url(/images/_v2/icon/icon-config.svg);
}

.accueil-univers {
  padding: 0 4%;
}
@media only screen and (min-width: 48em) {
  .accueil-univers-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-univers-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1280px;
  }
}
.accueil-univers-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .accueil-univers-item {
    width: calc(50% - 40px);
    margin: 0 20px 20px;
  }
  .accueil-univers-item:hover .no-photo::before {
    opacity: 0.5;
  }
  .accueil-univers-item:hover .no-photo::after {
    opacity: 1;
  }
}
@media only screen and (min-width: 64em) {
  .accueil-univers-item {
    width: calc(33.333% - 40px);
  }
}
@media only screen and (min-width: 78em) {
  .accueil-univers-item {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-univers-item {
    margin-bottom: 73px;
  }
}
.accueil-univers-item-picture {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  overflow: hidden;
}
.accueil-univers-item-picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.accueil-univers-item-txt {
  width: calc(100% - 120px);
  padding-left: 20px;
}
.accueil-univers-item-txt h3 {
  margin: 0;
  font-size: 20px;
  color: #1d1e23;
  text-transform: uppercase;
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: bold;
}
.accueil-univers-item-txt h3::after {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #7bbe34;
  width: 40px;
  height: 2px;
  margin-top: 10px;
}
.accueil-univers-item-txt p {
  font-size: 14px;
  line-height: 1.43;
  color: rgba(29, 30, 35, 0.75);
  margin: 10px 0 0;
}

.tabs {
  margin-top: 55px;
  background: #eff7f8;
}
@media only screen and (min-width: 90em) {
  .tabs {
    margin-top: 27px;
  }
}
.tabs-title {
  border: solid 1px #131415;
  background-color: rgba(29, 30, 35, 0.9);
  text-align: center;
}
.tabs-title a {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  padding: 20px 15px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
@media only screen and (min-width: 22.5em) {
  .tabs-title a {
    padding: 20px;
  }
}
@media only screen and (min-width: 48em) {
  .tabs-title a:hover {
    color: #cfdc24;
  }
}
@media only screen and (min-width: 78em) {
  .tabs-title a {
    font-size: 18px;
    padding: 31px 42px;
    line-height: 1;
  }
}
.tabs-title a#current {
  color: #cfdc24;
  background-color: #1d1e23;
}
.tabs-title a#current::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  border: solid 1px rgba(15, 87, 42, 0.1);
  background-color: #cfdc24;
}
.tabs-content {
  padding: 40px 4% 60px;
}
.tabs-content .widgetProduct > .h2 {
  display: none;
}
@media only screen and (min-width: 78em) {
  .tabs-content {
    padding: 60px 4% 80px;
  }
  .tabs-content-item {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .tabs-content {
    padding: 80px 4% 100px;
  }
}
.tabs-content .bnt-more {
  text-align: center;
  margin-top: 40px;
}
.tabs-content .bnt-more a {
  line-height: 1.1;
}

.ru-accueil .shortcut-terrasse {
  padding: 0 4%;
  background: #eff7f8;
  position: relative;
  z-index: 1;
}
.ru-accueil .shortcut-terrasse::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: #ffffff;
  z-index: -1;
}
@media only screen and (min-width: 78em) {
  .ru-accueil .shortcut-terrasse::after {
    display: none;
  }
}
.ru-accueil .shortcut-terrasse-item-bottom::before {
  background-size: 100%;
}

.accueil-desc-row {
  padding: 0 4%;
  margin-top: 56px;
}
@media only screen and (min-width: 64em) {
  .accueil-desc-row {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-desc-row {
    background: #eff7f8;
    margin: 0;
    padding: 70px 0 0;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc-row {
    padding-top: 90px;
  }
}
.accueil-desc-left {
  font-size: 16px;
}
@media only screen and (min-width: 64em) {
  .accueil-desc-left {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-desc-left {
    padding: 80px 265px 80px 4%;
    background: #ffffff;
    width: calc(50% + 190px);
    margin-right: calc(-4.3% - 190px);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc-left {
    padding: 100px 265px 100px 4%;
  }
}
@media only screen and (min-width: 64em) {
  .accueil-desc-left-inner {
    padding-bottom: 0;
    max-width: 630px;
    padding-right: 80px;
    width: 100%;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-desc-left-inner {
    max-width: 630px;
    padding: 0;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc-left-inner > h2:first-child {
    font-size: 30px;
  }
  .accueil-desc-left-inner p {
    max-width: 505px;
  }
}
.accueil-desc-left-inner > *:first-child {
  margin-top: 0;
}
.accueil-desc-left-inner > p:last-child {
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media only screen and (min-width: 64em) {
  .accueil-desc-left-inner > p:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc-left-inner > p:last-child {
    margin-top: 60px;
  }
}
.accueil-desc-left-inner > p:last-child a {
  display: inline-block;
  margin: 5px;
}
@media only screen and (min-width: 64em) {
  .accueil-desc {
    display: flex;
  }
  .accueil-desc .bloc-image {
    margin-top: 0;
  }
}
@media only screen and (min-width: 78em) {
  .accueil-desc {
    align-items: center;
  }
  .accueil-desc .bloc-image {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc .bloc-image {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.accueil-desc .list-icon {
  margin: 40px 0;
}
@media only screen and (min-width: 48em) {
  .accueil-desc .list-icon {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -5px;
  }
}
@media only screen and (min-width: 90em) {
  .accueil-desc .list-icon {
    margin-bottom: 60px;
  }
}
.accueil-desc .list-icon li {
  border-radius: 5px;
  box-shadow: 0 10px 50px 0 rgba(29, 30, 35, 0.05);
  border: solid 1px #ebebeb;
  background-color: #ffffff;
  padding: 25px 23px 25px 70px;
  font-weight: bold;
  line-height: 1.13;
  color: #1d1e23;
}
@media only screen and (min-width: 48em) {
  .accueil-desc .list-icon li {
    margin: 5px;
  }
  .accueil-desc .list-icon li:first-child {
    max-width: 260px;
  }
  .accueil-desc .list-icon li:nth-child(2) {
    max-width: 283px;
  }
  .accueil-desc .list-icon li:nth-child(3) {
    max-width: 276px;
  }
  .accueil-desc .list-icon li:last-child {
    max-width: 240px;
  }
}
.accueil-desc .list-icon li::before {
  content: "";
  width: 70px;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
}
.accueil-desc .list-icon li.icon-quality::before {
  background-image: url(/images/_v2/icon/icon-quality.svg);
}
.accueil-desc .list-icon li.icon-plank::before {
  background-image: url(/images/_v2/icon/icon-plank.svg);
}
.accueil-desc .list-icon li.icon-team::before {
  background-image: url(/images/_v2/icon/icon-team.svg);
}
.accueil-desc .list-icon li.icon-price::before {
  background-image: url(/images/_v2/icon/icon-price-g.svg);
}
.accueil-desc .bloc-image > :last-child p:last-child {
  margin-bottom: 0;
}

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

	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 .fit-cover {
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}
@media only screen and (min-width: 78em) {
  .page-menu-item .fit-cover {
    height: 250px;
  }
}
.page-menu-item h2 {
  margin: 20px 0 0;
}

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

	UTILITIES
	Ces fichiers contiennent les classes utiles

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

	Classes utilisables telles quelles dans fichier html

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

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

.block {
  display: block !important;
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.bloc, .formulaire {
  padding: 25px 7.25%;
  position: relative;
  margin: 0 0 10px;
  background-color: #FFFFFF;
  border: 1px solid rgba(210, 212, 213, 0.75);
  border-radius: 10px;
  overflow: hidden;
}
.bloc > *:last-child, .formulaire > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 48em) {
  .bloc, .formulaire {
    padding: 40px 7.25%;
  }
}
@media only screen and (min-width: 64em) {
  .bloc, .formulaire {
    padding: 50px;
  }
}

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

.no-photo {
  background: url(/images/_v2/img/nophoto.png) no-repeat center, #ffffff;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .no-photo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(297deg, #cfdc24, #7bbe34);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .no-photo::after {
    content: url(/images/_v2/icon/icon-plus.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}

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

/*--------
COULEURS
--------*/
.couleur_vert-fonce {
  color: #0F572A;
}

.couleur_vert-clair {
  color: #7BBD34;
}

/*fond vert clair #CFDC23*/
.couleur_rouge {
  color: #FF6000;
}

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

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