@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%;
     -moz-text-size-adjust: 100%;
      -ms-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;
     -moz-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;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
     -moz-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;
     -moz-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] * {
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

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

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

	Typography

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

	Layout

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

	Colours

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

	Other Styles

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

	Easing/Timing

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

	Transitions

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

	EMs calculator

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

	Grids

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

	Z-indexing

	use:

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

	prerequisits:

		$z-indexes list must exist in variables file

	example:

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

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

	Photoshop letter spacing

	use:

		for simple conversion between Photoshop letter-spacing to ems

	prerequisits:

		$ls list must exist in variables file

	example:

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

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

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

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

	Map deep get

	Get values from anywhere in a variable list

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

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

	Strip unit

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

	Very simple number functions

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

	Photoshop letter spacing

	use:

		get the value of a particular breakpoint

	example:

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

		would generate:

		.box {
			width: 480px;
		}

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

	Colour map lookup, retrieving base value by default

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

	Media Queries

	used for outputting content either between media query tags

	example: basic usage

	.element {
		width: 50%;

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

	example: using max-width

	.element {
		width: 50%;

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

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

	Margin / Padding Quick Resets

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

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

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

	Helper mixins

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

	Form input placeholder text

	example:

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

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

	Retina images

	example:

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

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

	Content margins

	for removing first/last child margins

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

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

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

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

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

	Hide text

	example:

	.element {
		@include hide-text;
	}

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

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

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

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

	Typography

	Text image replacement, with responsive ratio

	HTML:

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

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


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

	Colours

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

	modify to suit per project

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

	Misc

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

	Fluid Property

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

	HTML:

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

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

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

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

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


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

	GRID
	Ces fichiers contiennent les styles pour la grille type Foundation

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

	BASE
	Ces fichiers contiennent la structure principale

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

	Box sizing

*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

	Basic document styling

*/
html {
  font-size: 100%;
  min-height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  background-color: #fff;
  font-family: "Saira", Trbuchet MS, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  color: #003a5d;
}
body.open {
  overflow: hidden;
  height: 100vh;
}

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

	Text selection/highlighting

*/
::-moz-selection {
  background: #003a5d;
  color: #fff;
  text-shadow: none;
}

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

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

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

	Tous les styles de boutons

*/
.btn-neutral, .btn-negative, .btn-positive, .btn-full, .btn-full-white, .btn-full-orange, .stepId3 .deleteDmd .btn-full-red, input[type=submit], .btn.jaune, .btn-full-secondary, .btn-full-blue, .btn-back a, .btn.blue, .btn-full-primary, .btn-empty, .btn-empty-white, .btn-empty-orange, .stepId3 .deleteDmd .btn-empty-red, input[type=submit].btn-empty-orange, .btn-empty-secondary, .btn-empty-blue, input[type=reset], .btn-empty-primary {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  clear: both;
  width: auto;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 5px;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 2px solid;
}
.btn-neutral:hover, .btn-negative:hover, .btn-positive:hover, .btn-full:hover, .btn-full-white:hover, .btn-full-orange:hover, .stepId3 .deleteDmd .btn-full-red:hover, input[type=submit]:hover, .btn.jaune:hover, .btn-full-secondary:hover, .btn-full-blue:hover, .btn-back a:hover, .btn.blue:hover, .btn-full-primary:hover, .btn-empty:hover, .btn-empty-white:hover, .btn-empty-orange:hover, .stepId3 .deleteDmd .btn-empty-red:hover, .btn-empty-secondary:hover, .btn-empty-blue:hover, input[type=reset]:hover, .btn-empty-primary:hover {
  text-decoration: none;
}

.btn-empty, .btn-empty-white, .btn-empty-orange, .stepId3 .deleteDmd .btn-empty-red, input[type=submit].btn-empty-orange, input[type=submit].btn-empty-secondary, .btn-empty-secondary, .btn-empty-blue, input[type=reset], .btn-empty-primary {
  background-color: transparent;
}
.btn-empty-blue, input[type=reset], .btn-empty-primary {
  border-color: #003a5d;
  color: #003a5d;
}
.btn-empty-blue:hover, input[type=reset]:hover, .btn-empty-primary:hover {
  background: #003a5d;
  color: #fff;
}
.btn-empty-orange, .stepId3 .deleteDmd .btn-empty-red, input[type=submit].btn-empty-orange, input[type=submit].btn-empty-secondary, .btn-empty-secondary {
  border-color: #f9b000;
  color: #f9b000;
}
.btn-empty-orange:hover, .stepId3 .deleteDmd .btn-empty-red:hover, input[type=submit].btn-empty-orange:hover, .btn-empty-secondary:hover {
  background: #f9b000;
  color: #fff;
}
.btn-empty-white {
  border-color: #fff;
  color: #fff;
}
.btn-empty-white:hover {
  background: #fff;
  color: #003a5d;
}
.btn-full, .btn-full-white, .btn-full-orange, .stepId3 .deleteDmd .btn-full-red, input[type=submit], .btn.jaune, .btn-full-secondary, .btn-full-blue, .btn-back a, .btn.blue, .btn-full-primary {
  color: #fff;
}
.btn-full-blue, .btn-back a, .btn.blue, .btn-full-primary {
  background: #003a5d;
  border-color: #003a5d;
}
.btn-full-blue:hover, .btn-back a:hover, .btn.blue:hover, .btn-full-primary:hover {
  background: #fff;
  color: #003a5d;
  border-color: #003a5d;
}
.btn-full-orange, .stepId3 .deleteDmd .btn-full-red, input[type=submit], .btn.jaune, .btn-full-secondary {
  background: #f9b000;
  border-color: #f9b000;
}
.btn-full-orange:hover, .stepId3 .deleteDmd .btn-full-red:hover, input[type=submit]:hover, .btn.jaune:hover, .btn-full-secondary:hover {
  background: transparent;
  color: #f9b000;
}
.btn-full-white {
  background: #fff;
  border-color: #fff;
  color: #003a5d;
}
.btn-full-white:hover {
  background: #ccd8df;
  color: #003a5d;
}
.btn-positive {
  background-color: #24b35d;
  color: #fff;
}
.btn-positive:hover {
  background: rgb(51.8558139535, 214.1441860465, 116.5441860465);
}
.btn-negative {
  background-color: #f50023;
  color: #fff;
}
.btn-negative:hover {
  background: rgb(255, 41, 71.5714285714);
}
.btn-neutral {
  background: #ddd;
  color: #444;
}
.btn-neutral:hover {
  background: rgb(195.5, 195.5, 195.5);
}
.btn-small {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

	Boutons de partage (social)

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

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

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

	Comportement des images dans le contenu des pages

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

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

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

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

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

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

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

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

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

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

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

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

	Logo

*/
#logo {
  position: absolute;
  top: 15px;
  left: 8%;
  z-index: 1000;
}
@media only screen and (min-width: 78em) {
  #logo {
    position: relative;
    top: auto;
    left: auto;
    margin-top: -20px;
  }
}

#logo a {
  display: block;
  width: 166px;
  height: 62px;
  text-indent: -9999px;
  background: transparent url("/images/2023/logo/logos-logo-belair.svg") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 240px;
    height: 89px;
  }
}

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

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .sitemap ul li, .presProductPiece ul li, .fieldGroup.groupCheckBoxUnique ul li {
  position: relative;
  padding-left: 20px;
}
.structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before, .presProductPiece ul li::before, .fieldGroup.groupCheckBoxUnique ul li::before {
  content: url("/images/2023/icon/icon-chevron-yellow-right.svg");
  position: absolute;
  left: 0;
  top: 0;
}

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

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

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #ccd8df;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  table {
    font-size: 16px;
  }
}
table caption {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (min-width: 48em) {
  table caption {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
table thead,
table tfoot {
  background: rgba(204, 216, 223, 0.3);
  color: #003a5d;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #ccd8df;
  padding: 10px;
}
table thead th a,
table thead td a,
table tfoot th a,
table tfoot td a {
  color: #003a5d;
}
@media only screen and (min-width: 48em) {
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding: 10px 20px;
  }
}
table tr:nth-of-type(even) {
  background: rgba(204, 216, 223, 0.3);
}
table tr td {
  border: 1px solid #ccd8df;
  padding: 10px;
}
@media only screen and (min-width: 48em) {
  table tr td {
    padding: 10px 20px;
  }
}
table.sansBord, table.sansBord *:not(caption) {
  border: none;
  background: none !important;
  font-weight: 400;
  color: #000;
  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/2023/fonts/Saira-Regular.woff2") format("woff2"), url("/images/2023/fonts/Saira-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Saira";
  src: url("/images/2023/fonts/Saira-Bold.woff2") format("woff2"), url("/images/2023/fonts/Saira-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Saira", Trbuchet MS, Helvetica, sans-serif;
  font-weight: bold;
  margin: 50px 0 20px;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 35px;
  line-height: 1.14;
  color: #003a5d;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 1.1;
  }
}
.catalog > h1,
.catalog > .h1 {
  display: none;
}
body.ru-pro h1,
body.ru-pro .h1 {
  color: #f9b000;
}

h2,
.h2 {
  font-size: 30px;
  line-height: 1.17;
  color: #003a5d;
  margin: 60px 0 20px;
}
h2 strong,
.h2 strong {
  text-transform: uppercase;
  font-size: 16px;
  color: #f9b000;
  margin-bottom: 5px;
  display: block;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 40px;
    line-height: 1.25;
    margin: 90px 0 30px;
  }
  h2 strong,
  .h2 strong {
    font-size: 18px;
  }
}

h3,
.h3 {
  font-size: 24px;
  line-height: 1.17;
  color: #003a5d;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  h3,
  .h3 {
    font-size: 28px;
    line-height: 1.25;
    margin: 60px 0 20px;
  }
}

h4,
.h4 {
  font-size: 24px;
  line-height: 1.17;
  color: #003a5d;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 28px;
    line-height: 1.25;
  }
}

h5,
.h5 {
  font-size: 22px;
  color: #f9b000;
}
@media only screen and (min-width: 78em) {
  h5,
  .h5 {
    font-size: 24px;
    line-height: 1.25;
  }
}

h6,
.h6 {
  font-size: 20px;
  color: #003a5d;
}
@media only screen and (min-width: 78em) {
  h6,
  .h6 {
    font-size: 22px;
    line-height: 1.25;
  }
}

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: 10px;
  line-height: 1.8;
  color: #003a5d;
  text-transform: uppercase;
  margin-bottom: 5px;
}
body.ru-pro .breadcrumb {
  color: #f9b000;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    margin-bottom: 7px;
  }
}
.breadcrumb a {
  color: #003a5d;
  font-weight: 400;
  text-decoration: none;
}
body.ru-pro .breadcrumb a {
  color: #f9b000;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb > span:last-child a {
  font-weight: bold;
}
.breadcrumb span.separator {
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 3px;
  background: #003a5d;
  border-radius: 50%;
  position: relative;
  top: -2px;
}
body.ru-pro .breadcrumb span.separator {
  background: #f9b000;
}

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

	Galerie Fancybox 3

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

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

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          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;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  direction: ltr;
}
.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

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

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

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

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

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

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

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

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  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%;
  -webkit-transform: translate(-50%, -50%);
          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;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
.fancybox-close-small:focus::after {
  outline: 1px dotted #888;
}
.fancybox-close-small:hover::after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, rgba(0, 0, 0, 0.1)), color-stop(40%, rgba(0, 0, 0, 0.2)), color-stop(80%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  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;
  -webkit-transition: opacity 0.2s;
  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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: border-box;
          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;
  -webkit-transform: rotate(-135deg);
          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;
  -webkit-transform: rotate(45deg);
          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 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
          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;
  -webkit-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;
          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;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
          animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}
.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #000000;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          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;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  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;
     -moz-user-select: none;
      -ms-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;
}
.groupCheckBoxUnique .aide {
  background-color: #ccd8df;
}

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

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

.fieldGroup {
  overflow: hidden;
}

label.inline {
  display: block;
  cursor: pointer;
  font-weight: 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-size: inherit;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  border-color: #ccd8df;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 0;
  font-size: 14px;
  color: #ccd8df;
  opacity: 1;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 0;
  font-size: 14px;
  color: #ccd8df;
  opacity: 1;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  letter-spacing: 0;
  font-size: 14px;
  color: #ccd8df;
  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]) {
  letter-spacing: 0;
  font-size: 14px;
  color: #ccd8df;
  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 {
  letter-spacing: 0;
  font-size: 14px;
  color: #ccd8df;
  opacity: 1;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: #003a5d;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #ddd;
}
select[readonly=""], textarea[readonly=""], input[readonly=""]:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  opacity: 0.3;
}

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

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

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

	Liste déroulante

