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

	RESET
	Ce fichier contient les styles de reset

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

	Reset

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

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

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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

	Reset forms

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
  height: auto;
}

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

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

button,
.button {
  cursor: pointer;
  display: inline-block;
  outline: 0;
  overflow: visible;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  width: auto;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

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

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

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

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

	Typography

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

	Layout

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

	Colours

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

	Other Styles

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

	Easing/Timing

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

	Transitions

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

	EMs calculator

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

	Grids

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

	Z-indexing

	use:

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

	prerequisits:

		$z-indexes list must exist in variables file

	example:

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

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

	Photoshop letter spacing

	use:

		for simple conversion between Photoshop letter-spacing to ems

	prerequisits:

		$ls list must exist in variables file

	example:

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

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

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

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

	Map deep get

	Get values from anywhere in a variable list

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

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

	Strip unit

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

	Very simple number functions

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

	Photoshop letter spacing

	use:

		get the value of a particular breakpoint

	example:

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

		would generate:

		.box {
			width: 480px;
		}

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

	Colour map lookup, retrieving base value by default

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

	Media Queries

	used for outputting content either between media query tags

	example: basic usage

	.element {
		width: 50%;

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

	example: using max-width

	.element {
		width: 50%;

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

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

	Margin / Padding Quick Resets

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

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

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

	Helper mixins

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

	Form input placeholder text

	example:

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

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

	Retina images

	example:

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

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

	Content margins

	for removing first/last child margins

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

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

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

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

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

	Hide text

	example:

	.element {
		@include hide-text;
	}

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

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

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

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

	Typography

	Text image replacement, with responsive ratio

	HTML:

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

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


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

	Colours

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

	modify to suit per project

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

	Misc

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

	Fluid Property

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

	HTML:

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

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

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

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

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


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

	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 {
  color: #0b063a;
  font-family: "Saira", Arial, 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;
}

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

	Text selection/highlighting

*/

::selection {
  background: #361fdb;
  color: #fff;
  text-shadow: none;
}

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

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

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

	Style général des liens

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

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

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

	Tous les styles de boutons

*/
.btn-full, .btn-full-green, .btn-full-secondary, .btn-full-blue, .btn-full-primary, input[type=submit], .btn-full-dark-blue, .btn-empty, .btn-empty-green, .btn-empty-secondary, input[type=reset], .btn-empty-blue, .btn-empty-primary, .btn-empty-dark-blue {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  clear: both;
  text-decoration: none;
  border: 1px solid;
  line-height: 1;
  font-size: 16px;
  outline: none;
  border-radius: 4px;
  padding: 13px 24px;
  text-transform: uppercase;
}
.btn-full:hover, .btn-full-green:hover, .btn-full-secondary:hover, .btn-full-blue:hover, .btn-full-primary:hover, input[type=submit]:hover, .btn-full-dark-blue:hover, .btn-empty:hover, .btn-empty-green:hover, .btn-empty-secondary:hover, input[type=reset]:hover, .btn-empty-blue:hover, .btn-empty-primary:hover, .btn-empty-dark-blue:hover {
  text-decoration: none;
}

.btn-empty, .btn-empty-green, .btn-empty-secondary, input[type=reset], .btn-empty-blue, .btn-empty-primary, .btn-empty-dark-blue {
  background-color: transparent;
}
.btn-empty-dark-blue {
  border-color: #0b063a;
  color: #0b063a;
}
.btn-empty-dark-blue:hover {
  background: #0b063a;
  color: #fff;
}
.btn-empty-blue, .btn-empty-primary {
  border-color: #361fdb;
  color: #361fdb;
}
.btn-empty-blue:hover, .btn-empty-primary:hover {
  background: #361fdb;
  color: #fff;
}
.btn-empty-green, .btn-empty-secondary, input[type=reset] {
  border-color: #c3f73a;
  color: #c3f73a;
  color: #0b063a;
}
.btn-empty-green:hover, .btn-empty-secondary:hover, input[type=reset]:hover {
  background: #c3f73a;
}
.btn-full, .btn-full-green, .btn-full-secondary, .btn-full-blue, .btn-full-primary, input[type=submit], .btn-full-dark-blue {
  color: #fff;
}
.btn-full-dark-blue {
  background: #0b063a;
  border-color: #0b063a;
}
.btn-full-dark-blue:hover {
  background: #fff;
  color: #0b063a;
}
.btn-full-blue, .btn-full-primary, input[type=submit] {
  background: #361fdb;
  border-color: #361fdb;
}
.btn-full-blue:hover, .btn-full-primary:hover, input[type=submit]:hover {
  background: #fff;
  color: #361fdb;
}
.btn-full-green, .btn-full-secondary {
  background: #c3f73a;
  border-color: #c3f73a;
  color: #0b063a;
}
.btn-full-green:hover, .btn-full-secondary:hover {
  background: #fff;
  color: #0b063a;
}
/*--------------------------------

	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 #f3f5f7;
  border-color: #0b063a;
}
@media only screen and (min-width: 35em) {
  hr.trait, hr.separator,
  .clear.trait,
  .clear.separator {
    padding-top: 40px;
    margin-bottom: 60px;
  }
}

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

	Comportement des images dans le contenu des pages

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

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

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

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

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

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

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

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

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

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

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

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

	Listes à puces

*/
ul li {
  list-style: none;
}
.entry-content-inner ul {
  margin: 30px 0;
}
.entry-content-inner ul li {
  padding-left: 20px;
  position: relative;
}
.entry-content-inner ul li:not(:last-child) {
  margin-bottom: 15px;
}
.entry-content-inner ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #361fdb;
  position: absolute;
  left: 0;
  top: 8px;
}
.entry-content-inner ul li ul,
.entry-content-inner ul li ol {
  margin-left: 20px;
}

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

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

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #f3f5f7;
  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: #f3f5f7;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(131, 142, 151, 0.2);
  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: #f3f5f7;
}
table tr td {
  border: 1px solid rgba(131, 142, 151, 0.2);
  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: #0b063a;
  font-size: 16px;
}

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

	Tableaux responsive

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

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

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

	Règles typographiques

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

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  font-weight: bold;
  line-height: 1.3;
  margin: 50px 0 20px;
}
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: 78em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    margin: 60px 0 30px;
  }
}

h1,
.h1 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 15px;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-size: 24px;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 36px;
    margin: 90px 0 30px;
  }
}

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

h4,
.h4 {
  font-size: 18px;
  color: #361fdb;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 24px;
  }
}

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

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

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

