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

	RESET
	Ce fichier contient les styles de reset

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

	Reset

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

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

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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

	Reset forms

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
  height: auto;
}

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

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

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

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

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

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

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

	Typography

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

	Layout

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

	Colours

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

	Other Styles

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

	Easing/Timing

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

	Transitions

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

	EMs calculator

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

	Grids

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

	Z-indexing

	use:

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

	prerequisits:

		$z-indexes list must exist in variables file

	example:

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

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

	Photoshop letter spacing

	use:

		for simple conversion between Photoshop letter-spacing to ems

	prerequisits:

		$ls list must exist in variables file

	example:

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

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

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

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

	Map deep get

	Get values from anywhere in a variable list

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

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

	Strip unit

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

	Very simple number functions

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

	Photoshop letter spacing

	use:

		get the value of a particular breakpoint

	example:

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

		would generate:

		.box {
			width: 480px;
		}

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

	Colour map lookup, retrieving base value by default

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

	Media Queries

	used for outputting content either between media query tags

	example: basic usage

	.element {
		width: 50%;

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

	example: using max-width

	.element {
		width: 50%;

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

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

	Margin / Padding Quick Resets

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

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

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

	Helper mixins

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

	Form input placeholder text

	example:

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

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

	Retina images

	example:

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

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

	Content margins

	for removing first/last child margins

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

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

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

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

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

	Hide text

	example:

	.element {
		@include hide-text;
	}

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

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

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

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

	Typography

	Text image replacement, with responsive ratio

	HTML:

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

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


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

	Colours

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

	modify to suit per project

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

	Misc

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

	Fluid Property

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

	HTML:

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

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

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

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

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


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

	BASE
	Ces fichiers contiennent la structure principale

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

	Box sizing

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

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

	Basic document styling

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

body {
  background-color: #fff;
  color: #000;
  font-family: "Citroen Type", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.open {
  overflow: hidden;
  height: 100vh;
}

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

	Text selection/highlighting

*/

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

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

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

	Tous les styles de boutons

*/
.btn-full, .btn-full-white, .btn-full-red, .btn-full-primary, input[type=submit], .btn-full-blue, .btn-full-black, .btn-full-secondary, .btn-empty, .btn-empty-white, .btn-empty-blue, .btn-empty-red, .btn-empty-primary, .btn-empty-black, .btn-empty-secondary, input[type=reset] {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  clear: both;
  text-decoration: none;
  border: 1px solid;
  line-height: 1;
  outline: none;
  font-weight: bold;
  border-radius: 50px;
  padding: 13.5px 54px;
  border: 2px solid;
}
.btn-full:hover, .btn-full-white:hover, .btn-full-red:hover, .btn-full-primary:hover, input[type=submit]:hover, .btn-full-blue:hover, .btn-full-black:hover, .btn-full-secondary:hover, .btn-empty:hover, .btn-empty-white:hover, .btn-empty-blue:hover, .btn-empty-red:hover, .btn-empty-primary:hover, .btn-empty-black:hover, .btn-empty-secondary:hover, input[type=reset]:hover {
  text-decoration: none;
}

.btn-empty, .btn-empty-white, .btn-empty-blue, .btn-empty-red, .btn-empty-primary, .btn-empty-black, .btn-empty-secondary, input[type=reset] {
  background-color: transparent;
}
.btn-empty-black, .btn-empty-secondary, input[type=reset] {
  border-color: #000;
  color: #000;
}
.btn-empty-black:hover, .btn-empty-secondary:hover, input[type=reset]:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
}
.btn-empty-red, .btn-empty-primary {
  border-color: #da291c;
  color: #da291c;
}
.btn-empty-red:hover, .btn-empty-primary:hover {
  background: rgba(218, 41, 28, 0.2);
  color: #da291c;
}
.btn-empty-blue {
  border-color: #7a99ac;
  color: #7a99ac;
}
.btn-empty-blue:hover {
  background: rgba(122, 153, 172, 0.2);
  color: #7a99ac;
}
.btn-empty-white {
  border-color: #fff;
  color: #fff;
}
.btn-empty-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn-full, .btn-full-white, .btn-full-red, .btn-full-primary, input[type=submit], .btn-full-blue, .btn-full-black, .btn-full-secondary {
  color: #fff;
}
.btn-full-black, .btn-full-secondary {
  background: #000;
  border-color: #000;
}
.btn-full-black:hover, .btn-full-secondary:hover {
  background-color: #7a99ac;
  border-color: #7a99ac;
  color: #fff;
}
.btn-full-blue {
  background: #7a99ac;
  border-color: #7a99ac;
}
.btn-full-blue:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-full-red, .btn-full-primary, input[type=submit] {
  background: #da291c;
  border-color: #da291c;
}
.btn-full-red:hover, .btn-full-primary:hover, input[type=submit]:hover {
  background-color: #ad2116;
  border-color: #ad2116;
  color: #fff;
}
.btn-full-white {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.btn-full-white:hover {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #000;
}
/*--------------------------------

	Boutons de partage (social)

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

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

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

	Comportement des images dans le contenu des pages

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

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

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

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

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

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

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

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

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

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

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

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

	Logo

*/
#logo {
  position: absolute;
  top: 12px;
  left: 6.4%;
  z-index: 1000;
}
@media only screen and (min-width: 48em) {
  #logo {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media only screen and (min-width: 78em) {
  #logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
#logo a {
  display: block;
  width: 58px;
  height: 55px;
  text-indent: -9999px;
  background: transparent url("/images/v2/logo/logo-citroen.svg") no-repeat scroll center top;
  background-size: 100%;
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 82px;
    height: 79px;
  }
}

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

	Listes à puces

*/
article ul {
  margin: 20px 0;
}
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, .sitemapPage ul li {
  list-style: disc;
  margin-left: 15px;
}

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

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

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #ddd;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  table {
    font-size: 16px;
  }
}
table caption {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  table caption {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
table thead,
table tfoot {
  background: #F6F6F6;
  color: #444;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table tr:nth-of-type(even) {
  background: #F6F6F6;
}
table tr td {
  border: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  table tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
table.sansBord, table.sansBord *:not(caption) {
  border: none;
  background: none !important;
  font-weight: 400;
  color: #1a1a1a;
  font-size: 16px;
}

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

	Tableaux responsive

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

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

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

	Règles typographiques

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

	Basic, low level typography

*/
@font-face {
  font-family: "Citroen Type";
  src: url("/images/fonts/CitroenType-Bold.woff2") format("woff2"), url("C/images/fonts/itroenType-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Citroen Type";
  src: url("/images/fonts/CitroenType-Regular.woff2") format("woff2"), url("/images/fonts/CitroenType-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Citroen Type";
  src: url("/images/fonts/CitroenType-Black.woff2") format("woff2"), url("/images/fonts/CitroenType-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  line-height: 1.1;
  margin: 50px 0 20px;
  font-weight: bold;
  color: #000;
}
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,
.h1 {
  font-size: 36px;
  font-weight: 900;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 64px;
  }
}

h2,
.h2 {
  font-size: 28px;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 48px;
  }
}

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

h4,
.h4 {
  font-size: 20px;
  color: #5b7f95;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 24px;
  }
}

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

h6,
.h6 {
  font-size: 12px;
  color: #5b7f95;
  text-transform: uppercase;
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  h6,
  .h6 {
    font-size: 14px;
  }
}

h3 + h6 {
  margin-top: 0;
}

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.5;
  color: #97999b;
  text-align: right;
  margin-bottom: 15px;
}
@media only screen and (min-width: 90em) {
  .breadcrumb {
    margin-bottom: 35px;
    font-size: 12px;
  }
}
.breadcrumb a {
  color: #97999b;
  font-weight: 400;
  z-index: 4;
  position: relative;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span:not(:last-child)::after {
  content: "|";
  margin: 0 3px 0 4px;
}

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

	Ajout au Panier

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

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

	Galerie Fancybox 3

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	Style général des formulaires

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

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

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

.form_creator_footer {
  margin-top: 60px;
}

.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], [type=radio], [type=checkbox], [type=reset]) {
  appearance: none;
  display: inline-block;
  margin-bottom: 25px;
  border: solid 1px #b1b3b3;
  background-color: #fff;
  border-radius: 50px;
  padding: 16px 20px;
  font-size: 16px;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit], [type=radio], [type=checkbox], [type=reset]) {
  font-size: 16px;
  color: #97999b;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit], [type=radio], [type=checkbox], [type=reset]) {
  font-size: 16px;
  color: #97999b;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit], [type=radio], [type=checkbox], [type=reset])::-moz-placeholder {
  font-size: 16px;
  color: #97999b;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit], [type=radio], [type=checkbox], [type=reset]) {
  font-size: 16px;
  color: #97999b;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit], [type=radio], [type=checkbox], [type=reset])::-webkit-input-placeholder {
  font-size: 16px;
  color: #97999b;
}
select:focus, textarea:focus, input:focus:not([type=submit], [type=radio], [type=checkbox], [type=reset]) {
  outline: none;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit], [type=radio], [type=checkbox], [type=reset]) {
  cursor: default;
  background-color: #ddd;
}

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

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

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

	Liste déroulante