*/
select {
  background-image: url("/images/2023/icon/icons-icon-chevron.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  padding-right: 30px;
}
@media only screen and (min-width: 64em) {
  select {
    padding-right: 50px;
    background-position: calc(100% - 20px) center;
    background-size: 12px;
  }
}
.error select {
  border: 1px solid #ddd;
  border-color: #f50023;
}

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

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

	Boutons de validation/annulation

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

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

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: #f9b000;
}
.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: -25px 0 20px;
  padding: 15px;
  background-color: #f0f3f5;
}
.aide p {
  font-size: 12px;
  margin: 0;
}

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

	Checkboxes et boutons radios

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

.group_multi_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  visibility: visible !important;
  height: auto !important;
  -webkit-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.15);
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 90em) {
  .medias .gallery {
    margin-left: -100px;
    margin-right: -100px;
  }
}

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

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

#spLoader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  margin: 18px;
  border: 18px solid #003a5d;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #003a5d transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

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

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

	NAVIGATION

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

/* ---------------- TITLE AREA ---------------- */
.title-area {
  height: 96px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8%;
}
.title-area a {
  width: 44px;
  height: 44px;
  display: block;
  background: url("/images/2023/icon/icons-icon-menu.svg") no-repeat center;
}
.expanded .title-area a {
  background: url("/images/2023/icon/icons-icon-close.svg") no-repeat center;
}
@media only screen and (min-width: 78em) {
  .title-area {
    display: none;
  }
}

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

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

.btn-extranet {
  max-width: 375px;
  margin: 0 auto 15px;
}
@media only screen and (min-width: 78em) {
  .btn-extranet {
    display: none;
  }
}
.btn-extranet a {
  border-radius: 5px;
  background-color: #f9b000;
  padding: 10px 20px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: auto;
  margin: 0 8%;
}

