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

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

	Text selection/highlighting

*/

::selection {
  background: #0e4d4d;
  color: #fff;
  text-shadow: none;
}

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

	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: 60px 20px 20px;
  border: 1px solid #888;
  width: 80%;
  overflow-y: auto;
  height: 100%;
  max-width: 790px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 45px;
  line-height: 0.5;
}

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

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

	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 {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-weight: bold;
  text-decoration: underline;
  color: #32b4b4;
}
a:hover {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #0e4d4d;
}
a img {
  border: none;
}
a.link-info {
  color: #000;
  display: block;
  padding-left: 20px;
  background: url("/images/icon/icon-info.svg") no-repeat 0 5px;
}
a.link-info:hover {
  color: #32b4b4;
}

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

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

	Tous les styles de boutons

*/
.btn-empty, .btn-empty-black, .btn-empty-green, .btn-full, .btn-full-black, .btn-full-green, input[type=submit] {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  clear: both;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  line-height: 1;
  padding: 15px 20px 13px;
  text-decoration: none;
}
.btn-empty:hover, .btn-empty-black:hover, .btn-empty-green:hover, .btn-full:hover, .btn-full-black:hover, .btn-full-green:hover, input[type=submit]:hover {
  text-decoration: none;
}

.btn-full, .btn-full-black, .btn-full-green, input[type=submit] {
  border: none;
  color: #fff;
}
.btn-full-green, input[type=submit] {
  background: #32b4b4;
}
.btn-full-green:hover, input[type=submit]:hover {
  background-color: #299494;
  color: #fff;
}
.btn-full-black {
  background: #000;
}
.btn-full-black:hover {
  background-color: #4d4d4d;
  color: #fff;
}
.btn-empty, .btn-empty-black, .btn-empty-green {
  border: 1px solid;
  background: #fff;
}
.btn-empty-green {
  border-color: #32b4b4;
  color: #32b4b4;
}
.btn-empty-green:hover {
  background-color: #32b4b4;
  color: #fff;
}
.btn-empty-black {
  border-color: #000;
  color: #000;
  font-size: 18px;
  margin: 0;
}
.btn-empty-black:hover {
  background-color: #000;
  color: #fff;
}

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

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

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

	Comportement des images dans le contenu des pages

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

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

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

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

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

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

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

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

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

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

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

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

	Logo

*/
#logo {
  position: absolute;
  top: 15px;
  left: 8%;
  z-index: 1000;
  min-width: 160px;
  background: white;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
body.open #logo {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64em) {
  #logo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-width: 0;
  }
}

#logo a {
  display: block;
  width: 88px;
  height: 44px;
  text-indent: -9999px;
  background: url("/images/logo/logo-urbia.svg") no-repeat scroll center top, #fff;
  background-size: 100%;
}
@media only screen and (min-width: 64em) {
  #logo a {
    width: 120px;
    height: 60px;
  }
}

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

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ul li {
  margin-top: 15px;
  margin-bottom: 15px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul li, ul .blockList li, .form_creator_header ul li, .ckEditor ul li, .sitemap ul li, .desc-agence ul li, .pres-seo ul li, .desc-agence ul li, .faq-item ul li {
  padding-left: 30px;
  background: url("/images/icon/icon-monogram.svg") no-repeat left 9px;
  background-size: 20px;
}

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

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

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  border: 1px solid #e0f4f4;
  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: #6c6c6c;
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #e0f4f4;
  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 #e0f4f4;
  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: #000;
  font-size: 16px;
}

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

	Tableaux responsive

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

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

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

	Règles typographiques

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

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p,
.h4,
.h5,
.h6 {
  display: block;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-weight: bold;
  margin: 50px 0 20px;
  line-height: 1.2;
}
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,
.directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p: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,
.directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p,
  .h4,
  .h5,
  .h6 {
    margin: 60px 0 20px;
  }
}

h1,
.h1 {
  font-size: 40px;
  text-align: center;
  color: #fff;
  margin: 15px 0 0;
  line-height: 0.9;
}
@media only screen and (min-width: 78em) {
  h1,
  .h1 {
    font-size: 60px;
    margin-top: 20px;
  }
}

h2,
.h2 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  margin-bottom: 30px;
}
h2 strong,
.h2 strong {
  color: #32b4b4;
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    font-size: 40px;
  }
}

h3,
.h3,
.directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p {
  font-size: 26px;
  color: #32b4b4;
}
@media only screen and (min-width: 78em) {
  h3,
  .h3,
  .directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p {
    font-size: 30px;
  }
}

h4,
.h4 {
  font-size: 23px;
  color: #0e4d4d;
}
@media only screen and (min-width: 78em) {
  h4,
  .h4 {
    font-size: 26px;
  }
}

h5,
.h5 {
  text-transform: uppercase;
  color: #32b4b4;
  font-weight: 400;
  font-size: 18px;
}
@media only screen and (min-width: 78em) {
  h5,
  .h5 {
    font-size: 22px;
  }
}

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

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

p {
  margin: 20px 0;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

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

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

*/
.breadcrumb {
  text-align: center;
  font-size: 12px;
  line-height: 1.67;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    font-size: 14px;
    line-height: 1.57;
  }
}
.breadcrumb a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  margin: 0 4px;
  position: relative;
  top: -3px;
}

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

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

.form_creator_header {
  margin-bottom: 40px;
}

/* 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 a, .form_creator_footer a {
  color: #707173;
}
.rgpd p, .form_creator_footer p {
  margin: 10px 0;
}

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

.fieldGroup {
  overflow: hidden;
}

label.inline {
  display: block;
  cursor: pointer;
  margin-bottom: 7px;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #0e4d4d;
}
label.inline.error {
  color: #fc3939;
}
label.inline .obligatory {
  color: #fc3939;
}

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  appearance: none;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 25px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 50px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
}
@media only screen and (min-width: 78em) {
  select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
    padding: 15px 30px;
  }
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
  line-height: 1.5;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
  line-height: 1.5;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  font-size: 16px;
  line-height: 1.5;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  font-size: 16px;
  line-height: 1.5;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 1.5;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: #e0f4f4;
}

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

textarea {
  border-radius: 20px;
}
.error textarea {
  border: 1px solid #e0f4f4;
  border-color: #fc3939;
}

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

	Liste déroulante

*/
select {
  background-image: url("/images/icon/icon-chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 40px;
  font-family: "Neutra Text", Garamond, Times, serif;
}
@media only screen and (min-width: 64em) {
  select {
    padding-right: 50px;
    background-position: calc(100% - 20px) center;
  }
}
.error select {
  border: 1px solid #e0f4f4;
  border-color: #fc3939;
}
select option {
  font-family: Arial;
  font-size: 14px;
}

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

	Boutons de validation/annulation

*/
input[type=submit] {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 16px 30px 13px;
  font-size: 18px;
  text-transform: uppercase;
}

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

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

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: #fc3939;
  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: #fc3939;
}
.strength_password.badPass {
  color: orange;
}
.strength_password.goodPass, .strength_password.strongPass {
  color: #32b4b4;
}

.confirmpasswd {
  font-weight: 600;
}
.confirmpasswd::before {
  display: none;
}
.confirmpasswd.notequalpasswd {
  color: #fc3939;
}
.confirmpasswd.equalpasswd {
  color: #32b4b4;
}

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  padding: 15px;
  background-color: #e0f4f4;
}
.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;
}

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

	CAPCHA

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

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

	Submit

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

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

	Suppression reset form

*/
#reset {
  display: none;
}

#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: #fff;
  padding: 10px 10px 0;
}
#overDiv.calendar[style*="display: block; visibility: visible;"] #overlibcontent {
  background: #fff;
  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;
}

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

	Style de la galerie miniature

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

.medias .gallery ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
@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 #000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #32b4b4 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: 74px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
#nested.expanded {
  height: auto;
}
@media only screen and (min-width: 64em) {
  #nested {
    height: auto;
    overflow: visible;
    box-shadow: none;
  }
}

#nested, .top-bar-section, #nested ul.firstLevel, #nested ul.firstLevel > li {
  position: inherit !important;
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  padding: 0 8%;
  height: 74px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .title-area {
    display: none;
  }
}
.title-area .topbar-btn a {
  border-radius: 50px;
  background-color: #32b4b4;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  font-family: "Neutra Text", Garamond, Times, serif;
  padding: 10px 20px;
  text-decoration: none;
}
.title-area .toggle-topbar a {
  display: block;
  width: 44px;
  height: 44px;
  text-indent: -999px;
  background: url("/images/icon/icon-menu.svg") no-repeat center;
}
body.open .title-area .toggle-topbar a {
  background-image: url("/images/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);
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 74px);
  background-color: #32b4b4;
  padding: 45px 0;
}
.top-bar-section::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
.expanded .top-bar-section {
  right: 0;
}
@media only screen and (min-width: 64em) {
  .top-bar-section {
    right: auto;
    height: auto;
    overflow: visible;
    background: none;
    padding: 0;
  }
}

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

/* ---------------- FIRST LEVEL ---------------- */
#nested ul.firstLevel {
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0;
  }
}
#nested ul.firstLevel > li {
  position: relative;
}
#nested ul.firstLevel > li:last-child {
  margin-bottom: 80px;
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel > li:last-child {
    margin: 0;
  }
}
#nested ul.firstLevel > li > a {
  padding: 15px 8%;
  color: #fff;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel > li > a {
    font-size: 18px;
    line-height: 1.33;
    color: #000;
    white-space: nowrap;
    padding: 48px 20px;
  }
  #nested ul.firstLevel > li > a:hover {
    color: #32b4b4;
  }
}
@media only screen and (min-width: 78em) {
  #nested ul.firstLevel > li > a {
    padding: 48px 30px;
  }
}
#nested ul.firstLevel > li.has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nested ul.firstLevel > li.has-dropdown > a::after {
  content: url("/images/icon/icon-arrow-white-bottom.svg");
  height: 23px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel > li.has-dropdown > a::after {
    display: none;
  }
}
#nested ul.firstLevel > li.has-dropdown > a.open::after {
  transform: rotate(-180deg);
}
#nested ul.firstLevel > li:not(.me-scndnav).active > a {
  color: #0e4d4d;
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel > li:not(.me-scndnav).active > a {
    color: #000;
    position: relative;
    background: url("/images/icon/icon-monogram.svg") no-repeat center calc(100% - 29.6px);
  }
  #nested ul.firstLevel > li:not(.me-scndnav).active > a:hover {
    color: #32b4b4;
  }
}
#nested ul.firstLevel > li.me-scndnav > a {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel > li.me-scndnav {
    display: none;
  }
}