p {
  margin: 20px 0;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

s {
  text-decoration: line-through;
}

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

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

*/
.breadcrumb {
  font-size: 12px;
  line-height: 1.5;
  color: #0b063a;
  text-transform: uppercase;
}
.breadcrumb span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #361fdb;
  margin: 0 4px;
  position: relative;
  top: -2px;
}
.breadcrumb a {
  color: #0b063a;
  text-decoration: none;
  font-weight: 400;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

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

	Ajout au Panier

*/
#overDiv.calendar {
  z-index: 9999 !important;
  visibility: visible !important;
  position: fixed !important;
  right: auto !important;
  min-width: 320px;
  max-width: 500px;
  background: #FFFFFF;
  background-image: none;
  box-shadow: 0px 0px 7px 7px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: inline-table !important;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
#overDiv.calendar #overlibcontent {
  padding: 15px;
}
@media only screen and (min-width: 48em) {
  #overDiv.calendar #overlibcontent {
    padding-top: 30px;
  }
}
#overDiv.calendar #overlibcontent table {
  margin: 0;
}
#overDiv.calendar #overlibcontent table thead th, #overDiv.calendar #overlibcontent table thead td, #overDiv.calendar #overlibcontent table tfoot th, #overDiv.calendar #overlibcontent table tfoot td, #overDiv.calendar #overlibcontent table tr td {
  padding: 10px;
  text-align: center;
}
#overDiv.calendar #overlibcontent table thead th.today, #overDiv.calendar #overlibcontent table thead td.today, #overDiv.calendar #overlibcontent table tfoot th.today, #overDiv.calendar #overlibcontent table tfoot td.today, #overDiv.calendar #overlibcontent table tr td.today {
  background: black;
  color: white;
}
#overDiv.calendar #overlibcontent table thead th.today a, #overDiv.calendar #overlibcontent table thead td.today a, #overDiv.calendar #overlibcontent table tfoot th.today a, #overDiv.calendar #overlibcontent table tfoot td.today a, #overDiv.calendar #overlibcontent table tr td.today a {
  color: white;
}

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

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

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

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

.form_creator_footer {
  margin-top: 40px;
}

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

.fieldGroup {
  overflow: hidden;
}

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

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-family: "Saira", Arial, sans-serif;
  border-radius: 4px;
  border: solid 1px #838e97;
  font-size: 16px;
  -webkit-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 15px 20px;
  margin-bottom: 25px;
  line-height: 1.2;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: #838e97;
  opacity: 1;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  color: #838e97;
  opacity: 1;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  color: #838e97;
  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: #838e97;
  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: #838e97;
  opacity: 1;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #f3f5f7;
  color: #838e97;
}
select option, textarea option, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) option {
  padding: 0;
  font-family: Arial;
}

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

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

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

	Liste déroulante

*/
select {
  background-image: url("/images/icon/icon-chevron-bottom-dark-blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 50px;
  cursor: pointer;
}
.error select {
  border: 1px solid #f3f5f7;
  border-color: #f50023;
}

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

	Boutons de validation/annulation

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

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

	Upload d'un fichier

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

.form_field .o-hidden {
  position: relative;
}
.form_field .o-hidden > input {
  padding-right: 70px;
}
.form_field .o-hidden > a {
  position: absolute;
  right: 20px;
  top: 11px;
}

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

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

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;
  color: #707173;
  font-size: 12px;
}
/*--------------------------------

	Checkboxes et boutons radios

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

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

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: block;
  overflow: hidden;
}
.multi_radio.other input[type=checkbox].checkbox,
.multiRadio.other input[type=checkbox].checkbox,
.multi_checkbox.other input[type=checkbox].checkbox,
.multiCheckbox.other input[type=checkbox].checkbox {
  float: left;
}
.multi_radio.other input[type=checkbox].checkbox + label,
.multiRadio.other input[type=checkbox].checkbox + label,
.multi_checkbox.other input[type=checkbox].checkbox + label,
.multiCheckbox.other input[type=checkbox].checkbox + label {
  float: left;
}
.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;
}

#overDiv.calendar[style*="display: block; visibility: visible;"] {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-50%);
  visibility: visible !important;
  height: auto !important;
  box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.15);
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibheader {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 10px 10px 0;
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent {
  background: white;
  padding: 10px 20px 20px;
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table {
  margin: 0;
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table thead th, #overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table thead td, #overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table tfoot th, #overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table tfoot td, #overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent table tr td {
  padding: 10px;
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibfooter {
  display: none;
}

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

	CAPCHA

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

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

	Submit

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

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

	Suppression reset form

*/
#reset {
  display: none;
}

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

	Style de la galerie miniature

*/
.medias .gallery ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
@media only screen and (min-width: 22.5em) {
  .medias .gallery ul {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
  }
}
@media only screen and (min-width: 48em) {
  .medias .gallery ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.medias .gallery ul li {
  height: 200px;
  margin: 0;
  padding: 0;
}
.medias .gallery ul li::before {
  display: none;
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul 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 #0b063a;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0b063a 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

*/
.open-menu {
  padding: 16px 8%;
  width: 100%;
}
@media only screen and (min-width: 64em) {
  .open-menu {
    display: none;
  }
}
.open-menu button {
  background: url("/images/icon/icon-menu.svg") no-repeat center;
  height: 20px;
  width: 24px;
  text-indent: -99999px;
}

.top-bar-section {
  display: none;
  position: absolute;
  background: #220faf;
  width: 100%;
  padding: 60px 10.67%;
}
@media only screen and (min-width: 64em) {
  .top-bar-section {
    display: block;
    padding: 0;
    background: none;
    width: auto;
    position: relative;
  }
  .top-bar-section .rs {
    display: none;
  }
}

@media only screen and (min-width: 64em) {
  ul.firstLevel {
    display: flex;
  }
}
ul.firstLevel > li > a {
  font-size: 32px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  display: block;
}
@media only screen and (min-width: 64em) {
  ul.firstLevel > li > a {
    font-size: 14px;
    padding: 16.5px 15px;
  }
  ul.firstLevel > li > a:hover {
    background-color: rgba(11, 6, 58, 0.3);
  }
}
ul.firstLevel > li:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  ul.firstLevel > li:not(:last-child) {
    margin: 0;
  }
}
ul.firstLevel > li.me-recharge > a {
  padding-left: 32px;
  background: url("/images/icon/icon-recharge.svg") no-repeat left center;
}
@media only screen and (min-width: 64em) {
  ul.firstLevel > li.me-recharge > a {
    background-size: 12px;
    background-position: 15px center;
    padding-left: 34px;
  }
}
@media only screen and (min-width: 64em) {
  ul.firstLevel > li.me-recharge > a:hover {
    background-color: rgba(11, 6, 58, 0.3);
  }
}
ul.firstLevel > li.active > a {
  color: #c3f73a;
}
@media only screen and (min-width: 64em) {
  ul.firstLevel > li.active > a {
    color: #fff;
    background-color: rgba(11, 6, 58, 0.3);
  }
}

ul.secondLevel {
  display: none;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  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;
    left: 0;
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
  }
}

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

	Listing pagination