/* ---------------- FIRST LEVEL ---------------- */
#nested .firstLevel {
  max-width: 375px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel {
    max-width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#nested .firstLevel > li {
  position: relative;
}
#nested .firstLevel > li:last-child {
  margin-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li:nth-child(5) > a {
    padding-right: 0;
  }
}
#nested .firstLevel > li > a {
  padding: 15px 8%;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.17;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li > a {
    color: #003a5d;
    font-size: 18px;
    line-height: 1.33;
    padding: 20px 30px 13px 30px;
  }
  #nested .firstLevel > li > a:hover {
    color: #f9b000;
  }
}
#nested .firstLevel > li.has-dropdown > a {
  background: url("/images/2023/icon/icon-plus-w.svg") no-repeat 92% center;
  background-size: 25px;
}
#nested .firstLevel > li.has-dropdown > a.open {
  background-image: url("/images/2023/icon/icon-moins-w.svg");
}
#nested .firstLevel > li.active > a {
  color: #f9b000;
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li.me-scndnav {
    display: none;
  }
}
#nested .firstLevel > li.me-scndnav > a {
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nested .firstLevel > li.me-scndnav > a::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: left center;
}
#nested .firstLevel > li.me-scndnav.active > a {
  color: #f9b000;
}
#nested .firstLevel > li.me-scndnav.me-entreprise > a {
  padding-top: 45px;
}
#nested .firstLevel > li.me-scndnav.me-entreprise > a::before {
  background-image: url("/images/2023/icon/icons-icon-entreprise.svg");
}
#nested .firstLevel > li.me-scndnav.me-reseau > a::before {
  background-image: url("/images/2023/icon/icons-icon-reseau.svg");
}
#nested .firstLevel > li.me-scndnav.me-recrut > a::before {
  background-image: url("/images/2023/icon/icons-icon-recrutement.svg");
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
  padding-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  ul.secondLevel {
    position: absolute !important;
    z-index: 99;
    top: 0;
    left: 100%;
    display: block;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    padding: 0;
    top: auto;
    min-width: 100%;
    background: transparent;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    border: solid 1px #ccd8df;
    background-color: #fff;
    padding: 20px 30px;
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
  }
}
@media only screen and (min-width: 78em) {
  ul.secondLevel > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
ul.secondLevel > li.active > a {
  color: #f9b000;
}
ul.secondLevel > li > a {
  font-size: 18px;
  line-height: 1.44;
  color: #fff;
  font-weight: 400;
  padding: 7.5px 8%;
}
@media only screen and (min-width: 78em) {
  ul.secondLevel > li > a {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    color: rgba(0, 58, 93, 0.7);
    padding: 0;
  }
  ul.secondLevel > li > a:hover {
    color: #003a5d;
  }
}

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

	Listing pagination

*/
.pager {
  margin: 30px -7.5px 0;
}
@media only screen and (min-width: 78em) {
  .pager {
    margin-top: 60px;
  }
}
.pager.listing, .pager.detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pager.listing li, .pager.detail li {
  margin: 7.5px;
}
.pager.listing a, .pager.detail a {
  border-radius: 3px;
  border: solid 1px #ccd8df;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #003a5d;
  padding: 2px 9.1px;
  text-decoration: none;
  display: block;
}
@media only screen and (min-width: 78em) {
  .pager.listing a, .pager.detail a {
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 18px;
    line-height: 1.33;
  }
}

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

	Bouton retour en haut de page

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

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

#contentWrapper {
  display: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitron .clear {
  clear: both;
}

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

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

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

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

#tarteaucitron ul {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

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

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

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

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

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

#tarteaucitronRoot .tarteaucitronDeny {
  background: #19324c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

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

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

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

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

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

.display-block {
  display: block;
}

.display-none {
  display: none;
}

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

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

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

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

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

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

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

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

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

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Layout du contenu des pages

*/
.entry-header {
  background-color: #f0f3f5;
  text-align: center;
  padding: 15px 8% 30px;
  margin-bottom: 30px;
}
body.ru-pro .entry-header {
  background-color: rgba(249, 176, 0, 0.1);
  margin-bottom: 0;
}
@media only screen and (min-width: 64em) {
  .entry-header {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .entry-header {
    text-align: left;
    padding: 15px 8% 40px;
  }
  .entry-header h1 {
    text-align: center;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header {
    margin-bottom: 90px;
  }
}
.entry-header-inner {
  max-width: 1410px;
  margin: 0 auto;
}
.entry-header.with-desc {
  text-align: left;
  position: relative;
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc {
    padding-bottom: 30px;
  }
}
.entry-header.with-desc.with-img-fond {
  padding-bottom: 193px;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc.with-img-fond {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc.with-img-fond {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.entry-header.with-desc .entry-header-content-left {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-left {
    width: calc(100% - 350px);
    padding-right: 60px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-left {
    width: 670px;
    padding-right: 90px;
    padding-bottom: 30px;
  }
}
.entry-header.with-desc .entry-header-content-left .breadcrumb {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-left .breadcrumb {
    text-align: left;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-left .breadcrumb {
    margin-bottom: 60px;
  }
}
.entry-header.with-desc .entry-header-content-left h1 {
  text-align: left;
}
.entry-header.with-desc .entry-header-content-left .sous-titre {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 5px;
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-left .sous-titre {
    font-size: 24px;
    margin-top: 10px;
  }
}
.entry-header.with-desc .entry-header-content-left .sous-titre p {
  display: inline;
  margin: 0;
}
.entry-header.with-desc .entry-header-content-left .description {
  margin-top: 20px;
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-left .description {
    margin-top: 30px;
  }
}
.entry-header.with-desc .entry-header-content-left .description p:last-child {
  margin-bottom: 0;
}
.entry-header.with-desc .entry-header-content-left .btns {
  margin: 20px -10px -10px;
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-left .btns {
    margin-top: 30px;
  }
}
.entry-header.with-desc .entry-header-content-left .btns a {
  margin: 10px;
}
.entry-header.with-desc .entry-header-content-left .btns a.btn-empty-blue:hover, .entry-header.with-desc .entry-header-content-left .btns a.btn-empty-primary:hover {
  background-color: rgba(0, 58, 93, 0.2);
  color: #003a5d;
}
@media only screen and (min-width: 22.5em) {
  .entry-header.with-desc .entry-header-content-left .btns a.btn-empty-blue, .entry-header.with-desc .entry-header-content-left .btns a.btn-empty-primary {
    padding-left: 45px;
    background-image: url(/images/2023/icon/icons_icon-download.svg);
    background-repeat: no-repeat;
    background-position: 15px center;
  }
}
.entry-header.with-desc .entry-header-content-right {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-right {
    width: 350px;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-right {
    width: 497px;
    margin-top: 15px;
  }
}
.entry-header.with-desc .entry-header-content-right img {
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 22.5em) {
  .entry-header.with-desc .entry-header-content-right img {
    max-width: 315px;
  }
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-right img {
    max-width: 100%;
    margin: 0;
  }
}
.entry-header.with-desc .entry-header-content-fond {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 315px;
  z-index: 1;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-fond {
    left: auto;
    right: 0;
    width: 20%;
    height: 100%;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header.with-desc .entry-header-content-fond {
    width: 37%;
  }
}
.entry-header.with-desc .entry-header-content-fond::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f3f5), to(rgba(240, 243, 245, 0)));
  background-image: linear-gradient(to bottom, #f0f3f5 0%, rgba(240, 243, 245, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 64em) {
  .entry-header.with-desc .entry-header-content-fond::before {
    background-image: -webkit-gradient(linear, left top, right top, from(#f0f3f5), to(rgba(240, 243, 245, 0)));
    background-image: linear-gradient(to right, #f0f3f5 0%, rgba(240, 243, 245, 0) 100%);
  }
}
.entry-header.with-desc .entry-header-content-fond img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.entry-content {
  padding: 0 8%;
}
.entry-content-inner {
  max-width: 930px;
  margin: 0 auto;
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

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

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

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

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #f9b000;
  font-weight: 700;
  background: rgb(144, 213.2258064516, 255);
  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 {
  margin-top: 90px;
}
@media only screen and (min-width: 90em) {
  footer {
    margin-top: 120px;
  }
}

.subfooter {
  padding-bottom: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(27%, white), color-stop(27%, rgba(249, 176, 0, 0.1)), to(rgba(249, 176, 0, 0.1)));
  background: linear-gradient(to bottom, white 0%, white 27%, rgba(249, 176, 0, 0.1) 27%, rgba(249, 176, 0, 0.1) 100%);
}
body.newsList .subfooter {
  display: none;
}
@media only screen and (min-width: 78em) {
  .subfooter {
    padding: 0 calc(4% - 15px) 60px;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter {
    padding-bottom: 90px;
  }
}
.subfooter-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.subfooter-inner .widgetLastElements > .h4 {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 90em) {
  .subfooter-inner .widgetLastElements > .h4 {
    margin-bottom: 50px;
  }
}
.subfooter-inner .widgetLastElements .news-list {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: auto;
  padding: 0 calc(8% - 7.5px);
  margin: 0;
}
@media only screen and (min-width: 64em) {
  .subfooter-inner .widgetLastElements .news-list {
    padding: 0 calc(4% - 7.5px);
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-inner .widgetLastElements .news-list {
    padding: 0;
  }
}
.subfooter-inner .widgetLastElements .news-list-item {
  width: 315px;
  min-width: 315px;
  margin: 0 7.5px;
}
@media only screen and (min-width: 78em) {
  .subfooter-inner .widgetLastElements .news-list-item {
    width: calc(33.333% - 30px);
    margin: 0 15px;
  }
}
.subfooter-inner .widgetLastElements .btn-more {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 90em) {
  .subfooter-inner .widgetLastElements .btn-more {
    margin-top: 60px;
  }
}
.subfooter-inner .widgetLastElements .btn-more a {
  margin: 0;
}

.footer {
  background: #003a5d;
  padding: 60px 8% 30px;
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .footer {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .footer {
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .footer {
    padding: 60px 8%;
  }
}
.footer-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-item:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 48em) {
  .footer-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer-item.contact > img:first-child {
  margin-bottom: 10px;
}
.footer-item.contact p.tel-footer {
  font-size: 18px;
}
.footer-item.contact p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 90em) {
  .footer-item.contact p:last-child {
    margin-top: 30px;
  }
}
.footer-item.contact p:last-child a {
  margin-bottom: 0;
}
@media only screen and (min-width: 64em) {
  .footer-item.links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -30px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-item.links {
    margin: 0 -50px;
  }
}
@media only screen and (min-width: 103.125em) {
  .footer-item.links {
    margin: 0 -75px;
  }
}
@media only screen and (min-width: 64em) {
  .footer-item.links .links-item {
    margin: 0 30px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-item.links .links-item {
    margin: 0 50px;
  }
}
@media only screen and (min-width: 103.125em) {
  .footer-item.links .links-item {
    margin: 0 75px;
  }
}
.footer-item.links .links-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .footer-item.links .links-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer-item.links .links-item-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-item.links .links-item-title::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/images/2023/icon/icon-plus-w.svg") no-repeat center;
  background-size: 100%;
  margin-left: 15px;
}
@media only screen and (min-width: 64em) {
  .footer-item.links .links-item-title::after {
    display: none;
  }
}
.footer-item.links .links-item-title.open::after {
  background-image: url("/images/2023/icon/icon-moins-w.svg");
}
.footer-item.links .links-item ul {
  display: none;
  margin: 20px 0 0;
}
@media only screen and (min-width: 64em) {
  .footer-item.links .links-item ul {
    display: block;
  }
}
@media only screen and (min-width: 90em) {
  .footer-item.links .links-item ul {
    margin-top: 30px;
  }
}
.footer-item.links .links-item ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-item.links .links-item ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.footer-item.links .links-item ul li a:hover {
  color: #f9b000;
}
@media only screen and (min-width: 48em) {
  .footer-item.signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer-item.signature .signature-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 48em) {
  .footer-item.signature .signature-top ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer-item.signature .signature-top ul li:not(:last-child) {
  margin-right: 15px;
}
.footer-item.signature .signature-top ul li a {
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -999999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
}
.footer-item.signature .signature-top ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 78em) {
  .footer-item.signature .signature-top ul li a {
    width: 30px;
    height: 30px;
  }
}
.footer-item.signature .signature-top ul li a.fb {
  background-image: url("/images/2023/icon/icon-facebook.svg");
}
.footer-item.signature .signature-top ul li a.yt {
  background-image: url("/images/2023/icon/icon-youtube.svg");
}
.footer-item.signature .signature-top p {
  margin-top: 10px;
}
@media only screen and (min-width: 78em) {
  .footer-item.signature .signature-top p {
    margin-top: 20px;
  }
}
.footer-item.signature .signature-bottom {
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 48em) {
  .footer-item.signature .signature-bottom {
    text-align: right;
  }
}
.footer-item.signature .signature-bottom p:last-child {
  margin-bottom: 0;
}
.footer-item.signature .signature-bottom p:last-child br {
  display: none;
}
@media only screen and (min-width: 48em) {
  .footer-item.signature .signature-bottom p:last-child br {
    display: block;
  }
}
@media only screen and (min-width: 48em) {
  .footer-item.signature .signature-bottom p:last-child span {
    display: none;
  }
}
.footer-item.signature .signature-bottom p:last-child a {
  color: #fff;
  text-decoration: none;
}

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

	Header

*/
header {
  position: relative;
  z-index: 9999;
}
header .box-extranet {
  display: none;
}

.sub-header {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .sub-header {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(204, 216, 223, 0)), color-stop(15%, rgba(204, 216, 223, 0)), to(rgba(204, 216, 223, 0.3)));
    background-image: linear-gradient(to right, rgba(204, 216, 223, 0) 0%, rgba(204, 216, 223, 0) 15%, rgba(204, 216, 223, 0.3) 100%);
    padding: 0 8%;
  }
  .sub-header-inner {
    max-width: 1410px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sub-header-nav, .sub-header .btn-espace-pro {
  display: none;
}
@media only screen and (min-width: 78em) {
  .sub-header-nav, .sub-header .btn-espace-pro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .sub-header-nav li {
    margin: 0;
  }
  .sub-header-nav li:not(:last-child) {
    margin-right: 30px;
  }
  .sub-header-nav li a {
    font-size: 12px;
    line-height: 1.67;
    color: #003a5d;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sub-header-nav li a::before {
    content: "";
    margin-right: 5px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
  }
  .sub-header-nav li a:hover {
    color: #f9b000;
  }
  .sub-header-nav li.active > a {
    color: #f9b000;
  }
  .sub-header-nav li.me-entreprise > a::before {
    background-image: url("/images/2023/icon/icons-icon-entreprise.svg");
    width: 18px;
    height: 15px;
  }
  .sub-header-nav li.me-reseau > a::before {
    background-image: url("/images/2023/icon/icons-icon-reseau.svg");
    width: 12px;
    height: 16px;
  }
  .sub-header-nav li.me-recrut > a::before {
    background-image: url("/images/2023/icon/icons-icon-recrutement.svg");
    width: 14px;
    height: 13px;
  }
}
.sub-header .btn-espace-pro {
  margin: 0 30px;
}
.sub-header .btn-espace-pro a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  background: #f9b000;
}
.sub-header .btn-espace-pro a:hover {
  background: rgb(198, 139.9518072289, 0);
}
.sub-header-lang {
  position: absolute;
  right: calc(8% + 55px);
  top: 38px;
  margin: 0;
}
@media only screen and (min-width: 22.5em) {
  .sub-header-lang {
    right: calc(8% + 65px);
  }
}
@media only screen and (min-width: 78em) {
  .sub-header-lang {
    position: relative;
    top: auto;
    right: auto;
  }
}
.sub-header-lang a {
  font-size: 14px;
  line-height: 1.57;
  color: #003a5d;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: 400;
}
.sub-header-lang a span {
  margin-left: 5px;
}
.sub-header-lang > li > ul {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 14px);
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 0;
  z-index: -1;
}
.sub-header-lang > li > ul li {
  margin-bottom: 5px !important;
}
.sub-header-lang > li > ul li:last-child {
  margin-bottom: 0 !important;
}
.sub-header-lang > li > ul::before {
  content: "";
  width: 46px;
  height: 29px;
  background: url("/images/2023/icon/shape-menu.svg") no-repeat center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -26px;
}
.sub-header-lang > li > ul a {
  min-width: 45px;
}
.sub-header-lang > li > ul > li:not(:last-child) {
  margin-bottom: 10px;
}
.sub-header-lang.open > li > ul {
  display: block;
}

.header {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .header {
    padding: 0 8% 20px 8%;
  }
  .header-inner {
    max-width: 1410px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

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

	Sidebar

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

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

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

	Familles du catalogue

*/
.family-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (min-width: 78em) {
  .family-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.family-list-item {
  position: relative;
  max-width: 315px;
  margin: 0 15px 30px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 78em) {
  .family-list-item {
    max-width: 100%;
    width: calc(50% - 30px);
  }
  .family-list-item:hover::after {
    right: -50px;
    bottom: -62px;
  }
  .family-list-item:hover::before {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .family-list-item:hover .family-list-item-txt h2 {
    color: #f9b000;
  }
}
.family-list-item::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("/images/2023/icon/icon-plus.svg") no-repeat center;
  background-size: 100%;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .family-list-item::before {
    width: 30px;
    height: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}
.family-list-item::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 80px;
  height: 80px;
  background: #fff;
  border: solid 1px #ccd8df;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .family-list-item::after {
    right: -110px;
    bottom: -110px;
    width: 110px;
    height: 110px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
.family-list-item-inner {
  border: solid 1px #ccd8df;
  background-color: #fff;
  height: 100%;
}
.family-list-item-img {
  height: 200px;
}
.family-list-item-img:empty {
  background: url(/images/2023/logo/logos-logo-belair.svg) no-repeat center;
  opacity: 0.2;
}
@media only screen and (min-width: 90em) {
  .family-list-item-img {
    height: 250px;
  }
}
.family-list-item-txt {
  padding: 15px 20px 30px;
}
@media only screen and (min-width: 90em) {
  .family-list-item-txt {
    padding: 20px 30px 50px;
  }
}
.family-list-item-txt .date {
  font-size: 12px;
  line-height: 1.67;
  color: #003a5d;
  text-transform: uppercase;
}
.family-list-item-txt h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
  color: #003a5d;
  margin: 5px 0 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 90em) {
  .family-list-item-txt h2 {
    font-size: 28px;
  }
}
.family-list-item-txt .description {
  font-size: 14px;
  line-height: 1.57;
  margin-top: 15px;
}

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

	Produits du catalogue

*/
@media only screen and (min-width: 48em) {
  .product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .product-list {
    margin: 0 -100px;
  }
}
@media only screen and (min-width: 90em) {
  .product-list {
    margin: -30px -200px 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-list {
    margin: -30px -275px 0;
  }
}
.product-list:empty {
  display: none;
}

.desc-page {
  margin-top: 90px;
}
@media only screen and (min-width: 78em) {
  .desc-page {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .desc-page {
    margin-top: 90px;
  }
}
@media only screen and (min-width: 103.125em) {
  .desc-page {
    margin-top: 120px;
  }
}

@media only screen and (min-width: 78em) {
  .ru-solutions .entry-content {
    padding: 0 2%;
  }
  .ru-solutions .entry-content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1740px;
  }
  .ru-solutions .entry-content-inner article {
    width: calc(100% - 270px);
    padding-left: 30px;
  }
  .ru-solutions .entry-content-inner article .product-list {
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  .ru-solutions .entry-content {
    padding: 0 3%;
  }
}

#leftbar {
  max-width: 500px;
  margin: 0 auto 30px;
  display: none;
}
body.ru-solutions #leftbar, body.ru-pro #leftbar {
  display: block;
}
@media only screen and (min-width: 64em) {
  #leftbar {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  #leftbar {
    width: 270px;
  }
}

#boxFiltre {
  position: relative;
  z-index: 12;
}
@media only screen and (min-width: 78em) {
  #boxFiltre {
    overflow: hidden;
  }
  #boxFiltre::after {
    content: "";
    border: solid 1px #ccd8df;
    background: #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: -22px;
    bottom: -26px;
    width: 43px;
    height: 48px;
  }
}
#boxFiltre .boxFiltreTitle {
  border: solid 1px #ccd8df;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 58, 93, 0.7);
  text-transform: uppercase;
  padding: 19px 30px;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("/images/2023/icon/icons-icon-chevron.svg") no-repeat calc(100% - 15px) center, #fff;
}
#boxFiltre .boxFiltreTitle span:not(:empty) {
  background: #f9b000;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  margin-left: 10px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .boxFiltreTitle {
    display: none;
  }
}
#boxFiltre .box_predefined_cat_search_form {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .box_predefined_cat_search_form {
    display: block;
    position: relative;
    top: auto;
    width: auto;
  }
}
#boxFiltre .box_predefined_cat_search_form.open {
  display: block;
}
#boxFiltre .box_predefined_cat_search_form .formulaire {
  margin: 0;
  max-width: 100%;
}
#boxFiltre #divprop_17 label.inline {
  display: none;
}
#boxFiltre #divprop_17 button, #boxFiltre #divprop_17 .multi_checkbox label {
  border: solid 1px #ccd8df;
  border-top: none;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 58, 93, 0.7);
  text-transform: uppercase;
  padding: 19px 30px;
  text-decoration: none;
  background: #fff;
  font-family: "Saira", Trbuchet MS, Helvetica, sans-serif;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  text-align: left;
}
#boxFiltre #divprop_17 button:hover, #boxFiltre #divprop_17 .multi_checkbox label:hover {
  background: #ccd8df;
}
#boxFiltre #divprop_17 button.active, #boxFiltre #divprop_17 .multi_checkbox input:checked + label {
  background: #003a5d;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  #boxFiltre #divprop_17 button {
    border-top: solid 1px #ccd8df;
  }
}
#boxFiltre #divprop_17 .multi_checkbox input {
  display: none;
}
#boxFiltre #divprop_17 .multi_checkbox label {
  cursor: pointer;
  padding: 20px 30px;
}
#boxFiltre #divprop_17 .multi_checkbox label span {
  display: none;
}
#boxFiltre .submit {
  display: none;
}

.carac-product > h2:first-child::before, .option-product > h2:first-child::before, .equipment-product-content-item-txt > h2:first-child::before {
  text-transform: uppercase;
  font-size: 16px;
  color: #f9b000;
  margin-bottom: 5px;
  display: block;
}
@media only screen and (min-width: 78em) {
  .carac-product > h2:first-child::before, .option-product > h2:first-child::before, .equipment-product-content-item-txt > h2:first-child::before {
    font-size: 18px;
  }
}