li.me-scndnav > a {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-decoration: none;
}
li.me-scndnav > a::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
li.me-scndnav > a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 64em) {
  li.me-scndnav > a {
    font-size: 14px;
    line-height: 1.57;
  }
  li.me-scndnav > a::before {
    width: 26px;
    height: 26px;
    margin-right: 10px;
  }
}
li.me-scndnav.me-pres > a::before {
  background-image: url("/images/icon/icon-qui-sommes-nous.svg");
}
li.me-scndnav.me-recrut > a::before {
  background-image: url("/images/icon/icon-recrutement.svg");
}
li.me-scndnav.me-finance > a::before {
  background-image: url("/images/icon/icon-financement.svg");
}
li.me-scndnav.me-blog > a::before {
  background-image: url("/images/icon/icon-blog.svg");
}
li.me-scndnav.active.me-pres > a::before {
  background-image: url("/images/icon/icon-qui-sommes-nous-white.svg");
}
li.me-scndnav.active.me-recrut > a::before {
  background-image: url("/images/icon/icon-recrutement-white.svg");
}
li.me-scndnav.active.me-finance > a::before {
  background-image: url("/images/icon/icon-financement-white.svg");
}
li.me-scndnav.active.me-blog > a::before {
  background-image: url("/images/icon/icon-blog-white.svg");
}

#nested ul.firstLevel li:not(.me-scndnav) + li.me-scndnav {
  margin-top: 35px;
}

/* ---------------- SECOND LEVEL ---------------- */
ul.secondLevel {
  display: none;
  margin: 0;
}
.meMetiers ul.secondLevel {
  display: none !important;
}
@media only screen and (min-width: 64em) {
  ul.secondLevel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 5000;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    position: absolute;
    background-color: #32b4b4;
  }
  .has-dropdown:hover ul.secondLevel {
    opacity: 1;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: auto;
    visibility: visible;
    transition-delay: 0.2s;
  }
}
@media only screen and (min-width: 64em) {
  ul.secondLevel > li {
    white-space: nowrap;
  }
}
ul.secondLevel > li > a {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 8%;
}
@media only screen and (min-width: 64em) {
  ul.secondLevel > li > a {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    padding: 30px !important;
  }
  ul.secondLevel > li > a:hover {
    color: #0e4d4d;
  }
}
ul.secondLevel > li:first-child > a {
  padding-top: 5px;
}
@media only screen and (min-width: 64em) {
  ul.secondLevel > li:first-child > a {
    padding: 0;
  }
}
ul.secondLevel > li:last-child > a {
  padding-bottom: 25px;
}
@media only screen and (min-width: 64em) {
  ul.secondLevel > li:last-child > a {
    padding: 0;
  }
}
ul.secondLevel > li.active > a {
  color: #0e4d4d;
}

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

	Listing pagination

*/
.pager.listing, .pager.detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
}
.pager.listing li, .pager.detail li {
  margin: 0 7.5px 10px;
}
.pager.listing a, .pager.detail a {
  width: 40px;
  height: 40px;
  border: solid 1px #0e4d4d;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #0e4d4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pager.listing a:hover, .pager.detail a:hover {
  background-color: #e0f4f4;
}
.pager.listing a.pager_active_page, .pager.detail a.pager_active_page {
  background-color: #32b4b4;
  border-color: #32b4b4;
  color: #fff;
}
.pager.listing a.pagerNext, .pager.listing a.pagerLast, .pager.listing a.pagerFirst, .pager.listing a.pagerPrevious, .pager.detail a.pagerNext, .pager.detail a.pagerLast, .pager.detail a.pagerFirst, .pager.detail a.pagerPrevious {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}
.pager.listing a.pagerNext, .pager.listing a.pagerPrevious, .pager.detail a.pagerNext, .pager.detail a.pagerPrevious {
  background-image: url("/images/icon/arrow-simple.svg");
}
.pager.listing a.pagerLast, .pager.listing a.pagerFirst, .pager.detail a.pagerLast, .pager.detail a.pagerFirst {
  background-image: url("/images/icon/arrow-double.svg");
}
.pager.listing a.pagerFirst, .pager.listing a.pagerPrevious, .pager.detail a.pagerFirst, .pager.detail a.pagerPrevious {
  transform: rotate(180deg);
}
.pager + .family-desc {
  margin-top: 50px;
}
@media only screen and (min-width: 90em) {
  .pager + .family-desc {
    margin-top: 80px;
  }
}

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

	Bouton retour en haut de page

*/
.scroll-top {
  width: 40px;
  height: 40px;
  border: 1px solid #e0f4f4;
  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;
}
@media only screen and (min-width: 78em) {
  .slick-track {
    display: flex;
    align-items: center;
  }
}
.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;
}
@media only screen and (min-width: 78em) {
  .slick-slide {
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .slick-slide:not(.slick-current) {
    transform: scale(0.8);
  }
}

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

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

.slick-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: url(/images/icon/icon-arrow-dark-green-right.svg) no-repeat center;
  text-indent: -99999px;
}
.slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.modal-open {
  overflow: hidden;
  height: 100%;
}

#contentWrapper {
  display: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitron .clear {
  clear: both;
}

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

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

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

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

#tarteaucitron ul {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tarteaucitronAlertBigBottom {
  bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#tarteaucitronServices_mandatory button.tarteaucitronAllow {
  opacity: 1;
}

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

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

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

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

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

.display-block {
  display: block;
}

.display-none {
  display: none;
}

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

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

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

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

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

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

div#tarteaucitronAlertBig::before {
  content: "" !important;
  width: 275px;
  display: block;
  background: url(/images/logo/logo-urbia.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-color: #0e4d4d;
  padding: 15px 8% 30px;
  border-radius: 0 0 50px 50px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .entry-header {
    padding: 30px 8% 40px;
    margin-bottom: 60px;
    border-radius: 0 0 70px 70px;
  }
}

.entry-content {
  padding: 0 8%;
}
.entry-content-inner {
  max-width: 930px;
  margin: 0 auto;
}
.entry-content-inner > .map {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 78em) {
  .entry-content-inner > .map {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

.description-style {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #e1e1e1;
  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;
  }
}

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

	Plan du site

*/
.site-map li {
  margin-left: 30px !important;
}
.site-map li a {
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 2px;
  color: #32b4b4;
  font-weight: 600;
  background: #9feeee;
  padding: 10px 20px;
}
.site-map .rubrique_sommaire_ {
  font-size: 24px;
}
.site-map .rubrique_sommaire_::before {
  display: none;
}
.site-map .sitemap_level1 {
  font-size: 18px;
}
.site-map .sitemap_level1 > li {
  margin-top: 20px;
}
.site-map .sitemap_level2 {
  font-size: 16px;
}
.site-map .sitemap_level2 > li {
  margin-top: 10px;
}
.site-map .sitemap_level2 > li a {
  font-weight: 400;
}
.site-map .sitemap_level3 {
  font-size: 14px;
}

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

	Page vide

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

.call-back {
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: 3;
  width: 50px;
  height: 50px;
}
body.rappel_gratuit .call-back {
  display: none;
}
@media only screen and (min-width: 90em) {
  .call-back {
    bottom: auto;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
  }
}
.call-back a {
  width: 100%;
  height: 100%;
  background: url("/images/icon/icon-callback-white.svg") no-repeat center, #000;
  background-size: 26px;
  border-radius: 50%;
  text-indent: -99999px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  display: block;
}
@media only screen and (min-width: 90em) {
  .call-back a {
    background-size: auto;
  }
}

.faq-item {
  border-radius: 30px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  margin-bottom: 15px;
}
@media only screen and (min-width: 64em) {
  .faq-item {
    margin-bottom: 20px;
  }
}
.faq-item .faq {
  margin: 0;
  font-size: 20px;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
  padding: 15px 40px 15px 20px;
}
@media only screen and (min-width: 64em) {
  .faq-item .faq {
    padding: 20px 60px 20px 30px;
  }
}
.faq-item .faq::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/images/icon/icon-chevron-down-black.svg") no-repeat center;
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease-in-out;
}
@media only screen and (min-width: 64em) {
  .faq-item .faq::after {
    right: 30px;
  }
}
.faq-item.open .faq::after {
  transform: translateY(-50%) rotate(-180deg);
}
.faq-item .faq-answer {
  display: none;
  padding: 0 20px 20px;
}
@media only screen and (min-width: 64em) {
  .faq-item .faq-answer {
    padding: 0 30px 30px;
  }
}
.faq-item .faq-answer > *:last-child {
  margin-bottom: 0;
}

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

	Footer