*/
select {
  background-image: url("/images/v2/icon/icon-chevron-grey-bottom.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 30px;
}
.error select {
  border: 1px solid #ddd;
  border-color: #f50023;
}

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

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

	Boutons de validation/annulation

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

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

form > fieldset:first-child > legend::before {
  content: "1";
}

form > fieldset:nth-child(2) > legend::before {
  content: "2";
}

form > fieldset:nth-child(3) > legend::before {
  content: "3";
}

form > fieldset:nth-child(4) > legend::before {
  content: "4";
}

.form-group {
  margin-bottom: 25px;
}

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

	Erreurs -> ENLEVER LES REQUIRED POUR STYLISER

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

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

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

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

	Quizz

*/
#formsQcm .formQcmLegend {
  display: none;
}

.dormsQcmList {
  font-weight: bold;
  margin-top: 60px;
}
.dormsQcmList + ul li {
  margin: 0 0 10px !important;
  background: #ddd;
  border: 1px solid #888;
  padding: 10px;
  border-radius: 4px;
}
.dormsQcmList + ul li.good {
  background: rgba(36, 179, 93, 0.4);
  border-color: #24b35d;
}
.dormsQcmList + ul li.good.response {
  display: flex;
}
.dormsQcmList + ul li.good.response::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/images/commun/icon-checked-white.svg") no-repeat center, #24b35d;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.dormsQcmList + ul li.response:not(.good) {
  background: rgba(245, 0, 35, 0.4);
  border-color: #f50023;
  display: flex;
}
.dormsQcmList + ul li.response:not(.good)::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/images/commun/icon-cart-stop.svg") no-repeat center;
  background-size: 100%;
  display: inline-block;
  margin-right: 10px;
}

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  padding: 15px;
  color: #707173;
  background-color: #F6F6F6;
}
.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: flex;
  flex-wrap: wrap;
}
.group_multi_radio .multi_radio:not(:first-child) {
  margin-left: 15px;
}

.multi_radio,
.multiRadio,
.multi_checkbox,
.multiCheckbox {
  display: block;
  overflow: hidden;
}
.multi_radio.other input[type=checkbox].checkbox,
.multiRadio.other input[type=checkbox].checkbox,
.multi_checkbox.other input[type=checkbox].checkbox,
.multiCheckbox.other input[type=checkbox].checkbox {
  float: left;
}
.multi_radio.other input[type=checkbox].checkbox + label,
.multiRadio.other input[type=checkbox].checkbox + label,
.multi_checkbox.other input[type=checkbox].checkbox + label,
.multiCheckbox.other input[type=checkbox].checkbox + label {
  float: left;
}
.multi_radio.other input[type=text],
.multiRadio.other input[type=text],
.multi_checkbox.other input[type=text],
.multiCheckbox.other input[type=text] {
  margin-bottom: 0;
}

input[type=checkbox], input[type=radio] {
  float: left;
  margin: 5px 10px 10px 0;
}
input[type=checkbox].checkbox, input[type=radio].checkbox {
  float: none;
  margin-bottom: 20px;
  display: block;
}

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

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

	CAPCHA

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

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

	Submit

*/
.submit {
  text-align: center;
}
.submit input {
  display: inline-block;
  width: auto;
  margin: 0;
}

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

	Suppression reset form

*/
#reset {
  display: none;
}

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

	Style de la galerie miniature

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

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

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

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

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

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

	NAVIGATION

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

/* ---------------- TITLE AREA ---------------- */
.title-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 83px;
  z-index: 9999;
  padding-right: 6.4%;
}
@media only screen and (min-width: 48em) {
  .title-area {
    display: none;
  }
}
.title-area a {
  background: url("/images/v2/icon/icon-menu.svg") no-repeat center;
  width: 23px;
  height: 23px;
  display: block;
}
.title-area a span {
  display: none;
}
.expanded .title-area a {
  background-image: url("/images/v2/icon/icon-close.svg");
}

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

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

/* ---------------- FIRST LEVEL ---------------- */
#nested ul.firstLevel {
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 83px);
  padding: 0 6.4%;
}
#nested ul.firstLevel::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
    padding: 0;
  }
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li:not(:nth-last-child(2)) {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li:not(:nth-last-child(2)) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 90em) {
  #nested ul.firstLevel > li:not(:nth-last-child(2)) {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  #nested ul.firstLevel > li:not(:nth-last-child(2)) {
    margin-right: 56px;
  }
}
#nested ul.firstLevel > li > a {
  border-bottom: solid 1px #f3f3f3;
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #000;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li > a {
    font-size: 14px;
    font-weight: 400;
    padding: 0 12px 8px;
    border: none;
    position: relative;
  }
  #nested ul.firstLevel > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #000;
    transition: background 0.2s ease-in-out;
  }
}
@media only screen and (min-width: 90em) {
  #nested ul.firstLevel > li > a {
    font-size: 16px;
  }
}
#nested ul.firstLevel > li > a:hover {
  text-decoration: none;
  color: #da291c;
}
#nested ul.firstLevel > li > a:hover::before {
  background-color: #da291c;
}
#nested ul.firstLevel > li:first-child > a {
  border-top: solid 1px #f3f3f3;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li:first-child > a {
    border: none;
  }
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li.has-dropdown {
    position: relative;
  }
}
#nested ul.firstLevel > li.has-dropdown > a {
  display: flex;
  justify-content: space-between;
}
#nested ul.firstLevel > li.has-dropdown > a::after {
  content: url("/images/v2/icon/icon-chevron-right.svg");
  margin-left: 15px;
  transition: transform 0.2s ease-in-out;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li.has-dropdown > a::after {
    display: none;
  }
}
#nested ul.firstLevel > li.has-dropdown > a.open::after {
  transform: rotate(90deg);
}
#nested ul.firstLevel > li.active > a {
  color: #da291c;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li.active > a::before {
    height: 4px;
    background: #da291c;
  }
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li:nth-child(n+4) {
    display: none;
  }
}
#nested ul.firstLevel > li:nth-last-child(2):not(:nth-child(3)), #nested ul.firstLevel > li:nth-last-child(3):not(:nth-child(2)) {
  margin-top: 24px;
}
#nested ul.firstLevel > li:nth-last-child(2):not(:nth-child(3)) > a, #nested ul.firstLevel > li:nth-last-child(3):not(:nth-child(2)) > a {
  border: none;
  line-height: 1.1;
  padding: 3px 15px;
  border-radius: 50px;
  border: 1px solid #da291c;
  display: inline-block;
  width: auto;
}
#nested ul.firstLevel > li:nth-last-child(3):not(:nth-child(2)) > a {
  color: #fff;
  background: #da291c;
}
#nested ul.firstLevel > li:nth-last-child(2):not(:nth-child(3)) > a {
  background: #fff;
  color: #da291c;
}
#nested ul.firstLevel > li.rs {
  display: flex;
  align-items: center;
  margin-top: 90px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel > li.rs {
    display: none;
  }
}
#nested ul.firstLevel > li.rs p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  margin: 0 16px 0 0;
  padding: 5px 16px 5px 0;
  border-right: solid 1px #000;
}
#nested ul.firstLevel > li.rs ul {
  display: flex;
  margin: 0;
}
#nested ul.firstLevel > li.rs ul li:not(:last-child) {
  margin-right: 16px;
}
#nested ul.firstLevel > li.rs ul li a {
  width: 24px;
  height: 24px;
  display: block;
  text-indent: -999px;
  background: no-repeat center;
}
#nested ul.firstLevel > li.rs ul li a[href*="https://www.facebook.com/"] {
  background-image: url("/images/v2/icon/icon-facebook-red.svg");
}
#nested ul.firstLevel > li.rs ul li a[href*="https://www.instagram.com/"] {
  background-image: url("/images/v2/icon/icon-instagram-red.svg");
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
  padding: 10px 0 20px;
  border-bottom: solid 1px #f3f3f3;
}
@media only screen and (min-width: 48em) {
  ul.secondLevel {
    position: absolute !important;
    z-index: 99;
    display: block;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    top: auto;
    min-width: 100%;
    background: transparent;
    right: auto;
    left: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 0 8px;
    border-radius: 0 0 4px 4px;
  }
  .has-dropdown:hover ul.secondLevel {
    position: absolute !important;
    display: block;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
  }
}
@media only screen and (min-width: 48em) {
  ul.secondLevel li {
    text-align: center;
  }
  ul.secondLevel li:not(:last-child) {
    border-bottom: solid 1px #d9d9d6;
  }
  ul.secondLevel li.active > a {
    color: #da291c;
    font-weight: bold;
  }
}
ul.secondLevel li a {
  font-weight: 400;
  padding: 6px 0;
  color: #000;
}
@media only screen and (min-width: 48em) {
  ul.secondLevel li a {
    font-size: 14px;
    padding: 12px 7.5px;
  }
}
@media only screen and (min-width: 48em) {
  ul.secondLevel li a:hover {
    text-decoration: none;
    color: #da291c;
  }
}

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

	Listing pagination