*/
.pager {
  margin-top: 1em;
  margin-bottom: 1em;
}
.pager.listing, .pager.detail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager.listing a, .pager.detail a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 18px;
  display: inline-block;
  color: #0b063a;
  margin-left: 0.5em;
  margin-right: 0.5em;
  border: 1px solid #f3f5f7;
  border-color: #fff;
}
.pager.listing a.pager_active_page, .pager.detail a.pager_active_page {
  font-size: 20px;
  font-weight: 700;
  border-color: #0b063a;
}
.pager.listing a:hover, .pager.detail a:hover {
  border-color: #f3f5f7;
  text-decoration: none;
}
.pager.listing a .icon, .pager.detail a .icon {
  display: inline-block;
}

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

	Bouton retour en haut de page

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

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

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

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

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

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

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

.entry-content-inner ul.slick-dots {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry-content-inner ul.slick-dots li {
  margin: 5px !important;
  padding: 0;
}
.entry-content-inner ul.slick-dots li::before {
  display: none;
}
.entry-content-inner ul.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgba(131, 142, 151, 0.2);
  border-radius: 50%;
  text-indent: -999px;
}
.entry-content-inner ul.slick-dots li.slick-active button {
  background: #0b063a;
}

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

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Layout du contenu des pages

*/
main {
  margin-top: 56px;
}
@media only screen and (min-width: 64em) {
  main {
    margin-top: 54px;
  }
}

.entry-header {
  padding: 30px 5.335%;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .entry-header {
    padding: 60px 5.335%;
  }
}
@media only screen and (min-width: 103.125em) {
  .entry-header {
    padding: 80px 5.335% 55px;
  }
}
.entry-header-inner {
  max-width: 1410px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .entry-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.entry-header-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.entry-header-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 6, 58, 0.7);
}
.entry-header-img:empty {
  display: none;
}
.entry-header-img:not(:empty) + .entry-header-inner {
  color: #fff;
}
.entry-header-img:not(:empty) + .entry-header-inner .breadcrumb a {
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .entry-header-left {
    width: calc(100% - 390px);
    max-width: 855px;
    padding-right: 40px;
  }
}
.entry-header-right:empty {
  display: none;
}
@media only screen and (min-width: 78em) {
  .entry-header-right {
    width: 390px;
    font-size: 20px;
  }
  .entry-header-right p:last-child {
    margin-bottom: 0;
  }
}

.entry-content {
  background: #f3f5f7;
  padding: 90px 5.335%;
}
@media only screen and (min-width: 103.125em) {
  .entry-content {
    padding-bottom: 120px;
  }
}
.entry-content-inner {
  max-width: 930px;
  margin: 0 auto;
}
.entry-content-inner > *:first-child {
  margin-top: 0;
}
.entry-content-inner > *:last-child {
  margin-bottom: 0;
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

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

.deux_colonnes {
  margin: 60px 0;
}
@media only screen and (min-width: 48em) {
  .deux_colonnes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .deux_colonnes {
    grid-column-gap: 90px;
    margin: 90px 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: #c3f73a;
  font-weight: 700;
  background: white;
  padding: 10px 20px;
}
.site-map .rubrique_sommaire_ {
  font-size: 24px;
}
.site-map .rubrique_sommaire_::before {
  display: none;
}
.site-map .sitemap_level1 {
  font-size: 18px;
}
.site-map .sitemap_level1 > li {
  margin-top: 20px;
}
.site-map .sitemap_level2 {
  font-size: 16px;
}
.site-map .sitemap_level2 > li {
  margin-top: 10px;
}
.site-map .sitemap_level2 > li a {
  font-weight: 400;
}
.site-map .sitemap_level3 {
  font-size: 14px;
}

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

	Page vide

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

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

	Footer

*/
.footer {
  padding: 60px 5.335% 75px;
  background: #0b063a;
  color: #fff;
}
.footer-inner {
  max-width: 1410px;
  margin: 0 auto;
}

@media only screen and (min-width: 64em) {
  .footer-top {
    display: flex;
    justify-content: space-between;
  }
  .footer-top-item:first-child {
    width: 330px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-top {
    align-items: center;
  }
  .footer-top p {
    margin: 0;
  }
  .footer-top-item:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 540px;
  }
  .footer-top-item:first-child p {
    max-width: 330px;
  }
}
.footer-top .rs {
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .footer-top .rs {
    margin: 0;
  }
}
.footer-top .rs li a.fb {
  background-image: url("/images/icon/icon-facebook-dark.svg");
}
.footer-top .rs li a.lkd {
  background-image: url("/images/icon/icon-linkedin-dark.svg");
}
.footer-top .rs li a.insta {
  background-image: url("/images/icon/icon-instagram-dark.svg");
}
.footer-top .links {
  margin-top: 40px;
}
@media only screen and (min-width: 48em) {
  .footer-top .links {
    display: flex;
  }
}
@media only screen and (min-width: 64em) {
  .footer-top .links {
    margin: 0;
  }
}
.footer-top .links li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
}
.footer-top .links li a:hover {
  color: #c3f73a;
}
.footer-top .links li:first-child > a {
  padding-left: 21px;
  background: url("/images/icon/icon-recharge.svg") no-repeat left center;
  background-size: 14px;
}
.footer-top .links li:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .footer-top .links li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .footer-top .links li:not(:last-child) {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-top .links li:not(:last-child) {
    margin-right: 60px;
  }
}

.footer-middle {
  padding: 40px 0;
  margin: 40px 0;
  border-top: solid 1px rgba(243, 245, 247, 0.2);
  border-bottom: solid 1px rgba(243, 245, 247, 0.2);
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 78em) {
  .footer-middle {
    font-size: 12px;
    padding: 60px 0;
    margin: 60px 0;
  }
}
.footer-middle p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .footer-bottom {
    text-align: center;
  }
}
@media only screen and (min-width: 78em) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
  .footer-bottom p {
    margin: 0;
  }
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #c3f73a;
}
.footer-bottom p:first-child {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (min-width: 78em) {
  .footer-bottom p:first-child {
    order: 2;
  }
}
.footer-bottom p:first-child a {
  font-weight: 400;
}
.footer-bottom p:first-child a:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (min-width: 90em) {
  .footer-bottom p:first-child a:not(:last-child) {
    margin-right: 30px;
  }
}
.footer-bottom p:last-child {
  font-size: 10px;
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  .footer-bottom p:last-child {
    order: 1;
    font-size: 14px;
  }
}

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

	Header

*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #361fdb;
  color: #fff;
  z-index: 99;
}
@media only screen and (min-width: 64em) {
  .header {
    padding: 0 5.335%;
  }
}
.header-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header-inner > .rs {
  display: none;
}
@media only screen and (min-width: 64em) {
  .header-inner > .rs {
    display: flex;
    margin: 0;
  }
  .header-inner > .rs li a {
    width: 24px;
    height: 24px;
    background-size: 12px;
  }
  .header-inner > .rs li a.fb {
    background-size: 7.5px;
  }
}
.header-inner #logo {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  left: calc(8% + 50px);
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 64em) {
  .header-inner #logo {
    position: relative;
    left: auto;
    transform: none;
  }
}
@media only screen and (min-width: 78em) {
  .header-inner #logo {
    font-size: 18px;
  }
}
@media only screen and (min-width: 90em) {
  .header-inner #logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.header-inner #logo a {
  color: #fff;
  text-decoration: none;
}
.header-inner #logo a:hover {
  color: #c3f73a;
}

