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

	RESET
	Ce fichier contient les styles de reset

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

	Reset

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

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

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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

	Reset forms

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
  height: auto;
}

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

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

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

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

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

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

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

	Typography

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

	Layout

*/
/*
ordered from high to low
suggested naming convention would be the class/ID the z-index is going on
*/
/*--------------------------------

	Colours

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

	Other Styles

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

	Easing/Timing

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

	Transitions

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

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

[data-fancybox] {
  background: none !important;
  padding: 0 !important;
}

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

	Tous les styles de boutons

*/
.btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-newblue, .btn-full-coral, .btn-full-pink, input[type=submit], .btn-empty, .btn-empty-blue, .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-newblue:hover, .btn-full-coral:hover, .btn-full-pink:hover, input[type=submit]:hover, .btn-empty:hover, .btn-empty-blue: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-blue, .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-empty-blue {
  border-color: #055E81;
  color: #055E81;
}
.btn-empty-blue:hover {
  background: #055E81;
  color: #FFFFFF;
}
.btn-full, .btn-full-newblue, .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-full-newblue {
  background: #37B8C9;
  border-color: transparent;
}
.btn-full-newblue:hover {
  background: #2c94a1;
}
.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/2025/logo/logo_ptit_clown.png") no-repeat scroll center;
  background-size: auto;
  opacity: 0.1;
  background-size: auto 70%;
}

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

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

	Logo

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

#logo {
  position: relative;
  z-index: 1000;
}
@media only screen and (min-width: 78em) {
  #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
  }
}

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

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

h1,
.h1 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@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: 25px;
  font-weight: 600;
  color: #372644;
}
@media only screen and (min-width: 48em) {
  h2,
  .h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 35px;
  }
}

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

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

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

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

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

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

.line-through {
  text-decoration-line: line-through;
}

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

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

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

	Bandeau

*/
.bandeau {
  display: none;
}
body.isProspect .bandeau {
  display: block;
  text-align: center;
  background: #F26370;
  color: #FFFFFF;
  padding: 5px 15px 8px;
  font-weight: 600;
  line-height: 1.2;
}

.breadcrumb {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.85px;
}
.breadcrumb a {
  background: none;
  padding: 0;
  text-decoration: none;
  color: #FD2C7B;
}
.breadcrumb a:hover {
  color: #fd5f9b;
}
.breadcrumb .separator-bread {
  color: #FD2C7B;
}

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

	Galerie Fancybox 3

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	Style général des formulaires

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

.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;
}
.formulaire .row {
  padding: 0;
}
.contact .formulaire {
  margin: 0;
  max-width: 500px;
}

/* 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, .creation_compte #text label {
  display: block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 7px;
}
label.inline.error, .creation_compte #text label.error {
  color: #f50023;
}
label.inline .obligatory, .creation_compte #text label .obligatory {
  color: #FD2C7B;
}

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: inherit;
  appearance: none;
  display: inline-block;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-color: #EDEDEE;
  border-radius: 4px;
  background-color: #EDEDEE;
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: rgba(21, 8, 10, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  opacity: 1;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: rgba(21, 8, 10, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  opacity: 1;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  color: rgba(21, 8, 10, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  opacity: 1;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: rgba(21, 8, 10, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  opacity: 1;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  color: rgba(21, 8, 10, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  opacity: 1;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: #FD2C7B;
}
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 :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 .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 :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 .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;
}

.creation_compte .group_multi_checkbox {
  margin-bottom: 20px;
  display: block;
}

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: flex;
  overflow: hidden;
}
.multi_radio label,
.multiRadio label,
.multi_checkbox label,
.multiCheckbox label {
  font-weight: 400 !important;
}
.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;
}

input:invalid {
  background-color: ivory;
  border: none;
  outline: 2px solid red;
  border-radius: 5px;
}

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

	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-row-gap: 10px;
}
@media only screen and (min-width: 22.5em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
}
@media only screen and (min-width: 48em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

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

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

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

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

	NAVIGATION

*/
#nested {
  height: 60px;
  overflow: hidden;
  position: relative;
  background-color: #EDEDEE;
}
#nested.expanded {
  height: auto;
}
@media only screen and (min-width: 78em) {
  #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: 78em) {
  .title-area {
    display: none;
  }
}

.toggle-topbar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.toggle-topbar a::before {
  content: url("/images/2025/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;
}
.toggle-topbar a span {
  display: none;
}
.open .toggle-topbar a::before {
  content: url("/images/2025/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);
  border-top: 1px solid #dadada;
  padding-top: 80px;
}
@media only screen and (min-width: 48em) {
  .top-bar-section {
    left: auto;
  }
}
@media only screen and (min-width: 78em) {
  .top-bar-section {
    padding-top: 0;
  }
}
.expanded .top-bar-section {
  left: 0;
}
.top-bar-section a {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 4%;
  color: #FD282A;
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .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 - 260px);
}
#nested ul.firstLevel::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
    justify-content: center;
  }
}
#nested ul.firstLevel > li {
  position: relative;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li {
    margin-right: 30px;
  }
  #nested ul.firstLevel > li:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 90em) {
  #nested ul.firstLevel > li {
    margin-right: 40px;
  }
}
#nested ul.firstLevel > li:hover > a, #nested ul.firstLevel > li.active > a {
  color: #FD282A;
}
#nested ul.firstLevel > li.has-dropdown > a::after {
  content: url(/images/2025/icon/plus-menu.svg);
  width: 15px;
  height: 15px;
  margin-left: 10px;
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(:last-child) > 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: 90em) {
  #nested ul.firstLevel > li:not(:last-child) > a::after {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  #nested ul.firstLevel > li:not(:last-child) > a::after {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:last-child > 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: 78em) {
  ul.secondLevel {
    position: absolute !important;
    z-index: 99;
    display: block;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    padding: 0;
    top: auto;
    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: 78em) {
  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 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 78em) {
  .blog-list + .pager {
    margin-top: 30px;
  }
}
.pager-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pager a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  border: 1px solid #D2D4D5;
  border-radius: 6px;
  color: #372644;
  background: #FFFFFF;
  font-weight: bold;
  padding: 0;
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  .pager a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
}
.pager a:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .pager a:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .pager a:not(:last-child) {
    margin-right: 20px;
  }
}
.pager a.pager_active_page {
  background: #FD2C7B;
  font-weight: 700;
  color: #FFFFFF;
}
.pager a:hover {
  text-decoration: none;
  color: #FFFFFF;
  background: #FD2C7B;
}

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

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

#contentWrapper {
  display: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitron .clear {
  clear: both;
}

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

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

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

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

#tarteaucitron ul {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

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

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

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

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

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

#tarteaucitronRoot .tarteaucitronDeny {
  background: #372644;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

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

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

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

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

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

.display-block {
  display: block;
}

.display-none {
  display: none;
}

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

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

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

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

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

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

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

.dd-select {
  border-radius: 2px;
  border: solid 1px #3f3f3f;
  position: relative;
  cursor: pointer;
  font-weight: bold;
}