*/
.subfooter {
  padding: 90px 8% 30px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .subfooter {
    padding: 90px 4% 60px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter {
    padding: 90px 35px 60px;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 48em) {
  .subfooter-inner {
    display: flex;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-inner {
    max-width: 1354px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter-inner {
    justify-content: space-between;
  }
}
.subfooter-item {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .subfooter-item {
    width: calc(33.333% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-item {
    display: flex;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 90em) {
  .subfooter-item {
    margin: 0;
  }
  .subfooter-item:first-child {
    width: 375px;
  }
  .subfooter-item:nth-child(2) {
    width: 415px;
  }
  .subfooter-item:nth-child(3) {
    width: 385px;
  }
}
.subfooter-item img {
  max-width: 60px;
}
@media only screen and (min-width: 78em) {
  .subfooter-item img {
    max-width: 80px;
    min-width: 80px;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-item-content {
    width: calc(100% - 80px);
    padding-left: 20px;
    text-align: left;
  }
}
.subfooter-item p {
  margin: 0;
}
.subfooter-item p.subfooter-item-title {
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 15px 0 5px;
}
@media only screen and (min-width: 48em) {
  .subfooter-item p.subfooter-item-title {
    line-height: 1.2;
  }
}
@media only screen and (min-width: 78em) {
  .subfooter-item p.subfooter-item-title {
    margin-top: 0;
  }
}

.footer {
  background: #32b4b4;
  border-radius: 50px 50px 0 0;
  color: #fff;
  padding: 60px 50px 30px;
}
@media only screen and (min-width: 78em) {
  .footer {
    padding-top: 90px;
    border-radius: 60px 60px 0 0;
  }
}
.footer-inner {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 50px;
  flex-direction: column;
}
@media only screen and (min-width: 64em) {
  .footer-inner {
    gap: 50px;
    flex-direction: row;
  }
}
@media only screen and (min-width: 64em) {
  .footer-inner {
    display: flex;
    max-width: 1410px;
    gap: 120px;
  }
}
.footer-left {
  gap: 30px;
  display: grid;
}
@media only screen and (min-width: 64em) {
  .footer-left {
    max-width: 300px;
    grid-template-rows: 90% auto;
  }
}
@media only screen and (min-width: 78em) {
  .footer-left {
    max-width: 325px;
    width: 325px;
    grid-template-rows: 452px auto;
  }
}
.footer-left img:first-child {
  margin-bottom: 30px;
}
.footer-left p:last-child {
  margin-bottom: 0;
}
.footer-right {
  display: grid;
  gap: 30px;
  /**/
  /**/
}
.footer-right .information-footer {
  font-size: 14px;
}
.footer-right .information-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (min-width: 64em) {
  .footer-right .information-footer {
    gap: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-right .information-footer ul {
    gap: 24px;
  }
}
@media only screen and (min-width: 64em) {
  .footer-right {
    margin: 0;
    width: calc(100% - 300px);
    grid-template-rows: min-content auto min-content;
  }
}
@media only screen and (min-width: 78em) {
  .footer-right {
    width: calc(100% - 325px);
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.footer a:hover {
  color: #000;
}
.footer a.btn-full-black {
  font-weight: bold;
  margin: 0;
}
.footer a.btn-full-black:hover {
  color: #fff;
}
.footer p.tel-footer {
  margin: 30px 0;
}
@media only screen and (min-width: 90em) {
  .footer p.tel-footer {
    margin-top: 50px;
  }
}
.footer p.tel-footer a {
  color: #000;
  /**/
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44;
  display: flex;
  align-items: center;
}
.footer p.tel-footer a::before {
  content: url("/images/icon/icon-telephone-black.svg");
  margin-right: 11px;
  height: 21px;
}
.footer .rs-footer {
  display: flex;
}
@media only screen and (min-width: 64em) {
  .footer .rs-footer {
    margin: 10px 0 0;
  }
}
.footer .rs-footer li:not(:last-child) {
  margin-right: 10px;
}
.footer .rs-footer li a {
  width: 35px;
  height: 35px;
  text-indent: -99999px;
  border-radius: 50%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.footer .rs-footer li a:hover {
  filter: invert(57%) sepia(74%) saturate(396%) hue-rotate(131deg) brightness(93%) contrast(87%);
}
@media only screen and (min-width: 64em) {
  .footer .rs-footer li a {
    width: 26px;
    height: 26px;
    background-size: auto 13px;
  }
}
.footer .rs-footer li a.fb {
  background-image: url("/images/icon/icon-facebook-green.svg");
}
.footer .rs-footer li a.linkedin {
  background-image: url("/images/icon/icon-linkedin-green.svg");
}
.footer .rs-footer li a.instagram {
  background-image: url("/images/icon/icon-instagram-green.svg");
}
@media only screen and (min-width: 64em) {
  .footer .links-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 25px;
  }
}
@media only screen and (min-width: 90em) {
  .footer .links-footer {
    flex-wrap: wrap;
    gap: unset;
    justify-content: space-between;
  }
}
.footer .links-footer-item {
  margin-top: 30px;
}
@media only screen and (min-width: 64em) {
  .footer .links-footer-item {
    margin: 0;
  }
}
.footer .links-footer-item-title {
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 90em) {
  .footer .links-footer-item-title {
    font-size: 20px;
  }
}
.footer .links-footer-item-title::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/images/icon/icon-arrow-white-bottom.svg") no-repeat center;
  background-size: auto 100%;
  margin-left: 10px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 64em) {
  .footer .links-footer-item-title::after {
    display: none;
  }
}
.footer .links-footer-item-title.open::after {
  transform: rotate(-180deg);
}
.footer .links-footer-item-title-last ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer .links-footer-item-agences {
  margin-top: 30px;
}
@media only screen and (min-width: 64em) {
  .footer .links-footer-item-agences {
    margin: 0;
  }
}
.footer .links-footer-item-agences ul {
  display: none;
  margin: 17px 0 0;
}
@media only screen and (min-width: 64em) {
  .footer .links-footer-item-agences ul {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
}
.footer .links-footer-item-agences ul li {
  line-height: 1.2;
}
@media only screen and (min-width: 90em) {
  .footer .links-footer-item-agences ul li {
    font-size: 18px;
  }
}
.footer .links-footer-item ul {
  display: none;
  margin: 17px 0 0;
}
@media only screen and (min-width: 64em) {
  .footer .links-footer-item ul {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
  }
}
.footer .links-footer-item ul li {
  line-height: 1.2;
}
@media only screen and (min-width: 90em) {
  .footer .links-footer-item ul li {
    font-size: 18px;
  }
}

.signature-inner {
  font-size: 14px;
  line-height: 1.57;
}
.signature-inner p:last-child {
  margin-bottom: 0;
}
.signature-inner p:last-child a {
  font-weight: bold;
}

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

	Header

*/
header {
  position: relative;
}

.header-top {
  background-color: #000;
  padding: 10px 8%;
}
@media only screen and (min-width: 64em) {
  .header-top {
    padding: 12px 30px;
  }
}
.header-top-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .header-top-inner {
    display: flex;
    justify-content: space-between;
  }
}
.header-top-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 64em) {
  .header-top-left {
    justify-content: flex-start;
  }
}
.header-top-left ul {
  display: flex;
}
@media only screen and (min-width: 64em) {
  .header-top-left ul {
    margin-right: 30px;
  }
}
.header-top-left ul li:not(:last-child) {
  margin-right: 10px;
}
.header-top-left ul li a {
  width: 26px;
  height: 26px;
  text-indent: -99999px;
  border-radius: 50%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.header-top-left ul li a:hover {
  filter: invert(57%) sepia(74%) saturate(396%) hue-rotate(131deg) brightness(93%) contrast(87%);
}
.header-top-left ul li a.fb {
  background-image: url("/images/icon/icon-facebook.svg");
}
.header-top-left ul li a.linkedin {
  background-image: url("/images/icon/icon-linkedin.svg");
}
.header-top-left ul li a.instagram {
  background-image: url("/images/icon/icon-instagram.svg");
}
.header-top-left .tel-header a {
  font-size: 14px;
  line-height: 1.57;
  text-align: left;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .header-top-left .tel-header a {
    pointer-events: none;
  }
}
.header-top-left .tel-header a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("/images/icon/icon-telephone-white.svg") no-repeat center;
  margin-right: 11px;
  background-size: 100%;
}
.header-top-right {
  display: none;
}
@media only screen and (min-width: 64em) {
  .header-top-right {
    display: block;
  }
  .header-top-right ul {
    display: flex;
  }
  .header-top-right ul li:not(:last-child) {
    margin-right: 30px;
  }
}

.header-content {
  position: relative;
}
@media only screen and (min-width: 64em) {
  .header-content {
    padding: 0 30px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  }
}
@media only screen and (min-width: 64em) {
  .header-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1410px;
    margin: 0 auto;
  }
}
.header-content-btn {
  display: none;
}
@media only screen and (min-width: 64em) {
  .header-content-btn {
    display: block;
  }
}

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

	Sidebar

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

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

	Familles du catalogue

*/
.family-list {
  margin-top: 60px;
}
.family-list:empty {
  display: none;
}
@media only screen and (min-width: 48em) {
  .family-list {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 78em) {
  .family-list {
    margin: 60px -135px;
  }
  .family-list:last-child {
    margin-bottom: 0;
  }
}
.family-list-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #fff;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0);
}
.family-list-item:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 48em) {
  .family-list-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .family-list-item {
    width: calc(33.3333% - 30px);
  }
}
.family-list-item .noPhoto {
  height: 260px;
}
.family-list-item .noPhoto::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(14, 77, 77) 14%, rgba(14, 77, 77, 0.85) 33%, rgba(14, 77, 77, 0) 42%, rgba(14, 77, 77, 0.8) 100%);
  mix-blend-mode: multiply;
}
.family-list-item h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  margin: 0;
  padding: 30px 20px 20px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
@media only screen and (min-width: 64em) {
  .family-list-item h2 {
    font-size: 25px;
    padding: 30px 30px 22px 30px;
  }
}
.family-list-item h2::after {
  content: url("/images/icon/icon-arrow-green-bg.svg");
  margin-left: 30px;
  height: 40px;
}

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

	Produits du catalogue

*/
@media only screen and (min-width: 64em) {
  body.catalogProductsList:not(.ru-family) .entry-header {
    margin-bottom: 60px;
  }
  body.catalogProductsList:not(.ru-family) .entry-content {
    padding: 0 30px;
    display: flex;
  }
  body.catalogProductsList:not(.ru-family) .entry-content-inner {
    max-width: 100%;
    width: calc(100% - 320px);
    padding: 0 0 0 30px;
  }
}
@media only screen and (min-width: 78em) {
  body.catalogProductsList:not(.ru-family) .entry-content {
    padding: 0 30px;
    display: flex;
  }
  body.catalogProductsList:not(.ru-family) .entry-content-inner {
    width: calc(100% - 360px);
    padding: 0 20px 0 50px;
  }
}
@media only screen and (min-width: 90em) {
  body.catalogProductsList:not(.ru-family) .entry-content-inner {
    padding: 0 60px;
  }
}

.catalog > h1, .catalog #blocTri {
  display: none;
}

.cat-search .catalog #blocTri {
  display: block;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .cat-search .catalog #blocTri {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cat-search .catalog #blocTri h2 {
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .cat-search .catalog #blocTri {
    margin: 0 -120px 60px;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 90em) {
  .cat-search .catalog #blocTri {
    margin-right: -225px;
    margin-left: -225px;
  }
}
.cat-search .catalog #blocTri select {
  width: auto;
}
.cat-search .family-desc {
  margin-top: 0;
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .cat-search .family-desc {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .cat-search .list-product {
    margin: 0 -130px;
  }
}
@media only screen and (min-width: 90em) {
  .cat-search .list-product {
    margin: 0 -240px;
  }
}
@media only screen and (min-width: 78em) {
  .cat-search .short_product {
    width: calc(33.333% - 20px);
  }
}
@media only screen and (min-width: 90em) {
  .cat-search .short_product {
    width: calc(33.333% - 30px);
  }
}

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

.family-desc {
  margin-top: 60px;
}
@media only screen and (min-width: 48em) {
  .family-desc {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .family-desc {
    margin-top: 30px;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.family-desc p:last-child {
  margin-bottom: 0;
}

.legal-vivafi {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #0e4d4d;
  margin: 30px 0;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  .legal-vivafi {
    font-size: 18px;
    line-height: 1.44;
    margin: 40px 0 60px;
  }
}
.legal-vivafi h3 {
  font-size: 26px;
}

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

	Filtre

*/
@media only screen and (min-width: 64em) {
  #leftbar {
    width: 320px;
  }
}
@media only screen and (min-width: 78em) {
  #leftbar {
    width: 360px;
  }
}

#blocTri {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  #blocTri {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 78em) {
  #blocTri {
    margin-bottom: 60px;
  }
}
#blocTri .nbProducts {
  font-size: 14px;
  line-height: 1.57;
  text-align: center;
  color: #000;
  margin: -10px 0 10px;
}
@media only screen and (min-width: 64em) {
  #blocTri .nbProducts {
    margin: 0;
  }
}

#sort_form select {
  font-family: "Neutra Text", Garamond, Times, serif;
  font-weight: bold;
  margin: 0;
}
@media only screen and (min-width: 78em) {
  #sort_form select {
    padding: 10px 40px 10px 20px;
  }
}

