@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 {
  -webkit-appearance: none;
          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] {
  -webkit-appearance: checkbox;
          appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: 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 {
  -webkit-appearance: none;
          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

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

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


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

	Elements

*/
/*---------------- Bloc remontée produits ----------------*/
/*--------------------------------

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

main {
  margin-left: auto;
  margin-right: auto;
}

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

	Text selection/highlighting

*/

::selection {
  background: rgba(55, 38, 68, 0.75);
  color: #FFFFFF;
  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: #E74C3C;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:hover {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a img {
  border: none;
}

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

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

	Tous les styles de boutons

*/
.btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-coral, .btn-full-pink, input[type=submit], .btn-empty, .btn-empty-coral, .btn-empty-pink, input[type=reset] {
  display: inline-block;
  width: auto;
  text-align: center;
  background-image: none;
  background-position: initial;
  padding: 20px 40px;
  border-radius: 4px;
  border: solid 1px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-neutral:hover, .btn-negative:hover, .btn-positive:hover, .btn-full:hover, .btn-full-coral:hover, .btn-full-pink:hover, input[type=submit]:hover, .btn-empty:hover, .btn-empty-coral:hover, .btn-empty-pink:hover, input[type=reset]:hover {
  text-decoration: none;
}

p.p-btn {
  margin: 20px -10px !important;
}
p.p-btn a {
  margin: 10px 10px;
}

.btn-empty, .btn-empty-coral, .btn-empty-pink, input[type=reset] {
  background-color: #FFFFFF;
}
.btn-empty-pink, input[type=reset] {
  border-color: #FD2C7B;
  color: #FD2C7B;
}
.news .btn-empty-pink, .news input[type=reset] {
  font-size: 14px;
  padding: 10px 20px;
}
@media only screen and (min-width: 64em) {
  .news .btn-empty-pink, .news input[type=reset] {
    font-size: 16px;
    padding: 20px 40px;
  }
}
.btn-empty-pink:hover, input[type=reset]:hover {
  background: #FD2C7B;
  color: #FFFFFF;
}
.btn-empty-coral {
  border-color: #F26370;
  color: #F26370;
}
.short_product .btn-empty-coral {
  font-size: 14px;
  padding: 10px 20px;
}
.btn-empty-coral:hover {
  background: #F26370;
  color: #FFFFFF;
}
.btn-full, .btn-full-coral, .btn-full-pink, input[type=submit] {
  color: #FFFFFF;
}
.btn-full-pink, input[type=submit] {
  background: #FD2C7B;
  border-color: transparent;
}
.btn-full-pink:hover, input[type=submit]:hover {
  background: #f4025e;
}
.btn-full-coral {
  background: #F26370;
  border-color: transparent;
}
.btn-full-coral:hover {
  background: #ee3445;
}
.btn-positive {
  background-color: #24b35d;
  color: #fff;
}
.btn-positive:hover {
  background: #34d675;
}
.btn-negative {
  background-color: #f50023;
  color: #fff;
}
.btn-negative:hover {
  background: #ff2948;
}
.btn-neutral {
  background: #ddd;
  color: #444;
}
.btn-neutral:hover {
  background: #c4c4c4;
}
.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: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:left"], img[style*="float: left"] {
    float: left !important;
    margin: 10px 30px 10px 0;
  }
}
img[style*="float:right"], img[style*="float: right"] {
  float: none !important;
  display: block;
  margin: 20px auto;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  img[style*="float:right"], img[style*="float: right"] {
    float: right !important;
    margin: 10px 0 10px 30px;
  }
}

.textAndImages .above_left,
.textAndImages .below_left {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_right,
.textAndImages .below_right {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages .above_center,
.textAndImages .below_center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.textAndImages > *:first-child {
  margin-top: 0;
}
.textAndImages > *:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.no-photo:empty {
  background: url("/images/commun/no-photo.jpg") no-repeat scroll center;
  opacity: 0.4;
  background-size: 100%;
  width: 100%;
  height: 100%;
}

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

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

	Logo

*/
/* #logo {
	position: absolute;
	top:10px;
	left:65px;
	z-index: 1000;

	@include mq('tablet') {
		@include reset-absolute;
	}
} */
#logo a {
  display: block;
  width: 100px;
  height: 80px;
  text-indent: -9999px;
  background: transparent url("/images/v1/logo_ptit_clown.png") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 48em) {
  #logo a {
    width: 157px;
    height: 125px;
  }
}

#logo {
  position: relative;
  z-index: 1000;
}
@media only screen and (min-width: 48em) {
  #logo {
    left: 30px;
  }
}
@media only screen and (min-width: 64em) {
  #logo {
    left: 60px;
  }
}

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

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin: 20px 0;
}
article ul li {
  list-style: inside disc;
  color: rgba(21, 8, 10, 0.7);
  margin-top: 10px;
  margin-bottom: 10px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .sitemap ul li {
  font-size: inherit;
}
.structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before {
  display: none;
}

article ol {
  margin: 20px 0;
}
article ol li {
  color: rgba(21, 8, 10, 0.7);
  list-style: inside decimal-leading-zero;
  margin-top: 10px;
  margin-bottom: 10px;
}
article ol li::before {
  content: "";
  margin-right: 5px;
}

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

	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: #1a1a1a;
  font-size: 16px;
}

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

	Tableaux responsive

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

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

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

	Règles typographiques

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

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  font-family: "Dosis", sans-serif;
  margin: 40px 0 30px;
  line-height: 1.3;
}
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;
}
@media only screen and (min-width: 48em) {
  h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 50px 0 40px;
  }
}
@media only screen and (min-width: 78em) {
  h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 60px 0 50px;
  }
}

h1,
.h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  h1,
.h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 78em) {
  h1,
.h1 {
    font-size: 50px;
  }
}

h2,
.h2 {
  font-size: 30px;
  font-weight: 600;
  color: #372644;
}
@media only screen and (min-width: 48em) {
  h2,
.h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 78em) {
  h2,
.h2 {
    font-size: 50px;
  }
}

h3,
.h3 {
  font-size: 25px;
  font-weight: 600;
  color: #FD2C7B;
}
@media only screen and (min-width: 48em) {
  h3,
.h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 78em) {
  h3,
.h3 {
    font-size: 35px;
  }
}

h4,
.h4 {
  font-size: 22px;
  font-weight: 600;
  color: #372644;
  text-transform: uppercase;
}
@media only screen and (min-width: 48em) {
  h4,
.h4 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 78em) {
  h4,
.h4 {
    font-size: 30px;
  }
}

h5,
.h5 {
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (min-width: 48em) {
  h5,
.h5 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 78em) {
  h5,
.h5 {
    font-size: 30px;
  }
}

h6,
.h6 {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 48em) {
  h6,
.h6 {
    font-size: 22px;
  }
}

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 {
  color: rgba(21, 8, 10, 0.7);
  line-height: 2;
  margin: 20px 0;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

article a {
  color: inherit;
  background-position: 0 105%;
  background-image: linear-gradient(142.19deg, #FD2C7B 0%, #FD2C7B 100%);
  background-size: 100% 15%;
  background-repeat: no-repeat;
  padding: 2px 2px;
  text-decoration: none;
}
article a:hover  {
  background-size: 100% 100%;
  text-decoration: none;
  color: inherit;
}
article a:hover {
  background-size: 100% 100%;
  text-decoration: none;
  color: #FFFFFF;
}

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

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

*/
/* BREADCRUMB */
/*--------------------------------

	Galerie Fancybox 3

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

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
          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);
  -webkit-backface-visibility: hidden;
          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;
  -webkit-backface-visibility: hidden;
          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;
  -webkit-backface-visibility: hidden;
          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;
  -webkit-backface-visibility: hidden;
          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;
  -webkit-backface-visibility: hidden;
          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;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
}
.fancybox-thumbs > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fancybox-thumbs > ul > li.fancybox-thumbs-active::before {
  opacity: 1;
}
.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
}

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

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }

  .fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}
/*--------------------------------

	Style général des formulaires

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

.formulaire a[name=formulaire] {
  background-image: none;
}
.formulaire input:not([type=submit]), .formulaire textarea {
  padding: 20px !important;
  background-color: #EDEDEE !important;
  color: rgba(21, 8, 10, 0.7) !important;
  border: 1px solid #EDEDEE !important;
}

/* RGPD */
.groupCheckBoxUnique label.inline {
  float: left;
  margin-right: 20px;
  font-weight: 600;
}
.groupCheckBoxUnique label.inline .obligatory {
  color: #FD2C7B;
}
.groupCheckBoxUnique .group_multi_checkbox {
  float: left;
  margin-bottom: 7px;
  width: 70px;
  margin-top: 0;
}

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

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

.fieldGroup {
  overflow: hidden;
}

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

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border-radius: 6px;
  font-size: inherit;
  background-color: #EDEDEE;
  -webkit-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 20px 20px 20px 60px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  border-color: #EDEDEE;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  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: 1px;
  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: 1px;
  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: 1px;
  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: 1px;
  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: #EDEDEE;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #EDEDEE;
}

input {
  font-family: "Poppins", sans-serif;
}
.error input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border: 1px solid #ddd;
  border-color: #f50023;
}

textarea {
  font-family: "Poppins", 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;
  padding: 20px !important;
  background-color: #EDEDEE !important;
  color: rgba(21, 8, 10, 0.7) !important;
  border: 1px solid #EDEDEE !important;
}
.error select {
  border: 1px solid #ddd;
  border-color: #f50023;
}
select:hover {
  background: #F6F6F6;
}
select .select-mini, .select-mini select {
  font-size: 12px;
  padding: 10px;
  min-width: 120px;
  max-width: 200px;
  margin: 10px 0;
}

.select-container {
  position: relative;
}
.select-container .icon, .select-container .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .select-container .form_field,
.select-container .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .select-container .form_field, .select-container :not(label):not(.form_field).error,
.select-container .loginError,
.select-container .confirmpasswd,
.select-container .strength_password, .select-container .structured_text_semantique_text ul li, .structured_text_semantique_text ul .select-container li, .select-container ul .blockList li, ul .blockList .select-container li, .select-container .form_creator_header ul li, .form_creator_header ul .select-container li, .select-container .ckEditor ul li, .ckEditor ul .select-container li, .select-container .sitemap ul li, .sitemap ul .select-container li {
  transform: rotate(90deg);
  top: 26px;
}
.select-container .icon::after, .select-container .account-subscription form fieldset#profileDetail > div .form_field::after, .account-subscription form fieldset#profileDetail > div .select-container .form_field::after,
.select-container .accountModify form fieldset#profileDetail > div .form_field::after,
.accountModify form fieldset#profileDetail > div .select-container .form_field::after, .select-container .error:not(label):not(.form_field)::after,
.select-container .loginError::after,
.select-container .confirmpasswd::after,
.select-container .strength_password::after, .select-container .structured_text_semantique_text ul li::after, .structured_text_semantique_text ul .select-container li::after, .select-container ul .blockList li::after, ul .blockList .select-container li::after, .select-container .form_creator_header ul li::after, .form_creator_header ul .select-container li::after, .select-container .ckEditor ul li::after, .ckEditor ul .select-container li::after, .select-container .sitemap ul li::after, .sitemap ul .select-container li::after {
  content: "";
  height: 60px;
  width: 1px;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 6px;
  left: 5px;
  transform: rotate(-90deg);
}
.select-container.select-mini .icon, .select-container.select-mini .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .select-container.select-mini .form_field,
.select-container.select-mini .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .select-container.select-mini .form_field, .select-container.select-mini :not(label):not(.form_field).error,
.select-container.select-mini .loginError,
.select-container.select-mini .confirmpasswd,
.select-container.select-mini .strength_password, .select-container.select-mini .structured_text_semantique_text ul li, .structured_text_semantique_text ul .select-container.select-mini li, .select-container.select-mini ul .blockList li, ul .blockList .select-container.select-mini li, .select-container.select-mini .form_creator_header ul li, .form_creator_header ul .select-container.select-mini li, .select-container.select-mini .ckEditor ul li, .ckEditor ul .select-container.select-mini li, .select-container.select-mini .sitemap ul li, .sitemap ul .select-container.select-mini li {
  top: 14px;
  right: 10px;
}
.select-container.select-mini .icon::after, .select-container.select-mini .account-subscription form fieldset#profileDetail > div .form_field::after, .account-subscription form fieldset#profileDetail > div .select-container.select-mini .form_field::after,
.select-container.select-mini .accountModify form fieldset#profileDetail > div .form_field::after,
.accountModify form fieldset#profileDetail > div .select-container.select-mini .form_field::after, .select-container.select-mini .error:not(label):not(.form_field)::after,
.select-container.select-mini .loginError::after,
.select-container.select-mini .confirmpasswd::after,
.select-container.select-mini .strength_password::after, .select-container.select-mini .structured_text_semantique_text ul li::after, .structured_text_semantique_text ul .select-container.select-mini li::after, .select-container.select-mini ul .blockList li::after, ul .blockList .select-container.select-mini li::after, .select-container.select-mini .form_creator_header ul li::after, .form_creator_header ul .select-container.select-mini li::after, .select-container.select-mini .ckEditor ul li::after, .ckEditor ul .select-container.select-mini li::after, .select-container.select-mini .sitemap ul li::after, .sitemap ul .select-container.select-mini li::after {
  height: 36px;
  top: 12px;
  left: 5px;
}

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

	Boutons de validation/annulation

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

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

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: 700;
}
.strength_password::before {
  display: none;
}
.strength_password.shortPass {
  color: #f50023;
}
.strength_password.badPass {
  color: orange;
}
.strength_password.goodPass, .strength_password.strongPass {
  color: #24b35d;
}

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

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  padding: 15px;
  color: #707173;
  background-color: #F6F6F6;
}
.aide p {
  font-size: 12px;
  line-height: 20px;
  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;
}

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

	Remerciements envoi