*/
.pager.listing, .pager.detail {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px;
}
.pager.listing li, .pager.detail li {
  margin: 4px;
}
.pager.listing a, .pager.detail a {
  width: 32px;
  height: 32px;
  border: solid 1px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
  color: #000;
}
.pager.listing a.pager_active_page, .pager.detail a.pager_active_page {
  background: #000;
  color: #fff;
}
.pager.listing a.pagerNext, .pager.listing a.pagerLast, .pager.listing a.pagerPrevious, .pager.listing a.pagerFirst, .pager.detail a.pagerNext, .pager.detail a.pagerLast, .pager.detail a.pagerPrevious, .pager.detail a.pagerFirst {
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
.pager.listing a.pagerNext, .pager.listing a.pagerPrevious, .pager.detail a.pagerNext, .pager.detail a.pagerPrevious {
  background-image: url("/images/v2/icon/icon-next.svg");
}
.pager.listing a.pagerLast, .pager.listing a.pagerFirst, .pager.detail a.pagerLast, .pager.detail a.pagerFirst {
  background-image: url("/images/v2/icon/icon-last.svg");
}
.pager.listing a.pagerPrevious, .pager.listing a.pagerFirst, .pager.detail a.pagerPrevious, .pager.detail a.pagerFirst {
  transform: rotate(180deg);
}
.pager.listing a:hover, .pager.detail a:hover {
  background-color: #d9d9d6;
  text-decoration: none;
}

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

	Bouton retour en haut de page

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

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

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

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

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

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

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

.slick-dots {
  display: flex;
  justify-content: center;
}
.slick-dots li {
  margin: 5px;
  height: 10px;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d6;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background: #000;
}

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

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

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

div#tarteaucitronAlertBig:focus {
  outline: 0;
}

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

#tarteaucitronContentWrapper {
  display: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/******************/
/** BETTER MOBILE MODE **/
@media screen and (max-width: 767px) {
  html body #tarteaucitronRoot #tarteaucitron ul#tarteaucitronServices_mandatory .tarteaucitronDeny {
    display: none !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button,
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronAsk,
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronName {
    width: 100% !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    margin-bottom: 8px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder ul .tarteaucitronLine {
    padding: 16px !important;
  }
  html body #tarteaucitronRoot #tarteaucitron div#tarteaucitronMainLineOffset .tarteaucitronName {
    display: none !important;
  }
  #tarteaucitronServices_mandatory li.tarteaucitronLine .tarteaucitronName span {
    width: 100% !important;
    display: inline-block;
  }
  li.tarteaucitronLine .tarteaucitronName span {
    width: 80% !important;
    display: inline-block;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group {
    width: 10% !important;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0px;
    padding: 10px 0;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:before {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:before {
    content: "▴";
  }
}
@media screen and (min-width: 768px) {
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder button.tarteaucitron-toggle-group:after {
    content: "▾";
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
  }
  html body #tarteaucitronRoot #tarteaucitron .tarteaucitronBorder .tarteaucitronIsExpanded button.tarteaucitron-toggle-group:after {
    content: "▴";
    margin-left: 15px;
  }
}
/****/
/***
* Reset CSS
*/
#tarteaucitronRoot div, #tarteaucitronRoot span, #tarteaucitronRoot applet, #tarteaucitronRoot object, #tarteaucitronRoot iframe, #tarteaucitronRoot h1, #tarteaucitronRoot h2, #tarteaucitronRoot h3, #tarteaucitronRoot h4, #tarteaucitronRoot h5, #tarteaucitronRoot h6, #tarteaucitronRoot p, #tarteaucitronRoot blockquote, #tarteaucitronRoot pre, #tarteaucitronRoot a, #tarteaucitronRoot abbr, #tarteaucitronRoot acronym, #tarteaucitronRoot address, #tarteaucitronRoot big, #tarteaucitronRoot cite, #tarteaucitronRoot code, #tarteaucitronRoot del, #tarteaucitronRoot dfn, #tarteaucitronRoot em, #tarteaucitronRoot img, #tarteaucitronRoot ins, #tarteaucitronRoot kbd, #tarteaucitronRoot q, #tarteaucitronRoot s, #tarteaucitronRoot samp, #tarteaucitronRoot small, #tarteaucitronRoot strike, #tarteaucitronRoot strong, #tarteaucitronRoot sub, #tarteaucitronRoot sup, #tarteaucitronRoot tt, #tarteaucitronRoot var, #tarteaucitronRoot b, #tarteaucitronRoot u, #tarteaucitronRoot i, #tarteaucitronRoot center, #tarteaucitronRoot dl, #tarteaucitronRoot dt, #tarteaucitronRoot dd, #tarteaucitronRoot ol, #tarteaucitronRoot ul, #tarteaucitronRoot li, #tarteaucitronRoot fieldset, #tarteaucitronRoot form, #tarteaucitronRoot label, #tarteaucitronRoot legend, #tarteaucitronRoot table, #tarteaucitronRoot caption, #tarteaucitronRoot tbody, #tarteaucitronRoot tfoot, #tarteaucitronRoot thead, #tarteaucitronRoot tr, #tarteaucitronRoot th, #tarteaucitronRoot td, #tarteaucitronRoot article, #tarteaucitronRoot aside, #tarteaucitronRoot canvas, #tarteaucitronRoot details, #tarteaucitronRoot embed, #tarteaucitronRoot figure, #tarteaucitronRoot figcaption, #tarteaucitronRoot footer, #tarteaucitronRoot header, #tarteaucitronRoot hgroup, #tarteaucitronRoot menu, #tarteaucitronRoot nav, #tarteaucitronRoot output, #tarteaucitronRoot ruby, #tarteaucitronRoot section, #tarteaucitronRoot summary, #tarteaucitronRoot time, #tarteaucitronRoot mark, #tarteaucitronRoot audio, #tarteaucitronRoot video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /*background: initial;*/
  text-align: initial;
  text-shadow: initial;
}

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitronServices::-webkit-scrollbar-thumb {
    background-color: #ddd;
    outline: 0px solid slategrey;
}*/
div#tarteaucitronServices {
  box-shadow: 0 40px 60px #545454;
}

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

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

#tarteaucitron .clear {
  clear: both;
}

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

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

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

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

#tarteaucitron ul {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
  #tarteaucitronRoot span#tarteaucitronDisclaimerAlert {
    font-size: 16px;
  }
}
#tarteaucitron .tarteaucitronBorder, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronCookiesListMain, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList, #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList .tarteaucitronHidden, #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine {
  border-color: #333 !important;
}

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

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

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

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

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

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

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
.tarteaucitronCTAButton,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog,
#tarteaucitronRoot .tarteaucitronDeny,
#tarteaucitronRoot .tarteaucitronAllow {
  background: #b0c802;
  color: #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: red;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

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

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

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

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

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

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

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

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

/*
STARTUP***********************************************************************************
*/
#tarteaucitronRoot #tarteaucitronAlertBig {
  background-color: #FFF;
}

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

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

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

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

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

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

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

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

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Layout du contenu des pages

*/
.entry-header {
  background: #f3f3f3;
  padding: 16px 6.4% 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .entry-header {
    padding: 16px 20px 40px;
  }
}
@media only screen and (min-width: 90em) {
  .entry-header {
    padding: 16px 30px 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .entry-header {
    padding: 16px 60px 60px;
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 120em) {
  .entry-header {
    padding: 16px 90px 60px;
  }
}
.entry-header-inner {
  max-width: 930px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .entry-header-inner {
    text-align: center;
  }
}
.entry-header .title {
  min-height: 39px;
}
.entry-header .desc-page {
  margin-top: 30px;
  font-size: 14px;
}
.entry-header .desc-page:empty {
  display: none;
}
@media only screen and (min-width: 90em) {
  .entry-header .desc-page {
    margin-top: 40px;
    font-size: 16px;
  }
}
.entry-header .desc-page p:last-child {
  margin-bottom: 0;
}

.entry-content {
  padding: 0 6.4%;
}
.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: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .deux_colonnes {
    grid-column-gap: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .deux_colonnes {
    grid-column-gap: 60px;
  }
}

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

	Page vide (page sans contenu)

*/
#page_vide .message_page_vide {
  margin: 30px 0;
  text-align: center;
}

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

	Fenêtre modal

*/
#myModal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  overflow-y: auto;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 95%;
  overflow-y: auto;
  height: 100vh;
  max-width: 790px;
}

#myModalContent {
  height: 100%;
}

#myModalContent iframe {
  height: calc(100% - 30px);
  margin: 0;
}

.modal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

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

.displayBlock > div:first-child {
  margin-top: 0;
}

.displayBlock > div:last-child {
  margin-bottom: 0;
}

.displayBlock > div.lTab {
  margin-left: 15px;
}

.lBold {
  font-weight: bold;
}

.lSize1 {
  font-size: 14px;
}

.lSize2 {
  font-size: 16px;
}

.lSize3 {
  font-size: 18px;
  line-height: 1.4;
}

.lSize3:last-child {
  margin-bottom: 15px;
}