.box-filtre {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .box-filtre {
    margin-bottom: 0;
  }
}
.box-filtre .prop_3 label.inline, .box-filtre .prop_5 label.inline, .box-filtre .prop_7 label.inline {
  display: none !important;
}
.box-filtre label[for=prop_24maxid], .box-filtre label[for=prop_10maxid] {
  display: none !important;
}
.box-filtre .total, .box-filtre .submit {
  display: none;
}
.box-filtre .fieldGroup {
  overflow: inherit;
}

.box-filtre-mobile {
  border-radius: 20px;
  background-color: #e0f4f4;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (min-width: 64em) {
  .box-filtre-mobile {
    display: none;
  }
}
.box-filtre-mobile .content-filtre-selection {
  margin: 0 0 -10px;
  width: calc(100% - 115px);
}
.box-filtre-mobile .content-filtre-selection .enleverFiltre {
  width: 18px;
  overflow: hidden;
  margin-left: 0;
}
.box-filtre-mobile button {
  border-radius: 50px;
  background: url("/images/icon/icon-filtres.svg") no-repeat 15px center, #32b4b4;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.57;
  color: #fff;
  padding: 8px 15px 6px 45px;
  text-transform: uppercase;
}

.box-filtre-content {
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  background: #e0f4f4;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: auto;
  padding: 20px;
}
@media only screen and (min-width: 64em) {
  .box-filtre-content {
    position: relative;
    right: auto;
    height: auto;
    top: auto;
    padding: 30px;
    border-radius: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .box-filtre-content {
    padding: 60px 40px;
  }
}
.open-filtre .box-filtre-content {
  right: 0;
}
.box-filtre-content .close-btn {
  background: url("/images/icon/icon-close.svg") no-repeat center;
  width: 44px;
  height: 44px;
  margin: 0 0 0 auto;
  text-indent: -9999px;
  display: block;
}
@media only screen and (min-width: 64em) {
  .box-filtre-content .close-btn {
    display: none;
  }
}

.box-filtre-titre {
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 25px;
  font-weight: bold;
  color: #32b4b4;
  line-height: 1;
  margin: 10px 0 30px;
}

.content-filtre-selection {
  display: flex;
  flex-wrap: wrap;
}
.box-filtre-content .content-filtre-selection:empty {
  display: none;
}
.content-filtre-selection a {
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1.57;
  font-family: "Neutra Text", Garamond, Times, serif;
}
.content-filtre-selection a:not(.enleverFiltre) {
  background: #000;
  border-radius: 3px;
  color: #fff;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
}
.content-filtre-selection a:not(.enleverFiltre)::after {
  width: 16px;
  height: 16px;
  display: inline-block;
  content: "";
  background: url("/images/icon/icon-close-little.svg") no-repeat;
  background-size: 100%;
  margin-left: 5px;
}
.content-filtre-selection a.enleverFiltre {
  color: #fc3939;
  margin: 0 0 10px 10px;
  font-size: 12px;
  line-height: 1.67;
  text-transform: uppercase;
  font-family: "Barlow", Arial, sans-serif;
}
.content-filtre-selection a.enleverFiltre::before {
  content: url("/images/icon/icon-delete.svg");
  height: 18px;
  margin-right: 8px;
}

.box-filtre-inner {
  max-width: 500px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .box-filtre-inner {
    margin: 0;
  }
}

@media only screen and (min-width: 64em) {
  .box_predefined_cat_search_form {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search_form {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 64em) {
  .box_predefined_cat_search_form .formulaire {
    margin-bottom: 0;
  }
}
.box_predefined_cat_search_form .groupCheckBoxUnique .multi_checkbox {
  max-width: none !important;
}
.box_predefined_cat_search_form .legend, .box_predefined_cat_search_form label.inline {
  display: block;
  float: none;
  margin: 30px 0 15px;
  line-height: 1;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 20px;
  font-weight: bold;
  color: #0e4d4d;
}
@media only screen and (min-width: 78em) {
  .box_predefined_cat_search_form .legend, .box_predefined_cat_search_form label.inline {
    margin-top: 40px;
  }
}
.box_predefined_cat_search_form .description + .legend {
  margin-top: 0;
}
.box_predefined_cat_search_form .fieldGroup {
  margin-bottom: 15px;
}
.box_predefined_cat_search_form .fieldGroup:nth-child(3) label {
  margin-top: 0;
}
.box_predefined_cat_search_form .fieldGroup select, .box_predefined_cat_search_form .fieldGroup input {
  margin-bottom: 0;
}
.box_predefined_cat_search_form .fieldGroup select {
  font-weight: bold;
  padding: 10px 20px;
}
.box_predefined_cat_search_form .select-field {
  margin-bottom: 15px;
}
.box_predefined_cat_search_form .chosen-single {
  padding-right: 50px;
  z-index: 10;
}
.box_predefined_cat_search_form .chosen-single:hover {
  background-color: #e1e1e1;
}
.box_predefined_cat_search_form .chosen-single::after {
  content: url(/images/icon/icon-chevron-down-black.svg);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.box_predefined_cat_search_form .groupCheckBoxUnique .group_multi_checkbox {
  float: none;
  width: auto;
}
.box_predefined_cat_search_form .group_multi_checkbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox {
  width: auto;
  max-width: 50%;
  margin: 0 5px 15px;
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox:last-child, .box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox:nth-last-child(2) {
  margin-bottom: 0;
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox input {
  display: none;
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox label {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  padding: 9px 15px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Neutra Text", Garamond, Times, serif;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox label:hover {
  background-color: #e1e1e1;
}
.box_predefined_cat_search_form .group_multi_checkbox .multi_checkbox input[checked=checked] + label {
  color: #fff;
  background: #000;
}

body.catalogProductDetail #leftbar {
  display: none;
}
body.catalogProductDetail main {
  background-image: linear-gradient(to bottom, rgba(225, 225, 225, 0.3) 0%, rgba(225, 225, 225, 0) 100%);
  padding-top: 15px;
  position: relative;
}
@media only screen and (min-width: 78em) {
  body.catalogProductDetail main {
    padding-top: 26px;
  }
}
body.catalogProductDetail .entry-header {
  display: none;
}
@media only screen and (min-width: 78em) {
  body.catalogProductDetail .entry-header {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    top: 30px;
    background: none;
    width: 100%;
    max-width: 1585px;
    padding: 0 5.335%;
  }
  body.catalogProductDetail .entry-header .breadcrumb, body.catalogProductDetail .entry-header .breadcrumb a {
    color: #000;
    text-align: right;
  }
  body.catalogProductDetail .entry-header .breadcrumb .separator, body.catalogProductDetail .entry-header .breadcrumb a .separator {
    background: #000;
  }
}
@media only screen and (min-width: 103.125em) {
  body.catalogProductDetail .entry-header {
    padding: 0;
    max-width: 1410px;
  }
}
body.catalogProductDetail .entry-content {
  padding: 0 5.335%;
}
body.catalogProductDetail .entry-content-inner {
  max-width: 1410px;
}

.back-listing {
  margin-bottom: 30px;
  position: relative;
  z-index: 4;
  max-width: 150px;
}
.back-listing a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.57;
  color: #000;
  text-decoration: none;
}
.back-listing a:hover {
  text-decoration: underline;
}
.back-listing a::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("/images/icon/icon-back.svg") no-repeat center;
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px 10px;
}
.product-tags li {
  border-radius: 3px;
  background-color: #e0f4f4;
  padding: 3px 6px 3px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #32b4b4;
  text-transform: uppercase;
  margin: 0 7.5px 10px;
}
.product-tags li span {
  text-transform: none;
}
.product-tags li.remise {
  background-color: #f56565;
  color: #fff;
}

.product-intro h1 {
  font-size: 30px;
  color: #000;
  text-align: left;
}
@media only screen and (min-width: 64em) {
  .product-intro h1 {
    color: #fff;
  }
}
@media only screen and (min-width: 78em) {
  .product-intro h1 {
    margin-top: 0;
    font-size: 40px;
  }
}
.product-intro h1 span {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
@media only screen and (min-width: 78em) {
  .product-intro h1 span {
    font-size: 18px;
    line-height: 1.33;
  }
}

.product-infos {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -5px 0;
}
@media only screen and (min-width: 78em) {
  .product-infos {
    margin-top: 30px;
  }
}
.product-infos li {
  margin: 0 5px 10px;
  border-radius: 5px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #000;
  padding: 2px 7.4px;
}

@media only screen and (min-width: 64em) {
  .product-top {
    display: flex;
  }
}
@media only screen and (min-width: 64em) {
  .product-top-left {
    width: 50%;
  }
}
@media only screen and (min-width: 90em) {
  .product-top-left {
    width: 55.3%;
  }
}
.product-top-left .product-picture {
  margin: 30px 0;
}
@media only screen and (min-width: 64em) {
  .product-top-left .product-picture {
    margin-top: 0;
  }
}
.product-top-left .product-picture-main {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.product-top-left .product-picture-main:empty {
  min-height: 250px;
  background: url("/images/bg/vehicule-en-preparation.jpg") no-repeat center, #fff;
  background-size: contain;
}
@media only screen and (min-width: 78em) {
  .product-top-left .product-picture-main:empty {
    min-height: 400px;
    background-size: auto;
  }
}
.product-top-left .product-picture-main.venduImg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/images/bg/vendu.svg") no-repeat center, rgba(255, 255, 255, 0.7);
  background-size: auto 58%;
}
@media only screen and (min-width: 30em) {
  .product-top-left .product-picture-main.venduImg::before {
    background-size: auto;
  }
}
.product-top-left .product-picture-additionnals {
  display: flex;
  margin: 10px -5px 0;
}
@media only screen and (min-width: 90em) {
  .product-top-left .product-picture-additionnals {
    margin: 15px -7.5px 0;
  }
}
.product-top-left .product-picture-additionnals li {
  width: calc(33.333% - 10px);
  margin: 0 5px;
  height: 80px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .product-top-left .product-picture-additionnals li {
    height: 120px;
  }
}
@media only screen and (min-width: 90em) {
  .product-top-left .product-picture-additionnals li {
    height: 184px;
    width: calc(33.333% - 15px);
    margin: 0 7.5px;
  }
}
.product-top-left .product-picture-additionnals li a {
  width: 100%;
  height: 100%;
}
.product-top-left .product-picture-additionnals li:first-child {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
@media only screen and (min-width: 90em) {
  .product-top-left .product-picture-additionnals li:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.product-top-left .product-picture-additionnals li:nth-child(3), .product-top-left .product-picture-additionnals li:nth-child(2):last-child, .product-top-left .product-picture-additionnals li:first-child:last-child {
  border-radius: 0 10px 10px 0;
}
@media only screen and (min-width: 90em) {
  .product-top-left .product-picture-additionnals li:nth-child(3), .product-top-left .product-picture-additionnals li:nth-child(2):last-child, .product-top-left .product-picture-additionnals li:first-child:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.product-top-left .product-picture-additionnals li:nth-child(3):not(:last-child) {
  position: relative;
}
.product-top-left .product-picture-additionnals li:nth-child(3):not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/images/icon/icon-more.svg") no-repeat center, rgba(0, 0, 0, 0.5);
  background-size: 30px;
}
@media only screen and (min-width: 90em) {
  .product-top-left .product-picture-additionnals li:nth-child(3):not(:last-child) a::after {
    background-size: 50px;
  }
}
.product-top-left .product-picture-additionnals li:nth-child(n+4) {
  display: none;
}
@media only screen and (min-width: 64em) {
  .product-top-right {
    width: 50%;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-top-right {
    padding-left: 60px;
    width: 44.7%;
  }
}
.product-top-right-infos {
  background: url("/images/bg/bg-info.png") no-repeat center, #0e4d4d;
  border-radius: 30px;
  padding: 30px 8%;
}
@media only screen and (min-width: 78em) {
  .product-top-right-infos {
    padding: 60px;
    border-radius: 50px;
  }
}
.product-top-right-infos .price {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1;
}
@media only screen and (min-width: 64em) {
  .product-top-right-infos .price {
    margin-top: 30px;
  }
}
.product-top-right-infos .price span > span {
  font-size: 12px;
  font-weight: normal;
}
.product-top-right-infos .price span:first-child:not(:last-child) {
  margin-right: 10px;
}
.product-top-right-infos .price .prix_barre {
  text-decoration: line-through;
  font-size: 18px;
  color: #f56565;
}
.product-top-right-infos .price-credit {
  font-size: 40px;
  font-weight: bold;
  color: #32b4b4;
  line-height: 1;
  margin: 10px 0 30px;
}
.product-top-right-infos .price-credit span {
  font-size: 12px;
  font-weight: normal;
  color: #fff;
}
.product-top-right-infos .price-credit span:first-child {
  display: block;
}
.product-top-right-infos .price-credit .popup-vivafi {
  z-index: 15;
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 10px;
  text-indent: -9999px;
  background: url(/images/icon/icon-info.svg) no-repeat center;
  vertical-align: bottom;
}
.product-top-right-infos .legal {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.57;
  color: #fff;
  margin: 20px 0 30px;
}
.product-top-right-infos .legal h3 {
  font-size: 16px;
  color: #fff;
}
.product-top-right-infos .legal p {
  font-weight: 400;
}
.product-top-right-infos .legal br {
  display: none;
}
@media only screen and (min-width: 64em) {
  .product-top-right-infos .legal br {
    display: block;
  }
}
.product-top-right-infos .btn-demande a {
  margin: 0;
  padding: 16px 55px 15px 25px;
  background-image: url("/images/icon/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
@media only screen and (min-width: 78em) {
  .product-top-right-infos .btn-demande a {
    font-size: 18px;
  }
}
.product-top-right-infos .btn-demande.neuf + .btn-demande {
  display: none;
}
.product-top-right-infos .btn-financement {
  margin-top: 10px;
}
.product-top-right-infos .link-financement {
  margin-top: 10px;
}
.product-top-right-infos .link-financement a {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.67;
  color: #fff;
  background: url(/images/icon/icon-question.svg) no-repeat left center;
  padding: 2.5px 0 2.5px 20px;
}
.product-top-right-quest {
  border-radius: 30px;
  background-color: #e0f4f4;
  margin-top: 30px;
  padding: 30px 8%;
  text-align: center;
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 78em) {
  .product-top-right-quest {
    padding: 60px;
    border-radius: 50px;
  }
}
.product-top-right-quest p {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
.product-top-right-quest p.product-top-right-quest-title {
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 0 auto 5px;
}
@media only screen and (min-width: 78em) {
  .product-top-right-quest p.product-top-right-quest-title {
    font-size: 25px;
  }
}
.product-top-right-quest p.product-top-right-quest-title + p {
  margin-top: 0;
}
.product-top-right-quest-tel a {
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  color: #32b4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.product-top-right-quest-tel a::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("/images/icon/icon-telephone-green.svg") no-repeat center;
  background-size: 100%;
  margin-right: 10px;
}
.product-top-right-bloc {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 30px -5px 0;
}
@media only screen and (min-width: 78em) {
  .product-top-right-bloc {
    margin-top: 40px;
  }
}
.product-top-right-bloc-item {
  border-radius: 5px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  width: calc(33.333% - 5px);
  margin: 0 2.5px;
  font-size: 10px;
  font-weight: bold;
  color: #0e4d4d;
  padding: 50px 10px 10px;
  line-height: 1.2;
  position: relative;
  max-width: 125px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.product-top-right-bloc-item:hover {
  background: #32b4b4;
  color: #fff;
}
.product-top-right-bloc-item:hover::before {
  filter: brightness(100);
}
@media only screen and (min-width: 22.5em) {
  .product-top-right-bloc-item {
    font-size: 12px;
  }
}
@media only screen and (min-width: 78em) {
  .product-top-right-bloc-item {
    font-size: 14px;
    line-height: 1.3;
    padding: 60px 20px 15px;
  }
}
.product-top-right-bloc-item::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  border: solid 1px #0e4d4d;
  border-radius: 50%;
}
@media only screen and (min-width: 78em) {
  .product-top-right-bloc-item::before {
    top: 15px;
  }
}
.product-top-right-bloc-item.contact::before {
  background-image: url("/images/icon/icon-message.svg");
}
.product-top-right-bloc-item.contact .viewproduct a.neuf + a {
  display: none;
}
.product-top-right-bloc-item.callback::before {
  background-image: url("/images/icon/icon-callback.svg");
}
.product-top-right-bloc-item.visio::before {
  background-image: url("/images/icon/icon-visio.svg");
}
.product-top-right-bloc-item p {
  margin: 0;
}

.product-carac {
  border-radius: 30px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  margin-top: 30px;
  padding: 30px 5.975%;
}
@media only screen and (min-width: 78em) {
  .product-carac {
    padding: 60px;
    margin-top: 60px;
  }
}
.product-carac h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  margin: 0 0 30px;
}
@media only screen and (min-width: 78em) {
  .product-carac h2 {
    font-size: 25px;
    margin-bottom: 60px;
    line-height: 1;
  }
}
.product-carac ul {
  margin: 0;
}
.product-carac ul li {
  margin: 0;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 78em) {
  .product-carac ul li {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 30px;
  }
}
.product-carac ul li:nth-of-type(2n+1) {
  border-radius: 3px;
  background-color: rgba(225, 225, 225, 0.3);
}
.product-carac ul li span:last-child {
  font-weight: bold;
}

.product-toggle {
  margin-top: 30px;
  border-radius: 30px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  padding: 30px 5.975%;
}
@media only screen and (min-width: 78em) {
  .product-toggle {
    padding: 60px;
    margin-top: 60px;
  }
}
.product-toggle-title {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}
.product-toggle-title-inner {
  display: flex;
  flex-wrap: nowrap;
  padding: 10px;
  border-radius: 50px;
  background-color: rgba(225, 225, 225, 0.3);
}
@media only screen and (min-width: 48em) {
  .product-toggle-title-inner {
    margin: 0 auto;
  }
}
.product-toggle-title a {
  white-space: nowrap;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  padding: 15px 25px;
  line-height: 1.2;
  border-radius: 50px;
}
@media only screen and (min-width: 78em) {
  .product-toggle-title a {
    font-size: 18px;
    padding: 13px 25px;
  }
}
.product-toggle-title a:not(:last-child) {
  margin-right: 10px;
}
.product-toggle-title a#current {
  background: #000;
  color: #fff;
}
.product-toggle-content {
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.67;
}
@media only screen and (min-width: 64em) {
  .product-toggle-content {
    font-size: 14px;
  }
}
@media only screen and (min-width: 78em) {
  .product-toggle-content {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 60px;
  }
}
.product-toggle-content-item ul {
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.product-toggle-content-item ul li:not(.dropdown) {
  margin: 0;
  padding: 8px 15px;
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item ul li:not(.dropdown) {
    width: 50%;
    padding: 10px 30px;
  }
}
.product-toggle-content-item ul li:not(.dropdown):nth-of-type(2n+1):not(.read-more) {
  border-radius: 3px;
  background-color: rgba(225, 225, 225, 0.3);
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item ul li:not(.dropdown):nth-of-type(2n+1):not(.read-more) {
    background: none;
  }
}
.product-toggle-content-item ul li:not(.dropdown):nth-of-type(2n+1) + .dropdown ul li:nth-of-type(2n+1) {
  border-radius: 0;
  background-color: #fff;
}
.product-toggle-content-item ul li:not(.dropdown):nth-of-type(2n+1) + .dropdown ul li:nth-of-type(2n+2) {
  border-radius: 3px;
  background-color: rgba(225, 225, 225, 0.3);
}
@media only screen and (min-width: 78em) {
  .product-toggle-content-item ul li:not(.dropdown):nth-child(4n+1):not(.read-more), .product-toggle-content-item ul li:not(.dropdown):nth-child(4n+2):not(.read-more) {
    background: rgba(225, 225, 225, 0.3);
  }
}
.product-toggle-content-item ul li.dropdown {
  margin: 0;
  display: none;
}
.product-toggle-content-item ul li.read-more {
  text-align: center;
  background: #fff;
  background: url("/images/icon/icon-arrow-bottom-black.svg") no-repeat center;
  text-indent: -9999px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  padding: 20px 0 0;
}
.product-toggle-content-item ul li.read-more::before {
  content: "";
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  height: 180px;
  width: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.product-toggle-content-item ul li.read-more.open {
  transform: rotate(180deg);
}
.product-toggle-content-item ul li.read-more.open::before {
  opacity: 0;
}

.product-comment {
  margin-top: 30px;
  max-width: 930px;
  margin: 30px auto 0;
}
.product-comment p:first-child::before {
  content: "À noter : ";
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (min-width: 78em) {
  .product-comment {
    margin-top: 60px;
  }
}

.associated_product {
  margin: 60px 0 0;
}
@media only screen and (min-width: 78em) {
  .associated_product {
    margin-top: 90px;
  }
}

.legal-mention {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #0e4d4d;
  margin: 30px 0;
}
.legal-mention h3 {
  font-size: 26px;
}
@media only screen and (min-width: 78em) {
  .legal-mention {
    margin-top: 0px;
    margin-bottom: 60px;
  }
}

.error-vivafi {
  color: #fc3939;
}
.error-vivafi h3 {
  color: #fc3939;
  margin: 0;
}
.error-vivafi p {
  margin: 0;
}

.short_product {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.short_product:hover {
  background: #e0f4f4;
  border-color: #32b4b4;
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 90em) {
  .short_product {
    width: calc(50% - 30px);
    margin: 0 15px 60px;
  }
}
@media only screen and (min-width: 103.125em) {
  .short_product {
    width: calc(33.333% - 30px);
  }
}
@media only screen and (min-width: 120em) {
  .short_product {
    max-width: 440px;
  }
}
.short_product_img {
  position: relative;
  height: 220px;
  background: url("/images/bg/vehicule-en-preparation.jpg") no-repeat center top, #fff;
  background-size: auto 90%;
}
@media only screen and (min-width: 78em) {
  .short_product_img {
    height: 300px;
  }
}
.short_product_img .tags {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 3;
}
.short_product_img .tags > span {
  border-radius: 3px;
  background-color: #32b4b4;
  padding: 5px 8px 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  margin: 0 7.5px 10px;
}
.short_product_img .tags > span > span {
  text-transform: none;
}
.short_product_img .novelty {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #e0f4f4;
  text-align: center;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #32b4b4;
  padding-top: 3px;
  border-radius: 20px 20px 0 0;
}
@media only screen and (min-width: 78em) {
  .short_product_img .novelty {
    padding-top: 7px;
    padding-bottom: 4px;
  }
}
.short_product_img .remise {
  position: absolute;
  top: 15px;
  bottom: auto;
  left: 10px;
  z-index: 3;
  border-radius: 3px;
  background-color: #f56565;
  padding: 5px 8px 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.short_product_img .venduImg + .novelty {
  display: none;
}
.short_product_img .venduImg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/images/bg/vendu.svg") no-repeat center, rgba(255, 255, 255, 0.7);
  background-size: auto 58%;
}
.short_product_txt {
  padding: 20px;
}
@media only screen and (min-width: 78em) {
  .short_product_txt {
    padding: 30px;
  }
  .short_product_txt .down {
    display: flex;
    align-items: flex-end;
    margin-top: 30px;
  }
  .short_product_txt .price {
    width: 190px;
    padding-right: 20px;
  }
}
.short_product_txt h3 {
  font-size: 25px;
  margin: 0 0 15px;
  color: #000;
}
.short_product_txt h3 span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  font-family: "Barlow", Arial, sans-serif;
}
.short_product_txt .price-little {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  color: #000;
}
.short_product_txt .price-little span > span {
  font-size: 12px;
  font-weight: normal;
}
.short_product_txt .price-little .prix_barre {
  text-decoration: line-through;
  font-size: 18px;
  color: #f56565;
  font-size: 16px;
}
.short_product_txt .price-credit {
  margin: 0;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
  color: #32b4b4;
}
.short_product_txt .price-credit span {
  font-size: 12px;
  color: #0e4d4d;
  font-weight: 400;
}
.short_product_txt .price-credit span:first-child {
  margin-right: 4px;
}
.short_product_txt .price-credit span:last-child {
  margin-left: 4px;
}
@media only screen and (min-width: 78em) {
  .short_product_txt .price-credit span {
    display: block;
  }
  .short_product_txt .price-credit span:first-child {
    margin-bottom: 2px;
    margin-right: 0;
  }
  .short_product_txt .price-credit span:last-child {
    margin-top: 2px;
    margin-left: 0;
  }
}
.short_product_txt .price-credit .popup-vivafi {
  z-index: 15;
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 10px;
  text-indent: -9999px;
  background: url(/images/icon/icon-info.svg) no-repeat center;
  vertical-align: bottom;
  top: 2px;
}
.short_product_txt .product-infos {
  margin-top: 20px;
  margin-bottom: -10px;
}
@media only screen and (min-width: 78em) {
  .short_product_txt .product-infos {
    margin-top: 0;
    justify-content: flex-end;
    width: calc(100% - 190px);
  }
}

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

	Page détail directory

*/
.directoryEntryDetail .breadcrumb {
  text-align: left;
}

@media only screen and (min-width: 48em) {
  .agence-intro {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .agence-intro {
    margin-bottom: 90px;
  }
}
.agence-intro-txt {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .agence-intro-txt {
    margin: 0;
    width: 50%;
    padding-right: 60px;
  }
}
.agence-intro-txt .infos {
  padding-left: 30px;
  background: no-repeat left 3px;
}
.agence-intro-txt .infos.add {
  background-image: url(/images/icon/icon-adresse.svg);
  background-size: 18px;
  background-position: left top;
}
.agence-intro-txt .infos.hor {
  background-image: url(/images/icon/icon-horaires.svg);
}
@media only screen and (min-width: 78em) {
  .agence-intro-txt h2 {
    font-size: 30px;
  }
}
.agence-intro-txt h3 {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .agence-intro-txt h3 {
    font-size: 26px;
  }
}
.agence-intro-txt p {
  margin: 5px 0 20px;
}
.agence-intro-btn {
  margin: 20px -5px -5px;
}
@media only screen and (min-width: 78em) {
  .agence-intro-btn {
    margin-top: 30px;
  }
}
.agence-intro-btn a {
  margin: 5px;
}
@media only screen and (min-width: 78em) {
  .agence-intro-btn a {
    font-size: 20px;
  }
}

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

@media only screen and (min-width: 48em) {
  .picto-reassu {
    display: flex;
    justify-content: center;
  }
}
.picto-reassu div {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .picto-reassu div {
    margin: 0 15px;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
  }
}
@media only screen and (min-width: 64em) {
  .picto-reassu div {
    margin: 0 30px;
  }
}
@media only screen and (min-width: 78em) {
  .picto-reassu div {
    font-size: 16px;
    line-height: 1.2;
    margin: 0 40px;
  }
}
.picto-reassu div br {
  display: none;
}
@media only screen and (min-width: 48em) {
  .picto-reassu div br {
    display: inline;
  }
}
.picto-reassu div img {
  margin-right: 15px;
}
@media only screen and (min-width: 48em) {
  .picto-reassu div img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.directoryEntryDetail .entry-header {
  margin-bottom: 0;
}
.directoryEntryDetail .entry-header-inner {
  max-width: 1410px;
  margin: 0 auto;
}
@media only screen and (min-width: 64em) {
  .directoryEntryDetail .entry-header-inner .txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.directoryEntryDetail h1 {
  margin-top: 10px;
  font-size: 20px;
  text-align: left;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail h1 {
    font-size: 30px;
  }
}
.directoryEntryDetail h1 > span {
  display: block;
  margin-top: 15px;
  font-size: 35px;
  text-transform: uppercase;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail h1 > span {
    font-size: 60px;
  }
}
.directoryEntryDetail .phone-intro {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .phone-intro {
    font-size: 30px;
  }
}
.directoryEntryDetail .phone-intro::before {
  content: url("/images/icon/icon-telephone-white.svg");
  margin-right: 10px;
}
.directoryEntryDetail .entry-content-inner {
  max-width: 1410px;
}
.directoryEntryDetail .entry-content .product_detail {
  padding-top: 30px;
}
@media only screen and (min-width: 64em) {
  .directoryEntryDetail .entry-content .product_detail {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-left {
    width: 60%;
    padding: 60px 60px 90px 0;
    max-width: 750px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left ul:not(.multi) > li {
  display: flex;
}
.directoryEntryDetail .entry-content .product_detail .product-left ul:not(.multi) > li::before {
  content: url("/images/icon/icon-monogram.svg");
  margin-right: 10px;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact {
  padding: 30px;
  background: #e0f4f4;
  border-radius: 20px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact {
    padding: 40px;
    position: relative;
  }
}
@media only screen and (min-width: 90em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact {
    padding: 60px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .infos {
  padding-left: 30px;
  background: no-repeat left 3px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact .infos {
    width: calc(100% - 170px);
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .infos.add {
  background-image: url(/images/icon/icon-adresse.svg);
  background-size: 18px;
  background-position: left top;
  margin-bottom: 30px;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .infos.hor {
  background-image: url(/images/icon/icon-horaires.svg);
  margin-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact .infos.hor {
    margin: 0;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .infos > h3 {
  margin: 0;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .infos > p {
  margin: 10px 0 0;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact > .btn-full-green, .directoryEntryDetail .entry-content .product_detail .product-left .contact > input[type=submit] {
  margin: 0;
  font-size: 20px;
  padding: 10px 20px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact > .btn-full-green, .directoryEntryDetail .entry-content .product_detail .product-left .contact > input[type=submit] {
    position: absolute;
    right: 60px;
    top: 60px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi {
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact .multi {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li {
  margin: 0;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li:not(:last-child) {
    margin: 0;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li h3 {
  font-size: 25px;
  padding-left: 30px;
  background: url(/images/icon/icon-adresse.svg) no-repeat left top;
  background-size: 18px;
  margin: 0 0 10px;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li h3 + p {
  margin-top: 0;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li p:last-child {
  margin-bottom: 0;
}
.directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li .btn-full-green, .directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li input[type=submit] {
  margin: 0;
}
@media only screen and (min-width: 90em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li .btn-full-green, .directoryEntryDetail .entry-content .product_detail .product-left .contact .multi li input[type=submit] {
    font-size: 20px;
    padding: 10px 20px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .tac_iframe > iframe {
  border-radius: 20px;
  width: 100%;
  height: 400px;
}
.directoryEntryDetail .entry-content .product_detail .product-left .map-agence {
  margin: 30px 0 40px;
}
.directoryEntryDetail .entry-content .product_detail .product-left .map-agence .generatedGoogleMap {
  height: 400px !important;
}
@media only screen and (min-width: 64em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .avantages {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-left .avantages .avantage {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 64em) {
  .directoryEntryDetail .entry-content .product_detail .product-left .avantages .avantage {
    flex-direction: column;
    text-align: center;
  }
  .directoryEntryDetail .entry-content .product_detail .product-left .avantages .avantage > p {
    margin: 0;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-right {
  margin-top: 60px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-right {
    margin-top: 0;
    width: 40%;
    max-width: 655px;
    padding: 60px 0 90px 60px;
    border-left: 1px solid #e1e1e1;
  }
}
@media only screen and (min-width: 90em) {
  .directoryEntryDetail .entry-content .product_detail .product-right {
    padding-left: 80px;
    max-width: 675px;
  }
}
@media only screen and (min-width: 103.125em) {
  .directoryEntryDetail .entry-content .product_detail .product-right .intro-form {
    margin-right: -75px;
  }
}
@media only screen and (min-width: 120em) {
  .directoryEntryDetail .entry-content .product_detail .product-right .intro-form {
    margin-right: -112px;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-right .intro-form > h3 {
  color: #000;
  font-size: 25px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_detail .product-right .formulaire {
    margin-top: 0;
  }
}
.directoryEntryDetail .entry-content .product_detail .product-right .formulaire .form_creator_header > p {
  color: #000;
}
.directoryEntryDetail .entry-content .product_text {
  padding-top: 60px;
  max-width: 930px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .entry-content .product_text {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 103.125em) {
  .directoryEntryDetail .entry-content .product_text {
    padding-top: 120px;
  }
}
.directoryEntryDetail .product_detail + hr {
  border-color: #e1e1e1;
  padding: 0;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.directoryEntryDetail .product_text > .faq {
  margin-bottom: 60px;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .product_text > .faq {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 103.125em) {
  .directoryEntryDetail .product_text > .faq {
    margin-bottom: 120px;
  }
}
.directoryEntryDetail .product_text > .faq > h2 {
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .directoryEntryDetail .product_text > .faq > h2 {
    margin-bottom: 40px;
  }
}

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

	Page listing directory

*/
.map-agence {
  margin: 60px 0;
}
@media only screen and (min-width: 78em) {
  .map-agence {
    margin: 60px -120px;
  }
  body.directoryEntryDetail .map-agence {
    margin: 30px 0;
  }
}
.map-agence .generatedGoogleMap {
  max-width: 100% !important;
  width: 100% !important;
  height: 280px !important;
  border-radius: 20px;
}
@media only screen and (min-width: 48em) {
  .map-agence .generatedGoogleMap {
    height: 400px !important;
  }
}
@media only screen and (min-width: 90em) {
  .map-agence .generatedGoogleMap {
    height: 550px !important;
  }
}
.map-agence + .btn-more .btn-full-black {
  margin-top: 0;
}

@media only screen and (min-width: 48em) {
  .directory-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
}
@media only screen and (min-width: 78em) {
  .directory-list {
    margin: 0 -135px;
  }
}

.short_directory {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.short_directory:hover {
  background: #e0f4f4;
  border-color: #32b4b4;
}
@media only screen and (min-width: 48em) {
  .short_directory {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .short_directory {
    width: calc(33.3333% - 30px);
  }
}
.short_directory_img {
  height: 200px;
}
@media only screen and (min-width: 90em) {
  .short_directory_img {
    height: 250px;
  }
}
.short_directory_img > div {
  height: 100%;
}
.short_directory_txt {
  padding: 30px 30px 35px;
  background: url("/images/icon/icon-arrow-green.svg") no-repeat calc(100% - 30px) calc(100% - 30px);
}
.short_directory_txt h2 {
  font-size: 20px;
  margin: 0 0 5px;
}
@media only screen and (min-width: 90em) {
  .short_directory_txt h2 {
    font-size: 25px;
  }
}
.short_directory_txt p {
  margin: 5px 0;
}
.short_directory_txt p.tel {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  color: #32b4b4;
  display: flex;
  align-items: center;
}
.short_directory_txt p.tel::before {
  content: url("/images/icon/icon-telephone-green.svg");
  margin-right: 10px;
  height: 21px;
}
.googleMapBulle .short_directory {
  width: 100%;
  margin: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.googleMapBulle .short_directory_img {
  height: 100px;
}
.googleMapBulle .short_directory_txt {
  padding: 10px 0 0;
  background: none;
}
.googleMapBulle .short_directory_txt h2 {
  font-size: 18px;
}
.googleMapBulle .short_directory_txt p.tel {
  margin: 10px 0 0;
  font-size: 16px;
}

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

	Page listing actualités

*/
.article-list-item {
  position: relative;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.article-list-item:hover {
  background-color: #e0f4f4;
  background-image: url("/images/icon/icon-arrow-green-bg.svg");
  border-color: #32b4b4;
}
@media only screen and (min-width: 48em) {
  .article-list-item {
    padding: 30px 100px 30px 30px;
    background-image: url("/images/icon/icon-arrow-green.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
  }
}
@media only screen and (min-width: 90em) {
  .article-list-item {
    margin-bottom: 60px;
    padding-left: 50px;
  }
}
.article-list-item h2 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1;
}
.article-list-item .description {
  margin: 15px 0 0;
  line-height: 1.3;
}
@media only screen and (min-width: 48em) {
  .article-list-item .description {
    margin-top: 10px;
  }
}

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

	Page listing actualités

*/
@media only screen and (min-width: 48em) {
  .news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
@media only screen and (min-width: 78em) {
  .news-list {
    margin: 0 -130px;
  }
}
@media only screen and (min-width: 90em) {
  .news-list {
    margin: 0 -260px;
  }
}

.news-list-item {
  position: relative;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
  background-color: #fff;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 48em) {
  .news-list-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 90em) {
  .news-list-item {
    width: calc(33.333% - 30px);
    margin: 0 15px 60px;
  }
}
.news-list-item-img {
  height: 200px;
}
@media only screen and (min-width: 90em) {
  .news-list-item-img {
    height: 300px;
  }
}
.news-list-item-txt {
  padding: 20px;
}
@media only screen and (min-width: 48em) {
  .news-list-item-txt {
    padding: 30px 100px 30px 30px;
    background-image: url("/images/icon/icon-arrow-green.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
  }
  .news-list-item-txt:hover {
    background-color: #e0f4f4;
    background-image: url("/images/icon/icon-arrow-green-bg.svg");
    border-color: #32b4b4;
  }
}
.news-list-item h2 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1;
}
.news-list-item .description {
  margin: 15px 0 0;
  line-height: 1.3;
}
@media only screen and (min-width: 48em) {
  .news-list-item .description {
    margin-top: 10px;
  }
}

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

	Page détail actualité

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

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

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

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

	Page Contact

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

	Accueil

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

.intro-accueil {
  background-color: #0e4d4d;
  padding: 60px 8% 60px;
  position: relative;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .intro-accueil {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil {
    padding-top: 100px;
    padding-bottom: 100px;
    border-radius: 0 0 70px 70px;
  }
}
@media only screen and (min-width: 90em) {
  .intro-accueil {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.intro-accueil-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 235px;
  z-index: 1;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-img {
    width: 50%;
    height: 100%;
    left: auto;
    right: 0;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-img {
    width: 58%;
  }
}
.intro-accueil-img::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/images/bg/filtre-detail.svg") no-repeat center;
  background-size: cover;
  z-index: 2;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-img::before {
    background: url("/images/bg/filtre-detail-desktop.svg") no-repeat;
    background-size: cover;
  }
}
.intro-accueil-img img {
  position: relative;
  z-index: 1;
}
.intro-accueil-txt {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-txt {
    width: 50%;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-txt {
    max-width: 1410px;
    margin: 0 auto;
    width: 100%;
  }
  .intro-accueil-txt-inner {
    max-width: 570px;
  }
}
.intro-accueil-txt h1 {
  text-align: left;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-txt h1 {
    margin-bottom: 30px;
  }
}
.intro-accueil-txt p:last-child {
  margin-bottom: 0;
}
.intro-accueil-txt p .btn-full-green, .intro-accueil-txt p input[type=submit] {
  margin: 10px 0 0;
  padding-right: 40px;
  background-image: url("/images/icon/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
@media only screen and (min-width: 78em) {
  .intro-accueil-txt p .btn-full-green, .intro-accueil-txt p input[type=submit] {
    margin-top: 30px;
  }
}

.ru-accueil .subfooter {
  padding-top: 60px;
}
@media only screen and (min-width: 78em) {
  .ru-accueil .subfooter {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.promo-acceuil {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0;
  overflow: hidden;
  margin: 40px;
  background-color: #f56565;
  border-radius: 20px;
}
.promo-acceuil-img {
  width: 100%;
  position: relative;
  min-height: 200px;
}
.promo-acceuil-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.promo-acceuil-content {
  padding: 30px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.promo-acceuil-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0px;
  line-height: 1.1;
  color: #fff;
}
.promo-acceuil-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.promo-acceuil-content p b,
.promo-acceuil-content p strong {
  font-weight: bold;
}
.promo-acceuil-content .btn-full-black {
  margin: 10px 0 0;
  background-image: url(/images/icon/icon-arrow-right-w-b.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
.promo-acceuil-content .btn-full-black::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
.promo-acceuil-content .btn-full-black:hover {
  background-color: black;
}
@media only screen and (min-width: 48em) {
  .promo-acceuil p {
    font-size: 20px;
  }
  .promo-acceuil h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 78em) {
  .promo-acceuil {
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 75px;
    max-width: 1410px;
    margin: 60px auto;
    gap: 30px;
  }
  .promo-acceuil-img, .promo-acceuil-content {
    flex: 1 1 50%;
  }
  .promo-acceuil-content {
    padding: 60px 60px 60px 40px;
  }
  .promo-acceuil-content h2 {
    font-size: 48px;
  }
  .promo-acceuil-content p {
    font-size: 18px;
  }
  .promo-acceuil-img img {
    border-radius: 75px;
  }
  .promo-acceuil .btn-full-black {
    margin-top: 20px;
  }
}

.novelty-accueil {
  background-image: linear-gradient(to bottom, rgba(225, 225, 225, 0.3) 0%, rgba(225, 225, 225, 0) 100%);
  padding: 60px 8% 0;
  overflow: hidden;
}
@media only screen and (min-width: 78em) {
  .novelty-accueil {
    padding: 90px 4% 0;
  }
}
.novelty-accueil-inner {
  max-width: 1410px;
  margin: 0 auto;
}
.novelty-accueil-inner .list-product {
  margin: 0 calc(-3% - 15px) !important;
}
@media only screen and (min-width: 78em) {
  .novelty-accueil-inner .list-product {
    margin: 0 !important;
  }
}

.novelty-accueil-inner > h2, .associated_product > h2 {
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .novelty-accueil-inner > h2, .associated_product > h2 {
    margin-bottom: 60px;
  }
}
.novelty-accueil-inner .list-product, .associated_product .list-product {
  margin: 0 -15px;
  overflow: hidden;
}
.novelty-accueil-inner .list-product .slick-list, .associated_product .list-product .slick-list {
  padding-bottom: 30px !important;
}
@media only screen and (min-width: 78em) {
  .novelty-accueil-inner .list-product .slick-list, .associated_product .list-product .slick-list {
    padding-bottom: 60px !important;
  }
}
@media only screen and (min-width: 78em) {
  .novelty-accueil-inner .list-product, .associated_product .list-product {
    display: flex;
    margin: 0;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.novelty-accueil-inner .short_product, .associated_product .short_product {
  margin: 0 15px 0;
}
@media only screen and (min-width: 78em) {
  .novelty-accueil-inner .short_product, .associated_product .short_product {
    margin: 0;
    width: 400px;
  }
  .novelty-accueil-inner .short_product:not(.slick-current), .associated_product .short_product:not(.slick-current) {
    width: 352px;
  }
}
@media only screen and (min-width: 90em) {
  .novelty-accueil-inner .short_product, .associated_product .short_product {
    width: 440px;
  }
  .novelty-accueil-inner .short_product:not(.slick-current), .associated_product .short_product:not(.slick-current) {
    width: 440px;
  }
}

.btn-more {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .btn-more {
    margin-top: 0;
  }
}
.btn-more a {
  margin: 0;
  padding-right: 40px;
  background-image: url(/images/icon/icon-arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.find-vehicule {
  margin: 60px 0;
  padding: 0 5.335%;
}
@media only screen and (min-width: 78em) {
  .find-vehicule {
    margin: 90px 0;
  }
}
.find-vehicule-inner {
  background: #e0f4f4;
  padding: 60px 8.956%;
  max-width: 1410px;
  margin: 0 auto;
  border-radius: 30px;
}
@media only screen and (min-width: 48em) {
  .find-vehicule-inner {
    display: flex;
    align-items: center;
    padding: 60px 30px;
    background-image: url(/images/bg/bg-accueil.png);
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media only screen and (min-width: 64em) {
  .find-vehicule-inner {
    padding: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .find-vehicule-inner {
    padding: 90px;
  }
}
@media only screen and (min-width: 90em) {
  .find-vehicule-inner {
    padding: 90px 120px;
    background-size: 1170px;
  }
}
@media only screen and (min-width: 48em) {
  .find-vehicule-left {
    width: 50%;
  }
}
@media only screen and (min-width: 78em) {
  .find-vehicule-left {
    width: 420px;
  }
}
.find-vehicule-left-txt h2 {
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .find-vehicule-left-txt h2 {
    margin-bottom: 30px;
  }
}
.find-vehicule-left-metier {
  margin-top: 30px;
}
@media only screen and (min-width: 78em) {
  .find-vehicule-left-metier {
    margin-top: 50px;
  }
}
.find-vehicule-left-metier ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.find-vehicule-left-metier ul li {
  margin: 5px;
}
.find-vehicule-left-metier ul li a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  color: #000;
  border-radius: 5px;
  border: solid 1px #e1e1e1;
  background-color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  display: block;
}
.find-vehicule-left-metier ul li a:hover {
  background: #e1e1e1;
}
.find-vehicule-right {
  margin: 60px -3.4% -20px;
}
@media only screen and (min-width: 48em) {
  .find-vehicule-right {
    width: 50%;
    margin: 0 0 -20px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 64em) {
  .find-vehicule-right {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 78em) {
  .find-vehicule-right {
    width: calc(100% - 420px);
    padding-left: 100px;
  }
}
@media only screen and (min-width: 90em) {
  .find-vehicule-right {
    padding-left: 150px;
  }
}
.find-vehicule-right-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0);
}
.find-vehicule-right-item:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}
.find-vehicule-right-item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.find-vehicule-right-item h3 {
  font-size: 20px;
  color: #fff;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  background: linear-gradient(-90deg, rgb(14, 77, 77) 22%, rgba(14, 77, 77, 0) 42%, rgba(14, 77, 77, 0.8) 100%);
}
@media only screen and (min-width: 78em) {
  .find-vehicule-right-item h3 {
    font-size: 25px;
    padding: 50px 60px;
  }
}
@media only screen and (min-width: 90em) {
  .find-vehicule-right-item h3 {
    padding: 70px 60px;
  }
}
.find-vehicule-right-item h3::after {
  content: url(/images/icon/icon-arrow-green-bg.svg);
  margin-left: 15px;
  height: 40px;
}

.why-accueil {
  padding: 0 8%;
  margin: 60px 0;
}
@media only screen and (min-width: 78em) {
  .why-accueil {
    margin: 90px 0 120px;
  }
}
.why-accueil-inner {
  max-width: 1170px;
  margin: 0 auto;
}
.why-accueil-intro {
  max-width: 490px;
  margin: 0 auto 60px;
}
@media only screen and (min-width: 78em) {
  .why-accueil-intro {
    max-width: 690px;
  }
}
.why-accueil-intro h2 {
  margin-bottom: 30px;
}
.why-accueil-intro p:last-child {
  margin-bottom: 0;
}
.why-accueil-intro p:last-child a.btn-full-black {
  margin: 0;
}
@media only screen and (min-width: 78em) {
  .why-accueil-content {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 78em) {
  .why-accueil-content-txt {
    width: 395px;
    order: 2;
  }
}
.why-accueil-content-txt .subfooter {
  padding: 0;
}
@media only screen and (min-width: 78em) {
  .why-accueil-content-txt .subfooter-inner {
    display: block;
  }
}
@media only screen and (min-width: 78em) {
  .why-accueil-content-txt .subfooter-item {
    width: 100%;
    margin: 0 0 30px;
  }
  .why-accueil-content-txt .subfooter-item:last-child {
    margin-bottom: 0;
  }
  .why-accueil-content-txt .subfooter-item img {
    max-width: 60px;
    min-width: 60px;
  }
  .why-accueil-content-txt .subfooter-item-content {
    width: calc(100% - 60px);
  }
}
.why-accueil-content-img {
  margin: 0 -3%;
}
@media only screen and (min-width: 48em) {
  .why-accueil-content-img {
    margin-top: 60px;
    text-align: center;
  }
}
@media only screen and (min-width: 78em) {
  .why-accueil-content-img {
    width: calc(100% - 395px);
    order: 1;
    margin: 0;
    padding-right: 120px;
  }
}

.etape-accueil {
  position: relative;
  text-align: center;
  padding: 60px 8%;
}
@media only screen and (min-width: 64em) {
  .etape-accueil {
    padding: 60px 4%;
  }
}
@media only screen and (min-width: 78em) {
  .etape-accueil {
    padding: 90px 3% 120px;
  }
}
.etape-accueil-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.etape-accueil-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background: #0e4d4d;
  z-index: 2;
}
.etape-accueil-img img {
  z-index: 1;
}
.etape-accueil-content {
  z-index: 2;
  position: relative;
  color: #fff;
}
.etape-accueil-content h2 {
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .etape-accueil-content h2 {
    max-width: 630px;
    margin: 0 auto 60px;
  }
}
.etape-accueil-content-list {
  max-width: 275px;
  margin: 0 auto -30px;
}
@media only screen and (min-width: 64em) {
  .etape-accueil-content-list {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 78em) {
  .etape-accueil-content-list {
    justify-content: center;
  }
}
.etape-accueil-content-list-item {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .etape-accueil-content-list-item {
    width: calc(25% - 20px);
    margin-bottom: 0;
    position: relative;
  }
  .etape-accueil-content-list-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% + 39px);
    top: 23px;
    height: 11px;
    background: #32b4b4;
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 78em) {
  .etape-accueil-content-list-item {
    width: 280px;
    margin: 0 25px;
  }
  .etape-accueil-content-list-item:not(:last-child)::after {
    width: calc(100% - 29px);
  }
}
.etape-accueil-content-list-item .number {
  position: relative;
  font-family: "Neutra Text", Garamond, Times, serif;
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 50px;
}
.etape-accueil-content-list-item .number::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  display: block;
  margin: 0 auto;
  border: 10px solid #32b4b4;
  border-top: none;
  border-radius: 0 0 50px 50px;
}
.etape-accueil-content-list-item .number + p {
  font-size: 20px;
  font-family: "Neutra Text", Garamond, Times, serif;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .etape-accueil-content-list-item .number + p {
    font-size: 25px;
    max-width: 240px;
    margin: 0 auto 20px;
  }
}
.etape-accueil-content-list-item p {
  margin: 10px 0;
  line-height: 1.3;
}
.etape-accueil-content-list-item p::las {
  margin-bottom: 0;
}
.etape-accueil-content-list-item:last-child .number {
  color: #32b4b4;
}
.etape-accueil-content-list-item:last-child .number + p {
  color: #32b4b4;
}

.pres-accueil {
  padding: 0 8%;
  margin: 60px 0 90px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil {
    padding: 0 4%;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil {
    margin: 90px 0 120px;
  }
}
.pres-accueil-inner {
  max-width: 1170px;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-inner {
    display: flex;
    align-items: center;
  }
}
.pres-accueil-img {
  text-align: center;
  margin: 0 -3% 30px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-img {
    width: 50%;
    margin: 0;
    padding-left: 60px;
    order: 2;
  }
}
@media only screen and (min-width: 64em) {
  .pres-accueil-img {
    width: calc(100% - 430px);
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil-img {
    padding-left: 120px;
  }
}
@media only screen and (min-width: 48em) {
  .pres-accueil-txt {
    width: 50%;
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .pres-accueil-txt {
    width: 430px;
  }
}
.pres-accueil-txt p:last-child {
  margin-bottom: 0;
}
.pres-accueil-txt p:last-child .btn-full-black {
  margin: 10px 0 0;
  padding-right: 40px;
  background-image: url(/images/icon/icon-arrow-right-w-b.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}
@media only screen and (min-width: 78em) {
  .pres-accueil-txt p:last-child .btn-full-black {
    margin-top: 30px;
  }
}

.pres-seo {
  padding: 0 8%;
  margin: 60px 0;
}
@media only screen and (min-width: 78em) {
  .pres-seo {
    margin: 90px 0 120px;
  }
}
.pres-seo-inner {
  max-width: 930px;
  margin: 0 auto;
}

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

	Page menu

*/
.page-menu-list {
  margin-top: 60px;
}
@media only screen and (min-width: 48em) {
  .page-menu-list {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-list {
    margin: 60px -135px;
  }
  .page-menu-list:last-child {
    margin-bottom: 0;
  }
}

.page-menu-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #fff;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0);
}
.page-menu-item:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 48em) {
  .page-menu-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
  }
}
@media only screen and (min-width: 78em) {
  .page-menu-item {
    width: calc(33.3333% - 30px);
  }
  body.ru-recrutement .page-menu-item {
    width: calc(50% - 30px);
  }
}
.page-menu-item .noPhoto {
  height: 260px;
}
@media only screen and (min-width: 78em) {
  body.ru-recrutement .page-menu-item .noPhoto {
    height: 400px;
  }
}
.page-menu-item .noPhoto::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(14, 77, 77) 14%, rgba(14, 77, 77, 0.85) 33%, rgba(14, 77, 77, 0) 42%, rgba(14, 77, 77, 0.8) 100%);
  mix-blend-mode: multiply;
}
.page-menu-item h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  margin: 0;
  padding: 30px 20px 20px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
@media only screen and (min-width: 64em) {
  .page-menu-item h2 {
    font-size: 25px;
    padding: 30px 30px 22px 30px;
  }
}
@media only screen and (min-width: 78em) {
  body.ru-recrutement .page-menu-item h2 {
    padding: 30px 60px 30px 60px;
  }
}
.page-menu-item h2::after {
  content: url("/images/icon/icon-arrow-green-bg.svg");
  margin-left: 30px;
  height: 40px;
}

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

	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: #32b4b4;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.valid .icon-checked-white {
  border-radius: 100px;
  background: #32b4b4;
  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: #0e4d4d;
}

.color2 {
  color: #32b4b4;
}

.color3 {
  color: #6c6c6c;
}

.color4 {
  color: #fc3939;
}

.exergue {
  font-size: 18px;
  color: #6c6c6c;
}
@media only screen and (min-width: 78em) {
  .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 */