.dd-desc {
  color: #9ac331;
  display: block;
  overflow: hidden;
  font-weight: normal;
  line-height: 1.3;
  padding-left: 10px;
  font-weight: bold;
}
.dd-desc::before {
  content: "En stock";
}
.dd-desc.stockOut, .dd-desc.stockOutAvail {
  color: red;
}
.dd-desc.stockSoon {
  color: #888;
}
.dd-desc.stockSoon::before {
  content: "Bientôt disponible";
}
.dd-desc.stockOut::before {
  content: "En rupture";
}
.dd-desc.stockOutAvail::before {
  content: "Arrivage le ";
}
html[lang=en] .dd-desc::before {
  content: "In stock";
}
html[lang=en] .dd-desc.stockOut::before {
  content: "Not available";
}
html[lang=en] .dd-desc.stockOutAvail::before {
  content: "Arrival on ";
}
html[lang=en] .dd-desc.stockSoon::before {
  content: "Available soon";
}

.dd-selected {
  overflow: hidden;
  padding: 4px 30px 4px 4px;
  text-decoration: none;
  color: inherit;
  background: none;
  display: flex;
  align-items: center;
}
.dd-selected:hover {
  color: #1a1a1a;
}

.dd-pointer {
  width: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}

.dd-pointer-down {
  border: solid 5px transparent;
  border-top: solid 5px #000;
}

.dd-pointer-up {
  border: solid 5px transparent !important;
  border-bottom: solid 5px #000 !important;
  margin-top: -8px;
}

.dd-options {
  border: solid 1px #ccc;
  border-top: none;
  list-style: none;
  box-shadow: 0px 1px 5px #ddd;
  display: none;
  position: absolute;
  z-index: 2000;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: auto;
}
.dd-options li {
  list-style: none;
  margin: 0;
}

.dd-option {
  padding: 0px;
  border-bottom: solid 1px #ddd;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  background: none;
  display: flex;
  align-items: center;
}
.dd-option:hover {
  color: #1a1a1a;
}

/*
li.disabled .dd-option {
	background: #f3f3f3;
	color: #bbb
}
li.disabled .dd-desc {
	color: #000
}*/
#contents .dd-options li {
  margin: 0;
  list-style: none;
}

.dd-options > li:last-child > .dd-option {
  border-bottom: none;
}

.dd-option:hover {
  background: #f3f3f3;
  color: #000;
}

.dd-selected-description-truncated {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dd-option-selected {
  font-weight: bold;
  background: #EDEDEE;
}

.dd-container label {
  padding: 0 10px 2px 10px;
  line-height: 1.1;
  display: flex;
}

.dd-option-image, .dd-selected-image {
  vertical-align: middle;
  float: left;
  margin-right: 7px;
  width: 50px;
  height: 70px;
  object-fit: contain;
}

.dd-image-right {
  float: right;
  margin-right: 15px;
  margin-left: 5px;
}

.dd-container {
  position: relative;
  margin-bottom: 1.5rem;
}

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

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

/* Full page */
body.ru-full .wrapper-inner {
  max-width: 930px;
}
body.ru-full article {
  padding-top: 50px;
}
@media only screen and (min-width: 78em) {
  body.ru-full article {
    padding: 0;
    width: 100%;
  }
}
body.ru-full .leftbar {
  display: none;
}

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

	Article

*/
.wrapper {
  background-color: #FCFCFC;
  overflow: hidden;
}
@media only screen and (min-width: 78em) {
  .wrapper {
    padding: 50px;
  }
  .wrapper-inner {
    display: flex;
    max-width: 1755px;
    margin: 0 auto;
  }
}

article {
  max-width: 920px;
  margin: 50px auto 50px;
  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 {
    max-width: 100%;
    width: 75%;
    padding: 0 0 0 60px;
    margin: 0;
  }
  article + .widgetShortcutTools {
    display: none;
  }
  .catalogProductsList article, .recherche article {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 90em) {
  article {
    width: calc(100% - 335px);
    padding-left: 80px;
  }
}
@media only screen and (min-width: 103.125em) {
  article {
    padding-left: 120px;
  }
}

.header-article {
  position: relative;
}
.header-article:not(.with-img) + .wrapper article {
  margin-top: 0;
}
.header-article-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 4%;
}
@media only screen and (min-width: 48em) {
  .header-article-text {
    padding: 45px 4%;
  }
}
@media only screen and (min-width: 78em) {
  .header-article-text {
    padding: 60px 4%;
  }
}
.header-article-text > h1 {
  margin-bottom: 20px;
}
.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: 0;
  height: 100%;
}
.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;
}
@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;
  }
}
.subfooter .text {
  text-align: center;
  margin-bottom: 30px;
}
.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;
}
@media only screen and (min-width: 78em) {
  .subfooter .text {
    margin-bottom: 80px;
  }
}
.subfooter .text h2 {
  font-size: 30px;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .subfooter .text h2 {
    font-size: 50px;
  }
}
.subfooter .text span {
  display: block;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .subfooter .news-list-item:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter .news-list-item:nth-child(3) {
    display: block;
  }
}
.subfooter .link-more {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .subfooter .link-more {
    margin-top: 80px;
  }
}
body.homepage .subfooter, body.catalogProductDetail .subfooter {
  display: none;
}

footer {
  background-color: #15080A;
  color: #FFFFFF;
}
footer p {
  color: #FFFFFF;
}