*/
.thanksValid > a {
  background: none;
}
.thanksValid h3 {
  text-align: center;
}

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

	Style de la galerie miniature

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

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

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

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

	NAVIGATION

*/
#nested {
  height: 60px;
  overflow: hidden;
  position: relative;
  background-color: #EDEDEE;
}
#nested.expanded {
  height: auto;
}
@media only screen and (min-width: 48em) {
  #nested {
    height: auto;
    overflow: visible;
  }
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  height: 60px;
  z-index: 9999;
}
@media only screen and (min-width: 48em) {
  .title-area {
    display: none;
  }
}

.toggle-topbar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.toggle-topbar a::before {
  content: url("/images/icon/menu.svg");
  display: block;
  height: 20px;
  width: 20px;
}

.toggle-topbar a::after {
  content: "MENU";
  color: #15080A;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 600;
}

.open .toggle-topbar a::before {
  content: url("/images/icon/close.svg");
}

.open .toggle-topbar a::after {
  content: "FERMER";
}

/* ---------------- 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 {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 4%;
  color: #FD282A;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
}
@media only screen and (min-width: 48em) {
  .top-bar-section a {
    font-size: 16px;
    padding: 25.5px 0;
    color: #15080A;
  }
}

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

#nested .firstLevel > li {
  position: relative;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 64em) {
  #nested .firstLevel > li:nth-child(n+5) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:nth-child(n+6) {
    display: none;
  }
}
#nested .firstLevel > li:not(:nth-child(n+6)) {
  margin-right: 20px;
}
@media only screen and (min-width: 64em) {
  #nested .firstLevel > li:not(:nth-child(n+6)) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li:not(:nth-child(n+6)) {
    margin-right: 40px;
  }
}
#nested .firstLevel > li:hover > a, #nested .firstLevel > li.active > a {
  color: #FD282A;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:first-child, #nested .firstLevel > li:nth-child(n+7) {
    display: none;
  }
}

@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.dropdown > a {
    direction: flex;
    align-items: center;
  }
}

@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.dropdown:nth-of-type(n+5) > a::after {
    display: none !important;
  }
}
@media only screen and (min-width: 64em) {
  #nested .firstLevel > li.dropdown:nth-of-type(n+5) > a::after {
    margin-left: 0;
  }
}

@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.dropdown:not(:nth-of-type(n+6)) > a:after {
    content: "";
    width: 4px;
    height: 4px;
    display: inline-block;
    background-color: #FD282A;
    border-radius: 50px;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 64em) {
  #nested .firstLevel > li.dropdown:not(:nth-of-type(n+6)) > a:after {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li.dropdown:not(:nth-of-type(n+6)) > a:after {
    margin-left: 40px;
  }
}

#nested .firstLevel > li.has-dropdown > a::after {
  content: url(/images/icon/plus-menu.svg);
  width: 15px;
  height: 15px;
  margin-left: 10px;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.has-dropdown > a::after {
    display: none;
  }
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
  background: #EDEDEE;
  padding: 10px 0;
  transition: all 0.1s linear;
}
@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: 50%;
    transform: translateX(-50%);
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    background-color: #EDEDEE;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.3);
  }
}
ul.secondLevel > li > a {
  font-weight: 400;
}
@media only screen and (min-width: 48em) {
  ul.secondLevel > li > a {
    padding: 5px 20px;
    white-space: nowrap;
  }
}
ul.secondLevel > li:hover > a,
ul.secondLevel > li.active > a {
  color: #FD282A;
}

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

	Listing pagination

*/
.pager {
  margin: 50px 0;
}
.pager.listing, .pager.detail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager.listing a, .pager.detail a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 15px;
  display: inline-block;
  color: #1a1a1a;
  margin-left: 0.5em;
  margin-right: 0.5em;
  border: 1px solid #ddd;
  border-color: #fff;
}
@media only screen and (min-width: 48em) {
  .pager.listing a, .pager.detail a {
    font-size: 18px;
  }
}
.pager.listing a.pager_active_page, .pager.detail a.pager_active_page {
  font-size: 20px;
  font-weight: 700;
  border-color: #1a1a1a;
}
.pager.listing a:hover, .pager.detail a:hover {
  border-color: #ddd;
  text-decoration: none;
}
.pager.listing a .icon, .pager.listing a .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .pager.listing a .form_field,
.pager.listing a .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .pager.listing a .form_field, .pager.listing a .structured_text_semantique_text ul li, .structured_text_semantique_text ul .pager.listing a li, .pager.listing a ul .blockList li, ul .blockList .pager.listing a li, .pager.listing a .form_creator_header ul li, .form_creator_header ul .pager.listing a li, .pager.listing a .ckEditor ul li, .ckEditor ul .pager.listing a li, .pager.listing a .sitemap ul li, .sitemap ul .pager.listing a li, .pager.listing a :not(label):not(.form_field).error,
.pager.listing a .loginError,
.pager.listing a .strength_password,
.pager.listing a .confirmpasswd, .pager.detail a .icon, .pager.detail a .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .pager.detail a .form_field,
.pager.detail a .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .pager.detail a .form_field, .pager.detail a .structured_text_semantique_text ul li, .structured_text_semantique_text ul .pager.detail a li, .pager.detail a ul .blockList li, ul .blockList .pager.detail a li, .pager.detail a .form_creator_header ul li, .form_creator_header ul .pager.detail a li, .pager.detail a .ckEditor ul li, .ckEditor ul .pager.detail a li, .pager.detail a .sitemap ul li, .sitemap ul .pager.detail a li, .pager.detail a :not(label):not(.form_field).error,
.pager.detail a .loginError,
.pager.detail a .strength_password,
.pager.detail a .confirmpasswd {
  display: inline-block;
}

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

	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, .scroll-top .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .scroll-top .form_field,
.scroll-top .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .scroll-top .form_field, .scroll-top .structured_text_semantique_text ul li, .structured_text_semantique_text ul .scroll-top li, .scroll-top ul .blockList li, ul .blockList .scroll-top li, .scroll-top .form_creator_header ul li, .form_creator_header ul .scroll-top li, .scroll-top .ckEditor ul li, .ckEditor ul .scroll-top li, .scroll-top .sitemap ul li, .sitemap ul .scroll-top li, .scroll-top :not(label):not(.form_field).error,
.scroll-top .loginError,
.scroll-top .strength_password,
.scroll-top .confirmpasswd {
  transform: rotate(-90deg);
  left: 13px;
  top: 6px;
  position: absolute;
  display: inline-block;
}

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

	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: #888;
  font-style: italic;
}

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

article .gallery ul > li {
  list-style: none;
  padding: 25px;
}
article .gallery ul > li > a {
  background: none;
}
article .gallery ul > li > a > img {
  object-fit: contain;
}

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

	Article