ul.rs {
  display: flex;
  margin-top: 50px;
}
ul.rs li:not(:last-child) {
  margin-right: 15px;
}
ul.rs li a {
  width: 30px;
  height: 30px;
  display: block;
  text-indent: -9999px;
  border-radius: 50%;
  background: no-repeat center, #fff;
}
ul.rs li a:hover {
  background-color: #c3f73a;
}
ul.rs li a.fb {
  background-image: url("/images/icon/icon-facebook.svg");
}
ul.rs li a.lkd {
  background-image: url("/images/icon/icon-linkedin.svg");
}
ul.rs li a.insta {
  background-image: url("/images/icon/icon-instagram.svg");
}

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

	Sidebar

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

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

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

	Produits du catalogue

*/
body.catalogProductsList {
  background: #f3f5f7;
}
body.catalogProductsList .breadcrumb {
  display: none;
}
body.catalogProductsList .entry-content {
  padding-top: 30px;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .entry-content {
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  body.catalogProductsList .entry-content {
    padding-top: 90px;
    padding-left: 0;
    padding-right: 0;
    max-width: 1410px;
    margin: 0 auto;
  }
}
body.catalogProductsList .entry-content-inner {
  max-width: 100%;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .entry-content-inner {
    width: calc(100% - 320px);
    padding-left: 30px;
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList .entry-content-inner {
    width: calc(100% - 420px);
  }
}

.catalog h1, .catalog .desc-page {
  display: none;
}

.counter {
  margin-top: 0;
}

.leftbar {
  margin-bottom: 50px;
  display: none;
}
body.catalogProductsList .leftbar {
  display: block;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .leftbar {
    margin: 0;
    width: 320px;
    display: flex;
    flex-direction: column;
    margin-top: 45px;
    position: sticky;
    top: 75px;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList .leftbar {
    width: 420px;
  }
}

#boxFiltre {
  border-radius: 4px;
  border: solid 1px #838e97;
}
@media only screen and (min-width: 78em) {
  #boxFiltre {
    border: none;
    border-radius: 0;
    order: 2;
  }
}
#boxFiltreTitre {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #838e97;
  padding: 15px 20px;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 78em) {
  #boxFiltreTitre {
    display: none;
  }
}
#boxFiltreTitre::after {
  content: url(/images/icon/icon-chevron-bottom-grey.svg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
#boxFiltreTitre.open::after {
  transform: translateY(-50%) rotate(-180deg);
}
#boxFiltre #divprop_6min, #boxFiltre #divprop_17max, #boxFiltre .submit {
  display: none;
}
#boxFiltre .widgetContainer {
  padding: 0 20px 20px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer {
    padding: 0;
  }
}
#boxFiltre .widgetContainer .formulaire {
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer .formulaire {
    margin: 0;
  }
  #boxFiltre .widgetContainer .formulaire .fieldGroup {
    background: #fff;
    padding: 20px 20px 30px;
    border-radius: 4px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 90em) {
  #boxFiltre .widgetContainer .formulaire .fieldGroup {
    padding: 40px;
  }
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer .formulaire label.inline {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 90em) {
  #boxFiltre .widgetContainer .formulaire label.inline {
    line-height: 1;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer .formulaire select {
    margin-bottom: 0;
  }
}
#boxFiltre .widgetContainer #divprop_5, #boxFiltre .widgetContainer #divprop_3 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer #divprop_5, #boxFiltre .widgetContainer #divprop_3 {
    margin-bottom: 5px;
  }
}
#boxFiltre .widgetContainer .multi_checkbox input {
  display: none;
}
#boxFiltre .widgetContainer .multi_checkbox input + label {
  margin-bottom: 10px;
  line-height: 1.3;
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 90em) {
  #boxFiltre .widgetContainer .multi_checkbox input + label {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#boxFiltre .widgetContainer .multi_checkbox input + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: solid 1px rgba(131, 142, 151, 0.2);
  background-color: #fff;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
#boxFiltre .widgetContainer .multi_checkbox input:checked + label::before {
  background: url(/images/icon/checkbox_blue.svg) no-repeat center, #361fdb;
}
#boxFiltre .widgetContainer .multi_checkbox:last-child input + label {
  margin-bottom: 0;
}

#filtreMaSelection {
  margin: 15px -5px -5px;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection {
    order: 1;
    margin: 0 -5px 30px;
  }
  #filtreMaSelection:empty {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection {
    margin: 0 35px 40px;
  }
}
#filtreMaSelection a {
  margin: 5px;
}
#filtreMaSelection a:not(.enleverFiltre) {
  padding: 10px 30px 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  background: url(/images/icon/icon-remove.svg) no-repeat calc(100% - 15px) center, #0b063a;
}
#filtreMaSelection a.enleverFiltre {
  font-size: 14px;
  color: #838e97;
  white-space: nowrap;
  display: inline-block;
}

.little-mention {
  display: none;
}
@media only screen and (min-width: 78em) {
  .little-mention {
    order: 3;
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #838e97;
    margin: 30px 0 0;
  }
}

body.catalogProductDetail .entry-header-img {
  display: none;
}
body.catalogProductDetail .entry-header-img:not(:empty) + .entry-header-inner {
  color: #0b063a;
}
body.catalogProductDetail .entry-header-img:not(:empty) + .entry-header-inner .breadcrumb a {
  color: #0b063a;
}
body.catalogProductDetail .entry-content {
  padding: 0;
  background: #fff;
}
body.catalogProductDetail .entry-content-inner {
  max-width: 100%;
}

.img-bandeau {
  height: 200px;
}
@media only screen and (min-width: 64em) {
  .img-bandeau {
    height: 300px;
  }
}
@media only screen and (min-width: 78em) {
  .img-bandeau {
    height: 400px;
  }
}
@media only screen and (min-width: 103.125em) {
  .img-bandeau {
    height: 500px;
  }
}