.uppercase {
  text-transform: uppercase;
  padding: 15px 0;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

a.tel {
  color: #000;
  padding-left: 24px;
  background: url("/images/v2/icon/icon-tel.svg") no-repeat left center;
}

a.link-chevron {
  padding-right: 15px;
  background: url("/images/v2/icon/icon-chevron-grey.svg") no-repeat right center;
}

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

	Footer

*/
footer {
  margin-top: 90px;
}
@media only screen and (min-width: 78em) {
  footer {
    margin-top: 120px;
  }
}

.footer {
  background: #f3f3f3;
  padding: 60px 6.4% 20px;
}
@media only screen and (min-width: 78em) {
  .footer {
    padding-bottom: 30px;
  }
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-top .item:first-child {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media only screen and (min-width: 78em) {
  .footer-top .item:first-child {
    margin: 0;
  }
}
.footer-top .item:first-child > * {
  margin: 0 20px 30px;
  display: inline-block;
}
@media only screen and (min-width: 64em) {
  .footer-top .item:first-child > * {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 78em) {
  .footer-top .item:first-child > * {
    margin: 0;
  }
  .footer-top .item:first-child > *:not(:last-child) {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-top .item:first-child > *:not(:last-child) {
    margin-right: 120px;
  }
}
.footer-top .item:last-child {
  display: flex;
  align-items: center;
}
.footer-top .item:last-child img {
  width: 82px;
}
@media only screen and (min-width: 78em) {
  .footer-top .item:last-child img {
    width: 124px;
  }
}
.footer .title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
  color: #da291c;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .footer .title {
    margin-bottom: 30px;
  }
}
.footer .shortcut ul {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .footer .shortcut ul li {
    line-height: 1.3;
  }
  .footer .shortcut ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.footer .shortcut ul li a {
  color: #000;
  font-weight: 400;
}
.footer .contact .info {
  display: flex;
}
.footer .contact .info p {
  margin: 0;
}
.footer .contact .info .links {
  margin-left: 40px;
}
@media only screen and (min-width: 78em) {
  .footer .contact .info .links {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .footer .contact .info .links {
    margin-left: 90px;
  }
}
.footer .contact .info .links p {
  margin: 0;
}
.footer .contact .info .links p:first-child {
  margin-bottom: 6px;
}
.footer .contact .info .links p:first-child a {
  padding-right: 17px;
  background: url("/images/v2/icon/icon-chevron-grey.svg") no-repeat right center;
}
.footer .contact .info .links p:last-child a {
  color: #000;
  padding-left: 24px;
  background: url("/images/v2/icon/icon-tel.svg") no-repeat left center;
}
.footer-bottom {
  border-top: solid 1px #000;
  margin-top: 40px;
  padding-top: 30px;
}
@media only screen and (min-width: 78em) {
  .footer-bottom {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .footer-bottom .item:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 64em) {
  .footer-bottom .item:first-child p:first-child {
    margin: 0;
  }
}
.footer-bottom .item:first-child p:first-child a {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-bottom .item:first-child .rs {
  display: flex;
  align-items: center;
}
.footer-bottom .item:first-child .rs p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  margin: 0 16px 0 0;
  padding: 5px 16px 5px 0;
  border-right: solid 1px #000;
}
.footer-bottom .item:first-child .rs ul {
  display: flex;
  margin: 0;
}
.footer-bottom .item:first-child .rs ul li:not(:last-child) {
  margin-right: 16px;
}
.footer-bottom .item:first-child .rs ul li a {
  width: 24px;
  height: 24px;
  display: block;
  text-indent: -9999px;
  background: no-repeat center;
}
.footer-bottom .item:first-child .rs ul li a[href*="https://www.facebook.com/"] {
  background-image: url("/images/v2/icon/icon-facebook-red.svg");
}
.footer-bottom .item:first-child .rs ul li a[href*="https://www.instagram.com/"] {
  background-image: url("/images/v2/icon/icon-instagram-red.svg");
}
.footer-bottom .item:last-child {
  margin-top: 20px;
}
@media only screen and (min-width: 64em) {
  .footer-bottom .item:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom .item:last-child p:first-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  .footer-bottom .item:last-child p:first-child {
    font-size: 20px;
  }
}
.footer-bottom .item:last-child p:last-child {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 10px;
}
@media only screen and (min-width: 64em) {
  .footer-bottom .item:last-child p:last-child {
    margin-top: 0;
  }
}
.footer-bottom .item:last-child p:last-child a {
  color: #000;
}

.avis {
  margin-left: 40px;
  border-radius: 8px;
  background-color: #fff;
  padding: 14px 18px;
  text-align: center;
}
.avis p {
  margin: 0;
}
.avis .note {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 3px;
}
.avis .nbr {
  font-size: 10px;
}
.avis .star {
  height: 16px;
  width: 95px;
  background: no-repeat center;
  margin: 6px 0;
}
.avis .star.n10 {
  background-image: url("/images/v2/star/stars-10.svg");
}
.avis .star.n15 {
  background-image: url("/images/v2/star/stars-15.svg");
}
.avis .star.n20 {
  background-image: url("/images/v2/star/stars-20.svg");
}
.avis .star.n25 {
  background-image: url("/images/v2/star/stars-25.svg");
}
.avis .star.n30 {
  background-image: url("/images/v2/star/stars-30.svg");
}
.avis .star.n35 {
  background-image: url("/images/v2/star/stars-35.svg");
}
.avis .star.n40 {
  background-image: url("/images/v2/star/stars-40.svg");
}
.avis .star.n45 {
  background-image: url("/images/v2/star/stars-45.svg");
}
.avis .star.n50 {
  background-image: url("/images/v2/star/stars-50.svg");
}
.avis .link {
  font-size: 12px;
}
.avis .link a {
  color: #000;
  padding-right: 11px;
  background: url("/images/v2/icon/icon-chevron-black.svg") no-repeat right center;
}

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

	Header

*/
.subheader {
  display: none;
}
@media only screen and (min-width: 48em) {
  .subheader {
    display: block;
    background: #5b7f95;
    padding: 6.5px 20px;
  }
}
@media only screen and (min-width: 90em) {
  .subheader {
    padding: 6.5px 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  .subheader {
    padding: 6.5px 60px;
  }
}
@media only screen and (min-width: 120em) {
  .subheader {
    padding: 6.5px 90px;
  }
}
@media only screen and (min-width: 48em) {
  .subheader-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 48em) {
  .subheader ul.rs {
    display: flex;
    margin: 0;
  }
}
.subheader ul.rs li:not(:last-child) {
  margin-right: 16px;
}
.subheader ul.rs li a {
  display: block;
  width: 20px;
  height: 20px;
  background: no-repeat center;
  text-indent: -9999px;
}
.subheader ul.rs li a[href*="https://www.facebook.com/"] {
  background-image: url("/images/v2/icon/icon-facebook.svg");
}
.subheader ul.rs li a[href*="https://www.instagram.com/"] {
  background-image: url("/images/v2/icon/icon-instagram.svg");
}
@media only screen and (min-width: 48em) {
  .subheader ul.scnd-nav {
    display: flex;
    margin: 0;
  }
}
.subheader ul.scnd-nav li:not(:last-child) {
  margin-right: 40px;
}
.subheader ul.scnd-nav li a {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}
.subheader ul.scnd-nav li.active > a {
  font-weight: bold;
}
.subheader ul.scnd-nav li:nth-last-child(1) > a, .subheader ul.scnd-nav li:nth-last-child(2) > a {
  border: none;
  line-height: 1.1;
  padding: 1px 15px 2px;
  border-radius: 50px;
  border: 1px solid #da291c;
  display: inline-block;
  width: auto;
}
.subheader ul.scnd-nav li:nth-last-child(1) > a:hover, .subheader ul.scnd-nav li:nth-last-child(2) > a:hover {
  text-decoration: none;
}
.subheader ul.scnd-nav li:nth-last-child(2) {
  margin-right: 8px;
}
.subheader ul.scnd-nav li:nth-last-child(2) > a {
  color: #fff;
  background: #da291c;
}
.subheader ul.scnd-nav li:nth-last-child(2) > a:hover {
  background: #fff;
  color: #da291c;
}
.subheader ul.scnd-nav li:nth-last-child(2).active > a {
  font-weight: 400;
}
.subheader ul.scnd-nav li:nth-last-child(1) > a {
  background: #fff;
  color: #da291c;
}
.subheader ul.scnd-nav li:nth-last-child(1) > a:hover {
  background: #da291c;
  color: #fff;
}

.header {
  position: relative;
  padding: 0 6.4%;
}
@media only screen and (min-width: 48em) {
  .header {
    padding: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .header {
    padding: 21px 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  .header {
    padding: 21px 60px;
  }
}
@media only screen and (min-width: 120em) {
  .header {
    padding: 21px 90px;
  }
}
@media only screen and (min-width: 48em) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.garage {
  left: calc(6.4% + 74px);
  padding-left: 22px;
  background: url("/images/v2/icon/icon-location.svg") no-repeat left top;
  position: absolute;
  top: 12px;
}
@media only screen and (min-width: 48em) {
  .garage {
    position: relative;
    left: auto;
    top: auto;
  }
}
@media only screen and (min-width: 78em) {
  .garage {
    background-position: left 2px;
  }
}
.garage p {
  margin: 0;
}
.garage .title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  color: #da291c;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .garage .title {
    font-size: 18px;
  }
}
.garage .adresse {
  font-size: 10px;
  line-height: 1.3;
  color: #000;
  margin-top: 2px;
}
@media only screen and (min-width: 78em) {
  .garage .adresse {
    font-size: 14px;
  }
}
.garage .tel {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
}
@media only screen and (min-width: 78em) {
  .garage .tel {
    font-size: 16px;
  }
}
.garage .tel a {
  color: #000;
}
@media only screen and (min-width: 78em) {
  .garage .tel a {
    pointer-events: none;
  }
}

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

	Sidebar

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

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

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

	Produits du catalogue

*/
@media only screen and (min-width: 48em) {
  body.catalogProductsList .entry-header {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .entry-header {
    margin-bottom: 0;
  }
}
body.catalogProductsList .entry-content {
  padding: 0;
}
body.catalogProductsList .entry-content-inner {
  max-width: 100%;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .entry-content-inner {
    display: flex;
    align-items: flex-start;
  }
}
body.catalogProductsList .leftbar {
  padding: 0 6.4% 16px;
  border-bottom: solid 1px #f3f3f3;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .leftbar {
    padding: 60px 40px;
    width: 30%;
    border: none;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList .leftbar {
    width: 25%;
  }
}
@media only screen and (min-width: 120em) {
  body.catalogProductsList .leftbar {
    width: 540px;
    padding: 60px 90px;
  }
}
body.catalogProductsList .leftbar .mention-financement {
  display: none;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .leftbar .mention-financement {
    display: block;
    color: #97999b;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 35px;
  }
}
body.catalogProductsList .content {
  padding: 16px 6.4%;
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList .content {
    padding: 60px 40px;
    width: 70%;
    border-left: solid 1px #f3f3f3;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList .content {
    width: 75%;
  }
}
@media only screen and (min-width: 103.125em) {
  body.catalogProductsList .content {
    padding: 60px 90px;
  }
}
@media only screen and (min-width: 120em) {
  body.catalogProductsList .content {
    width: calc(100% - 540px);
  }
}

.catalog {
  position: relative;
}
.catalog > h1, .catalog .desc-page {
  display: none;
}
.catalog .mention-financement {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  color: #97999b;
  margin: 30px 0;
}
@media only screen and (min-width: 78em) {
  .catalog .mention-financement {
    margin: 60px 0;
  }
}

@media only screen and (min-width: 78em) {
  #blocTriInner {
    display: flex;
    justify-content: space-between;
  }
}
#blocTri .sortResults {
  position: absolute;
  top: -75px;
  right: 0;
  max-width: calc(100% - 130px);
}
@media only screen and (min-width: 78em) {
  #blocTri .sortResults {
    position: relative;
    top: auto;
    right: auto;
  }
}
#blocTri .sortResults select {
  padding: 10px 45px 10px 24px;
  color: #97999b;
  background-position: calc(100% - 24px) center;
  margin: 0;
}
#blocTri .nbProducts {
  font-size: 14px;
  color: #5b7f95;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  #blocTri .nbProducts {
    font-size: 20px;
  }
}

#filtreMaSelection {
  margin: 20px -4px 30px;
}
@media only screen and (min-width: 78em) {
  #filtreMaSelection {
    margin: 0 -4px 40px;
  }
}
#filtreMaSelection a:not(.enleverFiltre) {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
  padding: 8px 34px 8px 15px;
  border-radius: 50px;
  border: solid 1px #5b7f95;
  background: url("/images/v2/icon/icon-delete.svg") no-repeat calc(100% - 16px) center;
  display: inline-block;
  text-transform: uppercase;
  margin: 4px;
}
#filtreMaSelection a.enleverFiltre {
  display: inline-block;
  width: 14px;
  height: 28px;
  background: url("/images/v2/icon/icon-bin.svg") no-repeat center;
  text-indent: -9999px;
  margin-left: 12px;
}