.carac-product ul, .option-product ul {
  margin-top: 60px;
}
@media only screen and (min-width: 64em) {
  .carac-product ul, .option-product ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 60px -15px 0;
  }
}
.carac-product ul li, .option-product ul li {
  padding-left: 30px;
  background: url(/images/2023/icon/icons_icon-puce.svg) no-repeat left 2px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 64em) {
  .carac-product ul li, .option-product ul li {
    margin: 0 15px 15px;
    width: calc(50% - 30px);
  }
}
.carac-product ul:first-child::before, .option-product ul:first-child::before {
  display: block;
  font-size: 30px;
  line-height: 1.17;
  color: #003a5d;
  margin: 0 0 20px;
  font-weight: bold;
  width: 100%;
}
@media only screen and (min-width: 64em) {
  .carac-product ul:first-child::before, .option-product ul:first-child::before {
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product ul:first-child::before, .option-product ul:first-child::before {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 60px;
  }
}

.carac-product > h2:first-child::before {
  content: "Caractéristiques";
}
.carac-product ul:first-child::before {
  content: "Caractéristiques";
}
html[lang=en] .carac-product > h2:first-child::before {
  content: "Features";
}
html[lang=en] .carac-product ul:first-child::before {
  content: "Features";
}

.option-product > h2:first-child::before {
  content: "Options";
}
.option-product ul:first-child::before {
  content: "Options";
}

.equipment-product-content-item-txt > h2:first-child::before {
  content: "Équipement";
}
.equipment-product-content-item-txt > *:first-child:not(h2)::before {
  content: "Équipement";
  display: block;
  font-size: 24px;
  line-height: 1.17;
  color: #003a5d;
  margin: 0 0 20px;
  font-weight: bold;
  width: 100%;
}
@media only screen and (min-width: 64em) {
  .equipment-product-content-item-txt > *:first-child:not(h2)::before {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 78em) {
  .equipment-product-content-item-txt > *:first-child:not(h2)::before {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 60px;
  }
}
html[lang=en] .equipment-product-content-item-txt > h2:first-child::before, html[lang=en] .equipment-product-content-item-txt > *:first-child:not(h2)::before {
  content: "Equipment";
}

.visuels_additionnels {
  margin: 60px -9%;
}
@media only screen and (min-width: 90em) {
  .visuels_additionnels {
    margin: 90px -240px 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .visuels_additionnels {
    margin: 90px -255px 60px;
  }
}
.visuels_additionnels ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding: 0 calc(8% - 7.5px);
}
@media only screen and (min-width: 78em) {
  .visuels_additionnels ul {
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.visuels_additionnels li {
  width: 260px;
  height: 200px;
  min-width: 260px;
  border-radius: 5px;
  border: solid 1px #ccd8df;
  margin: 0 7.5px;
}
@media only screen and (min-width: 78em) {
  .visuels_additionnels li {
    width: calc(25% - 30px);
    margin: 0 15px 30px;
    height: 250px;
    min-width: 0;
  }
}

.interest-product {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #003a5d;
  color: #fff;
  padding: 30px 8%;
  margin-top: 60px;
}
@media only screen and (min-width: 90em) {
  .interest-product {
    margin-top: 75px;
  }
}
.interest-product-inner {
  max-width: 930px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .interest-product-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.interest-product-left p {
  margin: 0;
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 64em) {
  .interest-product-left p {
    font-size: 16px;
    line-height: 1.5;
  }
}
.interest-product-left p.title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 3px;
}
@media only screen and (min-width: 64em) {
  .interest-product-left p.title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 5px;
  }
}
.interest-product-right {
  margin-top: 20px;
}
@media only screen and (min-width: 48em) {
  .interest-product-right {
    margin: 0;
  }
}
.interest-product-right a {
  margin: 0;
}

.equipment-product {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: rgba(204, 216, 223, 0.3);
  padding: 60px 9.525%;
}
@media only screen and (min-width: 78em) {
  .equipment-product {
    padding: 90px 9.525%;
  }
}
@media only screen and (min-width: 90em) {
  .equipment-product {
    padding: 120px 9.525%;
  }
}
.equipment-product-inner {
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
}
.equipment-product-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -2.5px -2.5px 27.5px;
}
@media only screen and (min-width: 64em) {
  .equipment-product-title {
    position: absolute;
    margin: -2.5px;
    top: 0;
    left: 50%;
    width: 50%;
    padding-left: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .equipment-product-title {
    width: calc(100% - 687px);
    padding-left: 120px;
    left: auto;
    right: 0;
    margin: -2.5px 0 0;
  }
}
.equipment-product-title-item {
  border: solid 1.5px rgba(249, 176, 0, 0);
  padding: 7px;
  border-radius: 5px;
  margin: 2.5px;
}
.equipment-product-title-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 5px;
}
.equipment-product-title-item#current {
  border-color: #f9b000;
}
@media only screen and (min-width: 64em) {
  .equipment-product-content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 64em) {
  .equipment-product-content-item-txt {
    width: 50%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 60px;
    padding-top: 134px;
  }
}
@media only screen and (min-width: 90em) {
  .equipment-product-content-item-txt {
    padding-left: 120px;
    width: calc(100% - 690px);
  }
}
.equipment-product-content-item-txt > h2:first-child {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
}
@media only screen and (min-width: 78em) {
  .equipment-product-content-item-txt > h2:first-child {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 20px;
  }
}
.equipment-product-content-item-img {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
@media only screen and (min-width: 64em) {
  .equipment-product-content-item-img {
    width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  .equipment-product-content-item-img {
    width: 690px;
  }
}
.equipment-product-content-item-img::after {
  content: "";
  background: #F0F3F5;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  width: 75px;
  height: 75px;
  z-index: 1;
  right: -37.5px;
  bottom: -37.5px;
}
@media only screen and (min-width: 90em) {
  .equipment-product-content-item-img::after {
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: -92px;
    -webkit-transform: rotate(51deg);
            transform: rotate(51deg);
  }
}

.associated_product {
  margin-top: 60px;
}
.associated_product > h2 {
  text-align: center;
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.17;
}
@media only screen and (min-width: 90em) {
  .associated_product > h2 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 60px;
  }
}
.associated_product .short_product:nth-child(n+4) {
  display: none;
}
@media only screen and (min-width: 48em) {
  .associated_product .short_product:last-child {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .associated_product .short_product:last-child {
    display: block;
  }
}
@media only screen and (min-width: 90em) {
  .associated_product {
    margin-top: 90px;
  }
}

.btn-back {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (min-width: 48em) {
  .btn-back {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .btn-back {
    margin-top: 90px;
  }
}
.btn-back a {
  margin: 0;
}

.short_product {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .short_product {
    width: 33.333%;
    padding: 30px;
    margin-bottom: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 1px solid rgba(166, 182, 186, 0);
    margin: 0;
  }
  .short_product:hover {
    border: 1px solid rgba(166, 182, 186, 0.3);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
  }
}
.short_product_img {
  width: 100%;
  height: 192px;
}
.short_product_img:empty {
  background: url(/images/2023/logo/logos-logo-belair.svg) no-repeat center;
  opacity: 0.2;
}
@media only screen and (min-width: 90em) {
  .short_product_img {
    height: 300px;
  }
}
.short_product ul {
  display: none;
}
body.ru-solutions .short_product ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px -5px 5px;
}
body.ru-solutions .short_product ul + h2 {
  margin-top: 0;
}
body.ru-solutions .short_product ul li {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.67;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 0 8px;
  background: #f9b000;
  border-radius: 50px;
  margin: 5px;
}
.short_product h2 {
  font-size: 18px;
  font-weight: bold;
  color: #003a5d;
  margin-top: 20px;
  margin-bottom: 0;
}
@media only screen and (min-width: 90em) {
  .short_product h2 {
    margin-top: 30px;
  }
}
.short_product .description {
  font-size: 16px;
  color: #003a5d;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .short_product .description {
    margin-top: 5px;
  }
}

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

	Page listing actualités

*/
body.newsList .entry-content-inner {
  max-width: 1410px;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (min-width: 78em) {
  .news-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news-list-item {
  position: relative;
  max-width: 315px;
  margin: 0 15px 30px;
  width: 100%;
  overflow: hidden;
}
.news-list-item::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("/images/2023/icon/icon-plus.svg") no-repeat center;
  background-size: 100%;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .news-list-item::before {
    width: 30px;
    height: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}
.news-list-item::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 80px;
  height: 80px;
  background: #fff;
  border: solid 1px #ccd8df;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .news-list-item::after {
    right: -110px;
    bottom: -110px;
    width: 110px;
    height: 110px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
@media only screen and (min-width: 78em) {
  .news-list-item {
    max-width: 100%;
    width: calc(33.333% - 30px);
  }
  .news-list-item:hover::after {
    right: -50px;
    bottom: -62px;
  }
  .news-list-item:hover::before {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .news-list-item:hover .news-list-item-txt h2 {
    color: #f9b000;
  }
}
.news-list-item-inner {
  border: solid 1px #ccd8df;
  background-color: #fff;
  height: 100%;
}
.news-list-item-img {
  height: 200px;
}
@media only screen and (min-width: 90em) {
  .news-list-item-img {
    height: 250px;
  }
}
.news-list-item-txt {
  padding: 15px 20px 30px;
}
@media only screen and (min-width: 90em) {
  .news-list-item-txt {
    padding: 20px 30px 50px;
  }
}
.news-list-item-txt .date {
  font-size: 12px;
  line-height: 1.67;
  color: #003a5d;
  text-transform: uppercase;
}
.news-list-item-txt h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  color: #003a5d;
  margin: 5px 0 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 90em) {
  .news-list-item-txt h2 {
    font-size: 20px;
  }
}
.news-list-item-txt .description {
  font-size: 14px;
  line-height: 1.57;
  margin-top: 15px;
}

.subfooter .news-list-item::after {
  background-color: #FEF7E5;
}

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

	Page détail actualité

*/
.news-detail .news-picture {
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  margin-bottom: 0;
}
.news-detail .news-picture .news-date {
  left: -10px;
  margin-left: 30px;
  margin-right: 30px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
  bottom: -20px;
  background: #F6F6F6;
}
.news-detail .news-picture img {
  width: 100%;
}
.news-detail .news-description {
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 14px;
  background: #F6F6F6;
}
.news-detail .medias {
  margin-left: -30px;
  margin-right: -30px;
}

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

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

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

	Page Contact

*/
body.ru-accueil .entry-header {
  display: none;
}
body.ru-accueil .entry-content {
  padding: 0;
}
body.ru-accueil .entry-content-inner {
  max-width: 100%;
}
body.ru-accueil footer {
  margin-top: 60px;
}
@media only screen and (min-width: 90em) {
  body.ru-accueil footer {
    margin-top: 150px;
  }
}

.diapo-accueil {
  position: relative;
  height: 550px;
  overflow: hidden;
}
@media only screen and (min-width: 22.5em) {
  .diapo-accueil {
    height: 491px;
  }
}
@media only screen and (min-width: 90em) {
  .diapo-accueil {
    height: 700px;
  }
}
.diapo-accueil-title {
  position: absolute;
  top: 60px;
  left: 0;
  padding: 0 8%;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil-title {
    left: 8%;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (min-width: 90em) {
  .diapo-accueil-title {
    left: 90px;
  }
}
.diapo-accueil-title img {
  margin-bottom: 10px;
}
.diapo-accueil-title h1 {
  color: #fff;
  max-width: 340px;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil-title h1 {
    max-width: 570px;
  }
}
@media only screen and (min-width: 90em) {
  .diapo-accueil-title h1 {
    font-size: 70px;
    line-height: 1.07;
    max-width: 630px;
  }
  html[lang=en] .diapo-accueil-title h1 {
    max-width: 700px;
  }
}
.diapo-accueil-title h1 span {
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 10px;
}
@media only screen and (min-width: 90em) {
  .diapo-accueil-title h1 span {
    font-size: 24px;
  }
}
.diapo-accueil #responsiveSlide {
  z-index: 1;
  position: relative;
  height: 100%;
}
.diapo-accueil #responsiveSlide ul.rslides {
  overflow: hidden;
  height: 100%;
  margin: 0;
}
.diapo-accueil #responsiveSlide ul.rslides a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
}
.diapo-accueil #responsiveSlide ul.rslides li {
  width: 100%;
  height: 100%;
  margin: 0;
}
.diapo-accueil #responsiveSlide ul.rslides li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(37deg, #003a5d 0%, rgba(0, 58, 93, 0.7) 43%, rgba(0, 58, 93, 0) 100%);
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil #responsiveSlide ul.rslides li::before {
    background-image: linear-gradient(70deg, #003a5d 0%, rgba(0, 58, 93, 0.7) 22%, rgba(0, 58, 93, 0) 50%);
  }
}
.diapo-accueil #responsiveSlide ul.rslides li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.diapo-accueil #responsiveSlide ul.rslides li .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f9b000;
  color: #fff;
  font-size: 18px;
  line-height: 1.44;
  padding: 0 8% 20px;
  z-index: 3;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil #responsiveSlide ul.rslides li .caption {
    max-width: 570px;
    left: auto;
    right: 0;
    padding: 0 50px 28px;
  }
}
.diapo-accueil #responsiveSlide ul.rslides li .caption::before {
  content: "";
  display: block;
  height: 42px;
  width: 100%;
  background: #f9b000;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  position: absolute;
  top: -42px;
  left: 20px;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil #responsiveSlide ul.rslides li .caption::before {
    -webkit-transform: skew(-50deg);
            transform: skew(-50deg);
    left: 25px;
  }
}
.diapo-accueil #responsiveSlide ul.rslides li .caption p {
  display: block;
  position: relative;
  z-index: 2;
  margin: -23px 0 0;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil #responsiveSlide ul.rslides li .caption p {
    font-size: 24px;
    line-height: 1.25;
    margin-top: -13px;
  }
}
.diapo-accueil #responsiveSlide ul.rslides li .caption p strong {
  display: block;
  max-height: 104px;
  overflow: hidden;
}
.diapo-accueil #responsiveSlide ul.rslides li .caption p::after {
  content: "En savoir plus";
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  margin-top: 5px;
  background: url("/images/2023/icon/icons-icon-arrow-white.svg") no-repeat 111px center;
}
@media only screen and (min-width: 78em) {
  .diapo-accueil #responsiveSlide ul.rslides li .caption p::after {
    margin-top: 12px;
  }
}
html[lang=en] .diapo-accueil #responsiveSlide ul.rslides li .caption p::after {
  content: "Learn more";
  background-position: 95px center;
}