.product-desc {
  background-color: #f3f5f7;
  padding: 0 5.335% 90px;
}
@media only screen and (min-width: 103.125em) {
  .product-desc {
    padding-bottom: 120px;
  }
}
.product-desc-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .product-desc-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.product-desc .infos {
  border-radius: 8px;
  background-color: #0b063a;
  color: #fff;
  margin-top: -30px;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .product-desc .infos {
    order: 2;
    width: 50%;
  }
}
@media only screen and (min-width: 64em) {
  .product-desc .infos {
    width: 450px;
  }
}
@media only screen and (min-width: 78em) {
  .product-desc .infos {
    margin-top: -60px;
  }
}
.product-desc .infos-inner {
  padding: 15px 30px 30px;
}
@media only screen and (min-width: 64em) {
  .product-desc .infos-inner {
    padding: 60px;
  }
}
.product-desc .infos-inner ul li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px rgba(243, 245, 247, 0.2);
  margin: 0;
}
.product-desc .infos-inner ul li::before {
  display: none;
}
.product-desc .infos-inner .price {
  border-radius: 4px;
  border: solid 1px #361fdb;
  background-color: rgba(54, 31, 219, 0.2);
  text-align: center;
  padding: 15px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (min-width: 78em) {
  .product-desc .infos-inner .price {
    margin-top: 39px;
    padding: 25px 20px;
  }
}
.product-desc .infos-inner .price strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-top: 5px;
}
.product-desc .infos-inner .price strong span {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: -6px;
}
.product-desc .infos-inner .little-info {
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
  margin: 0;
}
.product-desc .add-comparateur {
  padding: 15px;
  border-top: solid 1px rgba(243, 245, 247, 0.2);
}
@media only screen and (min-width: 78em) {
  .product-desc .add-comparateur {
    padding: 30px;
  }
}
.product-desc .add-comparateur a {
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-desc .add-comparateur a.full {
  pointer-events: none;
  opacity: 0.4;
}
.product-desc .add-comparateur a:hover {
  color: #c3f73a;
}
@media only screen and (min-width: 22.5em) {
  .product-desc .add-comparateur a {
    font-size: 16px;
  }
}
.product-desc .add-comparateur a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #fff;
  background-color: rgba(243, 245, 247, 0.2);
}
.product-desc .add-comparateur a.checked::before {
  background: url(/images/icon/checkbox-green.svg) no-repeat center, #c3f73a;
}
.product-desc .description {
  margin-top: 60px;
}
@media only screen and (min-width: 48em) {
  .product-desc .description {
    order: 1;
    width: 50%;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 64em) {
  .product-desc .description {
    width: calc(100% - 450px);
    max-width: 820px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .product-desc .description {
    font-size: 18px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-desc .description {
    margin-top: 90px;
  }
}
.product-desc .description > *:first-child {
  margin-top: 0;
}
.product-desc .description > *:last-child {
  margin-bottom: 0;
}

.product-nav {
  position: sticky;
  top: 56px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 14;
  border-bottom: solid 1px rgba(131, 142, 151, 0.2);
}
@media only screen and (min-width: 64em) {
  .product-nav {
    top: 54px;
  }
}
@media only screen and (min-width: 64em) {
  .product-nav-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1410px;
    margin: 0 auto;
  }
}
.product-nav-inner > a {
  width: 100%;
  font-size: 14px;
  padding: 14px 24px;
}
@media only screen and (min-width: 64em) {
  .product-nav-inner > a {
    width: auto;
    order: 2;
    border-radius: 0;
  }
}
@media only screen and (min-width: 78em) {
  .product-nav-inner > a {
    font-size: 16px;
    padding: 20px 40px;
  }
}
.product-nav-inner > a::before {
  content: url("/images/icon/icon-contact.svg");
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
}
@media only screen and (min-width: 78em) {
  .product-nav-inner > a::before {
    margin-right: 16px;
    vertical-align: sub;
  }
}
.product-nav-inner ul {
  margin: 0;
  display: flex;
  overflow: auto;
}
@media only screen and (min-width: 48em) {
  .product-nav-inner ul {
    justify-content: center;
  }
}
@media only screen and (min-width: 64em) {
  .product-nav-inner ul {
    order: 1;
  }
}
.product-nav-inner ul li {
  margin: 0;
  padding: 0;
  border-right: solid 1px rgba(131, 142, 151, 0.2);
  white-space: nowrap;
}
.product-nav-inner ul li::before {
  display: none;
}
.product-nav-inner ul li:not(:last-child) {
  margin-bottom: 0;
}
.product-nav-inner ul li:first-child {
  border-left: solid 1px rgba(131, 142, 151, 0.2);
}
.product-nav-inner ul li a {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  color: #838e97;
  text-decoration: none;
  display: block;
}
.product-nav-inner ul li a:hover {
  background: #f3f5f7;
}
@media only screen and (min-width: 64em) {
  .product-nav-inner ul li a {
    padding: 16px 20px;
  }
}
@media only screen and (min-width: 78em) {
  .product-nav-inner ul li a {
    font-size: 16px;
    padding: 21px 40px;
  }
}

.product-perf {
  padding: 60px 5.335% 45px;
}
@media only screen and (min-width: 78em) {
  .product-perf {
    padding: 90px 5.335% 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-perf {
    padding: 150px 5.335% 75px;
  }
}
@media only screen and (min-width: 78em) {
  .product-perf-inner {
    max-width: 1410px;
    margin: 0 auto;
  }
}
.product-perf-inner > h2 {
  text-align: center;
  margin: 0 0 30px;
}
@media only screen and (min-width: 78em) {
  .product-perf-inner > h2 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-perf-inner > h2 {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 64em) {
  .product-perf-inner .list {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 90em) {
  .product-perf-inner .list {
    grid-gap: 30px;
  }
}
.product-perf-inner .item {
  border-radius: 8px;
  background-color: #f3f5f7;
  padding: 30px 30px 20px;
}
@media only screen and (min-width: 90em) {
  .product-perf-inner .item {
    padding: 40px 60px;
  }
}
.product-perf-inner .item:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 64em) {
  .product-perf-inner .item:not(:last-child) {
    margin: 0;
  }
}
.product-perf-inner .item h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  color: #0b063a;
  text-transform: none;
  padding: 5px 0 5px 50px;
  background: no-repeat left center;
}
@media only screen and (min-width: 90em) {
  .product-perf-inner .item h3 {
    font-size: 20px;
    padding-left: 56px;
  }
}
.product-perf-inner .item.carac h3 {
  background-image: url("/images/icon/icon-caracteristiques.svg");
}
.product-perf-inner .item.perf h3 {
  background-image: url("/images/icon/icon-caracteristiques-techniques.svg");
}
.product-perf-inner .item.bat h3 {
  background-image: url("/images/icon/icon-batterie.svg");
}
.product-perf-inner .item ul {
  margin: 0;
}
.product-perf-inner .item ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #838e97;
  padding: 10px 0;
  margin: 0;
}
.product-perf-inner .item ul li:not(:last-child) {
  border-bottom: solid 1px rgba(131, 142, 151, 0.2);
}
.product-perf-inner .item ul li::before {
  display: none;
}
.product-perf-inner .item ul li strong {
  display: block;
  color: #0b063a;
}
@media only screen and (min-width: 78em) {
  .product-perf-inner .item ul li strong {
    font-size: 16px;
  }
}

.product-recharge {
  padding-top: 45px;
}
@media only screen and (min-width: 78em) {
  .product-recharge {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-recharge {
    padding-top: 75px;
  }
}
@media only screen and (min-width: 48em) {
  .product-recharge-inner {
    display: flex;
    align-items: center;
  }
}
.product-recharge-txt {
  padding: 0 5.335%;
}
@media only screen and (min-width: 48em) {
  .product-recharge-txt {
    width: 50%;
    order: 2;
  }
  .product-recharge-txt:first-child:last-child {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .product-recharge-txt {
    max-width: 675px;
    padding: 0 0 0 90px;
  }
}
@media only screen and (min-width: 90em) {
  .product-recharge-txt {
    padding-left: 120px;
    max-width: 705px;
  }
}
.product-recharge-txt > h2 {
  text-align: center;
}
@media only screen and (min-width: 103.125em) {
  .product-recharge-txt > h2 {
    margin-bottom: 80px;
  }
}
.product-recharge-txt ul {
  margin-bottom: 0;
}
.product-recharge-txt ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: solid 1px rgba(131, 142, 151, 0.2);
  margin: 0 !important;
  font-size: 14px;
}
@media only screen and (min-width: 90em) {
  .product-recharge-txt ul li {
    font-size: 16px;
  }
}
.product-recharge-txt ul li::before {
  display: none;
}
.product-recharge-txt ul li strong {
  min-width: 50%;
  width: 50%;
  padding-left: 10px;
  text-align: right;
}
.product-recharge-img {
  margin-top: 40px;
  height: 300px;
}
@media only screen and (min-width: 48em) {
  .product-recharge-img {
    width: 50%;
    order: 1;
    margin: 0;
    height: 400px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-recharge-img {
    height: 700px;
  }
}

.product-addi {
  display: flex;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
@media only screen and (min-width: 48em) {
  .product-addi {
    margin-top: 90px !important;
  }
}
@media only screen and (min-width: 78em) {
  .product-addi {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-addi {
    margin-top: 150px !important;
  }
}
.product-addi li {
  height: 120px;
  padding: 0 10px 0 0 !important;
  margin: 0 !important;
}
@media only screen and (min-width: 48em) {
  .product-addi li {
    height: 300px;
  }
}
.product-addi li::before {
  display: none;
}

.product-dim {
  padding: 0 5.335%;
  margin: 60px 0 90px;
}
@media only screen and (min-width: 78em) {
  .product-dim {
    margin: 90px 0 120px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-dim {
    margin: 120px 0 150px;
  }
}
@media only screen and (min-width: 48em) {
  .product-dim-inner {
    max-width: 930px;
    margin: 0 auto;
  }
}
.product-dim-inner h2 {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .product-dim-inner h2 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-dim-inner h2 {
    margin-bottom: 80px;
  }
}
.product-dim-inner ul {
  margin-bottom: 0 !important;
}
.product-dim-inner ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: solid 1px rgba(131, 142, 151, 0.2);
  margin: 0 !important;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  .product-dim-inner ul li {
    font-size: 16px;
  }
}
.product-dim-inner ul li::before {
  display: none;
}
.product-dim-inner ul li strong {
  text-align: right;
  padding-left: 15px;
}
@media only screen and (min-width: 48em) {
  .product-dim-inner ul li strong {
    max-width: 550px;
  }
}

.product-foot {
  padding: 60px 5.335% 90px;
  background: #f3f5f7;
}
@media only screen and (min-width: 78em) {
  .product-foot {
    padding: 120px 5.335%;
  }
}
@media only screen and (min-width: 78em) {
  .product-foot-inner {
    max-width: 1410px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 48em) {
  .product-foot-desc {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 48em) {
  .product-foot-desc .txt {
    width: 50%;
    padding-right: 40px;
  }
  .product-foot-desc .txt:first-child:last-child {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (min-width: 78em) {
  .product-foot-desc .txt {
    padding-right: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-foot-desc .txt {
    padding-right: 118px;
  }
}
.product-foot-desc .txt h3 + h2 {
  margin-top: 20px;
}
.product-foot-desc .txt > *:last-child {
  margin-bottom: 0;
}
.product-foot-desc .img {
  height: 300px;
  margin: 60px -6% 0;
}
@media only screen and (min-width: 48em) {
  .product-foot-desc .img {
    width: 50%;
    margin: 0;
    height: 400px;
  }
}
@media only screen and (min-width: 78em) {
  .product-foot-desc .img {
    height: 500px;
  }
}
.product-foot-asso {
  margin-top: 60px;
  padding-top: 50px;
  border-top: solid 1px rgba(131, 142, 151, 0.2);
}
@media only screen and (min-width: 78em) {
  .product-foot-asso {
    margin-top: 120px;
    padding-top: 90px;
  }
}
.product-foot-asso > h2 {
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  color: #361fdb;
  margin: 0 0 30px;
}
@media only screen and (min-width: 78em) {
  .product-foot-asso > h2 {
    font-size: 28px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 48em) {
  .product-foot-asso .short_product:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 64em) {
  .product-foot-asso .short_product:nth-child(3) {
    display: block;
  }
}
.product-foot .btn-back {
  text-align: center;
  margin: 60px 0 0;
}
@media only screen and (min-width: 103.125em) {
  .product-foot .btn-back {
    margin-top: 90px;
  }
}

@media only screen and (min-width: 48em) {
  .product-list.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
@media only screen and (min-width: 64em) {
  .product-list.grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.short_product {
  position: relative;
  border-radius: 8px;
  border: solid 1px rgba(131, 142, 151, 0.2);
  background-color: #fff;
  padding: 15px 15px 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .product-list:not(.grid) .short_product {
    display: flex;
  }
}
@media only screen and (min-width: 48em) {
  .product-list.grid .short_product {
    margin-bottom: 0;
  }
}
.short_product_img {
  height: 180px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .product-list:not(.grid) .short_product_img {
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    min-width: 180px;
  }
}
@media only screen and (min-width: 90em) {
  .product-list.grid .short_product_img {
    height: 235px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-list:not(.grid) .short_product_img {
    width: 250px;
    min-width: 250px;
  }
}
.short_product_img a {
  display: block;
  height: 100%;
}
.short_product_img img {
  max-height: 100%;
  margin: 0 auto;
}
.short_product_txt {
  padding: 20px 5px 0;
}
@media only screen and (min-width: 48em) {
  .product-list:not(.grid) .short_product_txt {
    padding: 15px 30px;
    width: 100%;
  }
}
@media only screen and (min-width: 90em) {
  .product-list.grid .short_product_txt {
    padding: 20px 25px 0;
  }
}
.short_product_txt h2 {
  font-size: 18px;
  margin: 0;
}
.short_product_txt h2 a {
  color: #0b063a;
  text-decoration: none;
}
.short_product_txt h2 a:hover {
  color: #361fdb;
}
@media only screen and (min-width: 90em) {
  .product-list.grid .short_product_txt h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-list:not(.grid) .short_product_txt h2 {
    font-size: 24px;
    line-height: 1.1;
  }
}
.short_product_txt .desc {
  margin: 10px 0 0;
  font-size: 14px;
}
@media only screen and (min-width: 90em) {
  .product-list.grid .short_product_txt .desc {
    margin-top: 5px;
  }
}
.short_product_txt .price {
  font-size: 14px;
  line-height: 1.5;
  color: #0b063a;
  margin: 10px 0 0;
}
@media only screen and (min-width: 103.125em) {
  .short_product_txt .price {
    margin-top: 20px;
  }
}
.short_product_txt .price strong {
  font-size: 18px;
}
@media only screen and (min-width: 103.125em) {
  .short_product_txt .price strong {
    font-size: 20px;
  }
}
.short_product_txt .price strong span {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: -6px;
}
.short_product_txt .price .bubble {
  position: relative;
  display: inline-block;
  margin-left: 3px;
  cursor: pointer;
}
.short_product_txt .price .bubble::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(/images/icon/icon-info.svg) no-repeat center;
}
.short_product_txt .price .bubble:focus span, .short_product_txt .price .bubble:hover span {
  opacity: 1;
  visibility: visible;
}
.short_product_txt .price .bubble span {
  position: absolute;
  left: calc(100% + 5px);
  top: 0;
  background: #0b063a;
  color: #fff;
  font-size: 12px;
  padding: 15px;
  border-radius: 4px;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 48em) {
  .short_product_txt .price .bubble span {
    white-space: nowrap;
  }
}
.short_product_txt ul {
  font-size: 12px;
  line-height: 1.1;
  color: #838e97;
  margin: 20px 0 0;
}
@media only screen and (min-width: 103.125em) {
  .short_product_txt ul {
    max-width: 345px;
    margin-top: 30px;
  }
}
.short_product_txt ul li {
  display: flex;
  justify-content: space-between;
  margin: 0 !important;
  border-bottom: solid 1px rgba(131, 142, 151, 0.2);
  padding: 3px 0;
}
.short_product_txt ul li::before {
  display: none;
}
.short_product_txt ul li strong {
  text-align: right;
}
.short_product_btn {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .product-list:not(.grid) .short_product_btn {
    margin: 0;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    padding: 15px 0;
  }
  .product-list:not(.grid) .short_product_btn a.btn-empty-blue, .product-list:not(.grid) .short_product_btn a.btn-empty-primary {
    order: 2;
  }
  .product-list:not(.grid) .short_product_btn a.addToList {
    order: 1;
  }
}
@media only screen and (min-width: 90em) {
  .product-list.grid .short_product_btn {
    padding: 0 25px 20px;
  }
}
.short_product_btn a.addToList {
  font-weight: bold;
  line-height: 1.5;
  color: #0b063a;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.short_product_btn a.addToList.full {
  pointer-events: none;
  opacity: 0.4;
}
.short_product_btn a.addToList:hover {
  color: #361fdb;
}
@media only screen and (min-width: 22.5em) {
  .short_product_btn a.addToList {
    font-size: 16px;
  }
}
.short_product_btn a.addToList::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: solid 1px rgba(131, 142, 151, 0.2);
  background-color: #f3f5f7;
}
.short_product_btn a.addToList.checked::before {
  background: url(/images/icon/checkbox-green.svg) no-repeat center, #c3f73a;
}

/*--------------------------------
	Comparateur
*/
#comparatorBox {
  position: fixed;
  left: 0;
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: visible;
  display: none;
  background: #fff;
  width: 100%;
  height: auto;
  top: 100%;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#comparatorBox.visible {
  top: calc(100% - 45px);
  bottom: auto;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0px 0px 11px 0 rgba(0, 0, 0, 0.15);
  display: block;
}
#comparatorBox.visible .uk-container .title-text::before {
  opacity: 0;
}
#comparatorBox.visible .uk-container .title-text::after {
  opacity: 1;
}
#comparatorBox.open.visible {
  bottom: 0;
  top: auto;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#comparatorBox.open.visible .uk-container .title-text::before {
  opacity: 1;
}
#comparatorBox.open.visible .uk-container .title-text::after {
  opacity: 0;
}
#comparatorBox.open.visible .uk-container .title::before {
  background-image: url(/images/icon/icon-unfold.svg);
}
#comparatorBox .uk-container {
  display: flex;
  flex-wrap: wrap;
}
#comparatorBox .uk-container .title {
  background: #c3f73a;
  color: #0b063a;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  height: 45px;
}
#comparatorBox .uk-container .title-text {
  position: relative;
}
#comparatorBox .uk-container .title-text::before, #comparatorBox .uk-container .title-text::after {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#comparatorBox .uk-container .title-text::before {
  content: "Masquer le comparateur";
  opacity: 1;
}
#comparatorBox .uk-container .title-text::after {
  content: "Afficher le comparateur";
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
#comparatorBox .uk-container .title::before {
  content: "";
  background: url(/images/icon/icon-fold.svg) no-repeat center;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
#comparatorBox .uk-container .comparator-content {
  max-width: 1450px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  #comparatorBox .uk-container .comparator-content {
    display: flex;
    padding: 20px;
  }
}
#comparatorBox .uk-container #comparator-list {
  width: 100%;
}
@media only screen and (min-width: 78em) {
  #comparatorBox .uk-container #comparator-list {
    width: calc(100% - 170px);
    padding-right: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  #comparatorBox .uk-container #comparator-list {
    padding-right: 60px;
  }
}
#comparatorBox .uk-container #comparator-list ul {
  padding: 20px 20px 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 64em) {
  #comparatorBox .uk-container #comparator-list ul {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  #comparatorBox .uk-container #comparator-list ul {
    padding: 0;
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  #comparatorBox .uk-container #comparator-list ul {
    grid-gap: 30px;
  }
}
#comparatorBox .uk-container #comparator-list ul li {
  border-radius: 8px;
  border: solid 1px #838e97;
  background-color: #fff;
  position: relative;
  margin-bottom: 15px;
}
@media only screen and (min-width: 78em) {
  #comparatorBox .uk-container #comparator-list ul li {
    margin: 0;
  }
}
#comparatorBox .uk-container #comparator-list ul li.empty {
  display: none;
}
@media only screen and (min-width: 64em) {
  #comparatorBox .uk-container #comparator-list ul li.empty {
    display: block;
    border: dashed 1px rgba(131, 142, 151, 0.6);
  }
}
#comparatorBox .uk-container #comparator-list ul li:nth-child(n+4) {
  display: none;
}
#comparatorBox .uk-container #comparator-list ul li > div {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
}
#comparatorBox .uk-container #comparator-list ul li .pictureContainer {
  width: 120px;
  height: 100px;
  min-width: 120px;
}
#comparatorBox .uk-container #comparator-list ul li .pictureContainer img {
  transform: none !important;
}
#comparatorBox .uk-container #comparator-list ul li p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #0b063a;
  padding-left: 30px;
  padding-right: 30px;
  width: calc(100% - 120px);
}
#comparatorBox .uk-container #comparator-list ul li .delete {
  z-index: 13;
  position: relative;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(/images/icon/icon-delete.svg) no-repeat center;
  text-indent: -9999px;
  right: 10px;
  top: 10px;
}
#comparatorBox .uk-container #comparator-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  #comparatorBox .uk-container #comparator-actions {
    padding: 0;
    width: 170px;
  }
}
#comparatorBox .uk-container #comparator-actions a.compare {
  padding: 19px 24px 19px 54px;
  font-weight: bold;
  background-image: url(/images/icon/icon-compare.svg);
  background-repeat: no-repeat;
  background-position: 24px center;
}
#comparatorBox .uk-container #comparator-actions a.compare:hover {
  background-color: #0b063a;
  border-color: #0b063a;
  color: #fff;
}
#comparatorBox .uk-container #comparator-actions a.no-compare {
  pointer-events: none;
  background-color: #838e97;
  border-color: #838e97;
}
#comparatorBox .uk-container #comparator-actions a.delete {
  color: #838e97;
  text-decoration: underline;
  margin-top: 15px;
  font-size: 14px;
}