.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 {
    width: 200px;
    max-width: 100%;
  }
}
.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.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 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% 20px;
  }
}
@media only screen and (min-width: 78em) {
  .navFooter {
    padding: 80px 4% 40px;
  }
}
@media only screen and (min-width: 90em) {
  .navFooter {
    padding: 120px 4% 40px;
  }
}
.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 {
  max-width: 305px;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 48em) {
  .navFooter-inner-items {
    max-width: none;
    margin: 0;
    width: calc(33.3333% - 20px);
  }
  .navFooter-inner-items:last-child {
    width: auto;
  }
}
@media only screen and (min-width: 78em) {
  .navFooter-inner-items {
    width: auto;
  }
  .navFooter-inner-items:last-child {
    min-width: 216px;
  }
  .navFooter-inner-items p:last-child {
    margin-bottom: 0;
  }
}
.navFooter-inner-items p {
  font-size: 14px;
}
.navFooter-inner-items p strong {
  font-weight: 600;
}
.navFooter-inner-items p:last-child {
  margin-top: 30px;
}
.navFooter-inner-items a {
  color: #FFFFFF;
  font-weight: 600;
}
.navFooter-inner-items a.link-mail {
  text-decoration: underline;
}
.navFooter-inner-items a.link-contact {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: #FD2C7B;
  text-transform: uppercase;
  border-radius: 4px;
  border: solid 1px #FD2C7B;
  padding: 10px 20px;
  display: inline-block;
}
.navFooter-inner-items a.link-contact:hover {
  text-decoration: none;
  background: #FD2C7B;
  color: #FFFFFF;
}
.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;
}
.navFooter-inner-items > ul li {
  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;
  font-weight: 400;
}
@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/2025/logo/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;
  }
}
.belowFooter-inner .signature {
  min-width: 208px;
}
@media only screen and (min-width: 48em) {
  .belowFooter-inner .signature {
    order: 1;
  }
}
.belowFooter-inner .signature > p {
  font-size: 10px;
  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: 110px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 15px;
}
@media only screen and (min-width: 78em) {
  .header-content-inner {
    height: 175px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.header-content-inner .content-left {
  position: absolute;
  top: 15px;
  right: 0;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left {
    position: initial;
  }
}
.header-content-inner .content-left .infos-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left .infos-header {
    margin-bottom: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.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;
}
.header-content-inner .content-left .infos-header .horaires {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left .infos-header .horaires {
    display: block;
    width: 100%;
    margin: 12px 0 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
  }
}
.header-content-inner .content-left .header-widget-left {
  margin-top: 20px;
  text-align: right;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left .header-widget-left {
    text-align: left;
    display: flex;
  }
}
.header-content-inner .content-left .header-widget-left a.btn-full-coral {
  font-size: 12px;
  padding: 10px 20px;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left .header-widget-left a.btn-full-coral {
    text-align: left;
    background-image: url("/images/2025/icon/icon-cart-fast-white.svg");
    background-repeat: no-repeat;
    background-position: 20px 10px;
    padding: 11px 20px 11px 75px;
    margin-right: 10px;
    max-width: 181px;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    display: flex;
    align-items: center;
  }
}
.header-content-inner .content-left .header-widget-left .widgetCatalogSearch {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch {
    max-width: 262px;
    display: block;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #btn_search {
    display: none;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #search_fields {
    position: relative;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    border-radius: 4px;
    background-color: #EDEDEE;
    box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.2);
    padding: 0 20px 0 55px;
    height: 60px;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch.placeholder {
    color: rgba(21, 8, 10, 0.4);
    font-size: 14px;
    letter-spacing: 0;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch:-moz-placeholder {
    color: rgba(21, 8, 10, 0.4);
    font-size: 14px;
    letter-spacing: 0;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch::-moz-placeholder {
    color: rgba(21, 8, 10, 0.4);
    font-size: 14px;
    letter-spacing: 0;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch:-ms-input-placeholder {
    color: rgba(21, 8, 10, 0.4);
    font-size: 14px;
    letter-spacing: 0;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch #catalog_search_string_in_box_rch::-webkit-input-placeholder {
    color: rgba(21, 8, 10, 0.4);
    font-size: 14px;
    letter-spacing: 0;
  }
  .header-content-inner .content-left .header-widget-left .widgetCatalogSearch input[type=submit] {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    height: 60px;
    background: url("/images/2025/icon/icon-search-pink.svg") no-repeat 20px 20px;
    background-size: 20px;
    text-indent: -9999999px;
    padding: 0;
  }
}
.header-content-inner .content-right {
  position: absolute;
  top: 110px;
  right: -4%;
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    position: relative;
    top: auto;
    right: auto;
  }
  .header-content-inner .content-right .widgetCatalogSearch {
    display: none;
  }
}
.header-content-inner .content-right > ul {
  display: none;
}
@media only screen and (min-width: 78em) {
  .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: 90em) {
  .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-widget {
  display: flex;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right .header-widget {
    margin-top: 30px;
    align-items: center;
  }
}
.header-content-inner .content-right .widgetCatalogSearch #search_fields, .header-content-inner .content-right .widgetLogin .logout {
  display: none;
}
.header-content-inner .content-right .widgetLogin {
  border-left: 1px solid #dadada;
  border-right: 1px solid #dadada;
  padding: 5px 8px 0;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right .widgetLogin {
    padding: 0;
  }
}
.header-content-inner .content-right .widgetLogin a:hover {
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right .widgetLogin {
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .header-content-inner .content-right .widgetLogin::after {
    content: "";
    display: block;
    margin: 0 20px;
    width: 2px;
    height: 59px;
    background: #EDEDEE;
  }
}
.header-content-inner .content-right .widgetLogin i {
  background: url("/images/2025/icon/icon-user-pink.svg") no-repeat center;
  width: auto;
  height: 30px;
  display: block;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right .widgetLogin i {
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }
}
.header-content-inner .content-right .widgetLogin span {
  display: block;
  color: #FD2C7B;
  font-size: 14px;
  line-height: 1;
  margin-top: 5px;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right .widgetLogin span {
    line-height: 21px;
  }
}
.header-content-inner .content-right .widgetCatalogSearch {
  border-right: 1px solid #dadada;
}
.header-content-inner .content-right .widgetCatalogSearch #btn_search {
  background: url("/images/2025/icon/icon-search-pink.svg") no-repeat center;
  width: 60px;
  height: 60px;
  display: block;
}
.header-content-inner .content-right .widgetCatalogSearch:first-child {
  border-left: 1px solid #dadada;
}
.header-content-inner .content-right #boxcart li {
  list-style: none;
}
.header-content-inner .content-right #boxcart a:hover {
  text-decoration: none;
}
.header-content-inner .content-right #boxcart .icon-shopping-cart {
  height: 60px;
  width: 60px;
  background: url("/images/2025/icon/icon-cart-pink.svg") no-repeat center;
  display: block;
}
.header-content-inner .content-right #boxcart #no-products:not(:first-child), .header-content-inner .content-right #boxcart .more-info-cart {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-content-inner .content-right #boxcart .panier {
    display: flex;
  }
  .header-content-inner .content-right #boxcart .icon-shopping-cart {
    width: 45px;
    height: 45px;
    background-size: 45px auto;
  }
  .header-content-inner .content-right #boxcart .more-info-cart {
    display: block;
    margin-left: 15px;
  }
  .header-content-inner .content-right #boxcart .more-info-cart .product_number {
    color: #15080A;
    font-size: 14px;
    line-height: 21px;
  }
  .header-content-inner .content-right #boxcart .more-info-cart .amount {
    color: #FD177B;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
  }
}

ul.rs {
  display: none;
  margin: 0;
}
.content-right ul.rs {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 15px;
}
@media only screen and (min-width: 78em) {
  .content-right ul.rs {
    display: none;
  }
}
@media only screen and (min-width: 22.5em) {
  .content-right ul.rs li a {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 78em) {
  ul.rs {
    display: flex;
  }
  ul.rs:before {
    content: "";
    width: 1px;
    height: 10px;
    display: inline-block;
    background-color: #15080A;
    margin: 0 20px;
    top: 7px;
    position: relative;
  }
}
ul.rs li:not(:last-child) {
  margin-right: 6px;
}
ul.rs li a {
  width: 24px;
  height: 24px;
  display: block;
  text-indent: -9999px;
  background: no-repeat center, #FDCF12;
  border-radius: 50%;
}
ul.rs li a.yt {
  background-image: url("/images/2025/social/youtube.svg");
}
ul.rs li a.linkedin {
  background-image: url("/images/2025/social/linkedin.svg");
}
ul.rs li a.insta {
  background-image: url("/images/2025/social/instagram.svg");
}
ul.rs li a.fb {
  background-image: url("/images/2025/social/facebook.svg");
}

/*--------- 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: 78em) {
  .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: 78em) {
  .rs-header > a > img,
  .rs-footer > a > img {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 78em) {
  .rs-header,
  .rs-footer {
    position: inherit;
  }
}

/******* Que public ******/
.public_connect {
  margin: 0;
  position: absolute;
  top: -66px;
  right: 15px;
  width: 180px;
  color: #15080a;
}
@media only screen and (min-width: 78em) {
  .public_connect {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
  }
}
.public_connect a {
  font-size: 12px;
  padding: 10px;
  display: block;
}
@media only screen and (min-width: 78em) {
  .public_connect a {
    font-size: 16px;
    padding: 20px 45.5px;
  }
}
.public_connect span {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  display: block;
}
@media only screen and (min-width: 78em) {
  .public_connect span {
    font-size: 12px;
    margin-top: 10px;
  }
}

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

	Sidebar

*/
#promo-link a.btn-full-coral,
#new-link a.btn-full-newblue,
#video-link a.btn-empty-blue {
  display: block;
  border-radius: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0;
  font-family: "Dosis", sans-serif;
  text-align: left;
  padding: 16px calc(4% + 30px) 16px 4%;
  border-radius: 5px;
}
@media only screen and (min-width: 78em) {
  #promo-link a.btn-full-coral,
  #new-link a.btn-full-newblue,
  #video-link a.btn-empty-blue {
    padding: 16px 60px 16px 20px;
  }
}
#promo-link a.btn-full-coral::after,
#new-link a.btn-full-newblue::after,
#video-link a.btn-empty-blue::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 21px;
  width: 15px;
  height: 15px;
  background: url("/images/2025/icon/icon-arrow-right-white.svg") no-repeat center;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  #promo-link a.btn-full-coral::after,
  #new-link a.btn-full-newblue::after,
  #video-link a.btn-empty-blue::after {
    right: 21px;
    top: 21px;
  }
}