*/
article {
  max-width: 920px;
  margin: 50px auto 0;
  padding: 0 20px;
}
@media only screen and (min-width: 48em) {
  article {
    margin-top: 60px;
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  article {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 78em) {
  article {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 90em) {
  article {
    padding: 0;
  }
}

.header-article-text {
  max-width: 800px;
  margin: 0 auto;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
@media only screen and (min-width: 48em) {
  .header-article-text {
    height: 180px;
  }
}
@media only screen and (min-width: 78em) {
  .header-article-text {
    height: 240px;
  }
}
.header-article-text > h1 {
  margin-bottom: 20px;
}
.header-article-text .breadcrumb {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.85px;
}
.header-article-text .breadcrumb a {
  background: none;
  padding: 0;
  text-decoration: none;
  color: #FD2C7B;
}
.header-article-text .breadcrumb a:hover {
  color: #fd5f9b;
}
.header-article-text .breadcrumb .separator-bread {
  color: #FD2C7B;
}
.with-img .header-article-text {
  height: 240px;
}
@media only screen and (min-width: 48em) {
  .with-img .header-article-text {
    height: 240px;
  }
}
@media only screen and (min-width: 78em) {
  .with-img .header-article-text {
    height: 265px;
  }
}
.with-img .header-article-text > h1 {
  color: #FFFFFF;
}
.with-img .header-article-text .breadcrumb a {
  color: #FFFFFF;
}
.with-img .header-article-text .breadcrumb a:hover  {
  color: #FD2C7B;
  text-decoration: none;
}
.with-img .header-article-text .breadcrumb a:hover {
  color: #FD2C7B;
  text-decoration: none;
}
.with-img .header-article-text .breadcrumb .separator-bread {
  color: #FFFFFF;
}
.header-article-img {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 186px;
  height: 220px;
}
@media only screen and (min-width: 48em) {
  .header-article-img {
    top: 250px;
    height: 240px;
  }
}
@media only screen and (min-width: 78em) {
  .header-article-img {
    height: 265px;
  }
}
.with-img .header-article-img:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(55, 38, 68, 0.75);
  display: block;
  position: absolute;
}
.header-article-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

	No header (header lorsque pas d'image)

*/
.no-header:not(.newsDetail) .header-article-img {
  display: none;
}
.no-header:not(.newsDetail) main > article {
  margin-top: 0;
}

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

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #E74C3C;
  font-weight: 700;
  background: #dddddd;
  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 {
  width: 100%;
  background-color: #EDEDEE;
  padding: 50px 20px 30px;
  margin-top: 50px;
}
@media only screen and (min-width: 48em) {
  .subfooter {
    padding: 80px 4% 60px;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter {
    padding: 100px 4% 80px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter {
    padding: 120px 4% 100px;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter {
    padding: 120px 0 100px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter > div {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 48em) {
  .subfooter {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter {
    margin-top: 120px;
  }
}
.subfooter .text {
  text-align: center;
}
.subfooter .text > h2 {
  margin-bottom: 20px;
}
.subfooter .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .subfooter .text > span {
    line-height: 1.07;
  }
}
.subfooter .text > span {
  color: #FD2C7B;
}
.subfooter .feedback {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 35px 0 60px;
}
@media only screen and (min-width: 48em) {
  .subfooter .feedback {
    margin: 60px 0;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter .feedback {
    margin: 80px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.subfooter .feedback div.short_product,
.subfooter .feedback div.news {
  flex: 0 0 auto;
  background-color: #FFFFFF;
  text-align: center;
  margin-right: 10px;
  width: 300px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.short_product,
.subfooter .feedback div.news {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.short_product:nth-of-type(7), .subfooter .feedback div.short_product:nth-of-type(8),
.subfooter .feedback div.news:nth-of-type(7),
.subfooter .feedback div.news:nth-of-type(8) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter .feedback div.short_product:nth-of-type(7), .subfooter .feedback div.short_product:nth-of-type(8),
.subfooter .feedback div.news:nth-of-type(7),
.subfooter .feedback div.news:nth-of-type(8) {
    display: block;
  }
}
.subfooter .feedback div.short_product div.img-shortproduct,
.subfooter .feedback div.short_product div.img-news,
.subfooter .feedback div.news div.img-shortproduct,
.subfooter .feedback div.news div.img-news {
  width: 100%;
  height: 250px;
}
.subfooter .feedback div.short_product div.img-shortproduct > img,
.subfooter .feedback div.short_product div.img-news > img,
.subfooter .feedback div.news div.img-shortproduct > img,
.subfooter .feedback div.news div.img-news > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.subfooter .feedback div.short_product div.img-news,
.subfooter .feedback div.news div.img-news {
  height: 200px;
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.short_product div.img-news,
.subfooter .feedback div.news div.img-news {
    height: 276px;
  }
}
.subfooter .feedback div.short_product div.reference,
.subfooter .feedback div.short_product div.date,
.subfooter .feedback div.news div.reference,
.subfooter .feedback div.news div.date {
  margin: 14px 0 10px;
}
.subfooter .feedback div.short_product div.reference > span,
.subfooter .feedback div.short_product div.date > span,
.subfooter .feedback div.news div.reference > span,
.subfooter .feedback div.news div.date > span {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 8, 10, 0.5);
}
.subfooter .feedback div.short_product p.title-shortproduct,
.subfooter .feedback div.short_product p.title-news,
.subfooter .feedback div.news p.title-shortproduct,
.subfooter .feedback div.news p.title-news {
  color: #15080A;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  padding: 0 10px;
  min-height: 40px;
}
.subfooter .feedback div.short_product p.title-news,
.subfooter .feedback div.news p.title-news {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  min-height: 60px;
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.short_product p.title-news,
.subfooter .feedback div.news p.title-news {
    font-size: 24px;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.short_product:hover .btn-empty-coral {
    background-color: #F26370;
    color: #FFFFFF;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    grid-gap: 0;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter .feedback {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.news {
    width: calc(33.333% - 15px);
    margin: 0 10px;
    overflow: hidden;
    position: relative;
  }
}
@media only screen and (min-width: 64em) {
  .subfooter .feedback div.news:hover p.p-btn > a {
    background-color: #FD2C7B;
    color: #FFFFFF;
  }
}

footer {
  background-color: #15080A;
}

.aboveFooter {
  background-color: #FFFFFF;
  padding: 50px;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 48em) {
  .aboveFooter {
    padding: 30px 4%;
  }
}
@media only screen and (min-width: 64em) {
  .aboveFooter {
    display: block;
  }
}
.aboveFooter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .aboveFooter-inner {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .aboveFooter-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.aboveFooter-inner .picto {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .aboveFooter-inner .picto {
    flex-direction: column;
    max-width: 140px;
  }
}
@media only screen and (min-width: 78em) {
  .aboveFooter-inner .picto {
    max-width: 200px;
  }
}
.aboveFooter-inner .picto:nth-of-type(2) {
  min-width: 130px;
}
@media only screen and (min-width: 78em) {
  .aboveFooter-inner .picto:nth-of-type(2) {
    min-width: none;
  }
}
.aboveFooter-inner .picto:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .aboveFooter-inner .picto:not(:last-child) {
    margin-bottom: 0;
  }
}
.aboveFooter-inner .picto > img {
  background-color: #FDCF12;
  padding: 15px;
  border-radius: 50px;
  width: 70px;
  height: 70px;
}
.aboveFooter-inner .picto > p {
  color: #15080A;
  font-family: "Dosis", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0 20px;
}
@media only screen and (min-width: 64em) {
  .aboveFooter-inner .picto > p {
    text-align: center;
    margin: 10px 0 0;
  }
}

.navFooter {
  padding: 50px 20px;
}
@media only screen and (min-width: 48em) {
  .navFooter {
    padding: 60px 4% 50px;
  }
}
@media only screen and (min-width: 78em) {
  .navFooter {
    padding: 80px 4% 60px;
  }
}
@media only screen and (min-width: 90em) {
  .navFooter {
    padding: 120px 4% 80px;
  }
}
.navFooter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .navFooter-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.navFooter-inner-items:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .navFooter-inner-items:not(:last-child) {
    margin-bottom: 0;
  }
}
.navFooter-inner-items .navFooter-title {
  color: #FD2C7B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.07;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .navFooter-inner-items .navFooter-title {
    text-align: left;
  }
}
.navFooter-inner-items > ul.column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 20px;
}
@media only screen and (min-width: 22.5em) {
  .navFooter-inner-items > ul.column {
    grid-gap: 0 60px;
  }
}
@media only screen and (min-width: 48em) {
  .navFooter-inner-items > ul.column {
    grid-gap: 0 8px;
  }
}
@media only screen and (min-width: 64em) {
  .navFooter-inner-items > ul.column {
    grid-gap: 0 20px;
  }
}
@media only screen and (min-width: 78em) {
  .navFooter-inner-items > ul.column {
    grid-gap: 0 40px;
  }
}
@media only screen and (min-width: 90em) {
  .navFooter-inner-items > ul.column {
    grid-gap: 0 60px;
  }
}
.navFooter-inner-items > ul li {
  text-align: center;
  font-size: 14px;
  line-height: 2.57;
}
@media only screen and (min-width: 48em) {
  .navFooter-inner-items > ul li {
    text-align: left;
  }
}
.navFooter-inner-items > ul li > a {
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (min-width: 64em) {
  .navFooter-inner-items > ul li > a:hover {
    border-bottom: 1px solid #FFFFFF;
  }
}

.belowFooter {
  padding: 0 20px 30px;
}
@media only screen and (min-width: 48em) {
  .belowFooter {
    padding: 0 4% 60px;
  }
}
.belowFooter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .belowFooter-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.belowFooter-inner .rs-footer {
  position: initial;
  margin-bottom: 50px;
}
@media only screen and (min-width: 48em) {
  .belowFooter-inner .rs-footer {
    order: 3;
    margin-bottom: 0;
  }
}
.belowFooter-inner .logo-footer {
  background: url("/images/v1/logo_ptit_clown_white.png") no-repeat scroll center top;
  background-size: 100%;
  display: block;
  width: 75px;
  height: 60px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .belowFooter-inner .logo-footer {
    order: 2;
    margin-bottom: 0;
    position: relative;
    right: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .belowFooter-inner .signature {
    order: 1;
  }
}
.belowFooter-inner .signature > p {
  font-size: 12px;
  color: #FFFFFF;
  margin: 0;
}
.belowFooter-inner .signature > p > a {
  font-weight: 600;
  color: #FFFFFF;
}

.legalesPages {
  padding: 0 20px 30px;
}
@media only screen and (min-width: 48em) {
  .legalesPages {
    padding: 0 4% 60px;
  }
}
.legalesPages-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.legalesPages-inner > ul {
  text-align: center;
}
.legalesPages-inner > ul > li {
  display: inline-block;
}
.legalesPages-inner > ul > li:not(:last-child) {
  margin-right: 10px;
}
.legalesPages-inner > ul > li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #FFFFFF;
  position: relative;
  top: 2px;
  margin-left: 10px;
}
.legalesPages-inner > ul > li > a {
  font-size: 12px;
  color: #FFFFFF;
}
.legalesPages-inner > ul > li > a:hover  {
  text-decoration: none;
  border-bottom: 1px solid #FFFFFF;
}
.legalesPages-inner > ul > li > a:hover {
  text-decoration: none;
  border-bottom: 1px solid #FFFFFF;
}

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

	Header

*/
/*--------- HEADER CONTENT ---------*/
.header-content {
  padding: 0 4%;
}
.header-content-inner {
  height: 126px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 23px 0;
}
@media only screen and (min-width: 48em) {
  .header-content-inner {
    height: 175px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
  }
}
.header-content-inner .content-left {
  position: absolute;
  top: 15px;
  right: 4%;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-left {
    position: initial;
  }
}
.header-content-inner .content-left .infos-header {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-left .infos-header {
    margin-bottom: 40px;
  }
}
.header-content-inner .content-left .infos-header > a {
  width: 20px;
  height: 16px;
}
.header-content-inner .content-left .infos-header > a > img {
  display: block;
}
.header-content-inner .content-left .infos-header .header-tel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.07;
  margin: 0;
  color: #15080A;
}
.header-content-inner .content-left .infos-header .header-tel:before {
  content: "";
  width: 1px;
  height: 10px;
  display: inline-block;
  background-color: #15080A;
  margin: 0 20px;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-right {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-right > ul {
    display: flex;
    align-items: center;
    text-align: right;
  }
}
.header-content-inner .content-right > ul > li {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-content-inner .content-right > ul > li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 10px;
  display: inline-block;
  background-color: #15080A;
  margin: 0 15px;
}
@media only screen and (min-width: 64em) {
  .header-content-inner .content-right > ul > li:not(:last-child):after {
    margin: 0 20px;
  }
}
.header-content-inner .content-right > ul > li > a {
  color: #15080A;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-content-inner .content-right > ul > li > a:hover, .header-content-inner .content-right > ul > li > a:active {
  color: #F26370;
}
.header-content-inner .content-right .header-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 10px;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-right .header-btn {
    top: 30px;
  }
}
.header-content-inner .content-right .header-btn > a {
  font-size: 12px;
  line-height: 1.67;
  padding: 10px 20px;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-right .header-btn > a {
    font-size: 14px;
    line-height: 1.25;
    padding: 15px 30px;
  }
}
@media only screen and (min-width: 64em) {
  .header-content-inner .content-right .header-btn > a {
    font-size: 16px;
    padding: 20px 40px;
  }
}
.header-content-inner .content-right .header-btn:after {
  content: "";
  font-size: 10px;
  margin-top: 5px;
  font-weight: 700;
}
@media only screen and (min-width: 48em) {
  .header-content-inner .content-right .header-btn:after {
    font-size: 12px;
    margin-top: 10px;
  }
}
.header-content-inner .content-right .fr.header-btn:after {
  content: "Réservée aux professionnels";
}
.header-content-inner .content-right .en.header-btn:after {
  content: "Reserved for professionals";
}

/*--------- SOCIAL ICONS ---------*/
.rs-header,
.rs-footer {
  position: absolute;
  right: 4%;
  display: flex;
}
.rs-header > a,
.rs-footer > a {
  width: 30px;
  height: 30px;
  background-color: #FDCF12;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .rs-header > a,
.rs-footer > a {
    width: 40px;
    height: 40px;
  }
}
.rs-header > a:not(:first-of-type),
.rs-footer > a:not(:first-of-type) {
  margin-left: 10px;
}
@media only screen and (min-width: 48em) {
  .rs-header > a > img,
.rs-footer > a > img {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 48em) {
  .rs-header,
.rs-footer {
    position: inherit;
  }
}

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

	Sidebar

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

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

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

	Page Mon compte

*/
.accountActions ul {
  margin-left: -10px;
  margin-right: -10px;
}
.accountActions ul li {
  padding: 2.5px 0;
}
@media only screen and (min-width: 48em) {
  .accountActions ul li {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 64em) {
  .accountActions ul li {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.accountActions ul li a {
  border-radius: 2px;
  background: #fff;
  color: #444;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-top: 10px;
  border: 1px solid #ddd;
  padding: 0 20px 0 60px;
  height: 60px;
  line-height: 60px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .accountActions ul li a {
    margin-top: 20px;
  }
}
.accountActions ul li a:hover {
  text-decoration: none;
  color: #E74C3C;
  background: #F6F6F6;
}
.accountActions ul li a span.icon, .accountActions ul li a .account-subscription form fieldset#profileDetail > div span.form_field, .account-subscription form fieldset#profileDetail > div .accountActions ul li a span.form_field,
.accountActions ul li a .accountModify form fieldset#profileDetail > div span.form_field,
.accountModify form fieldset#profileDetail > div .accountActions ul li a span.form_field, .accountActions ul li a span.error:not(label):not(.form_field),
.accountActions ul li a span.loginError,
.accountActions ul li a span.strength_password,
.accountActions ul li a span.confirmpasswd {
  position: absolute;
  left: 15px;
}
.accountActions ul li a span.icon::after, .accountActions ul li a .account-subscription form fieldset#profileDetail > div span.form_field::after, .account-subscription form fieldset#profileDetail > div .accountActions ul li a span.form_field::after,
.accountActions ul li a .accountModify form fieldset#profileDetail > div span.form_field::after,
.accountModify form fieldset#profileDetail > div .accountActions ul li a span.form_field::after, .accountActions ul li a span.error:not(label):not(.form_field)::after,
.accountActions ul li a span.loginError::after,
.accountActions ul li a span.strength_password::after,
.accountActions ul li a span.confirmpasswd::after {
  content: "";
  position: absolute;
  border-right: 1px solid #ddd;
  height: 59px;
  left: 40px;
}
.accountActions ul li a span:last-child {
  padding-left: 15px;
}

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

	Création/Modification d'un compte utilisateur

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

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

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

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

	Gestion des adresses

*/
.accountAddress h3 {
  margin-top: 15px;
}
.accountAddress .bloc {
  margin: 10px 0;
}
.accountAddress .flex {
  justify-content: space-between;
}
.accountAddress .flex a {
  font-weight: 700;
}
.accountAddress .flex a:first-child {
  color: #1a1a1a;
}
.accountAddress .flex .icon, .accountAddress .flex .structured_text_semantique_text ul li, .structured_text_semantique_text ul .accountAddress .flex li, .accountAddress .flex ul .blockList li, ul .blockList .accountAddress .flex li, .accountAddress .flex .form_creator_header ul li, .form_creator_header ul .accountAddress .flex li, .accountAddress .flex .ckEditor ul li, .ckEditor ul .accountAddress .flex li, .accountAddress .flex .sitemap ul li, .sitemap ul .accountAddress .flex li, .accountAddress .flex :not(label):not(.form_field).error,
.accountAddress .flex .loginError,
.accountAddress .flex .strength_password,
.accountAddress .flex .confirmpasswd, .accountAddress .flex .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .accountAddress .flex .form_field,
.accountAddress .flex .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .accountAddress .flex .form_field {
  margin-left: 10px;
  margin-right: 5px;
}
.accountAddress .flex .icon ::before, .accountAddress .flex .structured_text_semantique_text ul li ::before, .structured_text_semantique_text ul .accountAddress .flex li ::before, .accountAddress .flex ul .blockList li ::before, ul .blockList .accountAddress .flex li ::before, .accountAddress .flex .form_creator_header ul li ::before, .form_creator_header ul .accountAddress .flex li ::before, .accountAddress .flex .ckEditor ul li ::before, .ckEditor ul .accountAddress .flex li ::before, .accountAddress .flex .sitemap ul li ::before, .sitemap ul .accountAddress .flex li ::before, .accountAddress .flex :not(label):not(.form_field).error ::before,
.accountAddress .flex .loginError ::before,
.accountAddress .flex .strength_password ::before,
.accountAddress .flex .confirmpasswd ::before, .accountAddress .flex .account-subscription form fieldset#profileDetail > div .form_field ::before, .account-subscription form fieldset#profileDetail > div .accountAddress .flex .form_field ::before,
.accountAddress .flex .accountModify form fieldset#profileDetail > div .form_field ::before,
.accountModify form fieldset#profileDetail > div .accountAddress .flex .form_field ::before {
  margin-right: 10px;
}

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

	Changer le mot de passe

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

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

	Inscription à la newsletter

*/
.accountNewsletter legend {
  display: none;
}

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

	Etapes du Panier

*/
.cart-steps {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cart-steps div {
  font-size: 10px;
  margin: 10px;
  position: relative;
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 48em) {
  .cart-steps div {
    font-size: 14px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div {
    font-size: 16px;
  }
}
.cart-steps div::before {
  content: "";
  line-height: 44px;
  font-size: 16px;
  color: #24b35d;
  background: #24b35d;
  border-radius: 100px;
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  border: 2px solid #24b35d;
}
@media only screen and (min-width: 48em) {
  .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: #24b35d;
}
@media only screen and (min-width: 48em) {
  .cart-steps div > span {
    line-height: 1.2;
    width: 100px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div > span {
    width: 200px;
  }
}
.cart-steps div > span .icon-checked-white {
  position: absolute;
  top: 15px;
  left: 19px;
  font-size: 13px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div > span .icon-checked-white {
    top: 20px;
    left: 40px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div > span .icon-checked-white {
    left: 90px;
  }
}
.cart-steps div > span .icon-checked-white::before {
  font-size: 13px !important;
}
@media only screen and (min-width: 48em) {
  .cart-steps div > span .icon-checked-white::before {
    font-size: 16px !important;
  }
}
.cart-steps div:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div:not(:last-child) {
    margin-right: 40px;
  }
}
.cart-steps div:not(:last-child)::after {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: #24b35d;
  position: absolute;
  left: 55px;
  top: 22px;
  border-radius: 6px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div:not(:last-child)::after {
    left: 85px;
    top: 30px;
    width: 80px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div:not(:last-child)::after {
    left: 135px;
    top: 30px;
    width: 180px;
  }
}
.cart-steps div.active {
  color: #24b35d;
}
.cart-steps div.active::before {
  background: #fff;
  color: #24b35d;
  border-color: #24b35d;
}
.cart-steps div.active::after {
  background: #F6F6F6;
}
.cart-steps div.active span {
  color: #24b35d;
}
.cart-steps div.active span .icon-checked-white {
  display: none;
}
.cart-steps div.active + div,
.cart-steps div.active + div + div,
.cart-steps div.active + div + div + div {
  color: #ddd;
}
.cart-steps div.active + div::before,
.cart-steps div.active + div + div::before,
.cart-steps div.active + div + div + div::before {
  background: #F6F6F6;
  color: #ddd;
  border-color: #F6F6F6;
}
.cart-steps div.active + div::after,
.cart-steps div.active + div + div::after,
.cart-steps div.active + div + div + div::after {
  background: #F6F6F6;
}
.cart-steps div.active + div span,
.cart-steps div.active + div + div span,
.cart-steps div.active + div + div + div span {
  color: #ddd;
}
.cart-steps div.active + div span .icon, .cart-steps div.active + div span .structured_text_semantique_text ul li, .structured_text_semantique_text ul .cart-steps div.active + div span li, .cart-steps div.active + div span ul .blockList li, ul .blockList .cart-steps div.active + div span li, .cart-steps div.active + div span .form_creator_header ul li, .form_creator_header ul .cart-steps div.active + div span li, .cart-steps div.active + div span .ckEditor ul li, .ckEditor ul .cart-steps div.active + div span li, .cart-steps div.active + div span .sitemap ul li, .sitemap ul .cart-steps div.active + div span li, .cart-steps div.active + div span :not(label):not(.form_field).error,
.cart-steps div.active + div span .loginError,
.cart-steps div.active + div span .strength_password,
.cart-steps div.active + div span .confirmpasswd, .cart-steps div.active + div span .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .cart-steps div.active + div span .form_field,
.cart-steps div.active + div span .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-steps div.active + div span .form_field,
.cart-steps div.active + div + div span .icon,
.cart-steps div.active + div + div span .structured_text_semantique_text ul li,
.structured_text_semantique_text ul .cart-steps div.active + div + div span li,
.cart-steps div.active + div + div span ul .blockList li,
ul .blockList .cart-steps div.active + div + div span li,
.cart-steps div.active + div + div span .form_creator_header ul li,
.form_creator_header ul .cart-steps div.active + div + div span li,
.cart-steps div.active + div + div span .ckEditor ul li,
.ckEditor ul .cart-steps div.active + div + div span li,
.cart-steps div.active + div + div span .sitemap ul li,
.sitemap ul .cart-steps div.active + div + div span li,
.cart-steps div.active + div + div span :not(label):not(.form_field).error,
.cart-steps div.active + div + div span .loginError,
.cart-steps div.active + div + div span .strength_password,
.cart-steps div.active + div + div span .confirmpasswd,
.cart-steps div.active + div + div span .account-subscription form fieldset#profileDetail > div .form_field,
.account-subscription form fieldset#profileDetail > div .cart-steps div.active + div + div span .form_field,
.cart-steps div.active + div + div span .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-steps div.active + div + div span .form_field,
.cart-steps div.active + div + div + div span .icon,
.cart-steps div.active + div + div + div span .structured_text_semantique_text ul li,
.structured_text_semantique_text ul .cart-steps div.active + div + div + div span li,
.cart-steps div.active + div + div + div span ul .blockList li,
ul .blockList .cart-steps div.active + div + div + div span li,
.cart-steps div.active + div + div + div span .form_creator_header ul li,
.form_creator_header ul .cart-steps div.active + div + div + div span li,
.cart-steps div.active + div + div + div span .ckEditor ul li,
.ckEditor ul .cart-steps div.active + div + div + div span li,
.cart-steps div.active + div + div + div span .sitemap ul li,
.sitemap ul .cart-steps div.active + div + div + div span li,
.cart-steps div.active + div + div + div span :not(label):not(.form_field).error,
.cart-steps div.active + div + div + div span .loginError,
.cart-steps div.active + div + div + div span .strength_password,
.cart-steps div.active + div + div + div span .confirmpasswd,
.cart-steps div.active + div + div + div span .account-subscription form fieldset#profileDetail > div .form_field,
.account-subscription form fieldset#profileDetail > div .cart-steps div.active + div + div + div span .form_field,
.cart-steps div.active + div + div + div span .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-steps div.active + div + div + div span .form_field {
  display: none;
}
.cart-empty + .cart-steps {
  display: none !important;
}

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

	Page Panier

*/
.cart-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.cart-empty .icon-cart {
  float: left;
  margin-right: 30px;
}
.cart-empty .icon-cart::before {
  font-size: 16px;
}
@media only screen and (min-width: 48em) {
  .cart-number {
    font-size: 18px;
  }
}
.cart-form > div {
  margin: 40px 0;
}
@media only screen and (min-width: 78em) {
  .cart-form > div {
    margin: 60px 0;
  }
}
.cart-form > div h3 {
  margin-bottom: 20px;
}
.cart-product {
  border-radius: 2px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.cart-product-info {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .cart-product-info {
    padding: 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: 18px;
  font-weight: 700;
  display: block;
  line-height: 1.25;
}
@media only screen and (min-width: 48em) {
  .cart-product-name a {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.cart-product-reference {
  font-size: 12px;
  text-transform: uppercase;
}
@media only screen and (min-width: 48em) {
  .cart-product-reference {
    font-size: 14px;
  }
}
.cart-product-variant {
  padding: 10px;
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant {
    padding: 20px;
    font-size: 16px;
  }
}
.cart-product-variant-item {
  display: inline-block;
  align-items: center;
}
.cart-product-variant-item:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item:not(:first-child) {
    margin-left: 60px;
  }
}
.cart-product-variant-item label {
  letter-spacing: 1px;
  font-size: 14px;
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item label {
    display: inline-block;
  }
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item .select-container {
    display: inline-block;
  }
  .cart-product-variant-item .select-container .icon, .cart-product-variant-item .select-container .structured_text_semantique_text ul li, .structured_text_semantique_text ul .cart-product-variant-item .select-container li, .cart-product-variant-item .select-container ul .blockList li, ul .blockList .cart-product-variant-item .select-container li, .cart-product-variant-item .select-container .form_creator_header ul li, .form_creator_header ul .cart-product-variant-item .select-container li, .cart-product-variant-item .select-container .ckEditor ul li, .ckEditor ul .cart-product-variant-item .select-container li, .cart-product-variant-item .select-container .sitemap ul li, .sitemap ul .cart-product-variant-item .select-container li, .cart-product-variant-item .select-container :not(label):not(.form_field).error,
.cart-product-variant-item .select-container .loginError,
.cart-product-variant-item .select-container .strength_password,
.cart-product-variant-item .select-container .confirmpasswd, .cart-product-variant-item .select-container .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .cart-product-variant-item .select-container .form_field,
.cart-product-variant-item .select-container .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-product-variant-item .select-container .form_field {
    margin-top: -12px;
  }
  .cart-product-variant-item .select-container select {
    margin-top: -5px;
  }
}
.cart-product-price {
  margin-right: 0;
  text-align: right;
  font-weight: 700;
}
.cart-product-price-normal {
  font-size: 10px;
  text-decoration: line-through;
  display: block;
  color: #888;
}
@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;
}
.cart-product-quantity input {
  margin: 10px !important;
  padding: 10px !important;
  text-align: center;
  width: 90px;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity input {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}
.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: 700;
  color: #444;
}
.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: space-between;
  margin-top: -20px !important;
}
.cart-button-refresh, .cart-button-trash {
  display: flex;
  justify-content: center;
}
.cart-button-refresh input, .cart-button-trash input {
  background: none !important;
  padding: 0;
  padding-left: 10px;
  margin: 0;
  letter-spacing: 0;
  font-size: 12px;
  color: inherit;
}
@media only screen and (min-width: 48em) {
  .cart-button-refresh input, .cart-button-trash input {
    font-size: 14px;
  }
}
.cart-button-refresh {
  color: #444;
}
@media only screen and (min-width: 48em) {
  .cart-button-refresh .icon::before, .cart-button-refresh .structured_text_semantique_text ul li::before, .structured_text_semantique_text ul .cart-button-refresh li::before, .cart-button-refresh ul .blockList li::before, ul .blockList .cart-button-refresh li::before, .cart-button-refresh .form_creator_header ul li::before, .form_creator_header ul .cart-button-refresh li::before, .cart-button-refresh .ckEditor ul li::before, .ckEditor ul .cart-button-refresh li::before, .cart-button-refresh .sitemap ul li::before, .sitemap ul .cart-button-refresh li::before, .cart-button-refresh .error:not(label):not(.form_field)::before,
.cart-button-refresh .loginError::before,
.cart-button-refresh .strength_password::before,
.cart-button-refresh .confirmpasswd::before, .cart-button-refresh .account-subscription form fieldset#profileDetail > div .form_field::before, .account-subscription form fieldset#profileDetail > div .cart-button-refresh .form_field::before,
.cart-button-refresh .accountModify form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div .cart-button-refresh .form_field::before {
    font-size: 12px;
  }
}
.cart-button-trash {
  color: #f50023;
}
.cart-button-trash .icon::before, .cart-button-trash .structured_text_semantique_text ul li::before, .structured_text_semantique_text ul .cart-button-trash li::before, .cart-button-trash ul .blockList li::before, ul .blockList .cart-button-trash li::before, .cart-button-trash .form_creator_header ul li::before, .form_creator_header ul .cart-button-trash li::before, .cart-button-trash .ckEditor ul li::before, .ckEditor ul .cart-button-trash li::before, .cart-button-trash .sitemap ul li::before, .sitemap ul .cart-button-trash li::before, .cart-button-trash .error:not(label):not(.form_field)::before,
.cart-button-trash .loginError::before,
.cart-button-trash .strength_password::before,
.cart-button-trash .confirmpasswd::before, .cart-button-trash .account-subscription form fieldset#profileDetail > div .form_field::before, .account-subscription form fieldset#profileDetail > div .cart-button-trash .form_field::before,
.cart-button-trash .accountModify form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div .cart-button-trash .form_field::before {
  font-size: 6px;
}
@media only screen and (min-width: 48em) {
  .cart-button-trash .icon::before, .cart-button-trash .structured_text_semantique_text ul li::before, .structured_text_semantique_text ul .cart-button-trash li::before, .cart-button-trash ul .blockList li::before, ul .blockList .cart-button-trash li::before, .cart-button-trash .form_creator_header ul li::before, .form_creator_header ul .cart-button-trash li::before, .cart-button-trash .ckEditor ul li::before, .ckEditor ul .cart-button-trash li::before, .cart-button-trash .sitemap ul li::before, .sitemap ul .cart-button-trash li::before, .cart-button-trash .error:not(label):not(.form_field)::before,
.cart-button-trash .loginError::before,
.cart-button-trash .strength_password::before,
.cart-button-trash .confirmpasswd::before, .cart-button-trash .account-subscription form fieldset#profileDetail > div .form_field::before, .account-subscription form fieldset#profileDetail > div .cart-button-trash .form_field::before,
.cart-button-trash .accountModify form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div .cart-button-trash .form_field::before {
    font-size: 8px;
  }
}
.cart-shipping-item {
  border: 1px solid #ddd;
  position: relative;
  border-radius: 2px;
  align-items: center;
  font-size: 14px;
  color: #1a1a1a;
  margin: 5px 0;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 60px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item {
    font-size: 16px;
  }
}
.cart-shipping-item > * {
  height: 60px;
  position: relative;
}
.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;
}
@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: #1a1a1a;
  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: #444;
  background: #F6F6F6;
  z-index: 2;
}
.cart-shipping-item > * input[type=radio]:checked + label .icon, .cart-shipping-item > * input[type=radio]:checked + label .structured_text_semantique_text ul li, .structured_text_semantique_text ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label ul .blockList li, ul .blockList .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .form_creator_header ul li, .form_creator_header ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .ckEditor ul li, .ckEditor ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .sitemap ul li, .sitemap ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label :not(label):not(.form_field).error,
.cart-shipping-item > * input[type=radio]:checked + label .loginError,
.cart-shipping-item > * input[type=radio]:checked + label .strength_password,
.cart-shipping-item > * input[type=radio]:checked + label .confirmpasswd, .cart-shipping-item > * input[type=radio]:checked + label .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .cart-shipping-item > * input[type=radio]:checked + label .form_field,
.cart-shipping-item > * input[type=radio]:checked + label .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-shipping-item > * input[type=radio]:checked + label .form_field {
  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, .cart-shipping-item > * input[type=radio]:checked + label .structured_text_semantique_text ul li, .structured_text_semantique_text ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label ul .blockList li, ul .blockList .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .form_creator_header ul li, .form_creator_header ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .ckEditor ul li, .ckEditor ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label .sitemap ul li, .sitemap ul .cart-shipping-item > * input[type=radio]:checked + label li, .cart-shipping-item > * input[type=radio]:checked + label :not(label):not(.form_field).error,
.cart-shipping-item > * input[type=radio]:checked + label .loginError,
.cart-shipping-item > * input[type=radio]:checked + label .strength_password,
.cart-shipping-item > * input[type=radio]:checked + label .confirmpasswd, .cart-shipping-item > * input[type=radio]:checked + label .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .cart-shipping-item > * input[type=radio]:checked + label .form_field,
.cart-shipping-item > * input[type=radio]:checked + label .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .cart-shipping-item > * input[type=radio]:checked + label .form_field {
    left: 25px;
  }
}
.cart-shipping-item > * input[type=radio]:checked + label::before {
  border-color: #444;
  background: #444;
}
.cart-shipping-item-name {
  width: 100%;
}
.cart-shipping-item-amount {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 60px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item-amount {
    right: 20px;
  }
}
.cart-shipping-item.active .cart-shipping-item-amount {
  color: #444;
}
.cart-amount-item {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
  height: 40px;
  position: relative;
  border-radius: 2px;
  align-items: center;
  font-size: 14px;
  color: #1a1a1a;
  margin: 5px 0;
  padding: 0 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media only screen and (min-width: 48em) {
  .cart-amount-item {
    font-size: 16px;
    height: 50px;
  }
}
.cart-amount-item.total {
  color: #444;
  background: #F6F6F6;
  font-size: 18px;
  height: 60px;
}
@media only screen and (min-width: 48em) {
  .cart-amount-item.total {
    font-size: 24px;
    height: 75px;
  }
}
.cart-coupon-error {
  margin: 0px 0 20px !important;
}
.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;
}
@media only screen and (min-width: 78em) {
  .cart-coupon-current {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.cart-coupon-current .bloc {
  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-current .bloc {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cart-coupon-current .bloc p {
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  .cart-coupon-current .bloc p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-coupon-current .bloc p {
    font-size: 18px;
  }
}
.cart-coupon-current .bloc a {
  margin: 10px 0;
}
.cart-payment label {
  padding-top: 100px;
}
.cart-payment label::before {
  content: "";
}
.cart-payment label[for=modscheques] {
  background: url(/images/commun/payment/icone-paiement-cheques.png) no-repeat top;
}
.cart-payment label[for=modstelephone] {
  background: url(/images/commun/payment/icone-paiement-telephone.png) no-repeat top;
}
.cart-payment label[for=modspaypal] {
  background: url(/images/commun/payment/icone-paiement-paypal.png) no-repeat top;
}
.cart-payment input[type=radio] {
  float: none;
}
.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, .cart-confirmation h2.toggleTitle span.error:not(label):not(.form_field),
.cart-confirmation h2.toggleTitle span.loginError,
.cart-confirmation h2.toggleTitle span.strength_password,
.cart-confirmation h2.toggleTitle span.confirmpasswd, .cart-confirmation h2.toggleTitle .account-subscription form fieldset#profileDetail > div span.form_field, .account-subscription form fieldset#profileDetail > div .cart-confirmation h2.toggleTitle span.form_field,
.cart-confirmation h2.toggleTitle .accountModify form fieldset#profileDetail > div span.form_field,
.accountModify form fieldset#profileDetail > div .cart-confirmation h2.toggleTitle span.form_field {
  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%;
}

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

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

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

#overlibheader, #overlibfooter {
  display: none !important;
}
#overlibcontent {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 2px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 375px;
  background: #fff;
}
#overlibcontent .add-to-cart-container {
  text-align: center;
}
#overlibcontent .add-to-cart-container .o-hidden {
  margin-bottom: 30px;
}
#overlibcontent .add-to-cart-check {
  width: 45px;
  height: 45px;
  background: #24b35d;
  border-radius: 100px;
  position: relative;
  float: left;
  margin-right: 20px;
}
#overlibcontent .add-to-cart-check .icon, #overlibcontent .add-to-cart-check .structured_text_semantique_text ul li, .structured_text_semantique_text ul #overlibcontent .add-to-cart-check li, #overlibcontent .add-to-cart-check ul .blockList li, ul .blockList #overlibcontent .add-to-cart-check li, #overlibcontent .add-to-cart-check .form_creator_header ul li, .form_creator_header ul #overlibcontent .add-to-cart-check li, #overlibcontent .add-to-cart-check .ckEditor ul li, .ckEditor ul #overlibcontent .add-to-cart-check li, #overlibcontent .add-to-cart-check .sitemap ul li, .sitemap ul #overlibcontent .add-to-cart-check li, #overlibcontent .add-to-cart-check :not(label):not(.form_field).error,
#overlibcontent .add-to-cart-check .loginError,
#overlibcontent .add-to-cart-check .strength_password,
#overlibcontent .add-to-cart-check .confirmpasswd, #overlibcontent .add-to-cart-check .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div #overlibcontent .add-to-cart-check .form_field,
#overlibcontent .add-to-cart-check .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div #overlibcontent .add-to-cart-check .form_field {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#overlibcontent .add-to-cart-check .icon::before, #overlibcontent .add-to-cart-check .structured_text_semantique_text ul li::before, .structured_text_semantique_text ul #overlibcontent .add-to-cart-check li::before, #overlibcontent .add-to-cart-check ul .blockList li::before, ul .blockList #overlibcontent .add-to-cart-check li::before, #overlibcontent .add-to-cart-check .form_creator_header ul li::before, .form_creator_header ul #overlibcontent .add-to-cart-check li::before, #overlibcontent .add-to-cart-check .ckEditor ul li::before, .ckEditor ul #overlibcontent .add-to-cart-check li::before, #overlibcontent .add-to-cart-check .sitemap ul li::before, .sitemap ul #overlibcontent .add-to-cart-check li::before, #overlibcontent .add-to-cart-check .error:not(label):not(.form_field)::before,
#overlibcontent .add-to-cart-check .loginError::before,
#overlibcontent .add-to-cart-check .strength_password::before,
#overlibcontent .add-to-cart-check .confirmpasswd::before, #overlibcontent .add-to-cart-check .account-subscription form fieldset#profileDetail > div .form_field::before, .account-subscription form fieldset#profileDetail > div #overlibcontent .add-to-cart-check .form_field::before,
#overlibcontent .add-to-cart-check .accountModify form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div #overlibcontent .add-to-cart-check .form_field::before {
  font-size: 16px;
}
#overlibcontent .add-to-cart-text {
  text-align: left;
  color: #1a1a1a;
  font-size: 20px;
  width: 250px;
  line-height: 1.25;
  display: inline-block;
}
#overlibcontent .add-to-cart-link {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

	Familles du catalogue

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

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

	Produits du catalogue

*/
.catalog-product-promo {
  position: absolute;
  background: #f50023;
  color: #fff;
  left: 15px;
  top: 15px;
  padding: 10px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.catalog-product-novelty {
  position: absolute;
  background: #24b35d;
  color: #fff;
  right: 15px;
  top: 15px;
  padding: 10px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.catalog-product-item-picture {
  position: relative;
  margin-bottom: 20px;
}
.catalog-product-item-picture.fit-cover {
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}
@media only screen and (min-width: 78em) {
  .catalog-product-item-picture.fit-cover {
    height: 250px;
  }
}
.catalog-product-item-container {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.catalog-product-item-container > *:first-child {
  margin-top: 0;
}
.catalog-product-item-container > *:last-child {
  margin-bottom: 0;
}
.catalog-product-item-container > *:not(a) {
  margin-top: 10px;
  margin-bottom: 10px;
}
.catalog-product-item-container h2 {
  margin: 10px 0;
  font-size: 24px;
}
.catalog-product-item-price {
  margin-top: 10px;
}
.catalog-product-item-price span {
  font-weight: 700;
  font-size: 18px;
}
.catalog-product-item-price span + span {
  margin-left: 10px;
}
.catalog-product-item-price span.old_price {
  text-decoration: line-through;
  color: #888;
}
.catalog-product-item-price span.special_price {
  color: #f50023;
}

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

	FAQ

*/
.ru-faq article,
.ru-faq main {
  max-width: none;
  padding: 0;
  margin: 0;
}

#faq {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 48em) {
  #faq {
    padding: 0 4%;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 64em) {
  #faq {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 78em) {
  #faq {
    margin-bottom: 120px;
  }
}
#faq .faq-list {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  align-items: flex-start;
}
@media only screen and (min-width: 48em) {
  #faq .faq-list {
    grid-template-columns: 1fr 1fr;
  }
}
#faq .faq-list-item {
  position: relative;
  overflow: hidden;
  background-color: #EDEDEE;
  border-radius: 10px;
  border: 1px solid #EDEDEE;
}
#faq .faq-list-item .quest {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
  cursor: pointer;
  padding: 15px 20px;
  min-height: 83.2px;
}
#faq .faq-list-item .quest > p {
  margin: 0;
  padding-right: 20px;
  font-weight: 600;
  color: #15080A;
  line-height: 1.6;
}
#faq .faq-list-item .quest:after {
  content: url(/images/icon/plus.svg);
}
#faq .faq-list-item .answer {
  display: none;
  padding: 0 20px;
  width: 100%;
}
#faq .faq-list-item .answer > p {
  font-size: 14px;
  color: rgba(55, 38, 68, 0.75);
}
#faq .faq-list-item.open .quest > p {
  color: #FD2C7B;
}
#faq .faq-list-item.open .quest:after {
  content: url(/images/icon/minus.svg);
}

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

	Page listing Blog / Actualités

*/
.newsList article,
.newsList main {
  max-width: none;
  padding: 0;
  margin: 0;
}

.news-inner {
  width: 100%;
  padding: 0 20px 20px;
}
@media only screen and (min-width: 48em) {
  .news-inner {
    padding: 0 4% 50px;
  }
}
@media only screen and (min-width: 64em) {
  .news-inner {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .news-inner {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 78em) {
  .news-inner-wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
}

.news-list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 48em) {
  .news-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  .news-list {
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.news-list-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 30px -10px rgba(55, 38, 68, 0.25);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.news-list-item:hover {
  transform: scale(1.03);
}
.news-list-item:hover p.p-btn > a {
  background-color: #FD2C7B;
  color: #FFFFFF;
}
.news-list-item .viewproduct a {
  background: none;
}
.news-list-item-img {
  height: 200px;
}
@media only screen and (min-width: 35em) {
  .news-list-item-img {
    height: 276px;
  }
}
@media only screen and (min-width: 35em) {
  .news-list-item-img {
    height: 276px;
  }
}
.news-list-item-text .date {
  margin: 14px 0 10px;
}
.news-list-item-text .date span {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 8, 10, 0.7);
}
.news-list-item-text .titre {
  font-family: "Dosis", sans-serif;
  color: #15080A;
  font-weight: 600;
  font-size: 20px;
  min-height: 60px;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  padding: 0 10px;
}
@media only screen and (min-width: 64em) {
  .news-list-item-text .titre {
    font-size: 24px;
  }
}

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

	Page détail Blog / Actualités

*/
.newsDetail article,
.newsDetail main {
  max-width: none;
  padding: 0;
  margin: 0;
}

.news-details .chapo-date {
  margin: 50px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 8, 10, 0.7);
}
.news-details .chapo-description p {
  color: #15080A;
  margin-bottom: 50px;
}
.news-details .pager.detail a {
  background: none;
}
.news-details .pager.detail > li {
  list-style: none;
}

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

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

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

	Page Contact

*/
.ru-contact .contact-infos {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 64em) {
  .ru-contact .contact-infos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.ru-contact .contact-infos .contact-logo {
  max-width: 130px;
}
@media only screen and (min-width: 64em) {
  .ru-contact .contact-infos .map {
    width: 400px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-contact .contact-infos .map {
    width: 500px;
  }
}

/* Préformaté accueil */
.ru-accueil article,
.ru-accueil main {
  max-width: none;
  padding: 0;
  margin: 0;
}

.ru-accueil p.p-btn a {
  margin: 10px 0;
}

.ru-accueil p.p-btn {
  margin: 20px 0 !important;
}
.ru-accueil p.p-btn a {
  margin: 10px 0;
}

.intro-accueil {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}
@media only screen and (min-width: 64em) {
  .intro-accueil {
    height: 440px;
  }
}
.intro-accueil #responsiveSlide {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.intro-accueil #responsiveSlide:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(55, 38, 68, 0.75);
  display: block;
  position: absolute;
  z-index: 4;
}
.intro-accueil #responsiveSlide > .diaporama {
  width: 100% !important;
  height: 100% !important;
}
.intro-accueil #responsiveSlide > .diaporama img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.intro-accueil-text {
  position: relative;
  z-index: 2;
  max-width: 1148px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-text {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  .intro-accueil-text {
    flex-direction: row;
  }
}
@media only screen and (min-width: 90em) {
  .intro-accueil-text {
    padding: 0;
  }
}
.intro-accueil-text > h1 {
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 60px;
}
@media only screen and (min-width: 64em) {
  .intro-accueil-text > h1 {
    text-align: left;
    font-size: 50px;
    padding-right: 20px;
    max-width: 72%;
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-text > h1 {
    font-size: 60px;
  }
}
.intro-accueil-text .btn-intro-accueil {
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .intro-accueil-text .btn-intro-accueil {
    text-align: right;
  }
}
.intro-accueil-text .btn-intro-accueil > a {
  margin: 0;
}
.intro-accueil-text .btn-intro-accueil > a:first-of-type {
  margin-bottom: 20px;
  color: #FFFFFF;
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 48em) {
  .intro-accueil-text .btn-intro-accueil > a:first-of-type {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 64em) {
  .intro-accueil-text .btn-intro-accueil > a:first-of-type {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.intro-accueil-text .btn-intro-accueil > a:first-of-type:hover {
  color: #15080A;
  border-color: #15080A;
  background-color: #FFFFFF;
}
.intro-accueil-text .btn-intro-accueil > a:last-of-type {
  display: block;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-text .btn-intro-accueil > a:last-of-type {
    display: inline-block;
  }
}
@media only screen and (min-width: 64em) {
  .intro-accueil-text .btn-intro-accueil > a:last-of-type {
    display: block;
  }
}

.pres-accueil {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 64em) {
  .pres-accueil {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil {
    margin: 100px 0 120px;
  }
}
.pres-accueil-text {
  margin: 50px 0;
  padding: 0 20px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-text {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  .pres-accueil-text {
    margin: 0;
    padding: 0;
    width: 572px;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil-text {
    padding: 0;
  }
}
.pres-accueil.medium-row {
  padding: 0;
}
.pres-accueil .container-picto {
  display: flex;
  justify-content: center;
  background-color: #EDEDEE;
}
@media only screen and (min-width: 64em) {
  .pres-accueil .container-picto {
    width: 360px;
    border-radius: 10px;
    margin-left: 4%;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil .container-picto {
    width: 450px;
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil .container-picto {
    margin: 0;
  }
}
.pres-accueil .container-picto .picto {
  padding: 50px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .pres-accueil .container-picto .picto {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .pres-accueil .container-picto .picto {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil .container-picto .picto {
    width: 100%;
    padding: 50px 100px;
  }
}
.pres-accueil .container-picto .picto-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .pres-accueil .container-picto .picto-item {
    max-width: 240px;
  }
}
.pres-accueil .container-picto .picto-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .pres-accueil .container-picto .picto-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.pres-accueil .container-picto .picto-item > img {
  background-color: #FDCF12;
  padding: 15px;
  border-radius: 50px;
  width: 70px;
  height: 70px;
}
.pres-accueil .container-picto .picto-item > p {
  color: #15080A;
  font-family: "Dosis", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0 20px;
}

.produits-accueil {
  width: 100%;
  background-color: #EDEDEE;
  padding: 50px 20px 30px;
}
@media only screen and (min-width: 48em) {
  .produits-accueil {
    padding: 80px 4% 60px;
  }
}
@media only screen and (min-width: 64em) {
  .produits-accueil {
    padding: 100px 4% 80px;
  }
}
@media only screen and (min-width: 78em) {
  .produits-accueil {
    padding: 120px 4% 100px;
  }
}
@media only screen and (min-width: 90em) {
  .produits-accueil {
    padding: 120px 0 100px;
  }
}
@media only screen and (min-width: 78em) {
  .produits-accueil > div {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.produits-accueil .text {
  text-align: center;
}
.produits-accueil .text > h2 {
  margin-bottom: 20px;
}
.produits-accueil .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .produits-accueil .text > span {
    line-height: 1.07;
  }
}
.produits-accueil .text > span {
  color: #F26370;
}
.produits-accueil .text {
  text-align: center;
}
.produits-accueil .text > h2 {
  margin-bottom: 20px;
}
.produits-accueil .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .produits-accueil .text > span {
    line-height: 1.07;
  }
}
.produits-accueil .text > span {
  color: #F26370;
}
.produits-accueil .feedback {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 35px 0 60px;
}
@media only screen and (min-width: 48em) {
  .produits-accueil .feedback {
    margin: 60px 0;
  }
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
  }
}
@media only screen and (min-width: 78em) {
  .produits-accueil .feedback {
    margin: 80px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.produits-accueil .feedback div.short_product,
.produits-accueil .feedback div.news {
  flex: 0 0 auto;
  background-color: #FFFFFF;
  text-align: center;
  margin-right: 10px;
  width: 300px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback div.short_product,
.produits-accueil .feedback div.news {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback div.short_product:nth-of-type(7), .produits-accueil .feedback div.short_product:nth-of-type(8),
.produits-accueil .feedback div.news:nth-of-type(7),
.produits-accueil .feedback div.news:nth-of-type(8) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .produits-accueil .feedback div.short_product:nth-of-type(7), .produits-accueil .feedback div.short_product:nth-of-type(8),
.produits-accueil .feedback div.news:nth-of-type(7),
.produits-accueil .feedback div.news:nth-of-type(8) {
    display: block;
  }
}
.produits-accueil .feedback div.short_product div.img-shortproduct,
.produits-accueil .feedback div.short_product div.img-news,
.produits-accueil .feedback div.news div.img-shortproduct,
.produits-accueil .feedback div.news div.img-news {
  width: 100%;
  height: 250px;
}
.produits-accueil .feedback div.short_product div.img-shortproduct > img,
.produits-accueil .feedback div.short_product div.img-news > img,
.produits-accueil .feedback div.news div.img-shortproduct > img,
.produits-accueil .feedback div.news div.img-news > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.produits-accueil .feedback div.short_product div.img-news,
.produits-accueil .feedback div.news div.img-news {
  height: 200px;
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback div.short_product div.img-news,
.produits-accueil .feedback div.news div.img-news {
    height: 276px;
  }
}
.produits-accueil .feedback div.short_product div.reference,
.produits-accueil .feedback div.short_product div.date,
.produits-accueil .feedback div.news div.reference,
.produits-accueil .feedback div.news div.date {
  margin: 14px 0 10px;
}
.produits-accueil .feedback div.short_product div.reference > span,
.produits-accueil .feedback div.short_product div.date > span,
.produits-accueil .feedback div.news div.reference > span,
.produits-accueil .feedback div.news div.date > span {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 8, 10, 0.5);
}
.produits-accueil .feedback div.short_product p.title-shortproduct,
.produits-accueil .feedback div.short_product p.title-news,
.produits-accueil .feedback div.news p.title-shortproduct,
.produits-accueil .feedback div.news p.title-news {
  color: #15080A;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  padding: 0 10px;
  min-height: 40px;
}
.produits-accueil .feedback div.short_product p.title-news,
.produits-accueil .feedback div.news p.title-news {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  min-height: 60px;
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback div.short_product p.title-news,
.produits-accueil .feedback div.news p.title-news {
    font-size: 24px;
  }
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback div.short_product:hover .btn-empty-coral {
    background-color: #F26370;
    color: #FFFFFF;
  }
}
@media only screen and (min-width: 64em) {
  .produits-accueil .feedback > div.short_product:last-child {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .produits-accueil .feedback > div.short_product:last-child {
    display: block;
  }
}

.licences-accueil {
  margin: 50px 0;
  padding: 0 20px;
}
@media only screen and (min-width: 48em) {
  .licences-accueil {
    margin: 60px 0;
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  .licences-accueil {
    margin: 80px 0;
  }
}
@media only screen and (min-width: 78em) {
  .licences-accueil {
    margin: 120px 0;
  }
}
@media only screen and (min-width: 90em) {
  .licences-accueil {
    padding: 0 !important;
  }
}
.licences-accueil-inner .text {
  text-align: center;
}
.licences-accueil-inner .text > h2 {
  margin-bottom: 20px;
}
.licences-accueil-inner .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .licences-accueil-inner .text > span {
    line-height: 1.07;
  }
}
.licences-accueil-inner .text > span {
  color: #FD2C7B;
}
.licences-accueil-inner .logos {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  margin: 50px 0;
}
@media only screen and (min-width: 48em) {
  .licences-accueil-inner .logos {
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .licences-accueil-inner .logos {
    grid-gap: 50px;
    margin: 80px 0;
  }
}
@media only screen and (min-width: 78em) {
  .licences-accueil-inner .logos {
    grid-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.licences-accueil-inner .logos-item {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 230px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 64em) {
  .licences-accueil-inner .logos-item:hover {
    transform: scale(1.03);
  }
}
.licences-accueil-inner .logos-item:nth-of-type(n+5) {
  display: none;
}

.licences-accueil-inner .logos-item img {
  max-width: 200px;
}

/*-----------------------------------------------------------------
				Section Licences Temporaire
-----------------------------------------------------------------*/
/*.licences-accueil-inner .logos {
	 display: none;
 }*/
.galerie_licences_temp {
  margin: 30px 0;
  display: none;
}
@media only screen and (min-width: 48em) {
  .galerie_licences_temp {
    margin: 40px 0;
  }
}
@media only screen and (min-width: 78em) {
  .galerie_licences_temp {
    margin: 60px 0;
  }
}
.galerie_licences_temp #gallery_70 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 48em) {
  .galerie_licences_temp #gallery_70 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  .galerie_licences_temp #gallery_70 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.galerie_licences_temp #gallery_70 .galerie_licences_temp_item {
  width: 250px;
  height: 180px;
  margin: 0 auto;
}
.galerie_licences_temp #gallery_70 .galerie_licences_temp_item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*-----------------------------------------------------------------*/
.faq-accueil {
  margin: 50px auto;
  padding: 0 20px;
  max-width: 690px !important;
}
@media only screen and (min-width: 48em) {
  .faq-accueil {
    margin: 60px 0;
    padding: 0 4%;
  }
}
@media only screen and (min-width: 64em) {
  .faq-accueil {
    margin: 80px 0;
    padding: 0;
  }
}
@media only screen and (min-width: 78em) {
  .faq-accueil {
    margin: 120px 0;
  }
}
.faq-accueil-inner .text {
  text-align: center;
}
.faq-accueil-inner .text > h2 {
  margin-bottom: 20px;
}
.faq-accueil-inner .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .faq-accueil-inner .text > span {
    line-height: 1.07;
  }
}
.faq-accueil-inner .text > span {
  color: #FD2C7B;
}
.faq-accueil-inner .faq-list {
  margin: 50px 0 !important;
}
@media only screen and (min-width: 48em) {
  .faq-accueil-inner .faq-list {
    grid-template-columns: 1fr !important;
  }
}
@media only screen and (min-width: 64em) {
  .faq-accueil-inner .faq-list {
    margin: 80px 0 !important;
  }
}

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

	Page menu

*/
.ru-page-menu article,
.ru-page-menu main {
  max-width: none;
  padding: 0;
}

.page-menu-list {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 48em) {
  .page-menu-list {
    grid-gap: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-list {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

.page-menu-item {
  position: relative;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: 200px;
}
@media only screen and (min-width: 48em) {
  .page-menu-item {
    height: 250px;
  }
}
@media only screen and (min-width: 64em) {
  .page-menu-item {
    height: 300px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item {
    height: 250px;
  }
}
@media only screen and (min-width: 48em) {
  .page-menu-item:hover  {
    height: 300px;
  }
}
@media only screen and (min-width: 64em) {
  .page-menu-item:hover  {
    height: 350px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item:hover  {
    height: 300px;
  }
}
@media only screen and (min-width: 48em) {
  .page-menu-item:hover {
    height: 300px;
  }
}
@media only screen and (min-width: 64em) {
  .page-menu-item:hover {
    height: 350px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item:hover {
    height: 250px;
    transform: scale(1.03);
  }
}
@media only screen and (min-width: 48em) {
  .page-menu-item:hover .page-menu-item-title > p {
    background-position: 0 105%;
    background-image: linear-gradient(142.19deg, #F26370 0%, #F26370 100%);
    background-size: 100% 85%;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
  }
}
.page-menu-item .viewproduct a {
  background: none;
}
.page-menu-item-img {
  height: 100%;
}
@media only screen and (min-width: 48em) {
  .page-menu-item-img {
    height: 100%;
    width: 100%;
    margin-right: 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
.page-menu-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  background-image: linear-gradient(to bottom, rgba(55, 38, 68, 0.75), rgba(55, 38, 68, 0.25) 50%, rgba(55, 38, 68, 0.8) 75%, rgba(55, 38, 68, 0.9));
}
.page-menu-item-img > img {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.page-menu-item-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 40px;
}
@media only screen and (min-width: 48em) {
  .page-menu-item-title {
    white-space: normal;
  }
}
.page-menu-item-title > p {
  max-width: 160px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.17;
  font-family: "Dosis", sans-serif;
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(37, 41, 50, 0.3);
  margin: 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-position: 0 105%;
  background-image: linear-gradient(142.19deg, #F26370 0%, #F26370 100%);
  background-size: 100% 0%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
}

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

	Page menu Licences

*/
.ru-licences .page-menu-list {
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (min-width: 48em) {
  .ru-licences .page-menu-list {
    grid-gap: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .ru-licences .page-menu-list {
    grid-gap: 50px;
  }
}
@media only screen and (min-width: 90em) {
  .ru-licences .page-menu-list {
    grid-gap: 80px;
  }
}
.ru-licences .page-menu-item {
  width: 100%;
  height: 60px;
}
@media only screen and (min-width: 22.5em) {
  .ru-licences .page-menu-item {
    height: 78px;
  }
}
@media only screen and (min-width: 30em) {
  .ru-licences .page-menu-item {
    height: 110px;
  }
}
@media only screen and (min-width: 35em) {
  .ru-licences .page-menu-item {
    height: 130px;
  }
}
@media only screen and (min-width: 40em) {
  .ru-licences .page-menu-item {
    height: 140px;
  }
}
@media only screen and (min-width: 48em) {
  .ru-licences .page-menu-item {
    height: 160px;
  }
}
@media only screen and (min-width: 64em) {
  .ru-licences .page-menu-item {
    height: 210px;
  }
}
@media only screen and (min-width: 78em) {
  .ru-licences .page-menu-item {
    height: 230px;
  }
}
@media only screen and (min-width: 64em) {
  .ru-licences .page-menu-item:hover {
    transform: scale(1.03);
  }
}
.ru-licences .page-menu-item-img:before {
  content: none;
}
.ru-licences .page-menu-item-title {
  display: none;
}

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

	Diaporama (sous forme de galerie)

*/
.diaporama_licences ul {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  margin: 50px 0;
}
@media only screen and (min-width: 48em) {
  .diaporama_licences ul {
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .diaporama_licences ul {
    grid-gap: 50px;
    margin: 80px 0;
  }
}
@media only screen and (min-width: 78em) {
  .diaporama_licences ul {
    grid-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.diaporama_licences ul li {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 230px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 64em) {
  .diaporama_licences ul li:hover {
    transform: scale(1.03);
  }
}

/* Préformaté rubriques */
.ru-rubrique article,
.ru-rubrique main {
  max-width: none;
  padding: 0;
  margin: 0;
}

.presentation {
  padding: 0 4%;
}
.presentation-inner {
  padding-top: 40px;
}
@media only screen and (min-width: 64em) {
  .presentation-inner {
    padding-top: 60px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 78em) {
  .presentation-inner {
    padding-top: 80px;
    max-width: 1150px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .presentation-inner {
    max-width: 1248px;
  }
}
@media only screen and (min-width: 103.125em) {
  .presentation-inner {
    max-width: 1400px;
  }
}
@media only screen and (min-width: 64em) {
  .presentation-inner .text {
    width: 50%;
    padding-bottom: 40px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .presentation-inner .text {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .presentation-inner .text {
    padding-right: 40px;
  }
}
.presentation-inner .img {
  width: 100%;
  height: 350px;
}
@media only screen and (min-width: 48em) {
  .presentation-inner .img {
    height: 500px;
  }
}
@media only screen and (min-width: 64em) {
  .presentation-inner .img {
    height: 650px;
    width: 50%;
  }
}
.presentation-inner .img > img {
  height: 100%;
  object-fit: cover;
  float: right;
}
@media only screen and (min-width: 64em) {
  .presentation-inner .img > img {
    width: 100%;
  }
}

.produits {
  width: 100%;
  background-color: #EDEDEE;
  padding: 50px 20px 30px;
}
@media only screen and (min-width: 48em) {
  .produits {
    padding: 80px 4% 60px;
  }
}
@media only screen and (min-width: 64em) {
  .produits {
    padding: 100px 4% 80px;
  }
}
@media only screen and (min-width: 78em) {
  .produits {
    padding: 120px 4% 100px;
  }
}
@media only screen and (min-width: 90em) {
  .produits {
    padding: 120px 0 100px;
  }
}
@media only screen and (min-width: 78em) {
  .produits > div {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.produits .text {
  text-align: center;
}
.produits .text > h2 {
  margin-bottom: 20px;
}
.produits .text > span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.43;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (min-width: 64em) {
  .produits .text > span {
    line-height: 1.07;
  }
}
.produits .text > span {
  color: #F26370;
}
.produits .feedback {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 35px 0 60px;
}
@media only screen and (min-width: 48em) {
  .produits .feedback {
    margin: 60px 0;
  }
}
@media only screen and (min-width: 64em) {
  .produits .feedback {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
  }
}
@media only screen and (min-width: 78em) {
  .produits .feedback {
    margin: 80px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.produits .feedback div.short_product,
.produits .feedback div.news {
  flex: 0 0 auto;
  background-color: #FFFFFF;
  text-align: center;
  margin-right: 10px;
  width: 300px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .produits .feedback div.short_product,
.produits .feedback div.news {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .produits .feedback div.short_product:nth-of-type(7), .produits .feedback div.short_product:nth-of-type(8),
.produits .feedback div.news:nth-of-type(7),
.produits .feedback div.news:nth-of-type(8) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .produits .feedback div.short_product:nth-of-type(7), .produits .feedback div.short_product:nth-of-type(8),
.produits .feedback div.news:nth-of-type(7),
.produits .feedback div.news:nth-of-type(8) {
    display: block;
  }
}
.produits .feedback div.short_product div.img-shortproduct,
.produits .feedback div.short_product div.img-news,
.produits .feedback div.news div.img-shortproduct,
.produits .feedback div.news div.img-news {
  width: 100%;
  height: 250px;
}
.produits .feedback div.short_product div.img-shortproduct > img,
.produits .feedback div.short_product div.img-news > img,
.produits .feedback div.news div.img-shortproduct > img,
.produits .feedback div.news div.img-news > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.produits .feedback div.short_product div.img-news,
.produits .feedback div.news div.img-news {
  height: 200px;
}
@media only screen and (min-width: 64em) {
  .produits .feedback div.short_product div.img-news,
.produits .feedback div.news div.img-news {
    height: 276px;
  }
}
.produits .feedback div.short_product div.reference,
.produits .feedback div.short_product div.date,
.produits .feedback div.news div.reference,
.produits .feedback div.news div.date {
  margin: 14px 0 10px;
}
.produits .feedback div.short_product div.reference > span,
.produits .feedback div.short_product div.date > span,
.produits .feedback div.news div.reference > span,
.produits .feedback div.news div.date > span {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 8, 10, 0.5);
}
.produits .feedback div.short_product p.title-shortproduct,
.produits .feedback div.short_product p.title-news,
.produits .feedback div.news p.title-shortproduct,
.produits .feedback div.news p.title-news {
  color: #15080A;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  padding: 0 10px;
  min-height: 40px;
}
.produits .feedback div.short_product p.title-news,
.produits .feedback div.news p.title-news {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  min-height: 60px;
}
@media only screen and (min-width: 64em) {
  .produits .feedback div.short_product p.title-news,
.produits .feedback div.news p.title-news {
    font-size: 24px;
  }
}
@media only screen and (min-width: 64em) {
  .produits .feedback div.short_product:hover .btn-empty-coral {
    background-color: #F26370;
    color: #FFFFFF;
  }
}

#catalogContent {
  padding-top: 50px;
}
@media only screen and (min-width: 48em) {
  #catalogContent {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 64em) {
  #catalogContent {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 78em) {
  #catalogContent {
    padding-top: 120px;
  }
}
#catalogContent .bandeau {
  width: 100%;
  height: 250px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#catalogContent .bandeau img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 48em) {
  #catalogContent .bandeau {
    height: 450px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 64em) {
  #catalogContent .bandeau {
    height: 500px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 78em) {
  #catalogContent .bandeau {
    height: 800px;
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

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

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

@media only screen and (max-width: 48em) {
  .hide-for-small {
    display: none;
  }
}
@media only screen and (min-width: 48em) {
  .hide-for-small {
    display: block;
  }
}

.block {
  display: block !important;
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.bold {
  font-weight: 700;
}

.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, .icon-container .structured_text_semantique_text ul li, .icon-right .structured_text_semantique_text ul li, .icon-left .structured_text_semantique_text ul li, .structured_text_semantique_text ul .icon-container li, .structured_text_semantique_text ul .icon-right li, .structured_text_semantique_text ul .icon-left li, .icon-container ul .blockList li, .icon-right ul .blockList li, .icon-left ul .blockList li, ul .blockList .icon-container li, ul .blockList .icon-right li, ul .blockList .icon-left li, .icon-container .form_creator_header ul li, .icon-right .form_creator_header ul li, .icon-left .form_creator_header ul li, .form_creator_header ul .icon-container li, .form_creator_header ul .icon-right li, .form_creator_header ul .icon-left li, .icon-container .ckEditor ul li, .icon-right .ckEditor ul li, .icon-left .ckEditor ul li, .ckEditor ul .icon-container li, .ckEditor ul .icon-right li, .ckEditor ul .icon-left li, .icon-container .sitemap ul li, .icon-right .sitemap ul li, .icon-left .sitemap ul li, .sitemap ul .icon-container li, .sitemap ul .icon-right li, .sitemap ul .icon-left li, .icon-container :not(label):not(.form_field).error, .icon-right :not(label):not(.form_field).error, .icon-left :not(label):not(.form_field).error,
.icon-container .loginError,
.icon-right .loginError,
.icon-left .loginError,
.icon-container .strength_password,
.icon-right .strength_password,
.icon-left .strength_password,
.icon-container .confirmpasswd,
.icon-right .confirmpasswd,
.icon-left .confirmpasswd, .icon-container .account-subscription form fieldset#profileDetail > div .form_field, .icon-right .account-subscription form fieldset#profileDetail > div .form_field, .icon-left .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .icon-container .form_field, .account-subscription form fieldset#profileDetail > div .icon-right .form_field, .account-subscription form fieldset#profileDetail > div .icon-left .form_field,
.icon-container .accountModify form fieldset#profileDetail > div .form_field,
.icon-right .accountModify form fieldset#profileDetail > div .form_field,
.icon-left .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .icon-container .form_field,
.accountModify form fieldset#profileDetail > div .icon-right .form_field,
.accountModify form fieldset#profileDetail > div .icon-left .form_field {
  position: absolute;
  top: 25px;
}

.icon-left .icon, .icon-left .structured_text_semantique_text ul li, .structured_text_semantique_text ul .icon-left li, .icon-left ul .blockList li, ul .blockList .icon-left li, .icon-left .form_creator_header ul li, .form_creator_header ul .icon-left li, .icon-left .ckEditor ul li, .ckEditor ul .icon-left li, .icon-left .sitemap ul li, .sitemap ul .icon-left li, .icon-left :not(label):not(.form_field).error,
.icon-left .loginError,
.icon-left .strength_password,
.icon-left .confirmpasswd, .icon-left .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .icon-left .form_field,
.icon-left .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .icon-left .form_field {
  left: 20px;
}

.icon-right .icon, .icon-right .structured_text_semantique_text ul li, .structured_text_semantique_text ul .icon-right li, .icon-right ul .blockList li, ul .blockList .icon-right li, .icon-right .form_creator_header ul li, .form_creator_header ul .icon-right li, .icon-right .ckEditor ul li, .ckEditor ul .icon-right li, .icon-right .sitemap ul li, .sitemap ul .icon-right li, .icon-right :not(label):not(.form_field).error,
.icon-right .loginError,
.icon-right .strength_password,
.icon-right .confirmpasswd, .icon-right .account-subscription form fieldset#profileDetail > div .form_field, .account-subscription form fieldset#profileDetail > div .icon-right .form_field,
.icon-right .accountModify form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .icon-right .form_field {
  right: 20px;
}

.row {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
}

.medium-row {
  max-width: 1148px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
}

.large-row {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4%;
}

.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, .structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .sitemap ul li, :not(label):not(.form_field).error,
.loginError,
.strength_password,
.confirmpasswd, .account-subscription form fieldset#profileDetail > div .form_field,
.accountModify form fieldset#profileDetail > div .form_field {
  font-size: inherit;
}
.icon::before, .structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before, .error:not(label):not(.form_field)::before,
.loginError::before,
.strength_password::before,
.confirmpasswd::before, .account-subscription form fieldset#profileDetail > div .form_field::before,
.accountModify form fieldset#profileDetail > div .form_field::before {
  font-size: 8px;
}

.color1 {
  color: #444;
}

.color2 {
  color: #E74C3C;
}

.color3 {
  color: #888;
}

.color4 {
  color: #f50023;
}

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

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

	PRINT
	Ces fichiers contiennent les styles pour l'impression

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

	Style lors de l'impression

*/
@media print {
  *,
*:before,
*:after,
*:first-letter,
p:first-line,
div:first-line,
blockquote:first-line,
li:first-line {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
    http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a {
    page-break-inside: avoid;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote,
table {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h1,
h2,
h3,
h4,
h5,
h6,
img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  ul,
ol,
dl {
    page-break-before: avoid;
  }
}
/*# sourceMappingURL=styles.css.map */