.product-accueil {
  padding: 0 4%;
  margin: 30px 0 60px;
}
@media only screen and (min-width: 64em) {
  .product-accueil {
    margin: 60px 0 90px;
  }
}
@media only screen and (min-width: 90em) {
  .product-accueil {
    margin: 90px 0 120px;
  }
}
.product-accueil-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .product-accueil-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.product-accueil select {
  max-width: 300px;
  margin: 0 auto;
  border: solid 1px #ccd8df;
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 58, 93, 0.7);
  text-transform: uppercase;
  padding: 17px 30px;
  text-decoration: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("/images/2023/icon/icons-icon-chevron.svg") no-repeat calc(100% - 15px) center, #fff;
  border-radius: 0;
  font-family: "Saira", Trbuchet MS, Helvetica, sans-serif;
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .product-accueil select {
    display: none;
  }
}
.product-accueil-title {
  display: none;
}
@media only screen and (min-width: 64em) {
  .product-accueil-title {
    display: block;
    overflow: hidden;
    position: relative;
    width: 305px;
  }
  .product-accueil-title::after {
    content: "";
    border: solid 1px #ccd8df;
    background: #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: -22px;
    bottom: -26px;
    width: 43px;
    height: 48px;
  }
  .product-accueil-title-item {
    border: solid 1px #ccd8df;
    border-top: none;
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: rgba(0, 58, 93, 0.7);
    text-transform: uppercase;
    padding: 19px 30px;
    text-decoration: none;
    background: #fff;
    font-family: "Saira", Trbuchet MS, Helvetica, sans-serif;
    display: block;
    width: 100%;
    text-align: left;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .product-accueil-title-item:hover {
    background: rgba(204, 216, 223, 0.5);
  }
  .product-accueil-title-item#current {
    background: #003a5d;
    color: #fff;
  }
  .product-accueil-title-item:first-child {
    border-top: solid 1px #ccd8df;
  }
  .product-accueil-title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: solid 1px #ccd8df;
    border-top: none;
    background-color: rgba(204, 216, 223, 0.5);
    font-size: 18px;
    font-weight: bold;
    color: #003a5d;
    padding: 20px 30px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .product-accueil-title a:hover {
    background-color: rgba(204, 216, 223, 0.8);
  }
  .product-accueil-title a::after {
    content: url(/images/2023/icon/icons_icon-arrow_blue.svg);
    margin-left: 15px;
    height: 21px;
  }
}
@media only screen and (min-width: 64em) {
  .product-accueil-content {
    width: calc(100% - 305px);
    padding-left: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .product-accueil-content {
    margin-top: -30px;
  }
}
@media only screen and (min-width: 64em) {
  .product-accueil-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
}
.product-accueil-item .short_product {
  max-width: 330px;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 64em) {
  .product-accueil-item .short_product {
    max-width: 100%;
    margin: 0;
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  .product-accueil-item .short_product {
    margin: 0;
    width: 50%;
  }
}
.product-accueil-item .short_product_img {
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 78em) {
  .product-accueil-item .short_product_img {
    max-width: 430px;
  }
}
.product-accueil .btn-more {
  text-align: center;
  margin-top: 60px;
}
@media only screen and (min-width: 64em) {
  .product-accueil .btn-more {
    display: none;
  }
}
.product-accueil .btn-more a {
  margin: 0;
}

.text-accueil {
  margin-bottom: 60px;
}
@media only screen and (min-width: 64em) {
  .text-accueil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 90em) {
  .text-accueil {
    margin-bottom: 150px;
  }
}
.text-accueil-left {
  background: rgba(249, 176, 0, 0.1);
  padding: 60px 8%;
}
@media only screen and (min-width: 64em) {
  .text-accueil-left {
    width: 50%;
    padding: 60px 4%;
  }
}
@media only screen and (min-width: 90em) {
  .text-accueil-left {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.text-accueil-left-inner {
  max-width: 570px;
  margin: 0 auto;
}
.text-accueil-left-inner > h2:first-child {
  color: #f9b000;
  margin-bottom: 20px;
}
.text-accueil-left-inner > h2:first-child + h3 {
  text-transform: none;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 20px;
}
@media only screen and (min-width: 78em) {
  .text-accueil-left-inner > h2:first-child + h3 {
    font-size: 24px;
  }
}
.text-accueil-left-img {
  text-align: center;
  margin: 60px 0 30px;
}
.text-accueil-left .btn-more {
  text-align: center;
}
.text-accueil-left .btn-more a {
  margin: 0;
}
.text-accueil-right {
  background: #003a5d;
  color: #ccd8df;
  padding: 60px 8%;
}
@media only screen and (min-width: 64em) {
  .text-accueil-right {
    width: 50%;
    padding: 60px 4%;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .text-accueil-right {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: 120px;
  }
}
.text-accueil-right-inner {
  max-width: 570px;
  margin: 0 auto;
}
.text-accueil-right-inner > h2, .text-accueil-right-inner > h3 {
  color: #fff;
}
.text-accueil-right-inner > h2:first-child + p {
  font-size: 16px;
  line-height: 1.5;
}
.text-accueil-right-inner h3 {
  font-size: 18px;
  line-height: 1.44;
  text-transform: none;
  font-weight: bold;
  margin: 15px 0 10px;
}
@media only screen and (min-width: 48em) {
  .text-accueil-right-inner h3 {
    margin: 50px 0 9px;
    font-size: 20px;
  }
}
.text-accueil-right-inner hr {
  margin: 0;
}
.text-accueil-right-inner p:not(:last-child) {
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 48em) {
  .text-accueil-right-inner p:not(:last-child) {
    margin: 0;
  }
  .text-accueil-right-inner p:not(:last-child) img {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.text-accueil-right-inner p:last-child {
  margin-bottom: 0;
  margin-top: 60px;
}
.text-accueil-right-inner p:last-child a {
  margin: 0;
}

.short-accueil {
  margin-top: 60px;
}
@media only screen and (min-width: 64em) {
  .short-accueil {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 90em) {
  .short-accueil {
    margin-top: 120px;
  }
}
.short-accueil-inner {
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 64em) {
  .short-accueil-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.short-accueil-inner::before, .short-accueil-inner::after {
  content: "";
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
}
@media only screen and (min-width: 90em) {
  .short-accueil-inner::before, .short-accueil-inner::after {
    width: 120px;
    height: 120px;
  }
}
.short-accueil-inner::before {
  left: -30px;
  top: -30px;
}
@media only screen and (min-width: 90em) {
  .short-accueil-inner::before {
    left: -60px;
    top: -60px;
  }
}
.short-accueil-inner::after {
  right: -30px;
  bottom: -30px;
}
@media only screen and (min-width: 90em) {
  .short-accueil-inner::after {
    right: -60px;
    bottom: -60px;
  }
}
.short-accueil-item {
  position: relative;
  background: #fff;
}
@media only screen and (min-width: 64em) {
  .short-accueil-item {
    width: 33%;
    border-bottom: solid 1px #ccd8df;
    border-top: solid 1px #ccd8df;
  }
}
.short-accueil-item:hover .btn-more.btn-empty-blue, .short-accueil-item:hover .btn-more.btn-empty-primary, .short-accueil-item:hover input.btn-more[type=reset] {
  background: #003a5d;
  color: #fff;
}
.short-accueil-item:hover .btn-more.btn-empty-white {
  background: rgba(255, 255, 255, 0.3);
}
.short-accueil-item-img {
  height: 200px;
  position: relative;
}
@media only screen and (min-width: 90em) {
  .short-accueil-item-img {
    height: 350px;
  }
}
.short-accueil-item-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(30%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, #fff 30%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (min-width: 90em) {
  .short-accueil-item-img::after {
    height: 80px;
  }
}
.short-accueil-item-txt {
  padding: 0 30px 30px;
}
@media only screen and (min-width: 90em) {
  .short-accueil-item-txt {
    padding: 0 50px 60px;
  }
}
.short-accueil-item h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
  margin: 0 0 5px;
}
@media only screen and (min-width: 90em) {
  .short-accueil-item h2 {
    font-size: 28px;
    line-height: 1.25;
  }
}
.short-accueil-item p {
  margin: 0;
}
.short-accueil-item .btn-more {
  margin-top: 20px;
  margin-bottom: 0;
}
@media only screen and (min-width: 90em) {
  .short-accueil-item .btn-more {
    margin-top: 30px;
  }
}
.short-accueil-item.blue, .short-accueil-item.orange {
  color: #fff;
}
@media only screen and (min-width: 64em) {
  .short-accueil-item.blue, .short-accueil-item.orange {
    border: none;
  }
}
.short-accueil-item.blue h2, .short-accueil-item.orange h2 {
  color: #fff;
}
.short-accueil-item.blue {
  background: #003a5d;
}
.short-accueil-item.blue .short-accueil-item-img::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#003a5d), color-stop(30%, #003a5d), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #003a5d 0%, #003a5d 30%, rgba(255, 255, 255, 0) 100%);
}
.short-accueil-item.orange {
  background: #f9b000;
}
.short-accueil-item.orange .short-accueil-item-img::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#f9b000), color-stop(30%, #f9b000), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #f9b000 0%, #f9b000 30%, rgba(255, 255, 255, 0) 100%);
}

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

	Page menu

*/
@media only screen and (min-width: 48em) {
  .page-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-list {
    margin: 0 -75px;
  }
}

.page-menu-item {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .page-menu-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item {
    width: calc(33.333% - 30px);
  }
  .page-menu-item:hover::after {
    right: -50px;
    bottom: -62px;
  }
  .page-menu-item:hover::before {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
}
.page-menu-item-inner {
  border: solid 1px #ccd8df;
  padding: 50px 20px;
}
.page-menu-item::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("/images/2023/icon/icon-plus.svg") no-repeat center;
  background-size: 100%;
  z-index: 2;
}
@media only screen and (min-width: 78em) {
  .page-menu-item::before {
    width: 30px;
    height: 30px;
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-delay: 0;
            transition-delay: 0;
  }
}
.page-menu-item::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 80px;
  height: 80px;
  background: #fff;
  border: solid 1px #ccd8df;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media only screen and (min-width: 78em) {
  .page-menu-item::after {
    right: -110px;
    bottom: -110px;
    width: 110px;
    height: 110px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
.page-menu-item svg {
  display: block;
  margin: 0 auto 20px;
  fill: #003a5d;
}
@media only screen and (min-width: 78em) {
  .page-menu-item svg {
    margin-bottom: 30px;
  }
}
.page-menu-item h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  text-align: center;
  color: #003a5d;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .page-menu-item h2 {
    font-size: 20px;
  }
}

.page-menu .description {
  margin-top: 60px;
}

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

	Extranet

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

	Page compte

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

	Page connexion

*/
@media only screen and (min-width: 48em) {
  #accountAuthentification .accountAuthentificationInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 -50px;
  }
}
@media only screen and (min-width: 78em) {
  #accountAuthentification .accountAuthentificationInner {
    margin: 0 -120px;
  }
}
@media only screen and (min-width: 90em) {
  #accountAuthentification .accountAuthentificationInner {
    margin: 0 -200px;
  }
}
@media only screen and (min-width: 103.125em) {
  #accountAuthentification .accountAuthentificationInner {
    margin: 0 -257px;
  }
}
@media only screen and (min-width: 48em) {
  #accountAuthentification .bloc {
    width: calc(50% - 30px);
    margin: 0 15px;
  }
}
#accountAuthentification .bloc > h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 0;
}
#accountAuthentification .bloc p {
  text-align: center;
}
#accountAuthentification .bloc #contentLoginForm {
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  #accountAuthentification .bloc #contentLoginForm {
    margin-top: 30px;
  }
}
#accountAuthentification .bloc .connect label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
#accountAuthentification .bloc .connect span {
  display: block;
  position: relative;
}
#accountAuthentification .bloc .connect span input {
  padding-left: 45px;
}
#accountAuthentification .bloc .connect span svg {
  position: absolute;
  top: 21px;
  left: 15px;
  fill: #ccd8df;
}
#accountAuthentification .bloc .lostPassword {
  text-align: center;
}
#accountAuthentification .bloc .lostPassword a {
  font-size: 12px;
}