.btnFlexSidebar {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media only screen and (min-width: 78em) {
  .btnFlexSidebar {
    flex-direction: row;
  }
}
.btnFlexSidebar > div {
  flex: 1 1 0px;
}
@media only screen and (min-width: 78em) {
  .btnFlexSidebar > div {
    width: 0;
  }
}

#video-link a.btn-empty-blue::after {
  background-image: url("/images/2025/icon/icon-arrow-right-blue.svg") !important;
}
#video-link a.btn-empty-blue:hover::after {
  background-image: url("/images/2025/icon/icon-arrow-right-white.svg") !important;
}

.menubar {
  position: fixed;
  background-color: #FFFFFF;
  top: 170px;
  width: 100%;
  height: calc(100vh - 170px);
  padding: 20px 60px 20px 20px;
  z-index: 9999;
  left: -100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menubar .menubar-toggle {
  background: url("/images/2025/icon/icon-chevron-white.svg") no-repeat center;
  width: 44px;
  height: 44px;
  background-color: #055E81;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 5px 5px 0;
  position: absolute;
  top: 20px;
  right: -44px;
}
.menubar.open {
  left: 0;
  overflow-y: auto;
}
.menubar.open .menubar-toggle {
  right: 0;
  transform: scaleX(-1);
  position: fixed;
  top: 190px;
}

@media only screen and (min-width: 78em) {
  .leftbar {
    width: 25%;
  }
  .leftbar > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .menubar {
    position: initial;
    padding: 0;
    z-index: auto;
    height: auto;
  }
}
@media only screen and (min-width: 90em) {
  .leftbar {
    width: 335px;
  }
}
/*------------------------------- -

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

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

	Familles du catalogue

*/
@media only screen and (min-width: 48em) {
  .family-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.family-list .familly {
  position: relative;
  border: 1px solid #EDEDEE;
  background-color: #FFFFFF;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .family-list .familly {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 64em) {
  .family-list .familly {
    width: calc(33.3333% - 20px);
  }
}
@media only screen and (min-width: 103.125em) {
  .family-list .familly {
    width: calc(25% - 20px);
  }
}
.family-list .familly-picture {
  position: relative;
  height: 200px;
}
.family-list .familly-picture img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.family-list .familly h3 {
  margin: 0;
  padding: 20px;
  text-align: center;
  color: #15080A;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
@media only screen and (min-width: 78em) {
  .family-list .familly h3 {
    font-size: 18px;
  }
}

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

	Produits du catalogue

*/
.catalog h1 {
  display: none;
}
.catalog .description {
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .catalog .description {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 78em) {
  .info-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .info-content .sortResults {
    width: 40%;
    margin-top: -21px;
    display: flex;
    justify-content: flex-end;
  }
}
.info-content #sort_form {
  display: flex;
}
.info-content #sort_form .selectNbProducts {
  width: 110px;
}
.info-content #sort_form .triCarac {
  width: calc(100% - 130px);
  margin-right: 20px;
}
.info-content #sort_form .triCarac:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 48em) {
  .info-content #sort_form .triCarac {
    width: auto;
  }
}
.info-content #sort_form label {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}
@media only screen and (min-width: 78em) {
  .info-content #sort_form label {
    margin-bottom: 3px;
  }
}
.info-content #sort_form select {
  font-size: 14px;
  padding: 15px !important;
}
@media only screen and (min-width: 48em) {
  .info-content #sort_form select {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 78em) {
  .info-content #sort_form select {
    font-size: 12px;
    padding: 10px 13px !important;
  }
}

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

.filtreCatalog {
  text-align: center;
  padding: 30px 0;
}
@media only screen and (min-width: 48em) {
  .filtreCatalog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
@media only screen and (min-width: 78em) {
  .filtreCatalog {
    padding: 0 30px 30px;
  }
}
.filtreCatalog .nbProducts {
  margin: 0;
  font-size: 14px;
  color: #333333;
  text-align: left;
}
@media only screen and (min-width: 48em) {
  .filtreCatalog .nbProducts {
    margin-top: 23px !important;
  }
}
@media only screen and (min-width: 78em) {
  .filtreCatalog .nbProducts {
    margin-top: 0 !important;
  }
}
.filtreCatalog #catalog_search_sort_form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media only screen and (min-width: 48em) {
  .filtreCatalog #catalog_search_sort_form {
    margin: 0;
  }
}
.filtreCatalog #catalog_search_sort_form label {
  font-size: 16px;
  margin: 0 15px 0 0;
}
.filtreCatalog #catalog_search_sort_form select {
  height: 40px;
  padding: 7px 14px 7px;
  width: calc(100% - 70px);
  max-width: 200px;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  padding: 0 20px !important;
  width: auto;
  appearance: auto;
}

.simpleCatalogSearch {
  margin-top: 30px;
}
.catalog > .simpleCatalogSearch {
  display: none;
}
.simpleCatalogSearch > legend {
  display: none;
}
.simpleCatalogSearch .catalog_search_form fieldset {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 22.5em) {
  .simpleCatalogSearch .catalog_search_form fieldset {
    flex-direction: row;
  }
}
@media only screen and (min-width: 22.5em) {
  .simpleCatalogSearch .catalog_search_form #catalog_search_string_in_content_rch {
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
}
@media only screen and (min-width: 22.5em) {
  .simpleCatalogSearch .catalog_search_form input.validation {
    padding: 20px 20px;
    line-height: 1.22;
    font-size: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media only screen and (min-width: 22.5em) and (min-width: 78em) {
  .simpleCatalogSearch .catalog_search_form input.validation {
    font-size: 16px;
    padding: 17px 20px;
    line-height: 1.3;
  }
}

/*----------------------------------------
// Filtres
----------------------------------------*/
#boxFiltre {
  padding: 0 20px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre {
    padding: 0;
  }
}

.box_predefined_cat_search h4, .widgetShortcutTools h4 {
  cursor: pointer;
  padding: 16px calc(4% + 30px) 16px 4%;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search h4, .widgetShortcutTools h4 {
    padding: 16px 60px 16px 20px;
  }
}
.box_predefined_cat_search h4::after, .widgetShortcutTools h4::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 21px;
  width: 15px;
  height: 15px;
  background: url("/images/2025/icon/icon-chevron-white.svg") no-repeat center;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search h4::after, .widgetShortcutTools h4::after {
    right: 28px;
    top: 21px;
  }
}