.productList {
  display: grid;
  grid-gap: 30px;
}
@media only screen and (min-width: 48em) {
  .productList {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 64em) {
  .productList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  .productList {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .productList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

#boxFiltre > button {
  border-radius: 50px;
  border: solid 2px #5b7f95;
  background-color: rgba(91, 127, 149, 0.1);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #5b7f95;
  padding: 12px 20px 10px;
  position: relative;
  display: flex;
}
@media only screen and (min-width: 78em) {
  #boxFiltre > button {
    display: none;
  }
}
#boxFiltre > button span {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #5b7f95;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  color: #fff;
  margin-left: 8px;
  padding-top: 1px;
}
#boxFiltre > button span:empty {
  display: none;
}
#boxFiltre .widgetContainer {
  position: fixed;
  width: 100%;
  right: -100%;
  top: 0;
  transition: right 0.2s ease-in-out;
  background: #fff;
  z-index: 9999;
  height: 100vh;
  overflow-y: scroll;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer {
    position: relative;
    right: auto;
    top: auto;
    height: auto;
    overflow: hidden;
  }
}
#boxFiltre.open .widgetContainer {
  right: 0;
}
#boxFiltre .title-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #f3f3f3;
  padding: 20px 6.4%;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .title-content {
    display: none;
  }
}
#boxFiltre .title-content .title {
  font-size: 36px;
  font-weight: 900;
  line-height: 0.8;
  color: #000;
  display: flex;
  align-items: flex-start;
  margin: 0;
}
#boxFiltre .title-content .title span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #5b7f95;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  color: #fff;
  margin-left: 8px;
}
#boxFiltre .title-content .title span:empty {
  display: none;
}
#boxFiltre .title-content button {
  width: 23px;
  height: 23px;
  background: url("/images/v2/icon/icon-close.svg") no-repeat center;
  text-indent: -9999px;
}
#boxFiltre .formulaire {
  margin: 0;
  max-width: 100%;
}
#boxFiltre form {
  display: flex;
  flex-direction: column;
  padding: 24px 6.4%;
}
@media only screen and (min-width: 78em) {
  #boxFiltre form {
    padding: 0;
  }
}
#boxFiltre form fieldset {
  order: 2;
}
#boxFiltre form fieldset .form_field {
  margin-bottom: 24px;
}
#boxFiltre form fieldset label.inline {
  color: #5b7f95;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  width: 100%;
}
#boxFiltre form fieldset select {
  padding: 10px 16px 11px;
  margin: 0;
}
#boxFiltre form fieldset .group_multi_checkbox {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}
#boxFiltre form fieldset .group_multi_checkbox .multi_checkbox {
  margin: 4px;
}
#boxFiltre form fieldset .group_multi_checkbox .multi_checkbox input {
  display: none;
}
#boxFiltre form fieldset .group_multi_checkbox .multi_checkbox input + label {
  border-radius: 50px;
  border: solid 1px #b1b3b3;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  padding: 12px 15px;
  display: block;
  cursor: pointer;
}
#boxFiltre form fieldset .group_multi_checkbox .multi_checkbox input + label .total {
  font-weight: 400;
}
#boxFiltre form fieldset .group_multi_checkbox .multi_checkbox input:checked + label {
  background: #5b7f95;
  color: #fff;
}
#boxFiltre form .submit {
  order: 1;
  text-align: left;
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre form .submit {
    display: none;
  }
}
#boxFiltre form .submit input {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #da291c;
  padding: 0 0 0 28px;
  margin: 0;
  background: url("/images/v2/icon/icon-bin.svg") no-repeat left center;
  border: none;
  text-decoration: underline;
  border-radius: 0;
}

/*---------- SELECT AVEC AUTOCOMPLETION (CHOSEN) ----------- */
#divprop_21 {
  overflow: visible;
  margin-bottom: 25px;
}