#accountActionsUnsubscribe {
  margin-top: 50px;
}

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

	Page listing

*/
.simpleCatalogSearch label {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #f9b000;
  display: block;
  margin-bottom: 5px;
}
.simpleCatalogSearch .inputs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.simpleCatalogSearch .inputs-row > * {
  height: 50px;
}
.simpleCatalogSearch .inputs-row #catalog_search_string_in_content_recherche {
  margin: 0;
  border: solid 1px #ccd8df;
  background-color: #fff;
  border-radius: 0;
  padding: 10px 15px;
}
.simpleCatalogSearch .inputs-row input[type=submit] {
  margin: 0 0 0 10px;
  width: 63px;
  padding: 0;
  text-indent: -9999px;
  background: url("/images/2023/icon/icons-icon-search.svg") no-repeat center, #f9b000;
  border-radius: 0;
  border: none;
}

.result-count {
  font-size: 12px;
  line-height: 1.67;
  text-align: center;
  color: #003a5d;
  margin: 10px 0 0;
}

.product-extranet {
  margin-top: 40px;
  border: solid 1px #ccd8df;
  background-color: #fff;
}
.product-extranet:empty {
  display: none;
}
@media only screen and (min-width: 78em) {
  .product-extranet {
    margin: 60px -100px 0;
  }
}
@media only screen and (min-width: 90em) {
  .product-extranet {
    margin: 60px -200px 0;
  }
}
@media only screen and (min-width: 103.125em) {
  .product-extranet {
    margin: 60px -240px 0;
  }
}
.product-extranet .short_product_pro {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.product-extranet .short_product_pro:not(:last-child) {
  border-bottom: solid 1px #ccd8df;
}
.product-extranet .short_product_pro:nth-of-type(2n + 2) {
  background-color: rgba(204, 216, 223, 0.3);
}
.product-extranet .short_product_pro_img {
  width: 60px;
  min-width: 60px;
  height: 80px;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_img {
    width: 100px;
    min-width: 100px;
  }
}
.product-extranet .short_product_pro_img:empty {
  background: url("/images/2023/logo/nophoto.png") no-repeat center;
  background-size: 80%;
  opacity: 0.2;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_img:empty {
    background-size: 55px;
  }
}
.product-extranet .short_product_pro_content {
  padding-left: 15px;
  text-align: left;
  width: calc(100% - 60px);
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_content {
    width: calc(100% - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-extranet .short_product_pro_content {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_txt {
    width: 100%;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-extranet .short_product_pro_txt {
    padding-right: 60px;
  }
}
.product-extranet .short_product_pro_txt .reference {
  font-size: 12px;
  line-height: 1.67;
  color: #003a5d;
  margin: 0;
}
.product-extranet .short_product_pro_txt h2 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.29;
  color: #003a5d;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_txt h2 {
    font-size: 16px;
    line-height: 1.3;
  }
}
.product-extranet .short_product_pro_info {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    white-space: nowrap;
  }
}
.product-extranet .short_product_pro_info .lePrix {
  width: calc(100% - 45px);
  padding-right: 10px;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info .lePrix {
    text-align: right;
    width: auto;
    padding: 0;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-extranet .short_product_pro_info .lePrix {
    margin-right: 60px;
  }
}
.product-extranet .short_product_pro_info .lePrix .apartir {
  font-size: 10px;
  line-height: 1.8;
  color: #003a5d;
  text-transform: uppercase;
  display: block;
  line-height: 1.7;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info .lePrix .apartir {
    font-size: 12px;
    line-height: 1.67;
  }
}
.product-extranet .short_product_pro_info .lePrix .prix {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  color: #f9b000;
  display: block;
  line-height: 1;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info .lePrix .prix {
    font-size: 24px;
  }
}
.product-extranet .short_product_pro_info .lePrix .prix .petit {
  font-weight: 400;
  font-size: 10px;
}
.product-extranet .short_product_pro_info .addToCart {
  width: 45px;
  min-width: 45px;
  z-index: 13;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info .addToCart {
    width: auto;
    min-width: auto;
  }
}
.product-extranet .short_product_pro_info .addToCart a {
  width: 45px;
  height: 34px;
  background: url("/images/2023/icon/panier.svg") no-repeat center, #f9b000;
  display: block;
  border-radius: 5px;
}
@media only screen and (min-width: 64em) {
  .product-extranet .short_product_pro_info .addToCart a {
    width: 57.6px;
    height: 44px;
  }
}

#mediaDownloads > p {
  text-align: center;
}

#formdownloadsmedia .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -7.5px;
}
#formdownloadsmedia .submit input {
  margin: 7.5px;
}

#zliste img {
  max-width: 20px;
}
#zliste th:nth-child(3) {
  min-width: 215px;
}
#zliste td:nth-child(3) {
  text-align: center;
}
#zliste .btn-full-blue, #zliste .btn-full-primary, #zliste .btn.blue, #zliste .btn-back a, .btn-back #zliste a {
  margin: 0;
}

.log {
  margin: 20px 0;
  font-weight: bold;
  padding: 20px;
  text-align: center;
}
.log p {
  margin: 0;
}
.log.logOk, .log.ok {
  background: rgba(79, 158, 0, 0.1);
  color: #4F9E00;
}
.log.logOk a, .log.ok a {
  color: #4F9E00;
}
.log.logError {
  background: rgba(202, 32, 0, 0.1);
  color: #CA2000;
}
.log.logError a {
  color: #CA2000;
}

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

	Page nav

*/
.ru-pro #leftbar {
  margin: 0;
  max-width: 100vw;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f9b000;
  color: #fff;
  z-index: 15;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar {
    padding: 0 10.5%;
  }
}
.ru-pro #leftbar .leftbar-inner {
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
}
.ru-pro #leftbar .navPro {
  position: relative;
}
.ru-pro #leftbar .navPro .h4-like {
  height: 64px;
  padding: 0 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
  max-width: calc(100% - 90px);
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .h4-like {
    display: none;
  }
}
.ru-pro #leftbar .navPro .h4-like::before {
  content: url("/images/2023/icon/icons-icon-menu-w.svg");
  margin-right: 10px;
  display: block;
  height: 30px;
}
.ru-pro #leftbar .navPro .widgetContainer {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: #f9b000;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .widgetContainer {
    display: block;
    position: relative;
    left: auto;
    top: auto;
  }
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .widgetContainer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.ru-pro #leftbar .navPro .widgetContainer ul li {
  border-bottom: 1px solid #fff;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .widgetContainer ul li {
    border: none;
  }
}
.ru-pro #leftbar .navPro .widgetContainer ul li:first-child {
  border-top: 1px solid #fff;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .widgetContainer ul li:first-child {
    border: none;
  }
}
.ru-pro #leftbar .navPro .widgetContainer ul li a {
  padding: 10px 8%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .navPro .widgetContainer ul li a {
    padding: 20px 25px;
    white-space: nowrap;
  }
}
.ru-pro #leftbar .navPro .widgetContainer ul li a::before {
  height: 20px;
  width: 23px;
  margin-right: 10px;
}
.ru-pro #leftbar .navPro .widgetContainer ul li.active a {
  font-weight: bold;
}
.ru-pro #leftbar .navPro .widgetContainer ul li.me-extranet a::before {
  content: url("/images/2023/icon/icons-icon-accueil.svg");
}
.ru-pro #leftbar .navPro .widgetContainer ul li.me-docu a::before {
  content: url("/images/2023/icon/icons-icon-docutheque.svg");
}
.ru-pro #leftbar .navPro .widgetContainer ul li.me-piece a::before {
  content: url("/images/2023/icon/icons-icon-pieces-detachees.svg");
}
.ru-pro #leftbar .navPro .widgetContainer ul li.me-garantie a::before {
  content: url("/images/2023/icon/icons-icon-garanties.svg");
}
.ru-pro #leftbar .box-extranet {
  position: absolute;
  right: 8%;
  top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 78em) {
  .ru-pro #leftbar .box-extranet {
    right: 0;
  }
}
.ru-pro #leftbar .box-extranet .widgetLogin {
  margin-right: 20px;
}
.ru-pro #leftbar .box-extranet .widgetLogin a, .ru-pro #leftbar .box-extranet .widgetCart a {
  width: 24px;
  height: 30px;
  text-indent: -9999px;
  display: block;
}
.ru-pro #leftbar .box-extranet .widgetLogin a {
  background: url("/images/2023/icon/icons-icon-account.svg") no-repeat center;
}
.ru-pro #leftbar .box-extranet .widgetCart a {
  background: url("/images/2023/icon/icons-icon-cart.svg") no-repeat left center;
  position: relative;
  width: 36px;
}
.ru-pro #leftbar .box-extranet .widgetCart a span {
  text-indent: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  color: #f9b000;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  right: 0;
  top: 0;
}

.ru-pro .page-menu .contact {
  border-top: 1px solid #003a5d;
  padding-top: 30px;
  margin: 90px 0 0;
}
@media only screen and (min-width: 78em) {
  .ru-pro .page-menu .contact {
    border: 1px solid #003a5d;
    margin: 90px -75px 0;
    padding: 60px 75px;
  }
}
.ru-pro .page-menu .contact > h2 {
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .ru-pro .page-menu .contact > h2 {
    margin-bottom: 60px;
  }
}
.ru-pro .page-menu .contact > div:first-of-type:not(.contacts) {
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .ru-pro .page-menu .contact > div:first-of-type:not(.contacts) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.ru-pro .page-menu .contact > div:first-of-type:not(.contacts) h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ru-pro .page-menu .contact > div:first-of-type:not(.contacts) h3::before {
  content: url("/images/2023/icon/icon-contact.svg");
  height: 30px;
}
.ru-pro .page-menu .contact > div:not(:last-of-type) {
  border-bottom: 1px solid #ccd8df;
}
.ru-pro .page-menu .contact .respTech,
.ru-pro .page-menu .contact .respCom {
  padding-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .ru-pro .page-menu .contact .respTech,
  .ru-pro .page-menu .contact .respCom {
    padding-bottom: 60px;
  }
}
.ru-pro .page-menu .contact p {
  margin: 10px 0;
}
.ru-pro .page-menu .contact p.p-bold {
  font-weight: bold;
}

.ru-pro article > form:first-child {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f0f3f5;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 6.5%;
  font-size: 14px;
}
@media only screen and (min-width: 64em) {
  .ru-pro article > form:first-child {
    margin-bottom: 60px;
    padding: 10px 6.5%;
  }
}
@media only screen and (min-width: 90em) {
  .ru-pro article > form:first-child {
    margin-bottom: 90px;
  }
}
.ru-pro article > form:first-child > * {
  width: auto;
  margin: 4px 10px;
}
.ru-pro article > form:first-child label {
  font-weight: bold;
}
.ru-pro article > form:first-child select {
  padding: 10px 30px 10px 20px;
}
@media only screen and (min-width: 48em) {
  .ru-pro article > form:first-child select {
    padding-right: 50px;
  }
}

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

	Ajout au Panier

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

#overlibheader .overlibcaption, #overlibfooter {
  display: none !important;
}
#overlibheader {
  width: 100%;
  max-width: 460px;
  padding: 10px 10px;
  font-size: 22px;
  margin-bottom: -41px;
  z-index: 1;
  text-align: right;
}
@media only screen and (min-width: 48em) {
  #overlibheader {
    padding-right: 20px;
    padding-top: 15px;
    margin-bottom: -50px;
  }
}
#overlibheader a {
  color: #003a5d;
  text-decoration: none;
}
#overlibcontent {
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 460px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}
@media only screen and (min-width: 48em) {
  #overlibcontent {
    padding: 30px;
  }
}
#overlibcontent .add2cartConfirmationText {
  padding-left: 60px;
}
#overlibcontent a {
  margin: 20px auto 0;
  display: block;
  max-width: 200px;
}
#overlibcontent .btn-add2cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -6px -6px;
}
#overlibcontent .btn-add2cart a {
  margin: 6px;
}