.box_predefined_cat_search h4 {
  background-color: #FD2C7B;
  border-radius: 5px;
}
.box_predefined_cat_search.open-filtre h4 {
  border-radius: 5px 5px 0 0;
}
.box_predefined_cat_search.open-filtre h4::after {
  transform: rotate(90deg);
}

/*---------- MA SELECTION ----------- */
#filtreMaSelection {
  margin: 15px 0;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection {
    margin: 0;
    width: 60%;
  }
}
#filtreMaSelection:empty {
  margin: 40px 0;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection:empty {
    margin: 0;
  }
}
#filtreMaSelection a {
  color: #372644;
  font-size: 12px;
  line-height: 18px;
  border-radius: 4px;
  background-color: #EDEDEE;
  padding: 6px 8px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: inline-block;
  background: #FD2C7B;
  color: #fff;
  font-weight: bold;
}
#filtreMaSelection a:not(.enleverFiltre)::after {
  content: "x";
  position: relative;
  line-height: 1;
  margin-left: 8px;
  display: inline-block;
}
#filtreMaSelection a:not(:last-child) {
  margin: 0 10px 10px 0;
}
#filtreMaSelection a.enleverFiltre {
  padding: 0;
  color: #372644;
  border: 1px solid #fff;
  background: #fff;
}
#filtreMaSelection a.enleverFiltre::before {
  position: relative;
  top: 2px;
  margin-right: 8px;
  content: url("/images/2025/icon/icon-delete-purple.svg");
}
#filtreMaSelection a .total {
  display: none;
}