body.comparateur h1:empty {
  display: none;
}
body.comparateur .entry-content {
  background: #fff;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
body.comparateur .entry-content-inner {
  max-width: 1410px;
}
body.comparateur .table-responsive {
  overflow: inherit !important;
}

#compare_products {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  #compare_products {
    table-layout: fixed;
  }
}
#compare_products .product-info {
  position: relative;
}
#compare_products .product-info > * {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#compare_products .product-info .pictureContainer {
  height: 100px;
}
@media only screen and (min-width: 78em) {
  #compare_products .product-info .pictureContainer {
    height: 250px;
  }
}
#compare_products .product-info p {
  margin: 10px 0 0;
}
#compare_products .product-info p.title {
  line-height: 1.1;
}
@media only screen and (min-width: 78em) {
  #compare_products .product-info p.title {
    font-size: 24px;
  }
}
#compare_products .product-info p.desc {
  font-size: 12px;
}
@media only screen and (min-width: 78em) {
  #compare_products .product-info p.desc {
    font-size: 14px;
  }
}
#compare_products .product-info p.false-link {
  color: #361fdb;
  font-weight: bold;
}
#compare_products .product-info p.false-link::after {
  content: url(/images/icon/icon-arrow-blue-right.svg);
  margin-left: 10px;
}
#compare_products .product-info p:empty {
  display: none;
}
#compare_products tr td.empty {
  text-align: center;
  vertical-align: middle;
}
#compare_products tr td.empty:nth-child(n+4) {
  display: none;
}
#compare_products tr td.empty a.btn-empty-blue, #compare_products tr td.empty a.btn-empty-primary {
  background-image: url(/images/icon/icon-more.svg);
  background-repeat: no-repeat;
  background-position: 24px center;
  padding-left: 46px;
}
#compare_products tr td.empty a.btn-empty-blue:hover, #compare_products tr td.empty a.btn-empty-primary:hover {
  background-color: rgba(54, 31, 219, 0.2);
  color: #361fdb;
}
#compare_products tr.header-table {
  background: #fff;
  z-index: 1;
  position: sticky;
  border-bottom: 1px solid rgba(131, 142, 151, 0.2);
  top: 56px;
}
#compare_products tr.header-table td {
  padding: 0;
  padding: 34px 20px 20px;
  min-width: 180px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table td {
    padding: 40px 40px 30px;
    text-align: center;
  }
}
#compare_products tr.header-table.is-sticky > td {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky .product-info {
    display: flex;
    text-align: left;
  }
}
#compare_products tr.header-table.is-sticky p.title {
  font-size: 12px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky p.title {
    font-size: 18px;
  }
}
#compare_products tr.header-table.is-sticky p.desc {
  display: none;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky p.desc {
    display: block;
    font-size: 14px;
  }
}
#compare_products tr.header-table.is-sticky p.false-link {
  font-size: 12px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky p.false-link {
    font-size: 16px;
  }
}
#compare_products tr.header-table.is-sticky .pictureContainer {
  height: 80px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky .pictureContainer {
    width: 120px;
    height: 100px;
  }
}
@media only screen and (min-width: 78em) {
  #compare_products tr.header-table.is-sticky .txt {
    width: calc(100% - 120px);
    padding-left: 30px;
  }
}
#compare_products tr.group td {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  color: #838e97;
  font-size: 16px;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.group td {
    font-size: 18px;
    padding: 30px;
  }
}
#compare_products tr.content {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #0b063a;
  background: #f3f5f7;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.content {
    padding: 20px 30px;
    font-size: 16px;
  }
}
#compare_products tr.content span {
  display: block;
  line-height: 1.1;
  color: #838e97;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  #compare_products tr.content span {
    font-size: 14px;
  }
}
#compare_products tr.content.pair {
  background: #fff;
}
#compare_products tr.delete {
  position: relative;
  z-index: 2;
  bottom: 0;
}
#compare_products tr.delete td {
  border: none;
  padding: 0;
  position: relative;
}
#compare_products tr.delete td a {
  width: 20px;
  height: 20px;
  background: url(/images/icon/icon-delete.svg) no-repeat center;
  background-size: 100%;
  text-indent: -9999px;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
}

.btn-delete {
  text-align: center;
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .btn-delete {
    margin-top: 60px;
  }
}

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

	UTILITIES
	Ces fichiers contiennent les classes utiles

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

	Classes utilisables telles quelles dans fichier html

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

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

.block {
  display: block !important;
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.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 {
  position: absolute;
  top: 25px;
}

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

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

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

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

.icon {
  font-size: inherit;
}
.icon::before {
  font-size: 8px;
}

.color1 {
  color: #361fdb;
}

.color2 {
  color: #c3f73a;
}

.color3 {
  color: #838e97;
}

.color4 {
  color: #f50023;
}

.exergue {
  font-size: 20px;
  line-height: 1.3;
}

.little {
  font-size: 10px;
  line-height: 1.5;
  color: #838e97;
  display: block;
}

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

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