.quantite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quantite label {
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}
.quantite input {
  max-width: 80px;
  height: 40px;
  margin: 0 0 0 20px !important;
  text-align: center;
  padding: 0 !important;
}

.piecePour {
  margin: 20px auto 0;
  padding: 20px 20px 20px 30px;
  border: 1px solid #ccd8df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.piecePour .h4-like {
  font-weight: bold;
  text-transform: uppercase;
}
.piecePour input#num_serie {
  padding: 10px;
  margin: 0 10px;
}
.piecePour input#bt_num_serie_check {
  padding: 2px 6px;
  width: auto;
  border-radius: 4px;
  background-color: #ccd8df;
  color: #003a5d;
  margin: 0;
}
.piecePour #msg_pour {
  background: rgba(204, 216, 223, 0.4);
  padding: 12px;
  border-radius: 4px;
  margin: 20px 0 0;
}
.piecePour #msg_pour.pour_ok {
  background-color: rgba(0, 128, 0, 0.2);
}
.piecePour #msg_pour.pour_nok {
  background-color: rgba(255, 207, 33, 0.2);
  color: #003a5d !important;
}

.piecePourMachine,
.numSerie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.piecePourMachine {
  margin: 0 0 4px;
}

.numSerie label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 6px 0 0;
  text-transform: none;
  color: #61696b;
}
.numSerie input {
  font-size: 14px !important;
  line-height: 28px !important;
  width: 165px !important;
  height: 30px !important;
  margin: 0 0 0 8px !important;
  padding: 0 10px !important;
}
.numSerie input.placeholder {
  font-size: 14px !important;
  line-height: 28px !important;
}
.numSerie input:-moz-placeholder {
  font-size: 14px !important;
  line-height: 28px !important;
}
.numSerie input::-moz-placeholder {
  font-size: 14px !important;
  line-height: 28px !important;
}
.numSerie input:-ms-input-placeholder {
  font-size: 14px !important;
  line-height: 28px !important;
}
.numSerie input::-webkit-input-placeholder {
  font-size: 14px !important;
  line-height: 28px !important;
}

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

	Page cart

*/
#emptyCart {
  text-align: center;
}
#emptyCart span {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}

/* -----------------------------------
ETAPES
----------------------------------- */
#steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -10px 20px;
}
@media only screen and (min-width: 48em) {
  #steps {
    max-width: 620px;
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 78em) {
  #steps {
    margin-bottom: 40px;
  }
}
#emptyCart ~ #steps {
  display: none;
}
#steps div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  #steps div {
    padding-bottom: 40px;
  }
}
#steps div::after {
  content: attr(data-desc);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 40px;
  text-align: center;
  color: #818698;
}
@media only screen and (min-width: 48em) {
  #steps div::after {
    bottom: 0;
    height: 30px;
  }
}
#steps div:nth-child(n+2):before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% - 50px);
  height: 3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ccd8df;
}
@media only screen and (min-width: 48em) {
  #steps div:nth-child(n+2):before {
    width: calc(100% - 70px);
  }
}
#steps div a {
  text-decoration: none;
}
#steps div span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #003a5d;
  border: 4px solid;
  border-color: transparent;
  border-radius: 50%;
  background-color: #ccd8df;
}
#steps div.active::before {
  background: -webkit-gradient(linear, left top, right top, from(#f4ae30), to(#ccd8df));
  background: linear-gradient(to right, #f4ae30 0%, #ccd8df 100%);
}
#steps div.active::after {
  font-weight: 700;
  color: #003a5d;
}
#steps div.active span {
  color: #003a5d;
  border-color: #003a5d;
  background: #fff;
}
#steps div.done::before, body.finish #steps div:last-child.active::before {
  background: #f4ae30;
}
#steps div.done::after, body.finish #steps div:last-child.active::after {
  font-weight: 700;
  color: #f4ae30;
}
#steps div.done span, body.finish #steps div:last-child.active span {
  color: white;
  border-color: #f4ae30;
  background-color: #f4ae30;
}

/* -----------------------------------
Produits
----------------------------------- */
@media only screen and (min-width: 48em) {
  .panierInner {
    margin: 0 -40px;
  }
}
@media only screen and (min-width: 78em) {
  .panierInner {
    margin: 0 -120px;
  }
}

@media only screen and (min-width: 48em) {
  div.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 48em) {
  div.cart-left {
    width: 60%;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 78em) {
  div.cart-left {
    width: calc(100% - 400px);
  }
}
div.cart-right {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  div.cart-right {
    width: 40%;
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  div.cart-right {
    width: 400px;
  }
}
div.cart-right-inner {
  border: solid 1px #ccd8df;
  padding: 30px 20px 0;
}
@media only screen and (min-width: 78em) {
  div.cart-right-inner {
    padding: 30px 30px 0;
  }
}

#cartContent {
  border: solid 1px #ccd8df;
}

.cartProduct {
  padding: 25px 20px 20px;
  position: relative;
}
.cartProduct:not(:last-child) {
  border-bottom: solid 1px #ccd8df;
}
.cartProduct:nth-of-type(2n+2) {
  background-color: rgba(204, 216, 223, 0.3);
}
.cartProduct .cartProductName {
  overflow: hidden;
  margin-bottom: 20px;
}
.cartProduct .cartProductName > a {
  display: block;
  font-size: 14px;
  line-height: 1.29;
  color: #003a5d;
  text-decoration: none;
  margin-bottom: 5px;
}
.cartProduct .cartProductName > span, .cartProduct .cartProductName .cart_pu {
  font-size: 12px;
  line-height: 1.67;
  text-align: left;
  color: #003a5d;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
}
.cartProduct .cartProductName > span:not(.reference)::before, .cartProduct .cartProductName .cart_pu:not(.reference)::before {
  content: "-";
  margin: 0 5px;
}
.cartProduct .cartProductPrice {
  display: block;
  clear: both;
}
.cartProduct .cartProductOptions {
  clear: both;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.cartProduct .cartProductOptions .cart_pt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  text-align: left;
  color: #f9b000;
}
.cartProduct .cartProductOptions .cart_qte input {
  margin: 0 !important;
  padding: 10px !important;
  border: 1px solid #ccd8df !important;
  background: #fff !important;
  text-align: center;
  max-width: 70px;
}
.cartProduct .cartProductOptions svg {
  margin: 0 10px;
}
.cartProduct .cartDelete {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  width: 20px;
  height: 20px;
  color: #003a5d;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* -----------------------------------
Boutons
----------------------------------- */
.cartBouton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px -5px 0;
}
.cartBouton .refresh,
.cartBouton .trash {
  margin: 5px;
}
.cartBouton .refresh input,
.cartBouton .trash input {
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  min-height: 22px;
  border: none;
  background: none;
}
.cartBouton .refresh svg,
.cartBouton .trash svg {
  margin-right: 10px;
  width: 15px;
}
.cartBouton .refresh input {
  color: #ccd8df;
}
.cartBouton .refresh input:hover {
  color: #ccd8df;
}
.cartBouton .trash input {
  color: #f50023;
}
.cartBouton .trash input:hover {
  color: #f50023;
}

.cart-right-inner > h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px !important;
}
@media only screen and (min-width: 78em) {
  .cart-right-inner > h2 {
    font-size: 30px !important;
  }
}

/* -----------------------------------
Coupons
----------------------------------- */
.coupon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  margin: 0 auto 20px;
}
.coupon #coupon {
  margin: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #fff;
  padding: 0 10px;
  border-color: #ccd8df;
}
.coupon #coupon.placeholder {
  font-size: 14px !important;
  line-height: 42px !important;
  letter-spacing: 0 !important;
}
.coupon #coupon:-moz-placeholder {
  font-size: 14px !important;
  line-height: 42px !important;
  letter-spacing: 0 !important;
}
.coupon #coupon::-moz-placeholder {
  font-size: 14px !important;
  line-height: 42px !important;
  letter-spacing: 0 !important;
}
.coupon #coupon:-ms-input-placeholder {
  font-size: 14px !important;
  line-height: 42px !important;
  letter-spacing: 0 !important;
}
.coupon #coupon::-webkit-input-placeholder {
  font-size: 14px !important;
  line-height: 42px !important;
  letter-spacing: 0 !important;
}
.coupon .submit {
  margin: 0;
  text-align: center;
}
.coupon .submit input {
  font-size: 14px;
  margin: 0;
  padding: 12px 17px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  letter-spacing: 0;
}
.coupon .deleteCoupon {
  margin-left: 15px;
}
.coupon .deleteCoupon a {
  font-size: 12px;
  font-weight: 400;
  color: #e46c6c;
}
.coupon .deleteCoupon a svg {
  position: relative;
  top: 2px;
  height: 13px;
}
.coupon .deleteCoupon a svg path {
  fill: #e46c6c;
}
.coupon + .error {
  margin-top: 10px;
}

/* -----------------------------------
Remises
----------------------------------- */
.cart-remise {
  margin-top: 50px;
}
.cart-remise > p {
  font-weight: bold;
  margin: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  .cart-remise > p {
    font-size: 18px;
    margin-left: 0;
  }
}
.cart-remise-item {
  margin: 0 -20px;
  padding: 20px 20px 20px 30px;
  border-top: 1px solid #ccd8df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
  color: #003a5d;
}
.cart-remise-item:last-child {
  border-bottom: 1px solid #ccd8df;
}
@media only screen and (min-width: 78em) {
  .cart-remise-item {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 1.1;
    margin: 0 -30px;
  }
}

/* -----------------------------------
Choix de la livraison
----------------------------------- */
.cartShippingOptions {
  margin: 50px 0;
}
.cartShippingOptions > p {
  font-weight: bold;
  margin: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  .cartShippingOptions > p {
    font-size: 18px;
    margin-left: 0;
  }
}
.cartShippingOptions .cartShipping {
  position: relative;
  margin: 0 -20px;
  border-bottom: 1px solid #ccd8df;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 78em) {
  .cartShippingOptions .cartShipping {
    padding: 20px 30px;
    margin: 0 -30px;
  }
}
.cartShippingOptions .cartShipping:nth-child(2) {
  border-top: 1px solid #ccd8df;
}
.cartShippingOptions .cartShipping .cartShippingName {
  font-size: 14px;
  line-height: 1.2;
  padding-right: 20px;
}
@media only screen and (min-width: 78em) {
  .cartShippingOptions .cartShipping .cartShippingName {
    width: calc(100% - 90px);
  }
}
.cartShippingOptions .cartShipping .cartShippingName input[type=radio] {
  display: none;
}
.cartShippingOptions .cartShipping .cartShippingName input[type=radio] + label {
  margin: 0;
  width: 100%;
  display: block;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
}
.cartShippingOptions .cartShipping .cartShippingName input[type=radio] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: solid 1px #003a5d;
  position: absolute;
  left: 0;
  top: 7px;
}
.cartShippingOptions .cartShipping .cartShippingName input[type=radio] + label span {
  display: block;
  font-size: 12px;
  color: #003a5d;
}
.cartShippingOptions .cartShipping .cartShippingName input[type=radio]:checked + label::before {
  border-color: #f9b000;
  background: #f9b000;
}
.cartShippingOptions .cartShipping .cartShippingAmount {
  font-size: 14px;
  line-height: 1.43;
  text-align: right;
  color: #003a5d;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 78em) {
  .cartShippingOptions .cartShipping .cartShippingAmount {
    font-size: 16px;
    line-height: 1.38;
    width: 90px;
  }
}
.cartShippingOptions .cartShipping .infoFdp {
  display: block;
  font-size: 12px;
  color: #003a5d;
  padding-left: 35px;
}
.cartShippingOptions .cartShipping .infoFdp p {
  margin: 0;
}
.cartShippingOptions .cartShipping .cart-shipping-item-amount {
  position: absolute;
  right: 20px;
  top: 28px;
}
@media only screen and (min-width: 78em) {
  .cartShippingOptions .cartShipping .cart-shipping-item-amount {
    right: 30px;
  }
}
.cartShippingOptions .messageFraisPort {
  font-size: 12px;
  color: #003a5d;
  font-style: italic;
  line-height: 1.2;
  margin-top: 20px;
}
.cartShippingOptions .messageFraisPort p {
  margin: 0;
}