/*---------- LISTE FILTRES ----------- */
.box_predefined_cat_search_form {
  padding: 10px;
  border: 1px solid #FD2C7B;
  border-radius: 0 0 5px 5px;
  padding-bottom: 20px;
  background-color: #FFFFFF;
}
.box_predefined_cat_search_form .formulaire {
  margin: 0;
  max-width: 100%;
}
.box_predefined_cat_search_form .formulaire #chkboxGroupTop {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.box_predefined_cat_search_form .formulaire #chkboxGroupTop > div.row {
  margin: 0;
}
.box_predefined_cat_search_form .formulaire #chkboxGroupTop label {
  font-size: 11px;
}
.box_predefined_cat_search_form .formulaire fieldset > .row {
  padding: 0;
}
.box_predefined_cat_search_form .formulaire fieldset > .row:not(:last-child) {
  margin-bottom: 10px;
}
.box_predefined_cat_search_form .formulaire fieldset > .row select {
  padding: 10px 20px !important;
}
.box_predefined_cat_search_form .formulaire fieldset > .row > label {
  display: block;
  color: #372644;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox {
  display: block;
  margin: 0 -2.5px;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox .multi_checkbox {
  padding: 0;
  margin: 2.5px;
  display: inline-block;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox label {
  color: #372644;
  font-size: 12px;
  line-height: 18px;
  border-radius: 4px;
  background-color: #EDEDEE;
  padding: 6px 8px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: inline-block;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox input[type=checkbox] {
  position: absolute;
  top: 28%;
  left: 1.2rem;
  display: none;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox input[type=checkbox]:checked + label {
  background: #FD2C7B;
  color: #fff;
  font-weight: bold;
}
.box_predefined_cat_search_form .formulaire .group_multi_checkbox input[type=checkbox]:checked + label::after {
  content: "x";
  position: relative;
  line-height: 1;
  margin-left: 8px;
}

.box_predefined_cat_search_form .total {
  margin: 0;
}

.box_predefined_cat_search_form select {
  position: relative;
  z-index: 10;
  cursor: pointer;
  margin-bottom: 0;
  font-size: inherit;
  background-color: #fff;
  appearance: none;
  display: inline-block;
  color: #868689;
  border: 1px solid #dcdce6;
  padding: 8px 30px 8px 10px;
  font-size: 12px;
  vertical-align: top;
  width: 100%;
  background: url(/images/2025/icon/arrow-down-noir.svg) no-repeat calc(100% - 10px) center;
  margin-top: 5px;
  background-size: 13px;
}

.box_predefined_cat_search .widgetContainer,
.box_predefined_cat_search .title_page,
.box_predefined_cat_search_form label.inline .obligatory,
.box_predefined_cat_search_form label.inline .separator,
.box_predefined_cat_search_form .submit,
.box_predefined_cat_search_form .clear {
  display: none;
}

.box_predefined_cat_search.open-filtre .widgetContainer {
  display: block;
}

.widgetShortcutTools h4 {
  background: #055E81;
  border-radius: 5px 5px 0 0;
}
body.catalogProductsList .widgetShortcutTools h4 {
  border-radius: 5px;
}
body.catalogProductsList .widgetShortcutTools h4::after {
  transform: rotate(0);
}
.widgetShortcutTools h4::after {
  transform: rotate(90deg);
}
.widgetShortcutTools h4.disable {
  border-radius: 5px;
}
body.catalogProductsList .widgetShortcutTools h4.disable {
  border-radius: 5px 5px 0 0;
}
body.catalogProductsList .widgetShortcutTools h4.disable::after {
  transform: rotate(90deg);
}
.widgetShortcutTools h4.disable::after {
  transform: rotate(0deg);
}
.widgetShortcutTools .widgetContainer {
  display: block;
  padding: 20px;
  border: 1px solid #EDEDEE;
  border-radius: 0 0 5px 5px;
}
body.catalogProductsList .widgetShortcutTools .widgetContainer {
  display: none;
}
@media only screen and (min-width: 78em) {
  .widgetShortcutTools .widgetContainer {
    background-color: #FFFFFF;
  }
}
.widgetShortcutTools .widgetContainer ul {
  margin: 0;
}
.widgetShortcutTools .widgetContainer ul li {
  margin: 0;
  list-style: none;
}
.widgetShortcutTools .widgetContainer ul li a {
  padding: 2px 20px;
  border-left: 1px solid #EDEDEE;
  color: #5F5F5F;
  font-size: 14px;
  line-height: 21px;
  display: block;
  background: none;
}

/*----------------------------------------
// Product
----------------------------------------*/
.catalogProductDetail .header-article-text {
  align-items: flex-end;
  padding: 20px 4%;
}
@media only screen and (min-width: 48em) {
  .catalogProductDetail .breadcrumb {
    text-align: right;
  }
}
.catalogProductDetail .breadcrumb .separator-bread, .catalogProductDetail .breadcrumb a {
  color: #372644;
}
.catalogProductDetail article {
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail article {
    padding: 0;
  }
}
.catalogProductDetail .leftbar {
  display: none;
}
.catalogProductDetail .wrapper {
  background: none;
  padding-top: 0;
  padding-bottom: 0;
}
.catalogProductDetail main {
  overflow: hidden;
}

@media only screen and (min-width: 48em) {
  #product {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  #product {
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 48em) {
  #ProductLeftCol {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 78em) {
  #ProductLeftCol {
    max-width: 689px;
    width: calc(50% - 30px);
  }
}
#ProductLeftCol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#ProductLeftCol .productPicture {
  border: 1px solid #EDEDEE;
  background-color: #FFFFFF;
  height: 275px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  #ProductLeftCol .productPicture {
    height: 325px;
  }
}
@media only screen and (min-width: 78em) {
  #ProductLeftCol .productPicture {
    height: 450px;
  }
}
@media only screen and (min-width: 90em) {
  #ProductLeftCol .productPicture {
    height: 689px;
  }
}
#ProductLeftCol .productPicture #productPicture, #ProductLeftCol .productPicture #productPicture a {
  height: 100%;
  width: 100%;
}
#ProductLeftCol #download {
  margin-top: 5px;
}
#ProductLeftCol #download a {
  color: rgba(21, 8, 10, 0.5);
  text-decoration: none;
  background: none;
  margin-right: 20px;
}
#ProductLeftCol #download a::before {
  content: url("/images/2025/icon/icon-download.svg");
  margin-right: 10px;
}
#ProductLeftCol ul {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px 0;
}
@media only screen and (min-width: 90em) {
  #ProductLeftCol ul {
    margin: 20px -10px 0;
  }
}
#ProductLeftCol ul li {
  list-style: none;
  border: 1px solid #EDEDEE;
  background-color: #FFFFFF;
  width: calc(33.333% - 10px);
  margin: 0 5px 10px;
}
@media only screen and (min-width: 90em) {
  #ProductLeftCol ul li {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
    height: 150px;
  }
}
#ProductLeftCol ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 48em) {
  #ProductRightCol {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 78em) {
  #ProductRightCol {
    max-width: 571px;
    width: calc(50% - 30px);
  }
}
#ProductRightCol h1 {
  color: #372644;
  text-align: left;
  margin: 20px 0;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol h1 {
    margin: 40px 0;
  }
}
#ProductRightCol .reference {
  color: rgba(21, 8, 10, 0.5);
  font-size: 14px;
  letter-spacing: 1.17px;
  line-height: 15px;
  text-transform: uppercase;
}
#ProductRightCol .ean {
  font-size: 14px;
  line-height: 1.07;
  letter-spacing: 1.17px;
  color: #15080a;
  text-transform: uppercase;
  margin-top: 10px;
}
#ProductRightCol .product-infos {
  margin: 30px 0;
  color: rgba(21, 8, 10, 0.5);
  font-size: 16px;
  line-height: 34px;
}
#ProductRightCol .product-infos > div {
  border: 1px solid #EDEDED;
  padding: 3px 20px;
}
#ProductRightCol .product-infos > div span:first-child {
  font-weight: 700;
}
#ProductRightCol .product-infos > div.product-infos-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 0;
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icons-energy {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .product-infos > div.product-infos-icons .product-infos-icons-energy {
    width: auto;
    border-bottom: none;
  }
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icons-energy > div:last-child {
  padding-right: 20px;
  border-right: 1px solid #EDEDED;
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 15px 0 15px 15px;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon {
    padding-right: 0px;
  }
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon > p {
  text-transform: uppercase;
  font-size: 9px;
  color: #372644;
  font-weight: 900;
  margin: 0;
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productPile::before {
  content: url("/images/2025/icon/icon-pile.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productSecteur::before {
  content: url("/images/2025/icon/icon-secteur.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productLumineux::before {
  content: url("/images/2025/icon/icon-lumineux.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productSon::before {
  content: url("/images/2025/icon/icon-sonore.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productAnime::before {
  content: url("/images/2025/icon/icon-mouvement.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productDetect::before {
  content: url("/images/2025/icon/icon-detecteur.svg");
}
#ProductRightCol .product-infos > div.product-infos-icons .product-infos-icon.productPhospho::before {
  content: url("/images/2025/icon/icon-phosphorescent.svg");
}
#ProductRightCol .alerte {
  border: 1px solid rgba(253, 40, 42, 0.15);
  border-radius: 10px;
  background-color: rgba(253, 40, 42, 0.1);
  color: #FD282A;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  padding: 15px;
  margin: 30px 0;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .alerte {
    padding: 15px 30px;
  }
}
#ProductRightCol .affichage_stock {
  margin: 30px 0;
  padding-left: 60px;
  background: url("/images/2025/icon/hashtung.png") 5px center no-repeat;
  background-size: auto;
  background-size: 35px;
  color: red;
  font-weight: 700;
  font-size: 15px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#ProductRightCol .affichage_stock.stock_in.on {
  display: none;
}
#ProductRightCol .affichage_stock .off + #stock_icon {
  min-height: 36px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .blocEcommerce {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#ProductRightCol .blocEcommerce .total_price {
  font-family: "Dosis", sans-serif;
  color: #372644;
  font-size: 25px;
  font-weight: 600;
  line-height: 20px;
}
#ProductRightCol .blocEcommerce fieldset {
  display: flex;
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .blocEcommerce fieldset {
    margin-top: 0;
  }
}
#ProductRightCol .blocEcommerce input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  height: 100%;
  width: 60px;
  border: 1px solid #EDEDEE;
  border-radius: 4px;
  padding: 0;
  margin: 0 10px 0 0;
  background: #FFFFFF;
  color: #FD2C7B;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  text-align: center;
}
#ProductRightCol .blocEcommerce a.btn-full-pink {
  text-align: left;
  background-image: url("/images/2025/icon/icon-cart-white.svg");
  background-repeat: no-repeat;
  background-position: 14px 15px;
  padding: 20px 20px 20px 53px;
  font-size: 13px;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .blocEcommerce a.btn-full-pink {
    padding: 19px 30px 19px 75px;
    font-size: 16px;
    background-position: 30px 18px;
  }
}
#ProductRightCol .description {
  border-radius: 10px;
  color: rgba(55, 38, 68, 0.75);
  font-size: 14px;
  line-height: 22px;
  padding: 20px;
  margin: 30px 0 0;
  border: 1px solid #EDEDEE;
  border-radius: 10px;
  background-color: #EDEDEE;
}
#ProductRightCol .description h2 {
  color: #15080A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 27px;
  margin: 0 0 20px;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  #ProductRightCol .description {
    padding: 30px;
    margin: 40px 0 0;
  }
}

.desc-long {
  border: 1px solid #EDEDEE;
  background-color: #FFFFFF;
  padding: 30px 20px;
  margin: 50px auto;
  max-width: 1400px;
}
@media only screen and (min-width: 78em) {
  .desc-long {
    margin: 60px auto;
    padding: 60px 4%;
  }
  .desc-long-inner {
    max-width: 930px;
    margin: 0 auto;
  }
}
.desc-long h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .desc-long h2 {
    font-size: 35px;
    margin-bottom: 60px;
  }
}
.desc-long iframe {
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 64em) {
  .desc-long iframe {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .desc-long iframe {
    margin-top: 40px;
  }
}
.desc-long p {
  color: rgba(55, 38, 68, 0.75);
  font-size: 14px;
}
.desc-long p:last-child {
  margin-bottom: 0;
}

.description-article {
  margin: 50px auto;
  max-width: 1400px;
}
@media only screen and (min-width: 78em) {
  .description-article {
    margin: 60px auto;
  }
  .description-article-inner {
    max-width: 930px;
    margin: 0 auto;
  }
}
.description-article h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .description-article h2 {
    font-size: 35px;
    margin-bottom: 60px;
  }
}
.description-article iframe {
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 64em) {
  .description-article iframe {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .description-article iframe {
    margin-top: 40px;
  }
}
.description-article p {
  color: rgba(55, 38, 68, 0.75);
  font-size: 14px;
}
.description-article p:last-child {
  margin-bottom: 0;
}

#produitsAssocies {
  margin: 50px -20px 0;
  background-color: #EDEDEE;
  padding: 30px 20px;
}
@media only screen and (min-width: 48em) {
  #produitsAssocies {
    margin: 50px -5% 0;
    padding: 40px 4%;
  }
}
@media only screen and (min-width: 90em) {
  #produitsAssocies {
    margin-top: 60px;
    padding: 120px 4%;
  }
  #product + #produitsAssocies {
    margin-top: 120px;
  }
  #produitsAssocies-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