.chosen-container {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
          user-select: none;
  vertical-align: middle;
  width: 100%;
}
.chosen-container .chosen-drop {
  position: absolute;
  z-index: 1010;
  top: 100%;
  clip: rect(0, 0, 0, 0);
  width: 100%;
  border-top: 0;
  background: #fff;
}
.chosen-container.chosen-with-drop .chosen-drop {
  position: absolute;
  top: 100%;
  clip: auto;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .chosen-choices {
  border-radius: 50px;
  border: solid 1px #b1b3b3;
  background-color: #fff;
  padding: 8.5px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("/images/v2/icon/icon-chevron-grey-bottom.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 30px;
  margin: 0;
}
.chosen-container .chosen-choices li {
  margin: 0;
}
.chosen-container .chosen-choices li.search-choice {
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 1px 20px 2px 9px;
  text-decoration: none;
  color: #5b7f95;
  border: 1px solid #5b7f95;
  border-radius: 50px;
  position: relative;
  margin: 2.5px;
}
.chosen-container .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  background: url("/images/v2/icon/icon-delete.svg") no-repeat calc(100% - 8px) center;
  background-size: 9px;
}
.chosen-container .chosen-choices li.search-field {
  margin-left: 10px;
}
.chosen-container .chosen-choices li.search-field input.chosen-search-input {
  padding: 0;
  margin: 0;
  border: none;
  color: #000;
  font-family: inherit;
  vertical-align: baseline;
}
.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 240px;
  color: #444;
  margin: 0;
  border: solid 1px #b1b3b3;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  font-size: 14px;
  line-height: 15px;
  display: none;
  margin: 0;
  padding: 10px 15px;
  list-style: none;
  text-transform: uppercase;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  padding-bottom: 10px;
  cursor: pointer;
}
.chosen-container .chosen-results li.highlighted:not(.result-selected) {
  color: #fff;
  background-color: #5b7f95;
}
.chosen-container .chosen-results li.active-result.result-selected {
  color: #5b7f95;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  cursor: default;
  color: #ccc;
}
.chosen-container .chosen-results li.no-results {
  display: list-item;
  padding: 10px 15px;
  color: #777;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  font-weight: bold;
  display: list-item;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li.marque {
  font-weight: bold;
}
.chosen-container .chosen-results li.marque::before {
  margin-right: 5px;
  content: "---";
}

body.catalogProductDetail .leftbar {
  display: none;
}
body.catalogProductDetail .entry-header {
  padding-bottom: 0;
  margin-bottom: 0;
}
body.catalogProductDetail .entry-header .breadcrumb {
  margin: 0;
}
body.catalogProductDetail .entry-header .title {
  display: none;
}
body.catalogProductDetail .entry-content {
  padding: 0;
}
body.catalogProductDetail .entry-content-inner {
  max-width: 100%;
  margin: 0;
}

.intro-product {
  background: #f3f3f3;
}
@media only screen and (min-width: 48em) {
  .intro-product {
    display: flex;
    margin-top: -31px;
  }
}
.intro-product .left {
  display: none;
}
@media only screen and (min-width: 48em) {
  .intro-product .left {
    display: block;
    width: 50%;
  }
}
.intro-product .right {
  padding: 10px 6.4% 40px;
}
@media only screen and (min-width: 48em) {
  .intro-product .right {
    width: 50%;
    padding: 60px 40px 40px;
  }
}
@media only screen and (min-width: 78em) {
  .intro-product .right {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .intro-product .right {
    padding: 114px 60px 114px 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .intro-product .right {
    padding-left: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .intro-product .right {
    padding-right: 90px;
  }
}
.intro-product .right h1 {
  margin: 0;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .intro-product .right h1 {
    font-size: 48px;
  }
}
.intro-product .right h1 span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  margin-top: 8px;
}
@media only screen and (min-width: 78em) {
  .intro-product .right h1 span {
    font-size: 24px;
  }
}
.intro-product .right .reference {
  font-size: 12px;
  line-height: 1.5;
  color: #97999b;
  margin: 10px 0 0;
}
@media only screen and (min-width: 48em) {
  .intro-product .right .productPictures {
    display: none;
  }
}
.intro-product .right .price {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .intro-product .right .price {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 90em) {
  .intro-product .right .price {
    margin: 35px 0 40px;
    line-height: 0.8;
  }
}
.intro-product .right .financement_product {
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
}
@media only screen and (min-width: 78em) {
  .intro-product .right .financement_product {
    max-width: 410px;
  }
}
.intro-product .right .financement_product .bt-mentions {
  line-height: 1;
  cursor: pointer;
}
.intro-product .right .financement_product .bt-mentions strong {
  font-size: 20px;
}
.intro-product .right .financement_product .bt-mentions .info {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/images/v2/icon/icon-info.svg") no-repeat center;
  text-indent: -9999px;
}
.intro-product .right .financement_product #bt-calculatrice {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #5b7f95;
  text-decoration: underline;
  margin: 10px 0 15px;
  cursor: pointer;
}
.intro-product .right .financement_product #bt-calculatrice::after {
  content: url("/images/v2/icon/icon-chevron-grey.svg");
  margin-left: 8px;
}
.intro-product .right .financement_product .mention-financement {
  font-size: 14px;
  font-style: italic;
  line-height: 1.2;
  color: #97999b;
  margin: 0;
}
.intro-product .right #garantie {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  padding-left: 32px;
  background: url("/images/v2/icon/icon-garantie.svg") no-repeat left center;
  margin: 30px 0;
}
@media only screen and (min-width: 90em) {
  .intro-product .right #garantie {
    margin: 40px 0;
  }
}
.intro-product .right .btns {
  margin: -8px;
}
.intro-product .right .btns a {
  margin: 8px;
}

.productPictures {
  margin: 30px -7.5%;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .productPictures {
    margin: 0;
    height: 100%;
  }
}
.productPictures .fit-cover {
  height: auto;
  width: 100%;
  background: url("/images/v2/img/no-photo.jpg") no-repeat center;
  background-size: cover;
}
.productPictures .no-photo:not(:last-child) {
  display: none;
}
.productPictures .novelty {
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  color: #da291c;
  text-transform: uppercase;
  padding: 3.5px 12px;
  background: #fff;
  border-radius: 50px;
}
@media only screen and (min-width: 90em) {
  .productPictures .novelty {
    font-size: 16px;
    top: 24px;
  }
}
.productPictures .launcher {
  position: absolute;
  left: 24px;
  bottom: 16px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
  padding: 7px 12px 7px 40px;
  background: url("/images/v2/icon/icon-view.svg") no-repeat 12px center, #fff;
  border-radius: 50px;
}
.productPictures .launcher:last-child {
  display: none;
}
@media only screen and (min-width: 90em) {
  .productPictures .launcher {
    font-size: 14px;
    bottom: 24px;
    padding: 12px 24px 12px 58px;
    background-size: 26px;
    background-position: 24px center;
  }
}
.productPictures #visuels_additionnels {
  display: none;
}