/* -----------------------------------
Total
----------------------------------- */
.cart-amount > p {
  font-weight: bold;
  margin: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  .cart-amount > p {
    font-size: 18px;
    margin-left: 0;
  }
}
.cart-amount-item {
  margin: 0 -20px;
  padding: 20px 20px 20px 30px;
  border-top: 1px solid #ccd8df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
  color: #003a5d;
}
@media only screen and (min-width: 78em) {
  .cart-amount-item {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 1.1;
    margin: 0 -30px;
  }
}
.cart-amount-item.total {
  background-color: #003a5d;
  color: #fff;
  font-weight: bold;
}

.cart-right > .submit {
  margin-top: 20px;
  margin-bottom: 20px;
}

.reserve {
  background: #ccd8df;
  padding: 20px;
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .reserve {
    padding: 30px;
    margin-top: 60px;
  }
}

/* -----------------------------------
Cart order confirmation
----------------------------------- */
@media only screen and (min-width: 48em) {
  .adresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
  }
  .adresses .address {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 64em) {
  .adresses .bloc {
    padding: 30px 50px;
  }
}
.adresses .modifyAdress {
  margin: 20px -7.5px -7.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.adresses .modifyAdress a {
  margin: 7.5px;
}

#formcart, #payment_module, #payment_module + h2 {
  margin-top: 50px;
}

#validCommand {
  background: #ccd8df;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
#validCommand .condition_field input {
  margin-bottom: 0;
}
#validCommand label {
  display: block;
  margin: 0;
}
#validCommand label p {
  margin: 0;
}
#validCommand label p a {
  color: #003a5d;
}
@media only screen and (min-width: 78em) {
  #validCommand {
    padding: 30px;
  }
}

/* -----------------------------------
Carnet d'adresses
----------------------------------- */
#adresseselectionform legend {
  display: none;
}
@media only screen and (min-width: 48em) {
  #adresseselectionform .adress-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 48em) and (min-width: 48em) {
  #adresseselectionform .adress-list .bloc {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 48em) and (min-width: 78em) {
  #adresseselectionform .adress-list .bloc {
    width: calc(33.333% - 30px);
    padding: 30px;
  }
}
@media only screen and (min-width: 48em) {
  #adresseselectionform .adress-list .bloc label {
    font-weight: bold;
  }
  #adresseselectionform .adress-list .bloc address {
    clear: both;
    margin-bottom: 15px;
  }
}

/* -----------------------------------
Confirmation de commande
----------------------------------- */
#cart_footer {
  margin-bottom: 40px;
}
#cart_footer .thanks {
  background: rgba(36, 179, 93, 0.2);
  border: 1px solid #24b35d;
  padding: 20px;
  max-width: 460px;
  margin: 0 auto 30px;
}
#cart_footer .thanks h3 {
  text-transform: none;
  font-size: 20px;
  font-weight: bold;
}
#cart_footer .thanks p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  #cart_footer .thanks {
    padding: 30px;
  }
}

#payment_infos {
  margin-bottom: 30px;
  margin-top: 30px;
}
#payment_infos > h3:first-child {
  display: none;
}
#payment_infos > h3:nth-child(2) {
  margin-top: 0;
}

.adresses + .cart {
  margin-top: 30px;
}

/* -----------------------------------
Confirmation de commande
----------------------------------- */
@media only screen and (min-width: 48em) {
  .cartEntete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cartEntete h5 {
  margin-top: 30px !important;
  font-size: 18px;
  margin-bottom: 5px;
  color: #003a5d;
}
@media only screen and (min-width: 48em) {
  .cartEntete h5 {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 48em) {
  .cartEntete .address + .address {
    margin-top: 20px;
  }
}
.cartEntete + #cart_detail {
  margin-top: 30px;
}
.cartEntete + #cart_detail > h2 {
  margin-bottom: 0;
}

.btn-add {
  margin-top: 30px;
  text-align: center;
}

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

	PIECE

*/
.ru-pro.catalogProductDetail .simpleCatalogSearch {
  display: none;
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .piece.product_detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 78em) {
  .ru-pro.catalogProductDetail .piece.product_detail {
    margin: 0 -50px;
  }
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .piece .productPicture {
    margin: 0 0 25px 35px;
  }
}
.ru-pro.catalogProductDetail .piece .productPicture:not(:empty) {
  margin-bottom: 30px;
  text-align: center;
}
.ru-pro.catalogProductDetail .piece .productPicture img {
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .piece .productPicture img {
    margin: 0;
  }
}
.ru-pro.catalogProductDetail #stock_waiting:empty {
  display: none;
}
.ru-pro.catalogProductDetail .presProductPiece {
  font-size: 18px;
  color: #4d6c75;
}
.ru-pro.catalogProductDetail .presProductPiece ul li .etiquette {
  font-weight: bold;
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .presProductPiece {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail #formproductversion {
    width: calc(50% - 15px);
    margin: 0 0 30px;
    border: 1px solid rgba(166, 182, 186, 0.3);
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    max-width: 485px;
    padding: 25px 20px 35px;
  }
}
.ru-pro.catalogProductDetail .prix {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f4ae30;
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .prix {
    max-width: 270px;
    margin: 0 auto 20px;
    padding: 0;
  }
}
.ru-pro.catalogProductDetail .addToCart {
  margin-bottom: 30px;
  padding: 25px 15px 30px;
  border: 1px solid rgba(166, 182, 186, 0.3);
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail .addToCart {
    max-width: 275px;
    margin: 0 auto;
    margin-bottom: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.ru-pro.catalogProductDetail .addToCart .submit {
  text-align: center;
  margin-top: 15px;
}
@media only screen and (min-width: 48em) {
  .ru-pro.catalogProductDetail article {
    max-width: 994px;
  }
  .ru-pro.catalogProductDetail .pieceAdd {
    max-width: 275px;
    margin: 0 auto;
  }
}
.ru-pro.catalogProductDetail .back-result {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .ru-pro.catalogProductDetail .back-result {
    margin-top: 30px;
  }
}

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

	Garantie

*/
/* Listing */
.garantieAction {
  border: 1px solid #f9b000;
  border-radius: 4px;
  background: #f9b000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 2px 10px;
  font-size: 14px;
}
.garantieAction:hover {
  background: none;
  color: #f9b000;
}
.garantieAction.validate {
  border-color: #CA2000;
  color: #CA2000;
  background: none;
}
.garantieAction.validate:hover {
  background: rgba(202, 32, 0, 0.1);
  color: #CA2000;
}

/* Demandes de garantie */
.goback {
  margin: 0;
}
.goback > a {
  color: #4c758d;
  text-decoration: none;
}
.goback > a:hover {
  color: #f9b000;
}
.goback + * {
  margin-top: 30px;
}

.info-photo {
  font-weight: bold;
}
.info-photo::before {
  content: url("/images/2023/icon/icon-info.svg");
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.stepId3 .deleteDmd {
  color: #ba1515;
}
.stepId3 .deleteDmd .btn-full-red {
  border-color: #ba1515;
  background-color: #ba1515;
}
.stepId3 .deleteDmd .btn-full-red:hover {
  color: #fff;
  border-color: #d35c5c;
  background-color: #d35c5c;
}
.stepId3 .deleteDmd .btn-empty-red {
  color: #ba1515;
  border-color: #ba1515;
}
.stepId3 .deleteDmd .btn-empty-red:hover {
  color: #fff;
  background-color: #d35c5c;
  border-color: #d35c5c;
}
.stepId3 .deleteDmd .btn-full-red, .stepId3 .deleteDmd .btn-empty-red {
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 12px;
}
.stepId3 .btn-delete, .stepId3 .trash {
  color: #ba1515;
}
.stepId3 .btn-delete:hover, .stepId3 .trash:hover {
  color: #d35c5c;
}
.stepId3 .tabs-title {
  margin: 60px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  gap: 12px;
  background: rgba(0, 58, 93, 0.1);
  border-radius: 6px;
}
.stepId3 .tabs-title > a {
  font-size: 18px;
  text-decoration: none;
  color: #003a5d;
  width: 50%;
  text-align: center;
  padding: 16px;
}
.stepId3 .tabs-title > a#current {
  background: #003a5d;
  color: #fff;
  border-radius: 3px;
}
.stepId3 p.title {
  font-weight: bold;
}
.stepId3 #btAjouter {
  text-align: center;
}
.stepId3 .table-responsive table {
  margin: 0 0 60px;
  width: 100%;
}
.stepId3 .valid-action form {
  background: rgba(249, 176, 0, 0.1);
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .stepId3 .valid-action form {
    margin-top: 60px;
  }
}
.stepId3 .valid-action form .aide {
  background-color: #efe6d1;
}

.stepIddetail .statut strong {
  color: #f9b000;
}
.stepIddetail .observation {
  background: rgba(249, 176, 0, 0.1);
  padding: 30px;
  border-radius: 12px;
}
.stepIddetail .observation > h4 {
  color: #f9b000;
}
.stepIddetail .observation > h4::before {
  content: "";
  background: url("/images/2023/icon/icon-message.svg") no-repeat center;
  background-size: 100% 100%;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.stepIddetail .observation > p {
  word-break: break-word;
}
.stepIddetail .observation > *:last-child {
  margin-bottom: 0;
}
.stepIddetail .table-responsive table thead {
  background: rgba(0, 58, 93, 0.3);
}
.stepIddetail .table-responsive table tr:nth-of-type(2n) {
  background: none;
}
.stepIddetail .table-responsive table tr.pair {
  background: rgba(204, 216, 223, 0.3);
}
.stepIddetail .table-responsive table tr > td {
  border-bottom: 0;
}
.stepIddetail .table-responsive table tr > td[colspan="6"] {
  border-top: 1px solid #eeefef;
}
.stepIddetail .detail-dommage {
  background: rgba(204, 216, 223, 0.3);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}
.stepIddetail .detail-dommage-title {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 20px;
}
.stepIddetail .detail-dommage-title + p {
  margin: 0;
}

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

	Docuthèque machines

*/
.docMachines-results {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 64em) {
  .docMachines-results {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.docMachines-machine,
.docMachines-files {
  padding: 30px 30px 0;
}
@media only screen and (min-width: 64em) {
  .docMachines-machine,
  .docMachines-files {
    width: 70%;
  }
}

.docMachines-machine {
  background: #f0f3f5;
}
@media only screen and (min-width: 64em) {
  .docMachines-machine {
    width: 30%;
  }
}

.docMachines-files ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.docMachines-files ul > li > a {
  display: block;
  border: 2px solid #f9b000;
  border-radius: 4px;
  text-decoration: none;
  padding: 3px 10px;
}
.docMachines-files ul > li > a:hover {
  color: #fff;
  background: #f9b000;
}
.docMachines-files ul > li > a:hover::before {
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.docMachines-files ul > li > a::before {
  content: url("/images/2023/icon/icon-download-orange.svg");
  margin-right: 10px;
  position: relative;
  top: 2px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

	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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-evenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.items-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

.bold {
  font-weight: 700;
}

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

.f-right {
  float: right !important;
}

.f-left {
  float: left !important;
}

.f-none {
  float: none !important;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

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

.fz-normal {
  font-size: 16px !important;
}

.fz-xxx-small {
  font-size: 8px !important;
}

.fz-small {
  font-size: 14px !important;
}

.fz-medium {
  font-size: 18px !important;
}

.fz-large {
  font-size: 24px !important;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.rotate-0 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.rotate--90 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.rotate--180 {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.rotate--270 {
  -webkit-transform: rotate(-270deg);
          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: #f9b000;
}

.color2 {
  color: #888;
}

.color3 {
  color: #f50023;
}

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

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

	PRINT
	Ces fichiers contiennent les styles pour l'impression

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

	Style lors de l'impression

*/
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
    -webkit-box-shadow: none !important;
            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 */