#produitsAssocies h4 {
  color: #372644;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
}
@media only screen and (min-width: 78em) {
  #produitsAssocies h4 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  #produitsAssocies h4 {
    font-size: 50px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 64em) {
  #produitsAssocies .short_product:last-child {
    display: none;
  }
}
@media only screen and (min-width: 90em) {
  #produitsAssocies .short_product {
    width: calc(25% - 20px);
  }
  #produitsAssocies .short_product:last-child {
    display: block;
  }
}
#produitsAssocies .link-more {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 90em) {
  #produitsAssocies .link-more {
    margin-top: 60px;
  }
}

#product.nonCmd .affichage_stock {
  display: none;
}
#product.nonCmd #formproductversion {
  display: none;
}
#product.nonCmd .nonCmd {
  color: red;
  font-weight: bold;
}

/**** Que public **** */
.connect-link {
  border: solid 1px #FD2C7B;
  background-color: #FFFFFF;
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  margin: 40px 0;
}
@media only screen and (min-width: 78em) {
  .connect-link {
    display: flex;
    text-align: left;
    align-items: center;
  }
}
.connect-link p {
  margin: 0;
  line-height: 1.4;
  color: #FD2C7B;
}
.connect-link p:first-child {
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .connect-link p:first-child {
    margin: 0;
    width: calc(100% - 204px);
    padding-right: 60px;
  }
}
.connect-link p.p-btn {
  margin: 0 !important;
}
@media only screen and (min-width: 78em) {
  .connect-link p.p-btn {
    width: 204px;
    text-align: right;
  }
}
.connect-link p.p-btn .btn-full-pink, .connect-link p.p-btn input[type=submit] {
  margin: 0;
}

/*----------------------------------------
// Shortproduct
----------------------------------------*/
.short_product {
  border: 1px solid #EDEDEE;
  background-color: #FFFFFF;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.short_product:hover {
  transform: scale(1.03);
  border-color: #FD2C7B;
  box-shadow: 0 5px 30px -10px rgba(55, 38, 68, 0.25);
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 64em) {
  .short_product {
    width: calc(33.3333% - 20px);
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product {
    width: calc(25% - 20px);
  }
}
.short_product .pictureContainer {
  position: relative;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.short_product .pictureContainer img {
  max-height: 100%;
  max-width: 100%;
}
.short_product .textContainer {
  padding: 14px 20px 36px;
  text-align: center;
}
.short_product .textContainer .reference {
  color: rgba(21, 8, 10, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 15px;
  margin-bottom: 10px;
}
.short_product .textContainer h3 {
  color: #15080A;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
.short_product .footerContainer {
  padding: 0 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 11;
}
body.public .short_product .footerContainer {
  z-index: 1;
}
.short_product .footerContainer .price {
  color: #372644;
  font-size: 25px;
  font-weight: 600;
  line-height: 20px;
  font-family: "Dosis", sans-serif;
}
.short_product .footerContainer .btnContainer {
  display: flex;
}
.short_product .footerContainer input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  height: 50px;
  width: 60px;
  border: 1px solid #EDEDEE;
  border-radius: 4px;
  padding: 0;
  margin: 0 10px 0 0;
  background: #FFFFFF;
  color: #FD2C7B;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  text-align: center;
}
.short_product .footerContainer .addToCart a {
  height: 50px;
  width: 60px;
  border: 1px solid #FD177B;
  border-radius: 4px;
  text-indent: -9999px;
  display: block;
  background: url("/images/2025/icon/icon-cart-shortproduct.svg") no-repeat center, #FFFFFF;
}
.short_product .nonCmd {
  text-align: center;
  position: absolute;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  width: 100%;
  height: 40px;
  padding: 10px;
  color: #888;
  background: #ddd;
}
.short_product .nonCmd + .stock {
  display: none;
}
.short_product .stock {
  text-align: center;
  color: white;
  line-height: 12px;
  font-size: 11px;
  font-weight: 700;
}
.short_product .stock .stockIcon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  padding: 5px 10px;
  background: rgba(242, 98, 111, 0.8);
  z-index: 1;
  content: "";
}
.short_product .stock .stockIcon:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.short_product .stock > span {
  display: block;
}
.short_product .stock .stockAvailabilityDate {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  color: white;
  line-height: 12px;
  font-size: 11px;
  font-weight: 700;
}
.short_product.novelty .stock .stockIcon:not(:first-child) span {
  display: none !important;
}
.short_product.novelty .stock .stockAvailabilityDate {
  top: 14px !important;
}
.short_product.novelty .stock .stockAvailabilityDate .reappro {
  float: none !important;
  text-align: center !important;
}

.blocs_accueil.ventes .short_product .short_product_container:before,
.short_product.novelty .short_product_container::before,
.short_product .promotion.short_product_container::before,
.productPicture .promotion::before,
.productPicture .novelty::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  content: "";
  z-index: 2;
}

.blocs_accueil.ventes .short_product .short_product_container:after,
.short_product.novelty .short_product_container::after,
.short_product .promotion.short_product_container::after,
.productPicture .promotion::after,
.productPicture .novelty::after {
  position: absolute;
  top: 10px;
  right: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
  writing-mode: lr-tb;
  z-index: 3;
}

.short_product .promotion.short_product_container::before,
.productPicture .promotion::before {
  border-color: transparent #FDCF12 transparent transparent;
}

.short_product .promotion.short_product_container::after,
.short_product.novelty .promotion.short_product_container::after,
.productPicture .promotion::after {
  right: 0;
  content: "Promo";
  color: #15080A;
}

.blocs_accueil.ventes .short_product .short_product_container:before {
  border-color: transparent #F6007C transparent transparent;
}

.blocs_accueil.ventes .short_product .short_product_container:after {
  content: "TOP";
}

.short_product.novelty .short_product_container:not(.promotion):before,
.productPicture .novelty::before {
  border-color: transparent #37B8C9 transparent transparent;
}

.short_product.novelty .short_product_container:after,
.productPicture .novelty::after {
  content: "New";
}

.promotion + .novelty {
  display: none;
}

/* Que pour le public*/
.btn-view {
  border: solid 1px #FD2C7B;
  background: url("/images/2025/icon/icon-view.svg") no-repeat center, rgba(255, 255, 255, 0.2);
  width: 82px;
  height: 50px;
  display: block;
  margin: 0 0 0 auto;
  border-radius: 4px;
}

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

	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/2025/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/2025/icon/minus.svg);
}

/* Nouvelle faq */
h3.faq {
  border-radius: 10px;
  background: url("/images/2025/icon/icon-more-black.svg") no-repeat calc(100% - 20px) center, #EDEDEE;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #15080A;
  padding: 20px 55px 20px 20px;
  margin: 0 0 20px;
  cursor: pointer;
}

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

	Page listing Blog / Actualités