.carac-product {
  padding: 40px 6.4% 60px;
}
@media only screen and (min-width: 78em) {
  .carac-product {
    padding: 90px 6.4%;
  }
}
@media only screen and (min-width: 90em) {
  .carac-product {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.carac-product-inner > h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .carac-product-inner > h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.carac-product-inner > h2 span {
  display: block;
  font-weight: 400;
  font-size: 14px;
}
@media only screen and (min-width: 78em) {
  .carac-product-inner > h2 span {
    font-size: 16px;
    margin-top: 6px;
  }
}
.carac-product-inner .carac {
  border-radius: 16px;
  background-color: #f3f3f3;
  padding: 24px;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .carac {
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .carac {
    padding: 40px 40px 20px;
  }
}
.carac-product-inner .carac ul {
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .carac ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .carac ul {
    max-width: 1020px;
    margin: 0 auto;
  }
}
.carac-product-inner .carac ul li {
  padding-left: 40px;
  background: no-repeat left top;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .carac ul li {
    display: flex;
    align-items: center;
    padding: 0;
    background-size: 32px;
  }
}
.carac-product-inner .carac ul li:not(:last-child) {
  margin-bottom: 13px;
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .carac ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.carac-product-inner .carac ul li.cat {
  background-image: url("/images/v2/icon/icon-category.svg");
}
.carac-product-inner .carac ul li.energy {
  background-image: url("/images/v2/icon/icon-energie.svg");
}
.carac-product-inner .carac ul li.km {
  background-image: url("/images/v2/icon/icon-kilometrage.svg");
}
.carac-product-inner .carac ul li.mec {
  background-image: url("/images/v2/icon/icon-mec.svg");
}
.carac-product-inner .carac ul li.color {
  background-image: url("/images/v2/icon/icon-color.svg");
}
.carac-product-inner .carac ul li.boite {
  background-image: url("/images/v2/icon/icon-boite-vitesse.svg");
}
.carac-product-inner .carac ul li.pf {
  background-image: url("/images/v2/icon/icon-puissance-fisc.svg");
}
.carac-product-inner .carac ul li.din {
  background-image: url("/images/v2/icon/icon-puissance-din.svg");
}
.carac-product-inner .carac ul li.place {
  background-image: url("/images/v2/icon/icon-car-seat.svg");
}
.carac-product-inner .carac ul li.porte {
  background-image: url("/images/v2/icon/icon-car-door.svg");
}
.carac-product-inner .carac ul li span {
  display: block;
  line-height: 1.2;
}
.carac-product-inner .carac ul li span:first-child {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
  text-transform: uppercase;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .carac ul li span:first-child {
    width: 200px;
    min-width: 200px;
    font-size: 14px;
    padding: 8px 0 8px 48px;
  }
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .carac ul li span:last-child {
    width: 100%;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .carac ul li span:last-child {
    padding-left: 60px;
  }
}
.carac-product-inner .option-equip {
  margin-top: 40px;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .option-equip {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .option-equip {
    margin-top: 60px;
    padding: 0 60px;
  }
}
.carac-product-inner .option-equip h3 {
  font-size: 20px;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .option-equip h3 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .option-equip h3 {
    font-size: 24px;
  }
}
.carac-product-inner .option-equip ul {
  margin-left: 15px;
  margin-top: 0;
  margin-bottom: 0;
}
.carac-product-inner .option-equip ul li {
  list-style: disc;
  margin: 0 0 10px;
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .option-equip .option {
    width: 50%;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .option-equip .option {
    width: 33.33%;
  }
}
.carac-product-inner .option-equip .equip {
  margin-top: 60px;
}
.carac-product-inner .option-equip .equip h3 {
  grid-column: 1/3;
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .option-equip .equip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media only screen and (min-width: 48em) {
  .carac-product-inner .option-equip .equip {
    margin-top: 0;
    width: 50%;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .carac-product-inner .option-equip .equip {
    width: 66.66%;
  }
}

.associatedProducts {
  margin-top: 40px;
  padding: 0 6.4%;
}
@media only screen and (min-width: 78em) {
  .associatedProducts {
    margin-top: 0;
    padding: 0 30px;
    position: relative;
  }
}
@media only screen and (min-width: 90em) {
  .associatedProducts {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .associatedProducts {
    padding: 0 90px;
    max-width: 1920px;
    margin: 60px auto 0;
  }
}
.associatedProducts > h2 {
  padding: 0 13.5px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 24px;
}
@media only screen and (min-width: 78em) {
  .associatedProducts > h2 {
    font-size: 36px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 3%;
  }
}
@media only screen and (min-width: 90em) {
  .associatedProducts > h2 {
    padding: 0;
  }
}
@media only screen and (min-width: deskop-big) {
  .associatedProducts > h2 {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 48em) {
  .associatedProducts .widgetContainer {
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .associatedProducts .widgetContainer {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  .associatedProducts .widgetContainer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 48em) {
  .associatedProducts .short_product {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  .associatedProducts .short_product {
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .associatedProducts .short_product:nth-child(4) {
    display: none;
  }
}
@media only screen and (min-width: 103.125em) {
  .associatedProducts .short_product:nth-child(4) {
    display: block;
  }
}
.associatedProducts .mention-financement {
  color: #97999b;
  text-align: center;
  margin: 30px 0;
  font-style: italic;
}
@media only screen and (min-width: 78em) {
  .associatedProducts .mention-financement {
    margin: 60px 0 0;
  }
}
.associatedProducts .backOccas {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .associatedProducts .backOccas {
    text-align: right;
    position: absolute;
    right: 5%;
    top: 0;
  }
}
@media only screen and (min-width: 90em) {
  .associatedProducts .backOccas {
    right: 10%;
  }
}
@media only screen and (min-width: 120em) {
  .associatedProducts .backOccas {
    right: 260px;
  }
}

.short_product {
  position: relative;
}
.short_product:hover .btn-full-blue {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.short_product .fit-cover {
  height: auto;
  background: #da291c;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: url("/images/v2/img/no-photo-shortproduct.jpg") no-repeat;
  background-size: cover;
}
.short_product .fit-cover .novelty {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  color: #da291c;
  text-transform: uppercase;
  padding: 3.5px 12px;
  background: #fff;
  border-radius: 50px;
}
.short_product .fit-cover .nophoto:not(:last-child) {
  display: none;
}
.short_product h2 {
  font-size: 18px;
  margin: 0;
  padding: 16px;
}
@media only screen and (min-width: 78em) {
  .short_product h2 {
    font-size: 20px;
  }
}
.short_product h2 span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 3px;
  height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 245px;
}
@media only screen and (min-width: 78em) {
  .short_product h2 span {
    font-size: 14px;
    width: 345px;
  }
}
@media only screen and (min-width: 90em) {
  .short_product h2 span {
    width: 280px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product h2 span {
    width: 270px;
  }
}
@media only screen and (min-width: 120em) {
  .short_product h2 span {
    width: 345px;
  }
}
.short_product .infos {
  border-radius: 16px;
  background-color: #f3f3f3;
  padding: 16px 16px 12px;
}
.short_product .infos ul {
  display: flex;
  flex-wrap: wrap;
  margin: -4px -4px 16px;
}
.short_product .infos ul li {
  border-radius: 50px;
  border: solid 1px #000;
  padding: 2px 8px 3px;
  font-size: 12px;
  line-height: 1.1;
  color: #000;
  margin: 4px;
}
.short_product .infos .lePrix {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
}
.short_product .infos .financement_short_product {
  line-height: 1;
  min-height: 18px;
  margin-top: 2px;
}
.short_product .infos .financement_short_product .bt-mentions {
  font-size: 14px;
}
.short_product .infos .financement_short_product .bt-mentions strong {
  font-size: 16px;
}
.short_product .infos .financement_short_product .bt-mentions .info {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/images/v2/icon/icon-info.svg") no-repeat center;
  text-indent: -9999px;
  margin-left: 7px;
  z-index: 999;
  position: relative;
  cursor: pointer;
}
.short_product .infos .garantie {
  font-size: 12px;
  margin-top: 20px;
  min-height: 18px;
}
.short_product .btn-full-blue {
  width: 100%;
  display: block;
  margin: 16px 0 0;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Listing */
body.directoryEntriesList .entry-content-inner {
  max-width: 1400px;
}

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

.short_directory {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .short_directory {
    padding-bottom: 30px;
  }
}
.short_directory::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.short_directory:hover::after {
  background: #5b7f95;
}
.short_directory .fit-contain {
  height: 200px;
}
@media only screen and (min-width: 78em) {
  .short_directory .fit-contain {
    height: 270px;
  }
}
.short_directory .fit-contain > div {
  height: 100%;
  width: 100%;
}
.short_directory h2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  margin: 15px 0 0;
}
.short_directory p {
  margin: 0;
}
.short_directory p strong {
  color: #5b7f95;
}

#otherProduct {
  padding: 0 6.4%;
  margin-top: 60px;
}
@media only screen and (min-width: 78em) {
  #otherProduct {
    margin-top: 90px;
  }
  #otherProduct > * {
    max-width: 1400px;
    margin: 0 auto;
  }
}
#otherProduct .h2 {
  text-align: center;
}
@media only screen and (min-width: 90em) {
  #otherProduct .h2 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 48em) {
  #otherProduct .short_directory:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 64em) {
  #otherProduct .short_directory:nth-child(3) {
    display: block;
  }
}

/* Detail directory */
body.directoryEntryDetail .entry-header .desc-page {
  margin-top: -15px;
}
@media only screen and (min-width: 78em) {
  body.directoryEntryDetail .entry-header .desc-page {
    margin-top: 0;
  }
  body.directoryEntryDetail .entry-header .desc-page .price {
    font-size: 20px;
  }
}
body.directoryEntryDetail .entry-header .desc-page strong {
  color: #5b7f95;
}
body.directoryEntryDetail .photo {
  margin-bottom: 60px;
  text-align: center;
}
body.directoryEntryDetail .btn {
  text-align: center;
  margin-top: 60px;
}
body.directoryEntryDetail .descriptif p img:first-child:last-child {
  margin: 40px 0;
}
body.directoryEntryDetail .descriptif p:last-child img:first-child:last-child {
  margin-bottom: 0;
}

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

	Listing multi

*/
.ru-multi .entry-content-inner {
  max-width: 1400px;
}

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

.multi-item {
  position: relative;
}
.multi-item .fit-cover {
  height: 190px;
  background: #d9d9d6;
}
@media only screen and (min-width: 64em) {
  .multi-item .fit-cover {
    height: 250px;
  }
}
@media only screen and (min-width: 78em) {
  .multi-item .fit-cover {
    height: 400px;
  }
}
.multi-item h2 {
  text-align: center;
  margin: 30px 0 0;
  font-size: 28px;
  color: #5b7f95;
}
.multi-item p {
  margin: 30px 0 0;
  text-align: center;
}

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

	Detail multi

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

	Page listing actualités

*/
.news-list-item {
  position: relative;
}

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

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

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

	Plan du site

*/
.sitemapPage {
  /*.sitemap_level1	{
  	font-size: $p--medium;

  	> li {
  		margin-top: $spacing-unit--small;
  	}
  }*/
}
.sitemapPage .sitemap_level0 > li > a {
  font-size: 24px;
}
.sitemapPage .sitemap_level0 > li::before {
  display: none;
}
.sitemapPage .sitemap_level2, .sitemapPage .sitemap_level3 {
  font-size: 16px;
  margin-top: 10px;
}
.sitemapPage .sitemap_level2 > li, .sitemapPage .sitemap_level3 > li {
  margin: 10px;
}
.sitemapPage .sitemap_level2 > li a, .sitemapPage .sitemap_level3 > li a {
  font-weight: 400;
}
.sitemapPage .sitemap_level3 {
  font-size: 14px;
}

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

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

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

	Page Contact

*/
body.ruAccueil .entry-header {
  margin-bottom: 0;
  display: none;
}
body.ruAccueil .entry-content {
  padding: 0;
}
body.ruAccueil .entry-content-inner {
  max-width: 100%;
}

#responsiveSlide {
  position: relative;
  overflow: hidden;
}
#responsiveSlide ul {
  margin: 0;
  overflow: hidden;
}
#responsiveSlide ul li {
  position: relative;
  margin: 0;
  width: 100%;
}
#responsiveSlide ul li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
#responsiveSlide ul li img {
  width: 100%;
}
#responsiveSlide ul li:not(:first-child) {
  display: none;
}
#responsiveSlide a.callbacks_nav {
  display: none;
}
@media only screen and (min-width: 48em) {
  #responsiveSlide a.callbacks_nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 10;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: solid 2px #fff;
    background: url("/images/v2/icon/icon-chevron-white.svg") no-repeat center, rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    text-indent: -9999px;
  }
  #responsiveSlide a.callbacks_nav.next {
    right: 20px;
    left: auto;
    transform: rotate(180deg) translateY(-50%);
    transform-origin: center top;
  }
}
@media only screen and (min-width: 90em) {
  #responsiveSlide a.callbacks_nav {
    left: 30px;
  }
  #responsiveSlide a.callbacks_nav.next {
    right: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  #responsiveSlide a.callbacks_nav {
    left: 60px;
  }
  #responsiveSlide a.callbacks_nav.next {
    right: 60px;
  }
}
@media only screen and (min-width: 120em) {
  #responsiveSlide a.callbacks_nav {
    left: 90px;
  }
  #responsiveSlide a.callbacks_nav.next {
    right: 90px;
  }
}