*/
.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);
  background: #FFFFFF;
}
.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;
  line-height: 1.25;
  margin: 0;
  white-space: normal;
  padding: 0 10px;
  text-transform: none;
}
@media only screen and (min-width: 64em) {
  .news-list-item-text .titre {
    font-size: 24px;
  }
}
@media only screen and (min-width: 78em) {
  .news-list-item-btn {
    margin: 40px 0;
  }
}

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

	Page détail Blog / Actualités

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

.news-details .chapo-date {
  margin: 0 0 50px;
  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;
  }
}

.homepage:not(.myProfile):not(.myOrders) .header-article, .ru-login .header-article {
  display: none;
}
.homepage:not(.myProfile):not(.myOrders) .wrapper, .ru-login .wrapper {
  background: #FFFFFF;
}
@media only screen and (min-width: 78em) {
  .homepage:not(.myProfile):not(.myOrders) .wrapper, .ru-login .wrapper {
    padding: 0;
  }
  .homepage:not(.myProfile):not(.myOrders) .wrapper-inner, .ru-login .wrapper-inner {
    max-width: 100%;
  }
}
.homepage:not(.myProfile):not(.myOrders) article, .ru-login article {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
@media only screen and (min-width: 78em) {
  .homepage:not(.myProfile):not(.myOrders) article, .ru-login article {
    width: 100%;
  }
}

@media only screen and (min-width: 78em) {
  .main_accueil {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 40px;
    max-width: 1480px;
    margin: 0 auto;
  }
  .main_accueil_right {
    max-width: 100%;
    width: 75%;
    padding: 0 0 0 20px;
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  .main_accueil {
    padding-bottom: 0;
  }
  .main_accueil_right {
    width: calc(100% - 335px);
  }
}
.main_accueil .slider {
  position: relative;
  height: 400px;
}
@media only screen and (min-width: 90em) {
  .main_accueil .slider {
    height: 470px;
  }
}
.main_accueil .slider .slick {
  height: 100% !important;
}
.main_accueil .slider .slick .slick-list {
  display: block;
  position: relative;
  height: 100% !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.main_accueil .slider .slick .slick-list .slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  height: 100% !important;
}
.main_accueil .slider .slick .slick-list .slick-track li {
  float: left;
  position: relative;
  height: 100% !important;
}
.main_accueil .slider .slick .slick-list .slick-track li .photo {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.main_accueil .slider .slick .slick-list .slick-track li .photo img {
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
}
.main_accueil .slider .slick .slick-list .slick-track li h3.famille {
  position: absolute;
  top: 20px;
  left: 20px;
  margin: 0;
  padding: 5px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 3px solid #e06de1;
}
.main_accueil .slider .slick .slick-list .slick-track li h3.famille a {
  background: none;
  display: block;
}
.main_accueil .slider .slick .slick-list .slick-track li .caption {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  height: auto;
  z-index: 1;
}
.main_accueil .slider .slick .slick-list .slick-track li .triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80px;
  width: 80px;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #e06de1 transparent;
  z-index: 2;
}
.main_accueil .slider .slick .slick-list .slick-track li .triangle::after {
  position: absolute;
  bottom: -65px;
  right: 15px;
  height: 20px;
  width: 20px;
  background: url(/images/2025/icon/more.png) center center no-repeat;
  background-size: 20px;
  content: "";
  z-index: 2;
}
.main_accueil .slider .slick .pager {
  display: none;
  position: absolute;
  top: 50%;
  height: 45px;
  width: 45px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
}
.main_accueil .slider .slick .pager a {
  display: block;
  height: 100%;
  width: 100%;
}
.main_accueil .slider .slick #slider-prev {
  left: 10px;
  background: url(/images/2025/icon/next.png) center center no-repeat;
  background-size: 45px;
  transform: rotate(180deg);
}
.main_accueil .slider .slick #slider-next {
  right: 10px;
  background: url(/images/2025/icon/next.png) center center no-repeat;
  background-size: 45px;
}

.lienDiapo {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  background: none;
}

.actus {
  padding: 20px;
}
.actus .link-more {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .actus .link-more {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 78em) {
  .actus .link-more {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 78em) {
  .actus {
    margin: 40px 0 0;
    padding: 0;
  }
  .actus .news-list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .actus {
    border: 1px solid #EDEDEE;
    background-color: #FFFFFF;
    padding: 60px;
  }
}

.blocs_accueil {
  padding: 40px 20px;
}
@media only screen and (min-width: 78em) {
  .blocs_accueil {
    padding: 60px 40px;
  }
}
@media only screen and (min-width: 90em) {
  .blocs_accueil {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .blocs_accueil.ventes {
    padding-bottom: 100px;
  }
}
.blocs_accueil.bg-grey {
  background: #EDEDEE;
}
@media only screen and (min-width: 90em) {
  .blocs_accueil_inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.blocs_accueil_inner > h2 {
  text-align: center;
}
@media only screen and (min-width: 90em) {
  .blocs_accueil_inner > h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
.blocs_accueil_inner > p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 15px;
  text-align: center;
  color: #FD2C7B;
  text-transform: uppercase;
}
.blocs_accueil .widgetProduct {
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .blocs_accueil .widgetProduct {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 90em) {
  .blocs_accueil .widgetProduct {
    margin-top: 80px;
  }
}
.blocs_accueil .widgetProduct h4 {
  display: none;
}
@media only screen and (min-width: 48em) {
  .blocs_accueil .widgetProduct .ficheProduitWidget {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px 0;
    justify-content: center;
  }
}
@media only screen and (min-width: 64em) {
  .blocs_accueil .widgetProduct .short_product:last-child {
    display: none;
  }
}
@media only screen and (min-width: 103.125em) {
  .blocs_accueil .widgetProduct .short_product:last-child {
    display: block;
  }
}
.blocs_accueil .link-more {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .blocs_accueil .link-more {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .blocs_accueil .link-more {
    margin-top: 60px;
  }
}

.avis-accueil {
  text-align: center;
  display: none;
}
body.public .avis-accueil {
  display: block;
  margin: 70px 0 50px;
}
@media only screen and (min-width: 78em) {
  body.public .avis-accueil {
    margin-top: 120px;
  }
}
body.public .avis-accueil h2 {
  font-size: 30px;
}
@media only screen and (min-width: 78em) {
  body.public .avis-accueil h2 {
    font-size: 50px;
  }
}

.a-propos {
  margin-top: 30px;
  padding: 30px 20px;
  background: #EDEDEE;
  font-size: 14px;
  line-height: 28px;
}
@media only screen and (min-width: 48em) {
  .a-propos {
    padding: 40px;
  }
}
@media only screen and (min-width: 64em) {
  .a-propos {
    padding: 60px 40px;
  }
}
@media only screen and (min-width: 78em) {
  .a-propos {
    margin-top: 90px;
  }
  .a-propos .a_propos {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
  }
  .a-propos .description {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .a-propos {
    padding: 120px 0;
  }
}

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

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

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

	Is prospect

*/
body.isProspect #boxcart {
  display: none;
}
body.isProspect .widgetLogin::after {
  display: none !important;
}
body.isProspect #formproductversion {
  display: none;
}

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

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

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

.no-photo:empty {
  background: url("/images/2025/logo/logo_ptit_clown.png") no-repeat scroll center;
  background-size: auto;
  opacity: 0.1;
  background-size: auto 70%;
}

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