.search-home {
  background-color: #f3f3f3;
  padding: 40px 6.4%;
}
@media only screen and (min-width: 78em) {
  .search-home {
    padding: 60px 6.4% 90px;
  }
}
.search-home-inner {
  max-width: 690px;
  margin: 0 auto;
}
.search-home-inner .title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: #5b7f95;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .search-home-inner .title {
    font-size: 36px;
    max-width: 600px;
    margin: 0 auto 35px;
  }
}
.search-home-inner label {
  display: none;
}
.search-home-inner #modele_chosen .chosen-single {
  border-radius: 50px;
  border: solid 1px #b1b3b3;
  font-size: 16px;
  line-height: 1;
  color: #97999b;
  display: block;
  padding: 15px 20px 15px 60px;
  background: url("/images/v2/icon/search-car.svg") no-repeat 16px center, url("/images/v2/icon/icon-chevron-grey-bottom.svg") no-repeat calc(100% - 16px) center, #fff;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .search-home-inner #modele_chosen .chosen-single {
    padding: 19px 36px 19px 73px;
    background-position: 24px center, calc(100% - 24px) center;
  }
}
.search-home-inner #modele_chosen.chosen-container-active .chosen-single {
  border-radius: 25px 25px 0 0;
  border-bottom: none;
}
.search-home-inner #modele_chosen .chosen-drop {
  padding: 15px;
  border-left: solid 1px #b1b3b3;
  border-right: solid 1px #b1b3b3;
  border-bottom: solid 1px #b1b3b3;
}
.search-home-inner #modele_chosen .chosen-drop input {
  margin: 0;
  padding: 11px 20px;
}
.search-home-inner #modele_chosen .chosen-drop .chosen-results {
  box-shadow: none;
  border: none;
  padding: 0;
}
.search-home-inner #modele_chosen .chosen-drop .chosen-results li {
  padding: 10px 5px;
}
@media only screen and (min-width: 48em) {
  .search-home-inner .marqueAccueil {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .search-home-inner .marqueAccueil {
    margin-top: 24px;
  }
}
.search-home-inner .marqueAccueil ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px -4px -4px;
}
@media only screen and (min-width: 48em) {
  .search-home-inner .marqueAccueil ul {
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .search-home-inner .marqueAccueil ul {
    margin: -8px;
  }
}
.search-home-inner .marqueAccueil ul li {
  margin: 4px;
}
@media only screen and (min-width: 78em) {
  .search-home-inner .marqueAccueil ul li {
    margin: 8px;
  }
}
.search-home-inner .marqueAccueil a {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  background-color: #000;
  padding: 3px 12px 5px;
  text-transform: uppercase;
  display: block;
}
.search-home-inner .marqueAccueil a:hover {
  background: #97999b;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .search-home-inner .marqueAccueil a {
    font-size: 14px;
    padding: 4px 16px 6px;
  }
}
.search-home-inner .marqueAccueil a#btnRecherche {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5b7f95;
}
.search-home-inner .marqueAccueil a#btnRecherche:hover {
  background: #7a99ac;
}
@media only screen and (min-width: 48em) {
  .search-home-inner .marqueAccueil a#btnRecherche {
    left: auto;
    transform: none;
    margin: 4px;
  }
}
@media only screen and (min-width: 78em) {
  .search-home-inner .marqueAccueil a#btnRecherche {
    margin: 0 0 0 16px;
  }
}

.news-home {
  margin: 40px 0 90px;
  padding: 0 6.4%;
}
@media only screen and (min-width: 78em) {
  .news-home {
    padding: 0 30px;
    position: relative;
    margin-top: 90px;
  }
}
@media only screen and (min-width: 90em) {
  .news-home {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .news-home {
    padding: 0 90px;
    max-width: 1920px;
    margin: 90px auto 120px;
  }
}
.news-home .widgetProduct .h4-like {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.1;
  color: #000;
  text-align: center;
  margin: 0 0 30px;
}
@media only screen and (min-width: 78em) {
  .news-home .widgetProduct .h4-like {
    font-size: 36px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 3%;
    text-align: left;
  }
}
@media only screen and (min-width: 90em) {
  .news-home .widgetProduct .h4-like {
    font-size: 48px;
  }
}
@media only screen and (min-width: 48em) {
  .news-home .widgetProduct .widgetContainer {
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .news-home .widgetProduct .widgetContainer {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}
@media only screen and (min-width: 103.125em) {
  .news-home .widgetProduct .widgetContainer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 48em) {
  .news-home .widgetProduct .widgetContainer .short_product {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  .news-home .widgetProduct .widgetContainer .short_product {
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .news-home .widgetProduct .widgetContainer .short_product:nth-child(4) {
    display: none;
  }
}
@media only screen and (min-width: 103.125em) {
  .news-home .widgetProduct .widgetContainer .short_product:nth-child(4) {
    display: block;
  }
}
.news-home .mention-financement {
  color: #97999b;
  text-align: center;
  margin: 30px 0;
  font-style: italic;
}
@media only screen and (min-width: 78em) {
  .news-home .mention-financement {
    margin: 60px 0;
  }
}
.news-home .btn {
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .news-home .btn {
    text-align: right;
    position: absolute;
    right: 5%;
    top: -3px;
  }
}
@media only screen and (min-width: 90em) {
  .news-home .btn {
    right: 10%;
    top: 0;
  }
}
@media only screen and (min-width: 120em) {
  .news-home .btn {
    right: 260px;
  }
}

.boxdirectories {
  padding: 0 6.4%;
}
@media only screen and (min-width: 78em) {
  .boxdirectories {
    margin: 150px 0;
  }
}
.boxdirectories-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.boxdirectories .title {
  padding: 0 13.5px;
}
@media only screen and (min-width: 78em) {
  .boxdirectories .title {
    text-align: center;
    margin-bottom: 60px;
  }
}
.boxdirectories .title p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
}
@media only screen and (min-width: 78em) {
  .boxdirectories .title p {
    font-size: 24px;
    margin: 30px 0 0;
  }
}
@media only screen and (min-width: 78em) {
  .boxdirectories .directory-slick {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}
.boxdirectories .btn {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .boxdirectories .btn {
    margin-top: 60px;
  }
}

.pres-home {
  margin: 90px 0 0;
}
@media only screen and (min-width: 48em) {
  .pres-home {
    display: flex;
  }
}
.pres-home .fit-cover {
  height: 312px;
}
@media only screen and (min-width: 48em) {
  .pres-home .fit-cover {
    height: auto;
    width: 50%;
    position: relative;
  }
  .pres-home .fit-cover img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.pres-home .txt {
  background-color: #f3f3f3;
  padding: 60px 6.4% 90px;
}
@media only screen and (min-width: 48em) {
  .pres-home .txt {
    height: auto;
    width: 50%;
  }
  .pres-home .txt-inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 78em) {
  .pres-home .txt {
    padding: 90px;
  }
}
@media only screen and (min-width: 103.125em) {
  .pres-home .txt {
    padding: 175px 90px;
  }
}
@media only screen and (min-width: 78em) {
  .pres-home .txt p {
    max-width: 460px;
  }
}
@media only screen and (min-width: 103.125em) {
  .pres-home .txt p {
    margin: 35px 0;
  }
}
.pres-home .txt p:last-child {
  margin-bottom: 0;
}
.pres-home .txt p:last-child.btn {
  margin-top: 50px;
}
@media only screen and (min-width: 103.125em) {
  .pres-home .txt p:last-child.btn {
    margin-top: 60px;
  }
}

.service-home {
  padding: 0 6.4%;
  margin-top: 60px;
}
@media only screen and (min-width: 78em) {
  .service-home {
    margin: 120px 0 0;
  }
}
.service-home-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.service-home .title {
  padding: 0 13.5px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .service-home .title {
    text-align: center;
  }
}
.service-home .title p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  color: #5b7f95;
}
@media only screen and (min-width: 78em) {
  .service-home .title p {
    font-size: 24px;
    margin: 30px 0 0;
  }
}
.service-home .list {
  display: grid;
  grid-gap: 60px;
}
@media only screen and (min-width: 48em) {
  .service-home .list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
.service-home .list .item .fit-cover {
  height: 191px;
}
@media only screen and (min-width: 78em) {
  .service-home .list .item .fit-cover {
    height: 400px;
  }
}
@media only screen and (min-width: 48em) {
  .service-home .list .item .txt {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 90em) {
  .service-home .list .item .txt {
    padding: 0 30px;
  }
}
.service-home .list .item h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: #5b7f95;
  text-transform: none;
  margin: 30px 0 20px;
}
.service-home .list .item p {
  text-align: center;
}
.service-home .list .item p.btn {
  margin: 22px -8px -8px;
}
.service-home .list .item p.btn a {
  margin: 8px;
}

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

	Page menu

*/
.ru-page-menu .entry-content-inner {
  max-width: 1400px;
}

.page-menu-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 60px;
}
@media only screen and (min-width: 48em) {
  .page-menu-list {
    grid-template-columns: 1fr 1fr;
  }
}

.page-menu-item {
  position: relative;
}
.page-menu-item .fit-cover {
  height: 190px;
  background: #d9d9d6;
}
@media only screen and (min-width: 64em) {
  .page-menu-item .fit-cover {
    height: 250px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item .fit-cover {
    height: 400px;
  }
}
.page-menu-item h2 {
  text-align: center;
  margin: 30px 0 0;
  font-size: 28px;
  color: #5b7f95;
}

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

	UTILITIES
	Ces fichiers contiennent les classes utiles

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

	Classes utilisables telles quelles dans fichier html

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

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

.block {
  display: block !important;
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.bold {
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-container, .icon-right, .icon-left {
  display: inline;
  position: relative;
}
.icon-container .icon, .icon-right .icon, .icon-left .icon {
  position: absolute;
  top: 25px;
}

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

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

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

.color2 {
  color: #5b7f95;
}

.color3 {
  color: #888;
}

.color4 {
  color: #f50023;
}

.exergue {
  font-size: 20px;
}

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

	PRINT
	Ces fichiers contiennent les styles pour l'impression

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

	Style lors de l'impression

*/
@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    page-break-inside: avoid;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote,
  table {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  ul,
  ol,
  dl {
    page-break-before: avoid;
  }
}
/*# sourceMappingURL=styles.css.map */