@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: #ffffff;
  font-family: "Rubik", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(2, 12, 38, 0.75);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
body.open {
  overflow: hidden;
  height: 100vh;
}
@media only screen and (min-width: 48em) {
  body {
    font-size: 16px;
  }
}

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

	Text selection/highlighting

*/

::selection {
  background: #013859;
  color: #ffffff;
  text-shadow: none;
}

.bandeau {
  background: linear-gradient(to bottom, #f1ad61 0%, #f19124 50%, #f19124 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .bandeau {
    font-size: 14px;
  }
}
.bandeau a {
  color: #ffffff;
  font-weight: bold;
}
.bandeau a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

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

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

	Style général des liens

*/
a {
  color: #f19124;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:hover {
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #bc6a0c;
}
a img {
  border: none;
}

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

article a {
  text-decoration: underline;
}

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

	Tous les styles de boutons

*/
.modifyAdress a, .cart-button-refresh input, .cart-button-trash input, .btn-full, .btn-full-orange, .category-list a, #boxFiltre .filtres-header-left #filtreMaSelection a, .cart .flex-center input, .widget-newsletter-field input[type=submit], input[type=submit], .btn-full-secondary, .btn-full-blue, .btn-full-primary, .btn-empty, .btn-empty-orange, .btn-empty-secondary, input[type=reset], .btn-empty-blue, .btn-empty-primary {
  cursor: pointer;
  text-align: center;
  clear: both;
  display: inline-block;
  padding: 16px 31px 17px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.modifyAdress a:hover, .cart-button-refresh input:hover, .cart-button-trash input:hover, .btn-full:hover, .btn-full-orange:hover, .category-list a:hover, #boxFiltre .filtres-header-left #filtreMaSelection a:hover, .cart .flex-center input:hover, input[type=submit]:hover, .btn-full-secondary:hover, .btn-full-blue:hover, .btn-full-primary:hover, .btn-empty:hover, .btn-empty-orange:hover, .btn-empty-secondary:hover, input[type=reset]:hover, .btn-empty-blue:hover, .btn-empty-primary:hover {
  text-decoration: none;
}

.btn-empty, .btn-empty-orange, .btn-empty-secondary, input[type=reset], .btn-empty-blue, .btn-empty-primary {
  background-color: #ffffff;
  border: 1px solid rgba(2, 12, 38, 0.15);
}
.btn-empty-blue, .btn-empty-primary {
  border-color: #013859;
  color: #013859;
}
.btn-empty-blue:hover, .btn-empty-primary:hover {
  background: #e6e6e6;
  color: #013859;
}
.btn-empty-orange, .btn-empty-secondary, input[type=reset] {
  border-color: #f19124;
  color: #f19124;
}
.btn-empty-orange:hover, .btn-empty-secondary:hover, input[type=reset]:hover {
  background: #e6e6e6;
  color: #f19124;
}
.btn-full, .btn-full-orange, .category-list a, #boxFiltre .filtres-header-left #filtreMaSelection a, .cart .flex-center input, .widget-newsletter-field input[type=submit], input[type=submit], .btn-full-secondary, .btn-full-blue, .btn-full-primary {
  border: none;
  color: #ffffff;
}
.btn-full-blue, .btn-full-primary {
  background-image: linear-gradient(to bottom, #026992 0%, #013859 50%, #013859 100%);
  background-size: 100% 200%;
  background-position: top center;
}
.btn-full-blue:hover, .btn-full-primary:hover {
  background-position: bottom center;
  color: #ffffff;
}
.btn-full-orange, .category-list a, #boxFiltre .filtres-header-left #filtreMaSelection a, .cart .flex-center input, .widget-newsletter-field input[type=submit], input[type=submit], .btn-full-secondary {
  background-image: linear-gradient(to bottom, #f1ad61 0%, #f19124 50%, #f19124 100%);
  background-size: 100% 200%;
  background-position: top center;
}
.btn-full-orange:hover, .category-list a:hover, #boxFiltre .filtres-header-left #filtreMaSelection a:hover, .cart .flex-center input:hover, input[type=submit]:hover, .btn-full-secondary:hover {
  background-position: bottom center;
  color: #ffffff;
}
/* Boutons spécifiques */
li.me-chqKdo > a::before {
  content: url("/images/icon/icon-gift.svg");
  margin-right: 6px;
  margin-top: -2px;
}

hr,
.clear {
  border: none;
  clear: both;
}
hr.trait, hr.separator,
.clear.trait,
.clear.separator {
  padding-top: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
}
@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 {
  margin: 30px 0;
}
@media only screen and (min-width: 78em) {
  .medias {
    margin: 50px 0;
  }
}
.medias .center {
  text-align: center;
}
.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;
}

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

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

	Logo

*/
#logo {
  width: calc(100% - 210px);
  padding: 0 0 0 5.4%;
}
@media only screen and (min-width: 48em) {
  #logo {
    position: relative;
    height: 70px;
    width: auto;
    padding: 0;
  }
  #logo::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 20px;
    background: url(/images/logo/logo-traits.svg) no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
  }
}
@media only screen and (min-width: 78em) {
  #logo {
    height: 100px;
  }
  #logo::before {
    width: 231px;
    height: 30px;
  }
}

#logo a {
  display: block;
  width: 100px;
  height: 20px;
  text-indent: -9999px;
  background: transparent url(/images/logo/logo-technicbois.svg) no-repeat scroll center center;
  background-size: 100%;
  max-width: 85%;
}
@media only screen and (min-width: 48em) {
  #logo a {
    height: 100%;
    width: 200px;
    margin: 0;
    max-width: 100%;
    background-size: 159px auto;
    background-position: center 28px;
  }
}
@media only screen and (min-width: 78em) {
  #logo a {
    width: 231px;
    background-size: 189px auto;
    background-position: center 45px;
  }
}

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

	Listes à puces

*/
ul li {
  list-style: none;
}
article ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
article ul li {
  margin-top: 10px;
  margin-bottom: 10px;
}
article ul li ul,
article ul li ol {
  margin-left: 20px;
}
.structured_text_semantique_text ul li::before, ul .blockList li::before, .form_creator_header ul li::before, .ckEditor ul li::before, .sitemap ul li::before, .tabs-content-item ul li::before, .product-little-desc ul li::before, .promote-accueil-desc ul li::before, .description-page ul li::before {
  content: ">";
  margin-right: 15px;
}

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

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

	Tableaux spéciaux

*/
table {
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
  border: 1px solid rgba(2, 12, 38, 0.15);
  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: rgba(81, 153, 187, 0.1);
  color: rgba(2, 12, 38, 0.5);
}
table thead th,
table thead td,
table tfoot th,
table tfoot td {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(2, 12, 38, 0.15);
  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: rgba(81, 153, 187, 0.1);
}
table tr td {
  border: 1px solid rgba(2, 12, 38, 0.15);
  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: rgba(2, 12, 38, 0.75);
  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;
  max-width: 100%;
}
.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: "Rubik";
  src: url("/images/fonts/Rubik-Regular.woff2") format("woff2"), url("/images/fonts/Rubik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("/images/fonts/Rubik-Bold.woff2") format("woff2"), url("/images/fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------

	Basic, low level typography

*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  display: block;
  font-weight: 400;
  line-height: 1.2;
  margin: 30px 0 15px;
  color: #013859;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 25px;
  font-weight: 700;
  color: #013859;
  max-width: 1000px;
}
@media only screen and (min-width: 48em) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
h1 span,
.h1 span {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
@media only screen and (min-width: 48em) {
  h1 span,
  .h1 span {
    font-size: 20px;
  }
}

h2,
.h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #013859;
  margin: 40px 0 20px;
}
@media only screen and (min-width: 48em) {
  h2,
  .h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 78em) {
  h2,
  .h2 {
    margin: 50px 0 30px;
  }
}

h3,
.h3 {
  font-size: 18px;
  color: #f19124;
}
@media only screen and (min-width: 48em) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 78em) {
  h3,
  .h3 {
    margin: 40px 0 20px;
  }
}

h4,
.h4 {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (min-width: 48em) {
  h4,
  .h4 {
    font-size: 22px;
  }
}

h5,
.h5 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 48em) {
  h5,
  .h5 {
    font-size: 18px;
  }
}

h6,
.h6 {
  color: #f19124;
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  h6,
  .h6 {
    font-size: 20px;
  }
}

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

p {
  margin: 20px 0;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

u {
  text-decoration: underline;
}

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

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

*/
.breadcrumb {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  margin-bottom: 20px;
  line-height: 1.2;
}
@media only screen and (min-width: 78em) {
  .breadcrumb {
    margin: 0;
  }
}
.breadcrumb a {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span:last-child a {
  color: #f19124;
}

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

	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: 999999;
  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

*/
.bloc > .formulaire, .ru-contact .deux_colonnes .colleft > .formulaire, .formulaire > .formulaire {
  padding: 0;
  margin: 0;
  border: none;
}
.box_predefined_cat_search_form .formulaire {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}
.formulaire form {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 90em) {
  .formulaire form {
    max-width: 600px;
  }
}

@media only screen and (min-width: 78em) {
  .form_creator_header {
    margin-bottom: 40px;
  }
}

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

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

@media only screen and (min-width: 78em) {
  .form_creator_footer {
    margin-top: 40px;
  }
}

.fieldGroup {
  overflow: hidden;
}

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

select, textarea, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  border-radius: 2px;
  font-size: inherit;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: rgba(81, 153, 187, 0.1);
  appearance: none;
  display: inline-block;
  padding: 17px 20px;
  margin-bottom: 25px;
}
select.placeholder, textarea.placeholder, input.placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
select:-moz-placeholder, textarea:-moz-placeholder, input:-moz-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
select::-moz-placeholder, textarea::-moz-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-moz-placeholder {
  letter-spacing: 1px;
  font-size: 14px;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  letter-spacing: 1px;
  font-size: 14px;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset])::-webkit-input-placeholder {
  letter-spacing: 1px;
  font-size: 14px;
}
select:focus, textarea:focus, input:focus:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  outline: none;
  border-color: rgba(2, 12, 38, 0.15);
}
select:disabled, textarea:disabled, input:disabled:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=reset]) {
  cursor: default;
  background-color: rgba(2, 12, 38, 0.15);
}

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

textarea {
  font-family: "Rubik", Arial, sans-serif;
  border-radius: 5px;
  letter-spacing: 0;
}
.error textarea {
  border: 1px solid rgba(2, 12, 38, 0.15);
  border-color: #f50023;
}

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

	Liste déroulante

*/
select {
  box-sizing: border-box;
  border-radius: 2px;
  background: url(/images/icon/icon-chevron-down.svg) no-repeat calc(100% - 20px) center, #FFFFFF;
  padding-right: 50px;
  cursor: pointer;
}
.error select {
  border: 1px solid rgba(2, 12, 38, 0.15);
  border-color: #f50023;
}

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

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

	Boutons de validation/annulation

*/
input[type=submit] {
  font-size: 14px;
  font-weight: bold;
  width: auto;
}
@media only screen and (min-width: 78em) {
  input[type=submit] {
    font-size: 16px;
  }
}

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

	Upload d'un fichier

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

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

	Validation par Captcha

*/
.captcha {
  overflow: hidden;
  text-align: center;
}
.captcha #html_element > div {
  width: inherit !important;
  height: inherit !important;
}
.captcha #html_element > div iframe {
  margin: 30px 0px 10px;
}

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

	Ensemble de champs

*/
fieldset {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
fieldset + fieldset {
  margin-top: 40px;
}
fieldset > legend {
  font-size: 24px;
  display: table-cell;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #013859;
}
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: #ffffff;
  background-color: #013859;
}

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

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

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

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

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

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

	Erreurs -> ENLEVER LES REQUIRED POUR STYLISER

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

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

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

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

	Aides/Informations

*/
.aide {
  display: block;
  clear: both;
  margin: -15px 0 20px;
  padding: 15px;
  color: #707173;
  font-size: 12px;
  line-height: 1.2;
  background-color: rgba(81, 153, 187, 0.1);
}
.aide p {
  font-size: 12px;
  line-height: 1.2;
  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=text],
.multiRadio.other input[type=text],
.multi_checkbox.other input[type=text],
.multiCheckbox.other input[type=text] {
  margin-bottom: 0;
}

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

input[type=checkbox], input[type=radio] {
  float: left;
  margin: 0 10px 0 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;
}

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

	Style de la galerie miniature

*/
.medias .gallery ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 23.438em) {
  .medias .gallery ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
}
@media only screen and (min-width: 48em) {
  .medias .gallery ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 78em) {
  .medias .gallery ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.medias .gallery 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;
  width: 100%;
  height: 100%;
  animation: heartbeat;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  text-align: center;
  background: #fff;
  background: url("/images/logo/logo-technicbois.svg") no-repeat center center rgba(255, 255, 255, 0.95);
}
@keyframes heartbeat {
  0% {
    background-size: 100px;
  }
  20% {
    background-size: 120px;
  }
  40% {
    background-size: 100px;
  }
  60% {
    background-size: 120px;
  }
  80% {
    background-size: 100px;
  }
  100% {
    background-size: 100px;
  }
}
/*--------------------------------

	NAVIGATION

*/
.contain-to-grid {
  width: 101px;
}
@media only screen and (min-width: 48em) {
  .contain-to-grid {
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .contain-to-grid {
    margin: 0 -6%;
    text-align: center;
    width: 112%;
    padding: 0 6%;
    border-top: solid 1px rgba(2, 12, 38, 0.15);
  }
}

#nested {
  height: 50px;
  overflow: hidden;
  position: relative;
}
#nested.expanded {
  height: auto;
  height: auto;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #ffffff;
}
@media only screen and (min-width: 48em) {
  #nested {
    height: auto;
    overflow: visible;
  }
}
@media only screen and (min-width: 90em) {
  #nested {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* ---------------- TITLE AREA ---------------- */
.title-area {
  z-index: 9999;
}
@media only screen and (min-width: 48em) {
  .title-area {
    display: none;
  }
}
.title-area a {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #013859;
  text-transform: uppercase;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-area a::before {
  content: "Menu";
}
.title-area a::after {
  content: url("/images/icon/icon-menu.svg");
  margin-left: 8px;
}
.title-area a span {
  display: none;
}
.expanded .title-area a {
  justify-content: flex-end;
  padding-right: 5.4%;
}
.expanded .title-area a::before {
  content: "Fermer";
}
.expanded .title-area a::after {
  content: url("/images/icon/icon-menu-close.svg");
}

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

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

@media only screen and (min-width: 48em) {
  /* Background sur toute la largeur de la nav bar*/
  .contain-to-grid > .row > div, .top-bar, #nested, .top-bar-section, #nested .firstLevel, #nested .firstLevel > li {
    position: inherit !important;
  }
  /* Background sur la largeur du contenu */
  .top-bar {
    position: inherit !important;
  }
}
/* ---------------- FIRST LEVEL ---------------- */
#nested ul.firstLevel {
  overflow-y: scroll;
  -webkit-overflow-x-scrolling: touch;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 50px);
}
#nested ul.firstLevel::-webkit-scrollbar {
  display: none;
  width: 0;
  background: none;
}
@media only screen and (min-width: 48em) {
  #nested ul.firstLevel {
    display: flex;
    height: auto;
    overflow: visible;
    border-top: solid 1px rgba(2, 12, 38, 0.15);
  }
}
@media only screen and (min-width: 64em) {
  #nested ul.firstLevel {
    border-top: none;
  }
}

#nested .firstLevel > li {
  position: relative;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li {
    width: 100%;
  }
}
@media only screen and (min-width: 103.125em) {
  #nested .firstLevel > li {
    width: auto;
  }
}
#nested .firstLevel > li > a {
  font-size: 18px;
  font-weight: 700;
  color: #013859;
  padding: 15px 5.4%;
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li > a {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    border: none;
    border-right: solid 1px rgba(2, 12, 38, 0.15);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 78em) {
  #nested .firstLevel > li > a {
    font-size: 16px;
    padding: 20px 27px;
  }
}
@media only screen and (min-width: 90em) {
  #nested .firstLevel > li > a {
    padding: 20px 52.2px;
  }
}
#nested .firstLevel > li > a:hover {
  text-decoration: none;
}
#nested .firstLevel > li:first-child > a {
  border-top: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li:first-child > a {
    border-top: none;
  }
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.me-scndnav {
    display: none;
  }
}
#nested .firstLevel > li.me-scndnav > a {
  padding: 10px 5.4%;
  background: rgba(2, 12, 38, 0.15);
  font-size: 14px;
  color: rgba(2, 12, 38, 0.75);
}
#nested .firstLevel > li.me-scndnav ul {
  padding: 15px 0;
}
#nested .firstLevel > li.me-scndnav ul li {
  border: none;
}
#nested .firstLevel > li.me-scndnav ul li a {
  font-size: 14px;
  text-transform: none;
  padding: 4px 5.4%;
  color: rgba(2, 12, 38, 0.75);
}
#nested .firstLevel > li.has-dropdown > a::after {
  content: "";
  position: absolute;
  right: 5.4%;
  top: 26px;
  width: 20px;
  height: 20px;
  background: url(/images/icon/icon-chevron-down.svg) no-repeat center;
  background-size: 100%;
}
@media only screen and (min-width: 48em) {
  #nested .firstLevel > li.has-dropdown > a::after {
    position: relative;
    right: auto;
    top: auto;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    min-width: 10px;
  }
}
@media only screen and (min-width: 90em) {
  #nested .firstLevel > li.has-dropdown > a::after {
    margin-left: 15px;
  }
}
#nested .firstLevel > li.has-dropdown.me-scndnav > a::after {
  width: 11px;
  height: 11px;
  top: 18px;
}
#nested .firstLevel > li.active > a {
  background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
  color: #ffffff;
}
#nested .firstLevel > li.active.has-dropdown > a::after {
  background-image: url(/images/icon/icon-chevron-down-white.svg);
}
@media only screen and (min-width: 64em) {
  #nested .firstLevel > li:first-child {
    border-left: solid 1px rgba(2, 12, 38, 0.15);
  }
}

/* ---------------- SECOND LEVEL ---------------- */
.secondLevelContainer {
  display: none;
  box-shadow: inset 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 48em) {
  .secondLevelContainer {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    background: url(/images/img/pattern.png), #eef5f9;
    border-bottom: solid 1px rgba(2, 12, 38, 0.15);
    border-top: solid 1px rgba(2, 12, 38, 0.15);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    visibility: hidden;
    z-index: 5000;
  }
  .firstLevel .secondLevelContainer {
    width: 100%;
    min-width: 32rem;
    height: auto;
    padding: 20px 20px 0 20px;
  }
  .firstLevel .secondLevelContainer ul.secondLevel {
    box-shadow: none;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
  }
  .has-dropdown:hover > .secondLevelContainer {
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: auto;
    visibility: visible;
  }
}
.secondLevelContainer ul.secondLevel {
  margin: 0;
}
.secondLevelContainer ul.secondLevel > li {
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .secondLevelContainer ul.secondLevel > li {
    border-bottom: none;
    margin: 0 15px;
    float: left;
  }
  .secondLevelContainer ul.secondLevel > li > ul > li {
    margin-bottom: 20px;
  }
  .secondLevelContainer ul.secondLevel > li > ul > li > a {
    color: #013859;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 78em) {
  .secondLevelContainer ul.secondLevel > li {
    width: calc(20% - 30px);
  }
  .secondLevelContainer ul.secondLevel > li > ul > li {
    margin-bottom: 30px;
  }
}
.secondLevelContainer ul.secondLevel > li > a {
  color: #013859;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 5.4%;
}
@media only screen and (min-width: 48em) {
  .secondLevelContainer ul.secondLevel > li > a {
    padding: 0;
  }
}
.secondLevelContainer ul.secondLevel > li.active > a {
  color: #f19124;
}
.secondLevelContainer ul.secondLevel > li ul {
  color: #013859;
  padding: 0 0 15px;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .secondLevelContainer ul.secondLevel > li ul {
    padding: 0;
  }
}
.secondLevelContainer ul.secondLevel > li ul > li > a {
  color: #013859;
  padding: 0 5.4%;
}
@media only screen and (min-width: 48em) {
  .secondLevelContainer ul.secondLevel > li ul > li > a {
    padding: 0;
    font-size: 14px;
  }
}
.secondLevelContainer ul.secondLevel > li ul > li.active > a {
  color: #f19124;
}

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

	Newsletter

*/
.widget-newsletter {
  margin-bottom: 30px;
}

.widget-newsletter-field {
  position: relative;
}
@media only screen and (min-width: 48em) {
  .widget-newsletter-field {
    max-width: 335px;
  }
}
.widget-newsletter-field #NewsLettersSubscribeMail {
  padding: 13px 60px 13px 20px;
  border-radius: 2px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: rgba(81, 153, 187, 0.4);
  font-size: 14px;
  color: #d8e0f3;
  height: 50px;
  margin: 0;
}
.widget-newsletter-field input[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 6px 2px;
  font-size: 30px;
  line-height: 1;
}

#newsletterDesc {
  text-align: center;
}

.newsletter .content-article {
  background: url(/images/img/pattern.png), #eef5f9;
}

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

	Listing pagination

*/
.pager {
  margin: 50px 0;
}
.pager-list {
  display: flex;
  justify-content: center;
}
.pager li {
  margin: 0 7.5px;
}
.pager li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f19124;
  text-decoration: none;
}
.pager li a.pager_active_page {
  background-color: #013859;
  color: #ffffff;
}
.pager li a.pagerNext, .pager li a.pagerPrevious {
  padding-bottom: 5px;
}
.pager li a.pager-back {
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.2;
}

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

	Search

*/
.widgetCatalogSearch {
  position: absolute;
  top: 7px;
  right: 5.4%;
  width: calc(100% - 184px);
  max-width: 158px;
}
@media only screen and (min-width: 48em) {
  .widgetCatalogSearch {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    max-width: 330px;
  }
}
@media only screen and (min-width: 78em) {
  .widgetCatalogSearch {
    min-width: 330px;
  }
}
.widgetCatalogSearch .catalog_search_form_field {
  position: relative;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go {
  padding: 5px 5px 5px 10px;
  border-radius: 2px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0;
  height: 36px;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go.placeholder {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  opacity: 1;
  letter-spacing: 0;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go:-moz-placeholder {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  opacity: 1;
  letter-spacing: 0;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go::-moz-placeholder {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  opacity: 1;
  letter-spacing: 0;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go:-ms-input-placeholder {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  opacity: 1;
  letter-spacing: 0;
}
.widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go::-webkit-input-placeholder {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  opacity: 1;
  letter-spacing: 0;
}
@media only screen and (min-width: 48em) {
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go {
    border: solid 1px rgba(2, 12, 38, 0.15);
    background-color: rgba(81, 153, 187, 0.1);
    height: 40px;
    padding: 0 50px 0 20px;
  }
}
@media only screen and (min-width: 78em) {
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go {
    height: 50px;
  }
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go.placeholder {
    font-size: 14px;
  }
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go:-moz-placeholder {
    font-size: 14px;
  }
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go::-moz-placeholder {
    font-size: 14px;
  }
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go:-ms-input-placeholder {
    font-size: 14px;
  }
  .widgetCatalogSearch .catalog_search_form_field #catalog_search_string_in_box_go::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.widgetCatalogSearch .catalog_search_form_field input[type=submit] {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 8px;
  border-radius: 2px;
  background: url("/images/icon/icon-search.svg") no-repeat center, #f19124;
  background-size: 10px;
  text-indent: -99999px;
  margin: 0;
}
@media only screen and (min-width: 48em) {
  .widgetCatalogSearch .catalog_search_form_field input[type=submit] {
    width: 30px;
    height: 30px;
    background-size: 14px;
  }
}
@media only screen and (min-width: 78em) {
  .widgetCatalogSearch .catalog_search_form_field input[type=submit] {
    width: 40px;
    height: 40px;
    background-size: 15px;
    background: url("/images/icon/icon-search.svg") no-repeat center, linear-gradient(to bottom, #f1ad61 0%, #f19124 50%, #f19124 100%);
  }
}

/* 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: 30px 0 0;
  padding: 0;
}
@media only screen and (min-width: 48em) {
  .slick-list {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 64em) {
  .slick-list {
    margin-top: 20px;
  }
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

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

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

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

.slick-dots {
  color: rgba(2, 12, 38, 0.75);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media only screen and (min-width: 64em) {
  .slick-dots {
    margin: 0;
  }
}
.slick-dots li button {
  padding: 11px 20px 9px;
  border-radius: 20px;
  font-size: 14px;
  color: rgba(2, 12, 38, 0.75);
}
@media only screen and (min-width: 64em) {
  .slick-dots li button {
    font-size: 16px;
  }
}
.slick-dots li.slick-active button {
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  color: #ffffff;
}

.arrow-row {
  display: flex;
  justify-content: center;
}
.arrow-row .slick-arrow {
  margin: 0 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-indent: -99999px;
}
@media only screen and (min-width: 64em) {
  .arrow-row .slick-arrow {
    margin: 0 2.5px;
  }
}
.arrow-row .slick-arrow.slick-prev {
  background: url(/images/icon/icon-chevron-left-white-plus.svg) no-repeat center, linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
}
.arrow-row .slick-arrow.slick-next {
  background: url(/images/icon/icon-chevron-right-white-plus.svg) no-repeat center, linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
}

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

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

#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: 700;
  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: #013859;
  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: #f19124;
}

#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-technicbois.svg) no-repeat center;
  background-size: contain;
  height: 80px;
  margin: 0 auto 30px;
}

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

	LAYOUT
	Ces fichiers contiennent les styles des blocs principaux du layout

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

	Header

*/
.header-article {
  padding: 20px 5.4%;
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
  background: #ffffff;
}
@media only screen and (min-width: 78em) {
  .header-article {
    padding: 30px 5.4%;
  }
}
@media only screen and (min-width: 90em) {
  .header-article {
    padding: 50px 5.4%;
  }
}
.header-article-inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .header-article-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .header-article-inner .header-article-item:first-child {
    order: 2;
    text-align: right;
  }
  .header-article-inner .header-article-item:last-child {
    order: 1;
  }
}

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

	Layout du contenu des pages

*/
.content-article {
  padding: 40px 5.4%;
  background: #ffffff;
}
.with-bg .content-article {
  background: url(/images/img/pattern.png), #eef5f9;
}
@media only screen and (min-width: 78em) {
  .content-article {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.content-article-inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 78em) {
  .content-article-inner {
    display: flex;
    align-items: flex-start;
  }
  .content-article-inner article {
    order: 2;
    width: calc(100% - 330px);
    padding-left: 50px;
    padding-top: 50px;
  }
  .content-article-inner article:first-child:last-child {
    padding-left: 0;
    width: 100%;
    max-width: 1045px;
    margin: 0 auto;
  }
  .content-article-inner leftbar {
    order: 1;
  }
}

.simpleText,
.textAndImages {
  overflow: hidden;
}

.description-style {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: rgba(2, 12, 38, 0.3);
  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;
  }
}

.code_html > *:last-child {
  margin-bottom: 0;
}

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

	Plan du site

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

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

	Page vide

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

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

	Footer

*/
.footer-site {
  overflow: hidden;
}
.footer-site-sub {
  padding: 40px 5.4%;
  border: solid 1px rgba(2, 12, 38, 0.15);
}
.footer-site-sub:empty {
  display: none;
}
@media only screen and (min-width: 78em) {
  .footer-site-sub {
    padding: 60px 5.4%;
  }
}
@media only screen and (min-width: 90em) {
  .footer-site-sub {
    padding: 100px 5.4%;
  }
}
.footer-site-sub .h1 {
  color: rgba(2, 12, 38, 0.75);
  margin-bottom: 40px;
}
@media only screen and (min-width: 90em) {
  .footer-site-sub .h1 {
    margin-bottom: 50px;
  }
}
.footer-site-reassu {
  padding: 40px 5.4%;
  background: url(/images/img/pattern.png), #eef5f9;
  text-align: center;
  font-weight: bold;
  line-height: 1.29;
  color: rgba(2, 12, 38, 0.75);
}
@media only screen and (min-width: 48em) {
  .footer-site-reassu-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-reassu {
    padding: 30px 5.4% 25px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-site-reassu-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.footer-site-reassu-item {
  max-width: 225px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 48em) {
  .footer-site-reassu-item {
    width: calc(25% - 20px);
    margin: 0;
    font-size: 14px;
  }
}
.footer-site-reassu-item:not(:last-child) {
  margin-bottom: 46px;
}
@media only screen and (min-width: 48em) {
  .footer-site-reassu-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer-site-reassu-item p {
  margin: 12px 0 0;
}
.footer-site-content {
  padding: 40px 5.4% 0;
  background: linear-gradient(to bottom, #026992, #013859);
  position: relative;
  color: #ffffff;
  z-index: 2;
}
@media only screen and (min-width: 48em) {
  .footer-site-content {
    padding-top: 60px;
  }
  .footer-site-content-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 90em) {
  .footer-site-content {
    padding-top: 80px;
  }
  .footer-site-content-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.footer-site-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/images/img/pattern.png);
  mix-blend-mode: multiply;
  z-index: -1;
}
@media only screen and (min-width: 48em) {
  .footer-site-content-item {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-content-item {
    width: auto;
    font-size: 14px;
  }
  .footer-site-content-item:nth-child(3) {
    max-width: 300px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-site-content-item:nth-child(3) {
    max-width: 335px;
  }
}
.footer-site-content-item:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (min-width: 48em) {
  .footer-site-content-item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 48em) {
  .footer-site-content-item:first-child, .footer-site-content-item:nth-child(2) {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-content-item:first-child, .footer-site-content-item:nth-child(2) {
    margin-bottom: 0;
  }
}
.footer-site-content-item:last-child img {
  margin: 30px 0 50px;
  max-width: 304px;
}
.footer-site-content-item:last-child p {
  margin: 0;
}
.footer-site-content-item:last-child p a {
  font-weight: 700;
  color: #d8e0f3;
  text-decoration: underline;
  padding: 3px 0 3px 30px;
  background: url(/images/icon/icon-delivery-white.svg) no-repeat left center;
  background-size: 20px;
}
.footer-site-content-item:last-child p a::after {
  content: url(/images/icon/icon-chevron-right-white.svg);
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.footer-site-content .h5 {
  color: #ffffff;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
}
.footer-site-content a {
  line-height: 2.29;
  color: #d8e0f3;
}
.footer-site-content p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #d8e0f3;
  margin: 13px 0;
}
.footer-site-content p.tel-footer {
  background: url(/images/icon/icon-phone.svg) no-repeat left center;
  padding-left: 22px;
}
.footer-site-content p.infos-footer {
  background: url(/images/icon/icon-hour.svg) no-repeat left center;
  padding-left: 22px;
}
.footer-site-signature {
  background-color: rgba(2, 12, 38, 0.15);
  padding: 40px 5.4%;
  margin: 0 -6%;
  margin-top: 40px;
  text-align: center;
}
@media only screen and (min-width: 78em) {
  .footer-site-signature {
    padding: 36px 5.4%;
  }
  .footer-site-signature-inner {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-signature {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .footer-site-signature {
    margin-top: 80px;
  }
  .footer-site-signature-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 48em) {
  .footer-site-signature ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-signature ul > li {
    line-height: 1;
  }
  .footer-site-signature ul > li:not(:last-child) {
    margin-right: 30px;
  }
}
.footer-site-signature ul a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #d8e0f3;
}
.footer-site-signature p {
  margin-bottom: 0;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}
@media only screen and (min-width: 48em) {
  .footer-site-signature p {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .footer-site-signature p {
    margin-top: 0;
  }
}

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

	Header

*/
.header-site {
  position: relative;
  z-index: 99999;
}
.header-site-sub {
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 5.4% 18px;
}
@media only screen and (min-width: 48em) {
  .header-site-sub {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-site-sub-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-site-sub-inner .scnd-nav {
    display: flex;
  }
  .header-site-sub-inner .scnd-nav > li {
    position: relative;
  }
  .header-site-sub-inner .scnd-nav > li.me-chqKdo > a {
    padding: 13px 15px;
  }
  .header-site-sub-inner .scnd-nav > li > a {
    padding: 15px 15px 13px;
    display: block;
  }
  .header-site-sub-inner .scnd-nav > li .secondLevelContainer {
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    text-align: center;
  }
  .header-site-sub-inner .scnd-nav > li ul::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ffffff;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-site-sub-inner .scnd-nav > li ul > li {
    width: 100%;
    margin: 0;
  }
  .header-site-sub-inner .scnd-nav > li ul > li > a {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    padding: 5px 20px;
    display: block;
  }
  .header-site-sub-inner .scnd-nav > li.active > a {
    background-image: linear-gradient(to bottom, #f1ad61 0%, #f19124 50%, #f19124 100%);
    background-size: 100% 200%;
    background-position: top center;
    color: #ffffff;
  }
  .header-site-sub-inner .scnd-nav > li.active > a:hover {
    background-position: bottom center;
  }
}
@media only screen and (min-width: 90em) {
  .header-site-sub-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.header-site-sub a {
  color: #d8e0f3;
}
.header-site-sub-left a {
  position: relative;
  top: -2px;
}
@media only screen and (min-width: 78em) {
  .header-site-sub-left a {
    display: flex;
  }
}
.header-site-sub-left-tel {
  padding-left: 22px;
  background: url(/images/icon/icon-phone.svg) no-repeat left center;
}
.header-site-sub-left-infos {
  display: none;
}
@media only screen and (min-width: 78em) {
  .header-site-sub-left-infos {
    display: block;
    margin-left: 30px;
    padding-left: 22px;
    background: url(/images/icon/icon-hour.svg) no-repeat left center;
    padding-top: 1px;
  }
}
.header-site-content {
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 64em) {
  .header-site-content {
    padding: 0 5.4%;
  }
}
.header-site-content-inner {
  display: flex;
  height: 50px;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .header-site-content-inner {
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 90em) {
  .header-site-content-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.header-site-content-inner .widget-catalog {
  display: flex;
  width: 108px;
}
@media only screen and (min-width: 48em) {
  .header-site-content-inner .widget-catalog {
    width: 140px;
  }
}
@media only screen and (min-width: 78em) {
  .header-site-content-inner .widget-catalog {
    width: auto;
  }
}
.header-site-content-inner .header-account {
  position: relative;
  width: 54px;
  height: 50px;
  background: url(/images/icon/icon-user.svg) no-repeat center;
  background-size: 24px;
  border-left: solid 1px rgba(2, 12, 38, 0.15);
  border-right: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .header-site-content-inner .header-account {
    height: 70px;
    width: 70px;
    background-size: 35px;
  }
}
@media only screen and (min-width: 78em) {
  .header-site-content-inner .header-account {
    width: 100px;
    height: 100px;
    background-size: 40px;
  }
}

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

	Sidebar

*/
.leftbar {
  margin: 0 -6%;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  padding: 30px 5.4%;
  color: #ffffff;
  font-size: 16px;
  margin-top: 40px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 999999;
}
@media only screen and (min-width: 78em) {
  .leftbar {
    margin: 0;
    padding: 30px;
    min-width: 330px;
    max-width: 330px;
    height: auto;
    z-index: 1;
  }
}

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

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

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

	Authentification

*/
.connexion .content-article {
  background: url(/images/img/pattern.png), #eef5f9;
}
.connexion .content-article-inner {
  width: 100%;
  padding-left: 0;
}

@media only screen and (min-width: 48em) {
  .accountAuthentificationInner, .cartAuthentificationInner {
    display: flex;
    justify-content: space-between;
  }
  .accountAuthentificationInner h2, .cartAuthentificationInner h2 {
    font-size: 24px;
  }
  .accountAuthentificationInner > .bloc, .ru-contact .deux_colonnes .accountAuthentificationInner > .colleft, .accountAuthentificationInner > .formulaire, .cartAuthentificationInner > .bloc, .ru-contact .deux_colonnes .cartAuthentificationInner > .colleft, .cartAuthentificationInner > .formulaire {
    width: calc(50% - 10px);
  }
  .accountAuthentificationInner > .bloc input, .ru-contact .deux_colonnes .accountAuthentificationInner > .colleft input, .accountAuthentificationInner > .formulaire input, .cartAuthentificationInner > .bloc input, .ru-contact .deux_colonnes .cartAuthentificationInner > .colleft input, .cartAuthentificationInner > .formulaire input {
    height: 60px;
  }
  .accountAuthentificationInner .submit, .cartAuthentificationInner .submit {
    margin: 30px 0 0;
  }
}
.accountAuthentificationInner .connect, .cartAuthentificationInner .connect {
  margin-bottom: 15px;
}
.accountAuthentificationInner .connect span, .cartAuthentificationInner .connect span {
  position: relative;
}
.accountAuthentificationInner .connect span svg, .cartAuthentificationInner .connect span svg {
  position: absolute;
  left: 15px;
  top: 10px;
}
.accountAuthentificationInner .connect span input, .cartAuthentificationInner .connect span input {
  padding-left: 50px !important;
  margin-bottom: 0 !important;
}
.accountAuthentificationInner .submit, .cartAuthentificationInner .submit {
  margin: 20px 0 0;
}
.accountAuthentificationInner p, .cartAuthentificationInner p {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(2, 12, 38, 0.5);
}

.lostPassword {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
  text-decoration: underline;
}
.lostPassword a {
  text-decoration: underline;
  font-weight: 700;
  color: #647388;
}
.lostPassword a::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 7px;
  position: relative;
  top: 3px;
  background: url("/images/icon/icon-info-grey.svg");
  background-size: 100%;
  display: inline-block;
}

.alertMail {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(2, 12, 38, 0.5);
}

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

	Souscription

*/
#accountSubscription .formulaire legend {
  display: none;
}

.back-account {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}
.back-account a {
  text-decoration: underline;
  font-weight: 700;
  color: rgba(2, 12, 38, 0.75);
}

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

	Page Mon compte

*/
#accountActions ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
#accountActions ul li {
  position: relative;
  width: calc(50% - 5px);
  border-radius: 10px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  margin: 0px 0 10px;
}
@media only screen and (min-width: 48em) {
  #accountActions ul li {
    width: calc(33.333% - 5px);
  }
}
@media only screen and (min-width: 64em) {
  #accountActions ul li {
    padding: 25px;
  }
}
#accountActions ul li h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 0;
}
@media only screen and (min-width: 64em) {
  #accountActions ul li h2 {
    font-size: 20px;
    margin: 10px 0 0;
  }
}
#accountActions ul li svg {
  height: 60px;
}

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

	Création/Modification d'un compte utilisateur

*/
#accountModify legend {
  display: none;
}

.back-account {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
}
.back-account a {
  text-decoration: underline;
  font-weight: 700;
  color: rgba(2, 12, 38, 0.5);
}

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

	Gestion des adresses

*/
.links-adress {
  text-align: center;
  margin-top: 30px;
}

#accountAddress .formulaire {
  max-width: 500px;
  margin: 0 auto;
}

@media only screen and (min-width: 48em) {
  .listAdress {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .listAdress .address {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 64em) {
  .listAdress {
    justify-content: center;
  }
  .listAdress .address {
    width: calc(33.333% - 10px);
    margin: 0 5px 10px;
  }
}
/*--------------------------------

	Inscription à la newsletter

*/
.widgetNewsletterComment {
  margin: 0;
}

#newsletter .bloc, #newsletter .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes #newsletter .colleft, #newsletter .formulaire {
  margin-bottom: 40px;
}
#newsletter .formulaire {
  margin-bottom: 0;
}
#newsletter legend {
  display: none;
}
#newsletter .multi_checkbox label {
  margin: 0;
  font-weight: 400;
}

#optInRGPD {
  margin-bottom: 0 !important;
}

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

	Etapes du Panier

*/
.cart-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .cart-steps {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps {
    justify-content: space-between;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cart-steps div {
  margin: 0 10px;
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div {
    font-size: 14px;
  }
}
.cart-steps div::before {
  content: "";
  line-height: 44px;
  font-size: 16px;
  color: #ffffff;
  background: url("/images/icon/icon-round-blue.svg") no-repeat center center;
  background-size: 100%;
  border-radius: 100px;
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
@media only screen and (min-width: 48em) {
  .cart-steps div::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.cart-steps div:nth-child(1)::before {
  content: "1";
}
.cart-steps div:nth-child(2)::before {
  content: "2";
}
.cart-steps div:nth-child(3)::before {
  content: "3";
}
.cart-steps div:nth-child(4)::before {
  content: "4";
}
.cart-steps div:nth-child(5)::before {
  content: "5";
}
.cart-steps div > span {
  line-height: 1;
  display: block;
  width: 55px;
  color: #013859;
}
@media only screen and (min-width: 48em) {
  .cart-steps div > span {
    line-height: 1.2;
    width: 160px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-steps div > span {
    width: auto;
  }
}
.cart-steps div.active {
  color: #f19124;
}
.cart-steps div.active::before {
  background: url("/images/icon/icon-round-orange.svg") no-repeat center;
  background-size: 100%;
  color: #ffffff;
}
.cart-steps div.active span {
  color: #f19124;
}
.cart-steps div.active + div,
.cart-steps div.active + div + div,
.cart-steps div.active + div + div + div {
  color: rgba(2, 12, 38, 0.5);
}
.cart-steps div.active + div::before,
.cart-steps div.active + div + div::before,
.cart-steps div.active + div + div + div::before {
  background: url("/images/icon/icon-round-grey.svg") no-repeat center;
  background-size: 100%;
  color: #ffffff;
}
.cart-steps div.active + div span,
.cart-steps div.active + div + div span,
.cart-steps div.active + div + div + div span {
  color: rgba(2, 12, 38, 0.5);
}
.cart-steps div:last-child.active::before {
  background: url("/images/icon/icon-round-blue.svg") no-repeat center;
  background-size: 100%;
  color: #ffffff;
}
.cart-steps div:last-child.active span {
  color: #013859;
}
.cart-empty + .cart-steps {
  display: none !important;
}

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

	Page Panier

*/
.msgCart {
  background: #f19124;
  padding: 15px;
  font-size: 13px;
  line-height: 1.3;
  border-radius: 5px;
  background-image: linear-gradient(to bottom, #f1ad61 0%, #f19124 50%, #f19124 100%);
  text-align: center;
  color: #ffffff;
}
.msgCart.red {
  background: #9C1A1A;
  margin-top: 15px;
}

.catalogLightCart .header-article, .catalogLightCart .leftbar {
  display: none;
}
.catalogLightCart .content-article {
  background: url(/images/img/pattern.png), #eef5f9;
}
.catalogLightCart .content-article-inner {
  width: 100%;
  padding-left: 0;
}

.cart-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.cart-empty .icon-cart {
  float: left;
  margin-right: 30px;
}
.cart-empty .icon-cart::before {
  font-size: 16px;
}
@media only screen and (min-width: 48em) {
  .cart-number {
    font-size: 18px;
  }
}
.cart-form > div {
  margin: 25px 0;
}
@media only screen and (min-width: 78em) {
  .cart-form > div {
    margin: 50px 0;
  }
}
.cart-product {
  border: 1px solid rgba(2, 12, 38, 0.15);
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.cart-product-info {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .cart-product-info {
    padding: 20px;
    padding-bottom: 10px;
  }
}
.cart-product-customised {
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.38;
  color: rgba(2, 12, 38, 0.5);
  display: inline-block;
}
@media only screen and (min-width: 48em) {
  .cart-product-customised {
    padding: 0 20px;
  }
}
.cart-product-description {
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-description {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 85%;
  }
}
.cart-product-img {
  max-width: 60px;
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-img {
    margin-right: 20px;
    width: 20%;
  }
}
@media only screen and (min-width: 48em) {
  .cart-product-name {
    width: 50%;
    flex-grow: 1;
    padding-right: 15px;
  }
}
.cart-product-name a {
  font-size: 16px;
  display: block;
  line-height: 1.2;
  color: #013859;
  text-decoration: none;
  font-weight: bold;
}
.cart-product-reference {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .cart-product-reference {
    font-size: 14;
  }
}
.cart-product-variant {
  font-size: 14px;
}
.cart-product-variant:empty {
  display: none;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant {
    width: 30%;
    font-size: 16px;
  }
}
.cart-product-variant-item {
  display: inline-block;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item {
    display: flex;
    flex-direction: column;
  }
}
.cart-product-variant-item:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item:not(:first-child) {
    margin-left: 60px;
  }
}
.cart-product-variant-item label {
  letter-spacing: 1px;
  font-size: 14px;
  margin-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item label {
    display: inline-block;
    letter-spacing: 0;
    font-size: 12px;
    margin-right: 0;
    margin-bottom: 7px;
    line-height: 1;
  }
}
.cart-product-variant-item .select-container {
  display: block;
}
.cart-product-variant-item .select-container select {
  margin: 0;
  padding: 9px 9px;
  background-position: calc(100% - 10px) center;
}
@media only screen and (min-width: 48em) {
  .cart-product-variant-item .select-container {
    display: inline-block;
  }
  .cart-product-variant-item .select-container select {
    background-position: calc(100% - 14px) center;
  }
  .cart-product-variant-item .select-container .icon::after {
    height: 40px;
  }
}
.cart-product-price {
  margin-right: 0;
  text-align: right;
  font-weight: 600;
}
@media only screen and (min-width: 48em) {
  .cart-product-price {
    width: 15%;
  }
}
.cart-product-price-normal {
  font-size: 10px;
  text-decoration: line-through;
  display: block;
  color: rgba(2, 12, 38, 0.3);
}
@media only screen and (min-width: 78em) {
  .cart-product-price-normal {
    font-size: 12px;
  }
}
.cart-product-price-unit {
  margin-left: 10px;
  display: block;
  font-size: 12px;
}
@media only screen and (min-width: 48em) {
  .cart-product-price-unit {
    font-size: 16px;
  }
}
.cart-product-options {
  border-top: 1px solid rgba(2, 12, 38, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-product-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
}
.cart-product-quantity input {
  padding: 10px !important;
  text-align: center;
  border-radius: 2px !important;
  border: solid 1px rgba(2, 12, 38, 0.15) !important;
  background-color: #ffffff !important;
  width: 65px;
  text-align: center;
  margin: 0 !important;
  height: 40px;
  padding: 0;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity input {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}
.cart-product-quantity svg {
  margin: 0 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity svg {
    margin: 20px;
  }
}
.cart-product-quantity span {
  font-size: 18px;
  font-weight: 600;
  color: #f19124;
}
.cart-product-quantity-article {
  margin-left: 10px !important;
}
@media only screen and (min-width: 48em) {
  .cart-product-quantity-article {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}
.cart-product-delete {
  border-left: 1px solid rgba(2, 12, 38, 0.15);
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}
@media only screen and (min-width: 48em) {
  .cart-product-delete {
    font-size: 12px;
    padding: 20px;
  }
}
.cart-button {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 48em) {
  .cart-button {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 78em) {
  .cart-button {
    margin-top: -25px !important;
  }
}
.cart-button-refresh input, .cart-button-trash input {
  font-size: 14px;
  background: #ffffff;
  border-radius: 5px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 20px center;
  padding-left: 50px;
  margin: 0 5px 10px;
}
.cart-button-refresh input:hover, .cart-button-trash input:hover {
  background-position: 20px center;
}
@media only screen and (min-width: 48em) {
  .cart-button-refresh input, .cart-button-trash input {
    margin: 0;
  }
}
.cart-button-refresh input {
  color: rgba(2, 12, 38, 0.5);
  background-image: url("/images/commun/icon-refresh.svg");
}
.cart-button-refresh input:hover {
  background-color: rgba(245, 247, 254, 0.5);
  color: rgba(2, 12, 38, 0.5);
}
.cart-button-trash input {
  color: #f50023;
  background-image: url("/images/commun/delete.png");
}
.cart-button-trash input:hover {
  background-color: #fff5f6;
  color: #f50023;
}
.cart-bottom-content {
  margin: 30px 0;
}
.cart-shipping {
  background: #ffffff;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(2, 12, 38, 0.15);
}
.cart-shipping-item {
  min-height: 60px;
  position: relative;
  align-items: center;
  font-size: 14px;
  color: rgba(2, 12, 38, 0.5);
  display: flex;
}
.cart-shipping-item:not(:last-child) {
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
}
.cart-shipping-item:first-child:last-child .cart-shipping-item-name {
  padding-left: 20px;
  line-height: 1;
  color: #013859;
  font-weight: bold;
}
.cart-shipping-item:first-child:last-child .cart-shipping-item-name p {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  margin-top: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item {
    font-size: 16px;
  }
}
.cart-shipping-item > * {
  position: relative;
}
.cart-shipping-item > * input[type=radio] {
  position: absolute;
  top: 28%;
  left: 12px;
  display: none;
}
.cart-shipping-item > * input[type=radio] + label {
  margin: 0;
  width: 100%;
  padding: 0 0 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio] + label {
    padding: 0 0 0 60px;
  }
}
.cart-shipping-item > * input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  display: block;
  color: rgba(2, 12, 38, 0.75);
  background: rgba(2, 12, 38, 0.15);
  border-radius: 100px;
  border: 1px solid rgba(2, 12, 38, 0.15);
  transform: translateY(-50%);
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio] + label::before {
    left: 20px;
  }
}
.cart-shipping-item > * input[type=radio] + label::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 60px;
  right: 0;
  z-index: 1;
}
.cart-shipping-item > * input[type=radio] + label .infoFdp {
  font-weight: 400;
  font-size: 12px;
  margin-top: 10px;
}
.cart-shipping-item > * input[type=radio] + label .infoFdp p {
  margin: 0;
}
.cart-shipping-item > * input[type=radio]:checked + label {
  color: #013859;
  z-index: 2;
  font-weight: bold;
}
.cart-shipping-item > * input[type=radio]:checked + label .icon {
  position: absolute;
  left: 20px;
  display: block !important;
  visibility: visible;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item > * input[type=radio]:checked + label .icon {
    left: 25px;
  }
}
.cart-shipping-item > * input[type=radio]:checked + label::before {
  border-color: #013859;
  background: #013859;
}
.cart-shipping-item-name {
  width: 100%;
  padding: 15px 15px 15px 0;
}
.cart-shipping-item-amount {
  line-height: 60px;
  padding-right: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-shipping-item-amount {
    padding-right: 20px;
  }
}
.cart-shipping-item-amount span:last-child:not(:first-child) {
  display: none;
}
.cart-shipping-item-amount.free_shipping {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  align-items: flex-end;
}
.cart-shipping-item-amount.free_shipping span:last-child {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 12px;
}
.cart-shipping-item-amount.free_shipping span:last-child:not(:first-child) {
  display: block;
}
.cart-shipping-item.active {
  color: #013859;
  font-weight: bold;
}
.cart-shipping-item.active .cart-shipping-item-amount {
  color: #013859;
  font-weight: bold;
}
.cart-amount {
  background: #ffffff;
  border: 1px solid rgba(2, 12, 38, 0.15);
  border-radius: 5px;
}
.cart-amount-item {
  display: flex;
  justify-content: space-between;
  height: 40px;
  position: relative;
  align-items: center;
  font-size: 14px;
  color: #013859;
  padding: 0 20px;
  font-weight: 600;
}
.cart-amount-item:not(:last-child) {
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .cart-amount-item {
    font-size: 16px;
    height: 50px;
  }
}
.cart-amount-item.total {
  font-size: 18px;
  height: 60px;
}
@media only screen and (min-width: 48em) {
  .cart-amount-item.total {
    font-size: 24px;
    height: 75px;
  }
}
.cart-coupon.bloc, .ru-contact .deux_colonnes .cart-coupon.colleft, .cart-coupon.formulaire {
  padding: 20px;
  max-width: 375px;
  font-size: 12px;
  line-height: 1;
}
.cart-coupon.bloc-error {
  margin: 0px 0 20px !important;
}
.cart-coupon.bloc .cart-coupon-inputs input, .ru-contact .deux_colonnes .cart-coupon.colleft .cart-coupon-inputs input, .cart-coupon.formulaire .cart-coupon-inputs input {
  display: inline-block;
  padding: 5px 15px !important;
  margin: 0 10px 0 0 !important;
  height: 40px;
  max-width: 250px !important;
  font-size: 14px;
  width: auto;
}
.cart-coupon.bloc .cart-coupon-inputs input:first-child, .ru-contact .deux_colonnes .cart-coupon.colleft .cart-coupon-inputs input:first-child, .cart-coupon.formulaire .cart-coupon-inputs input:first-child {
  min-width: 250px;
}
@media only screen and (min-width: 78em) {
  .cart-coupon.bloc-current {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.cart-coupon.bloc-current .bloc, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft, .cart-coupon.bloc-current .formulaire {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px dashed rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .cart-coupon.bloc-current .bloc, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft, .cart-coupon.bloc-current .formulaire {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft p, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft p, .cart-coupon.bloc-current .formulaire p {
  font-size: 14px;
}
@media only screen and (min-width: 48em) {
  .cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft p, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft p, .cart-coupon.bloc-current .formulaire p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-coupon.bloc-current .bloc p, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft p, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft p, .cart-coupon.bloc-current .formulaire p {
    font-size: 18px;
  }
}
.cart-coupon.bloc-current .bloc a, .cart-coupon.bloc-current .ru-contact .deux_colonnes .colleft a, .ru-contact .deux_colonnes .cart-coupon.bloc-current .colleft a, .cart-coupon.bloc-current .formulaire a {
  margin: 10px 0;
}
.cart .flex-center {
  justify-content: flex-end;
}
.cart .flex-center input {
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  width: auto;
  font-size: 16px;
  font-weight: bold;
}
.cart-payment-address h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.07;
  text-align: center;
  margin: 50px 0 25px;
}
@media only screen and (min-width: 48em) {
  .cart-payment-address h2 {
    margin: 75px 0 50px;
  }
}
@media only screen and (min-width: 78em) {
  .cart-payment-address h2 {
    font-size: 34px;
  }
}
.cart-payment-address .submit {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .cart-payment-address .adresses {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .cart-payment-address .adresses > * {
    width: calc(50% - 10px);
  }
  .cart-payment-address .submit {
    margin-top: 50px;
  }
}
.cart-payment-address .cart-bottom {
  margin-top: 25px !important;
}
@media only screen and (min-width: 78em) {
  .cart-payment-address .cart-content {
    margin-bottom: 0 !important;
  }
}
.cart-payment .bloc, .cart-payment .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes .cart-payment .colleft, .cart-payment .formulaire {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .cart-payment .bloc, .cart-payment .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes .cart-payment .colleft, .cart-payment .formulaire {
    padding-bottom: 25px;
  }
}
@media only screen and (min-width: 64em) {
  .cart-payment .bloc, .cart-payment .ru-contact .deux_colonnes .colleft, .ru-contact .deux_colonnes .cart-payment .colleft, .cart-payment .formulaire {
    padding-bottom: 35px;
  }
}
.cart-payment .paymentChoice {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 130px;
  text-align: center;
  margin: 0 10px 20px;
  cursor: pointer;
}
.cart-payment label {
  padding-top: 100px;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  min-width: 130px;
  cursor: pointer;
}
.cart-payment label::before {
  content: "";
}
.cart-payment label[for=modscheques] {
  background: url(/images/commun/payment/icone-paiement-cheques.png) no-repeat top;
}
.cart-payment label[for=modstelephone] {
  background: url(/images/commun/payment/icone-paiement-telephone.png) no-repeat top;
}
.cart-payment label[for=modspaypal] {
  background: url(/images/commun/payment/icone-paiement-paypal.png) no-repeat top;
}
.cart-payment label[for=modsnopayment] {
  background: url("/images/commun/payment/icone-paiement-nopayment.png") no-repeat top;
}
.cart-payment label[for=modspaybox6] {
  background: url("/images/commun/payment/icone-paiement-paybox6.png") no-repeat top;
}
.cart-payment label[for=modsCustomPaymentModules_stupPaybox] {
  background: url("/images/commun/payment/icone-paiement-CustomPaymentModules_stupPaybox.png") no-repeat top;
}
.cart-payment label[for=modspaybox6-multi] {
  background: url("/images/commun/payment/icone-paiement-CustomPaymentModules_stupPaybox.png") no-repeat top;
}
.cart-payment input[type=radio] {
  float: none;
  margin: 10px 0 0;
  cursor: pointer;
}
.cart-authentification > * {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 78em) {
  .cart-authentification > * {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 64em) {
  .cart-authentification > .row {
    display: flex;
    align-items: center;
  }
}
.cart-confirmation h2.toggleTitle {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -30px;
  margin-right: -30px;
  font-size: 22px;
  background: rgba(81, 153, 187, 0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle:hover {
  background: rgba(2, 12, 38, 0.15);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle:not(.tab-open) + .cart-confirmation-tab {
  display: none;
}
.cart-confirmation h2.toggleTitle.tab-open {
  background: rgba(2, 12, 38, 0.15);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle.tab-open span {
  transform: rotate(90deg);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation h2.toggleTitle span.icon {
  position: absolute;
  right: 30px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cart-confirmation .cart-confirmation-tab {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cart-confirmation textarea {
  max-width: 100%;
}

#validCommand {
  font-size: 14px;
  display: flex;
  padding: 15px;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(210, 212, 213, 0.75);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
#validCommand .condition_field {
  float: left;
  margin-right: 20px;
}
#validCommand .condition_field input {
  margin: 0;
}
#validCommand p {
  margin: 0;
  line-height: 1.2;
}

.invalidOrder {
  background: rgba(202, 0, 71, 0.2);
  border: 1px solid #CA0047;
  border-radius: 5px;
  padding: 40px 20px;
}
.invalidOrder h2 {
  margin-top: 0;
  text-align: center;
}
.invalidOrder p {
  margin-bottom: 0;
}

#customer_message textarea {
  background: #ffffff;
}

#creaCompte {
  text-align: center;
}

input[name=newsletter] {
  margin-top: 10px;
}

.modifyAdress-row > .modifyAdress:last-child:not(:first-child) {
  margin-top: 5px;
}
@media only screen and (min-width: 78em) {
  .modifyAdress-row {
    display: flex;
    justify-content: space-between;
  }
  .modifyAdress-row > .modifyAdress:last-child:not(:first-child) {
    margin-top: 25px;
  }
  .modifyAdress-row > * {
    width: calc(50% - 8px);
  }
}

#manage_address {
  margin-top: 20px;
}

#adresseselectionform {
  margin-bottom: 50px;
}

.adress-list {
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .adress-list {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 30px;
  }
  .adress-list > .bloc, .ru-contact .deux_colonnes .adress-list > .colleft, .adress-list > .formulaire {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}
@media only screen and (min-width: 78em) {
  .adress-list {
    margin-top: 0;
  }
  .adress-list > .bloc, .ru-contact .deux_colonnes .adress-list > .colleft, .adress-list > .formulaire {
    width: calc(33.333% - 10px);
  }
}
.adress-list-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
}

.modifyAdress {
  margin-top: 25px;
  display: block;
}
.modifyAdress a {
  background: #ffffff;
  border-radius: 5px;
  border: solid 1px rgba(142, 153, 168, 0.25);
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(2, 12, 38, 0.5);
}
.modifyAdress a svg {
  margin-right: 10px;
}

/* -----------------------------------
CONFIRMATION
----------------------------------- */
/*---------- GENERAL ----------- */
#payment_actions a.confirmVir,
#payment_actions input[type=submit] {
  font-size: 20px;
  padding: 10px 20px;
}

#payment_actions a.confirmVir:hover,
#payment_actions input[type=submit]:hover {
  color: #3f3f3f;
  background: #ebebeb;
}

#payment_actions > a,
#payment_actions input[type=submit] {
  display: block;
  margin: auto;
  text-align: center;
}

/*---------- RIB ----------- */
#payment_actions table {
  margin: auto;
}

/*---------- PAYPAL ----------- */
#payment_actions form {
  text-align: center;
}

#payment_actions input {
  width: auto;
  margin: 0 0 5px;
  padding: 8px 11px;
  cursor: pointer;
  background: SlateGrey;
}

#cart_payment_confirmation .adresses {
  margin-top: 20px;
  margin-bottom: 20px;
}

#cart_payment_confirmation .cartRight {
  color: #000000 !important;
}

@media only screen and (min-width: 48em) {
  #cart_payment_confirmation .adresses {
    display: flex;
    justify-content: space-between;
  }
  #cart_payment_confirmation .adresses > .address {
    width: calc(50% - 12px);
  }
}

.cart-steps + .bloc, .ru-contact .deux_colonnes .cart-steps + .colleft, .cart-steps + .formulaire, .cart-steps + .panierInner {
  margin-top: 25px;
}

.thanks.mb15 {
  margin: 0 !important;
}
.thanks.mb15 > h2 {
  margin-top: 0;
}

.cart-empty-text {
  line-height: 1.2;
}

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

	Ajout au Panier

*/
#formproductversion .addToCart {
  display: flex;
}
#formproductversion .addToCart input[id*=addToCartQuantityProduct].add_to_cart_quantity {
  border-radius: 2px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: #ffffff;
  width: 65px;
  text-align: center;
  margin: 0 10px 0 0;
  height: 60px;
  padding: 0;
}
#formproductversion .addToCart .btn-full-orange, #formproductversion .addToCart .category-list a, .category-list #formproductversion .addToCart a, #formproductversion .addToCart #boxFiltre .filtres-header-left #filtreMaSelection a, #boxFiltre .filtres-header-left #filtreMaSelection #formproductversion .addToCart a, #formproductversion .addToCart .btn-full-secondary, #formproductversion .addToCart input[type=submit], #formproductversion .addToCart .cart .flex-center input, .cart .flex-center #formproductversion .addToCart input {
  height: 60px;
  padding: 0 31px 0 65px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
}
#formproductversion .addToCart .btn-full-orange::before, #formproductversion .addToCart .category-list a::before, .category-list #formproductversion .addToCart a::before, #formproductversion .addToCart #boxFiltre .filtres-header-left #filtreMaSelection a::before, #boxFiltre .filtres-header-left #filtreMaSelection #formproductversion .addToCart a::before, #formproductversion .addToCart .btn-full-secondary::before, #formproductversion .addToCart input[type=submit]::before, #formproductversion .addToCart .cart .flex-center input::before, .cart .flex-center #formproductversion .addToCart input::before {
  content: url(/images/icon/icon-cart-white.svg);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}
#formproductversion .addToCart .btn-full-orange.disabled, #formproductversion .addToCart .category-list a.disabled, .category-list #formproductversion .addToCart a.disabled, #formproductversion .addToCart #boxFiltre .filtres-header-left #filtreMaSelection a.disabled, #boxFiltre .filtres-header-left #filtreMaSelection #formproductversion .addToCart a.disabled, #formproductversion .addToCart .disabled.btn-full-secondary, #formproductversion .addToCart input.disabled[type=submit], #formproductversion .addToCart .cart .flex-center input.disabled, .cart .flex-center #formproductversion .addToCart input.disabled {
  pointer-events: none;
  background: #c0ccd3;
}

#overDiv.od_ad_to_cart {
  position: fixed !important;
  z-index: 99999 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh !important;
  visibility: visible !important;
}

#overlibheader, #overlibcontent, #overlibfooter {
  width: 100%;
  max-width: 375px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1.2;
}
#overlibheader {
  margin-top: -145px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0;
  border-radius: 5px 5px 0 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #f19124;
}
#overlibcontent {
  height: 260px;
  padding: 30px 20px;
}
#overlibcontent .link-add-to-cart {
  display: flex;
  flex-direction: column;
  text-align: center;
}
#overlibcontent p {
  padding: 0 0 0 85px;
  background: url(/images/icon/icon-added-to-cart.svg) no-repeat 10px 50%;
  background-size: 50px;
  font-size: 14px;
  margin-bottom: 30px;
}
#overlibcontent p br {
  display: none;
}
#overlibcontent p strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
#overlibcontent a {
  line-height: 1;
}
#overlibcontent a:first-child {
  margin-bottom: 10px;
}
#overlibfooter {
  margin-top: 145px;
  padding: 10px 20px;
  border-radius: 0 0 5px 5px;
}

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

	Widget cart

*/
.widget-cart {
  position: relative;
  width: 54px;
  border-right: solid 1px rgba(2, 12, 38, 0.15);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .widget-cart {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 78em) {
  .widget-cart {
    width: auto;
    height: 100px;
    border: none;
    padding-left: 30px;
  }
}
.widget-cart-left {
  position: relative;
}
.widget-cart-left img {
  max-width: 24px;
}
@media only screen and (min-width: 48em) {
  .widget-cart-left img {
    max-width: 35px;
  }
}
@media only screen and (min-width: 78em) {
  .widget-cart-left img {
    max-width: 100%;
  }
}
.widget-cart-left .product_number {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f19124;
  border-radius: 50%;
  color: #ffffff;
  font-size: 8px;
}
@media only screen and (min-width: 78em) {
  .widget-cart-left .product_number {
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    top: -10px;
    right: -10px;
  }
}
.widget-cart-right {
  display: none;
}
@media only screen and (min-width: 78em) {
  .widget-cart-right {
    display: block;
    text-align: right;
    margin-left: 18px;
    min-width: 75px;
    line-height: 1.4;
  }
  .widget-cart-right-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: rgba(2, 12, 38, 0.75);
  }
  .widget-cart-right-amount {
    font-size: 14px;
    font-weight: bold;
    color: #f19124;
  }
}

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

	Familles du catalogue

*/
@media only screen and (min-width: 48em) {
  .bloc-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.bloc-list-item {
  background: #ffffff;
  border-radius: 12px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .bloc-list-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .bloc-list-item:hover {
    border-color: #f19124;
    box-shadow: 0 0 8px -4px rgb(160, 160, 160);
  }
}
@media only screen and (min-width: 78em) {
  .bloc-list-item {
    padding: 30px;
  }
}
.bloc-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.bloc-list-item-img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-size: 100%;
}
@media only screen and (min-width: 78em) {
  .bloc-list-item-img {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}
.bloc-list-item-img.no-photo:empty {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-size: 25px;
}
@media only screen and (min-width: 78em) {
  .bloc-list-item-img.no-photo:empty {
    width: 100px;
    height: 100px;
  }
}
.bloc-list-item-img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  background: white;
}
.bloc-list-item-txt {
  width: calc(100% - 70px);
  padding-left: 20px;
}
@media only screen and (min-width: 78em) {
  .bloc-list-item-txt {
    padding-left: 30px;
  }
}
.bloc-list-item-txt h2 {
  margin: 0;
  line-height: 1.2;
  font-size: 18px;
}
@media only screen and (min-width: 78em) {
  .bloc-list-item-txt h2 {
    font-size: 20px;
  }
}

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

	Produits du catalogue

*/
@media only screen and (min-width: 78em) {
  .catalogProductsList .header-article-inner {
    align-items: flex-start;
  }
}
.catalogProductsList h1 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList h1 {
    margin-bottom: 20px;
  }
}
.catalogProductsList .content-article {
  padding-top: 0;
  background: url(/images/img/pattern.png), #eef5f9;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .content-article {
    padding-bottom: 80px;
  }
}
.catalogProductsList .content-article-inner {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .content-article-inner {
    flex-flow: row;
  }
}
.catalogProductsList .content-article-inner article {
  order: 2;
  margin-top: 40px;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .content-article-inner article {
    margin-top: 0;
  }
}
.catalogProductsList .content-article-inner .leftbar {
  order: 1;
  margin-top: 0;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .content-article-inner .leftbar {
    padding-top: 28px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
.catalogProductsList .content-article-inner .leftbar #notNested {
  display: none;
}
@media only screen and (min-width: 78em) {
  .catalogProductsList .content-article-inner .leftbar #notNested {
    display: block;
  }
}

.nbProducts {
  font-size: 10px;
  letter-spacing: 0.36px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}
.nbProducts + .nbProducts {
  display: none;
}
@media only screen and (min-width: 78em) {
  .nbProducts {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
  }
}

#sort_value {
  font-size: 14px;
  color: rgba(2, 12, 38, 0.75);
  margin-bottom: 0;
}
@media only screen and (min-width: 78em) {
  #sort_value {
    width: auto;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 90em) {
  #sort_value {
    margin-top: 30px;
  }
}

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

.description-page {
  padding: 40px 5.4%;
  background: #ffffff;
  border-top: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 78em) {
  .description-page {
    padding: 50px 5.4%;
  }
}
@media only screen and (min-width: 78em) {
  .description-page-inner {
    max-width: 1045px;
    margin: 0 auto;
  }
}
.description-page-inner > *:last-child {
  margin-bottom: 0;
}

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

	Filters

*/
#boxFiltre {
  z-index: 999;
  position: relative;
}
#boxFiltre .filtres-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#boxFiltre .filtres-header-left {
  width: calc(100% - 120px);
}
@media only screen and (min-width: 78em) {
  #boxFiltre .filtres-header-left {
    width: 100%;
  }
}
#boxFiltre .filtres-header-left #maSelectionCompteur {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .filtres-header-left #maSelectionCompteur {
    font-size: 18px;
  }
}
#boxFiltre .filtres-header-left #filtreMaSelection {
  margin-top: 15px;
}
#boxFiltre .filtres-header-left #filtreMaSelection:empty {
  display: none;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .filtres-header-left #filtreMaSelection {
    font-size: 17px;
  }
}
@media only screen and (min-width: 78em) {
  #boxFiltre .filtres-header-left #filtreMaSelection {
    margin-bottom: 53px;
  }
}
#boxFiltre .filtres-header-left #filtreMaSelection a {
  padding: 4px 10px 6px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  margin: 0 5px 5px 0;
}
#boxFiltre .filtres-header-left #filtreMaSelection a::after {
  content: "+";
  transform: rotate(45deg);
  position: relative;
  display: inline-block;
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
}
#boxFiltre .filtres-header-right {
  width: 92px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .filtres-header-right {
    display: none;
  }
}
#boxFiltre button {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 10px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  #boxFiltre button {
    display: none;
  }
}
#boxFiltre button::before {
  content: url(/images/icon/icon-filter.svg);
  margin-right: 10px;
}
#boxFiltre .widgetContainer {
  left: 100%;
  width: 100%;
  height: 100vh;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: fixed;
  top: 0;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  padding: 40px 5.4%;
  z-index: 10;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }
  #boxFiltre .widgetContainer .formulaire {
    margin: 0;
  }
}
#boxFiltre .widgetContainer button {
  margin: 0 0 0 auto;
}
#boxFiltre .widgetContainer.open {
  left: 0;
}
#boxFiltre .widgetContainer label.inline {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 22px;
  line-height: 1.2;
  float: none;
}
#boxFiltre .widgetContainer select, #boxFiltre .widgetContainer input {
  margin-bottom: 0 !important;
  float: none;
}
#boxFiltre .widgetContainer select {
  font-size: 14px;
  color: rgba(2, 12, 38, 0.75);
}
#boxFiltre .widgetContainer .fieldGroup:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer .fieldGroup:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 78em) {
  #boxFiltre .widgetContainer .fieldGroup:not(.prop_pricemaxid) label.inline {
    margin-bottom: 12px;
  }
}
#boxFiltre .widgetContainer .group_multi_checkbox {
  margin: 0 -10px;
  display: block;
  float: none;
}
#boxFiltre .widgetContainer .multi_checkbox {
  font-size: 16px;
  color: #ffffff;
}
#boxFiltre .widgetContainer .multi_checkbox input[type=checkbox] {
  display: none;
}
#boxFiltre .widgetContainer .multi_checkbox input[type=checkbox]:checked + label {
  font-weight: 700;
  color: #f19124;
  background: url(/images/icon/icon-chevron-right-orange.svg) no-repeat 10px center;
  padding-left: 30px;
}
#boxFiltre .widgetContainer .multi_checkbox input[type=checkbox]:checked + label .total {
  color: #f19124;
  font-weight: 400;
}
#boxFiltre .widgetContainer .multi_checkbox label {
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(2, 12, 38, 0.15);
  line-height: 1.2;
  width: 100%;
  cursor: pointer;
}
#boxFiltre .widgetContainer .multi_checkbox label .total {
  font-size: 14px;
  color: #d8e0f3;
}
#boxFiltre .submit {
  display: none;
}

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

	Produit

*/
.catalogProductDetail h1 {
  margin-bottom: 10px;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail h1 {
    margin-bottom: 20px;
  }
}
.catalogProductDetail .leftbar {
  display: none;
}
.catalogProductDetail .content-article {
  padding-bottom: 0;
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail .content-article {
    padding: 0;
  }
}
@media only screen and (min-width: 78em) {
  .catalogProductDetail .content-article-inner {
    max-width: 100% !important;
  }
}
.catalogProductDetail .content-article-inner article {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
}

.header-article-item .product-marque {
  font-size: 10px;
  letter-spacing: 0.36px;
  color: rgba(2, 12, 38, 0.5);
}
@media only screen and (min-width: 78em) {
  .header-article-item .product-marque {
    font-size: 14px;
    line-height: 1;
  }
}
@media only screen and (min-width: 48em) {
  .product-marque-detail {
    display: flex;
    align-items: center;
  }
}
.product-marque-detail > * {
  display: inline-block;
}
.product-marque-detail span {
  min-width: 130px;
  max-width: 130px;
  min-height: 70px;
  margin-bottom: 15px;
  margin-right: 20px;
  border-radius: 2px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background: #ffffff;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media only screen and (min-width: 48em) {
  .product-marque-detail span {
    margin-bottom: 0;
    margin-right: 50px;
  }
}
.product-marque-detail a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(2, 12, 38, 0.75);
}
.product-marque-detail a::after {
  content: url(/images/icon/icon-chevron-right-blue.svg);
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.product-pres {
  margin: 0 -6%;
}
@media only screen and (min-width: 78em) {
  .product-pres {
    display: flex;
    margin: 0;
  }
}
.product-pres-left, .product-pres-right {
  padding: 0 5.4%;
}
@media only screen and (min-width: 78em) {
  .product-pres-left, .product-pres-right {
    width: 50%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 78em) {
  .product-pres-left {
    padding-right: 25px;
    border-bottom: solid 1px rgba(2, 12, 38, 0.15);
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .product-pres-left-inner {
    max-width: 660px;
    margin: 0 0 0 auto;
  }
}
.product-pres-right {
  border: solid 1px rgba(2, 12, 38, 0.15);
  background: url(/images/img/pattern.png), #eef5f9;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .product-pres-right {
    border-top: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .product-pres-right {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .product-pres-right-inner {
    max-width: 570px;
  }
}
.product-picture {
  position: relative;
  background-color: #ffffff !important;
  margin-bottom: 20px;
  min-height: 200px;
}
@media only screen and (min-width: 78em) {
  .product-picture {
    margin-bottom: 50px;
  }
}
.product-picture-novelty {
  border-radius: 2px;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  border-radius: 2px;
  padding: 5px 11px 7px;
}
.product-picture-novelty + .product-picture-special-rate {
  right: 91px;
}
.product-picture-special-rate {
  background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  border-radius: 2px;
  padding: 5px 11px 7px;
}
.product-picture-special-rate:empty {
  display: none;
}
.product-picture img {
  max-height: 400px;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 78em) {
  .product-picture img {
    max-height: 535px;
  }
}
.product-gallery {
  margin: 0 -6%;
  padding: 0 5.4%;
  overflow: scroll;
}
@media only screen and (min-width: 78em) {
  .product-gallery {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
}
.product-gallery ul {
  display: flex;
}
@media only screen and (min-width: 78em) {
  .product-gallery ul {
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.product-gallery ul::after {
  content: "";
  width: 5.4%;
  min-width: 5.4%;
}
.product-gallery ul li {
  width: 80px;
  height: 60px;
  min-width: 80px;
  margin: 0 10px;
}
@media only screen and (min-width: 78em) {
  .product-gallery ul li {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
    height: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .product-gallery ul li {
    width: calc(16.6666% - 20px);
  }
}
.product-gallery ul li img {
  margin: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.product-price .price {
  color: rgba(2, 12, 38, 0.5);
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 78em) {
  .product-price .price {
    font-size: 20px;
  }
}
.product-price .price:not(.old_price):not(.price-ht), .product-price .price.price-special {
  font-size: 25px;
  font-weight: bold;
  color: #f19124;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .product-price .price:not(.old_price):not(.price-ht), .product-price .price.price-special {
    font-size: 30px;
  }
}
.product-price .price:not(.old_price):not(.price-ht) .product-price-taxe, .product-price .price.price-special .product-price-taxe {
  font-size: 15px;
  font-weight: 400;
  padding-left: 10px;
  padding-bottom: 3px;
}
.product-price .price.old_price {
  order: 2;
  text-decoration: line-through;
  padding: 0 0 2px 20px;
  color: rgba(2, 12, 38, 0.5);
  line-height: 1;
}
.product-price .price.old_price .product-price-taxe {
  display: none;
}
.product-price .old_price + .price-special {
  order: 1;
}
.product-price .price-special .prix:empty + .product-price-taxe {
  display: none;
}
.product-price .ecoParticipationDetail {
  order: 3;
  width: 100%;
  margin-top: 9px;
}
.product-price .ecoParticipationDetail .price {
  color: #013859;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (min-width: 78em) {
  .product-price .ecoParticipationDetail .price {
    font-size: 15px;
  }
}
.product-price .ecoParticipationDetail .price + .price {
  display: none;
}
.product-reference {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  margin: 30px 0 20px;
  line-height: 1.2;
}
.product-reference #franco {
  display: none;
}
.product-reference strong {
  color: #013859;
  letter-spacing: 0;
  text-transform: none;
}
.product-quest {
  margin-top: 20px;
}
.product-quest a {
  font-size: 12px;
  font-weight: 700;
}
.product-quest a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/images/icon/icon-question-orange.svg) no-repeat center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.product-quest a::after {
  content: url(/images/icon/icon-chevron-right.svg);
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.product-infos-delivery {
  display: flex;
  flex-wrap: wrap;
}
.product-infos-delivery a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(2, 12, 38, 0.75);
}
.product-infos-delivery a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: no-repeat center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.product-infos-delivery a::after {
  content: url(/images/icon/icon-chevron-right-blue.svg);
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.product-infos-delivery a:first-child {
  margin-right: 20px;
}
@media only screen and (min-width: 90em) {
  .product-infos-delivery a:first-child {
    margin-right: 40px;
  }
}
.product-infos-delivery a:first-child::before {
  background-image: url(/images/icon/icon-map-blue.svg);
}
.product-infos-delivery a:nth-child(2)::before {
  background-image: url(/images/icon/icon-delivery-blue.svg);
}
.product-logos-reassu {
  margin: 30px 0 40px;
}
@media only screen and (min-width: 90em) {
  .product-logos-reassu {
    margin-bottom: 50px;
  }
}
.product-logos-reassu img {
  width: 396px;
  max-width: 100%;
}
.product-little-desc {
  line-height: 1.43;
  color: rgba(2, 12, 38, 0.75);
  margin: 40px 0;
  font-size: 14px;
}
.product-little-desc p:last-child {
  margin-bottom: 0;
}
.product-form .label {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: rgba(2, 12, 38, 0.5);
}
.product-devis {
  border: solid 1px rgba(2, 12, 38, 0.15);
  background: url(/images/icon/icon-perso-bleu.svg) no-repeat 16px center, #ffffff;
  background-size: 42px;
  border-radius: 2px;
  padding: 20px 20px 23px 75px;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 78em) {
  .product-devis {
    padding-right: 25px;
  }
}
.product-devis-little {
  font-size: 14px;
  line-height: 1.43;
  color: rgba(2, 12, 38, 0.75);
}
.product-devis-big {
  font-size: 16px;
  color: #013859;
  line-height: 1;
  margin-top: 7px;
  font-weight: bold;
  color: rgba(2, 12, 38, 0.75);
}
.product-devis-big::after {
  content: url(/images/icon/icon-chevron-right-blue.svg);
  margin-left: 5px;
}
@media only screen and (min-width: 78em) {
  .product-tabs {
    padding: 0 5.4%;
  }
  .product-tabs-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}

#stock {
  font-size: 16px;
  font-weight: bold;
  color: rgba(2, 12, 38, 0.75);
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 40px;
}

.stockDetail:not(:empty) + .stockWaiting:not(:empty)::before {
  content: "|";
  margin: 0 7px;
}

#stock_availability_date {
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 20px;
}

.stockDetail.stock_out {
  color: #d73131;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stockDetail.stock_out::before {
  content: "";
  background: url("/images/icon/icon-info-red.svg") no-repeat center;
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
}

/*.stockDetail.stock_in.off*/
.stockDetail.stock_in, .stockWaiting.stock_in.off, .stockAvailabilityDate.off {
  display: none;
}

.tabs {
  margin: 40px 0;
}
@media only screen and (min-width: 78em) {
  .tabs {
    margin: 75px 0;
  }
}
@media only screen and (min-width: 90em) {
  .tabs {
    margin: 100px 0;
  }
}
.tabs-title {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin: 0 -5px 40px;
}
.tabs-title:empty {
  display: none;
}
.tabs-title:empty + .tabs-content {
  display: none;
}
@media only screen and (min-width: 78em) {
  .tabs-title {
    margin: 0 0 50px;
  }
}
.tabs-title::after {
  content: "";
  height: 3px;
  width: 100%;
  background: rgba(2, 12, 38, 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.tabs-title a {
  font-size: 12px;
  text-align: center;
  color: rgba(2, 12, 38, 0.75);
  text-decoration: none;
  padding: 0 10px 13px;
  border-bottom: 3px solid rgba(2, 12, 38, 0.75);
  line-height: 1;
}
@media only screen and (min-width: 23.438em) {
  .tabs-title a {
    padding: 0 15px 18px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 78em) {
  .tabs-title a {
    padding: 0 31px 25px 32px;
    font-size: 20px;
  }
}
.tabs-title a#current {
  font-weight: bold;
  color: #f19124;
  border-bottom-color: #f19124;
}

.product-associated {
  background: url(/images/img/pattern.png), #eef5f9;
  border-top: solid 1px rgba(2, 12, 38, 0.15);
  padding: 40px 5.4%;
  margin: 0 -6%;
}
@media only screen and (min-width: 78em) {
  .product-associated {
    padding: 60px 5.4% 40px;
    margin: 0;
  }
}
@media only screen and (min-width: 90em) {
  .product-associated {
    padding: 100px 5.4% 80px;
  }
}
.product-associated .h1 {
  margin-bottom: 40px;
}
.product-associated .h1 span {
  color: #f19124;
}
@media only screen and (min-width: 90em) {
  .product-associated .h1 {
    margin-bottom: 50px;
  }
}
.product-associated + .product-associated {
  background: #ffffff;
}
.product-associated-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.product-associated .product-list > .short_product:nth-child(n+2) {
  display: none;
}
@media only screen and (min-width: 48em) {
  .product-associated .product-list > .short_product:nth-child(n+2) {
    display: block;
  }
  .product-associated .product-list > .short_product:nth-child(n+3) {
    display: none;
  }
}
@media only screen and (min-width: 64em) {
  .product-associated .product-list > .short_product {
    width: calc(33.3333% - 20px);
  }
}
@media only screen and (min-width: 78em) {
  .product-associated .product-list > .short_product:nth-child(n+3) {
    display: block;
  }
  .product-associated .product-list > .short_product:nth-child(n+4) {
    display: none;
  }
}
@media only screen and (min-width: 90em) {
  .product-associated .product-list > .short_product {
    width: calc(25% - 20px);
  }
  .product-associated .product-list > .short_product:nth-child(n+4) {
    display: block;
  }
  .product-associated .product-list > .short_product:nth-child(n+5) {
    display: none;
  }
}
.product-associated .btn-more {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .product-associated .btn-more {
    margin: 0;
    position: absolute;
    top: 23px;
    right: 0;
  }
  .product-associated .btn-more a {
    font-size: 14px;
  }
}

.non-contractuelle {
  font-style: italic;
  font-size: 12px;
  text-align: center;
}

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

	Shortproduct

*/
.short_product {
  position: relative;
  border-radius: 12px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background: #ffffff;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) {
  .short_product {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .short_product:hover {
    border-color: #f19124;
    box-shadow: 0 0 8px -4px rgb(160, 160, 160);
  }
}
@media only screen and (min-width: 90em) {
  .short_product {
    width: calc(33.3333% - 20px);
  }
}
.short_product_img {
  padding: 30px;
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
  position: relative;
  background-color: #ffffff !important;
}
.short_product_img.stock_out.on::before {
  content: "Épuisé";
  border-radius: 2px;
  background-color: #d8d8d8;
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 20px;
  color: rgba(2, 12, 38, 0.5);
  border-radius: 2px;
  padding: 6px 11px;
}
.short_product_img.stock_out.on .short_product_promo {
  right: 94px;
}
.short_product_img_inner {
  height: 210px;
}
.short_product_img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.short_product.novelty .short_product_img::after {
  content: "Nouveau";
  border-radius: 2px;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ffffff;
  border-radius: 2px;
  padding: 6px 11px;
}
.short_product.novelty .short_product_img.stock_out::after {
  right: 94px;
}
.short_product.novelty .short_product_img.stock_out .short_product_promo {
  right: 183px;
}
.short_product.novelty .short_product_promo {
  right: 108px;
}
.short_product_promo {
  background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ffffff;
  border-radius: 2px;
  padding: 6px 11px;
}
.short_product_selection {
  border-radius: 2px;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #ffffff;
  border-radius: 2px;
  padding: 6px 11px;
  z-index: 2;
}
.short_product_reappro {
  border-radius: 2px;
  background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
  line-height: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #ffffff;
  border-radius: 2px;
  padding: 6px 11px;
  z-index: 2;
}
.short_product_txt {
  padding: 20px;
}
.short_product_marque {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.short_product .h2 {
  margin: 9px 0 11px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.29;
  color: rgba(2, 12, 38, 0.75);
}
.short_product_price {
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  color: #f19124;
  line-height: 1;
}
.short_product_price .from_price {
  font-size: 12px;
  color: rgba(2, 12, 38, 0.5);
  font-weight: 400;
  margin-right: 2px;
}
.short_product_price .from_price + .old_price {
  font-size: 12px;
}
.short_product_price_main.old_price {
  font-size: 16px;
  color: rgba(2, 12, 38, 0.5);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 7px;
}
.short_product_price_tva {
  font-weight: 400;
  font-size: 12px;
}

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

	FAQ

*/
@media only screen and (min-width: 78em) {
  #faq h1 {
    margin-bottom: 50px;
  }
}

article .faq {
  margin-bottom: 10px;
  box-shadow: 0 0 5px 0 rgba(22, 11, 41, 0.12);
  border-radius: 10px;
}
article .faq-quest {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 40px 20px 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
article .faq-quest:hover {
  background-color: #D9DADE;
}
@media only screen and (min-width: 78em) {
  article .faq-quest {
    padding: 30px 100px 30px 50px;
  }
}
article .faq-quest::after {
  content: url(/images/icon/icon-chevron-right-blue.svg);
  position: absolute;
  right: 10px;
  top: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 78em) {
  article .faq-quest::after {
    right: 50px;
    top: 28px;
  }
}
article .faq-quest h2 {
  font-size: 18px;
  line-height: 1.22;
  margin: 0;
}
article .faq-answer {
  display: none;
  background-color: #ffffff;
  padding: 20px 20px 30px;
  border-radius: 0 0 10px 10px;
}
@media only screen and (min-width: 78em) {
  article .faq-answer {
    padding: 50px;
  }
}
article .faq-answer > *:last-child {
  margin-bottom: 0;
}
article .faq.open .faq-quest {
  background-color: #D9DADE;
  border-radius: 10px 10px 0 0;
}
article .faq.open .faq-quest::after {
  transform: rotate(90deg);
}

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

	Page listing actualités

*/
.newsList .content-article-inner article:first-child:last-child {
  max-width: 1400px;
}
.newsList .footer-site-sub {
  display: none;
}

@media only screen and (min-width: 48em) {
  .blog-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.blog-list-item {
  position: relative;
  border-radius: 12px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: #ffffff;
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .blog-list-item {
    width: calc(50% - 20px);
    margin: 0 10px 30px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .blog-list-item:hover {
    border-color: #f19124;
    box-shadow: 0 0 8px -4px rgb(160, 160, 160);
  }
}
@media only screen and (min-width: 78em) {
  .blog-list-item {
    width: calc(33.333% - 20px);
  }
}
.blog-list-item-img {
  height: 200px;
  position: relative;
}
@media only screen and (min-width: 90em) {
  .blog-list-item-img {
    height: 260px;
  }
}
.blog-list-item-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog-list-item-date {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 6px 10px 6px 11px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #026992, #013859), linear-gradient(to bottom, #ffffff, #ffffff);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
}
.blog-list-item-txt {
  padding: 20px;
}
.blog-list-item-tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(2, 12, 38, 0.5);
  text-transform: uppercase;
  line-height: 1;
}
.blog-list-item .h4, .blog-list-item h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(2, 12, 38, 0.75);
  margin: 0;
}
@media only screen and (min-width: 90em) {
  .blog-list-item .h4, .blog-list-item h2 {
    font-size: 20px;
  }
}

.widget-blog {
  position: relative;
}
@media only screen and (min-width: 90em) {
  .widget-blog {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.widget-blog .blog-list-item:nth-child(n+2) {
  display: none;
}
@media only screen and (min-width: 48em) {
  .widget-blog .blog-list-item:nth-child(n+2) {
    display: block;
  }
}
@media only screen and (min-width: 48em) {
  .widget-blog .blog-list-item:last-child {
    display: none;
  }
}
@media only screen and (min-width: 78em) {
  .widget-blog .blog-list-item:last-child {
    display: block;
  }
}
@media only screen and (min-width: 90em) {
  .widget-blog .blog-list-item {
    margin-bottom: 0;
  }
}
.widget-blog .btn-more {
  margin-top: 40px;
}
@media only screen and (min-width: 48em) {
  .widget-blog .btn-more {
    margin: 0;
    position: absolute;
    top: 23px;
    right: 0;
  }
  .widget-blog .btn-more a {
    font-size: 14px;
  }
}

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

	Page détail actualité

*/
.chapo {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 20px 20px;
  margin-bottom: 40px;
  border: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 64em) {
  .chapo {
    display: flex;
  }
}
@media only screen and (min-width: 78em) {
  .chapo {
    padding: 50px;
    margin-bottom: 50px;
  }
}
.chapo-img {
  margin: -20px -20px 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  height: 210px;
}
@media only screen and (min-width: 64em) {
  .chapo-img {
    height: inherit;
    border-radius: 10px 0 0 10px;
    margin: -20px 0 -20px -20px;
    min-width: 250px;
  }
}
@media only screen and (min-width: 78em) {
  .chapo-img {
    margin: -50px 0 -50px -50px;
  }
}
.chapo-description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(2, 12, 38, 0.5);
}
.chapo-description:first-child {
  margin-top: 0;
  padding-left: 0;
}
@media only screen and (min-width: 64em) {
  .chapo-description {
    margin: 0;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .chapo-description {
    padding-left: 50px;
  }
}
.chapo-date {
  color: rgba(2, 12, 38, 0.5);
  font-weight: bold;
}
@media only screen and (min-width: 90em) {
  .chapo {
    padding: 50px;
  }
}

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

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

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

	Page Contact

*/
@media only screen and (min-width: 48em) {
  .ru-contact .deux_colonnes {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 78em) {
  .ru-contact .deux_colonnes {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 103.125em) {
  .ru-contact .deux_colonnes {
    margin-bottom: 60px;
  }
}
.ru-contact .deux_colonnes .colleft {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ru-contact .deux_colonnes iframe {
  width: 100% !important;
}
@media only screen and (min-width: 48em) {
  .ru-contact .deux_colonnes iframe {
    margin: 0;
  }
}

.horaires {
  font-size: 12px;
}
@media only screen and (min-width: 78em) {
  .horaires {
    font-size: 14px;
  }
}

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

	Home

*/
.ru-accueil .header-article {
  display: none;
}
.ru-accueil .content-article {
  padding: 0;
}
.ru-accueil .content-article-inner {
  max-width: 100%;
  margin: 0;
}
.ru-accueil .content-article article:first-child:last-child {
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}
.ru-accueil h2 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #013859;
}
@media only screen and (min-width: 48em) {
  .ru-accueil h2 {
    font-size: 40px;
  }
}
.ru-accueil h2 span {
  font-size: 14px;
  color: #f19124;
  font-weight: 400;
  display: block;
}
@media only screen and (min-width: 48em) {
  .ru-accueil h2 span {
    font-size: 20px;
  }
}
.ru-accueil .leftbar {
  display: none;
}

.intro-accueil {
  background: url(/images/accueil/vente-outillage-machine-a-bois-xs.webp) no-repeat center, linear-gradient(to bottom, #013859, #026992);
  background-blend-mode: multiply;
  background-size: cover;
  padding: 40px 5.4% 30px;
  color: #ffffff;
}
@media only screen and (min-width: 30em) {
  .intro-accueil {
    background: url(/images/accueil/vente-outillage-machine-a-bois-s.webp) no-repeat center, linear-gradient(to bottom, #013859, #026992);
    background-blend-mode: multiply;
    background-size: cover;
  }
}
@media only screen and (min-width: 48em) {
  .intro-accueil {
    background: url(/images/accueil/vente-outillage-machine-a-bois-m.webp) no-repeat center, linear-gradient(to bottom, #013859, #026992);
    background-blend-mode: multiply;
    background-size: cover;
    padding: 60px 5.4% 50px;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil {
    background: url(/images/accueil/vente-outillage-machine-a-bois.webp) no-repeat center, linear-gradient(to bottom, #013859, #026992);
    background-blend-mode: multiply;
    background-size: cover;
    padding: 80px 5.4%;
  }
}
@media only screen and (min-width: 90em) {
  .intro-accueil-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.intro-accueil-desc {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-desc {
    max-width: 930px;
    margin: 0 auto 60px;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-desc {
    margin-bottom: 80px;
  }
}
.intro-accueil-desc h1 {
  color: #ffffff;
  margin-bottom: 30px;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-desc h1 {
    font-size: 29px;
    line-height: 1.4;
  }
  .intro-accueil-desc h1 strong {
    display: block;
    font-weight: 700;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-desc h1 {
    font-size: 39px;
  }
}
.intro-accueil-desc p {
  line-height: 1.7;
  font-size: 14px;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
}
.intro-accueil-family-item {
  padding: 15px;
  border-radius: 12px;
  border: solid 1px rgba(2, 12, 38, 0.15);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  max-width: 355px;
  margin: 0 auto 10px;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    align-items: flex-start;
    max-width: 100%;
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-family-item {
    padding: 30px 30px 25px 20px;
    width: calc(33.333% - 20px);
  }
}
.intro-accueil-family-item-img {
  width: 60px;
  height: 60px;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family-item-img {
    width: 100px;
    height: 100px;
  }
}
.intro-accueil-family-item-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.intro-accueil-family-item-txt {
  width: calc(100% - 60px);
  padding-left: 20px;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family-item-txt {
    width: calc(100% - 100px);
  }
}
@media only screen and (min-width: 78em) {
  .intro-accueil-family-item-txt {
    padding-left: 30px;
  }
}
.intro-accueil-family-item-txt p {
  font-size: 18px;
  font-weight: 700;
  color: #013859;
  margin: 0 0 5px;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family-item-txt p {
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.intro-accueil-family-item-txt ul {
  display: none;
}
@media only screen and (min-width: 48em) {
  .intro-accueil-family-item-txt ul {
    display: block;
    margin: 10px 0 10px;
  }
  .intro-accueil-family-item-txt ul li {
    margin: 0;
    color: rgba(2, 12, 38, 0.75);
  }
  .intro-accueil-family-item-txt ul li a {
    font-size: 14px;
    line-height: 2.14;
    color: rgba(2, 12, 38, 0.75);
    text-decoration: none;
  }
}
.intro-accueil-family-item-txt > a {
  font-weight: bold;
  font-size: 14px;
}
.intro-accueil-family-item-txt > a::after {
  content: url(/images/icon/icon-chevron-right-orange.svg);
  margin-left: 5px;
}
.intro-accueil-family-item.orange {
  background: linear-gradient(to bottom, #f1ad61, #f19124), linear-gradient(to bottom, #ffffff, #ffffff);
  display: block;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro-accueil-family-item.orange ul li a {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.33;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 0 5px 35px;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  line-height: 1.2;
}
.intro-accueil-family-item.orange ul li:first-child {
  margin-top: 0;
}
.intro-accueil-family-item.orange ul li:last-child {
  margin-bottom: 0;
}
.intro-accueil-family-item.orange ul li.delivery a {
  background-image: url(/images/icon/icon-delivery-white.svg);
}
.intro-accueil-family-item.orange ul li.map a {
  background-image: url(/images/icon/icon-map-white.svg);
}
.intro-accueil-family-item.orange ul li.secure a {
  background-image: url(/images/icon/icon-secure-white.svg);
}
.intro-accueil-family-item.orange img {
  max-width: 304px;
  display: block;
  margin: 0 auto;
}

.promote-accueil {
  padding: 40px 5.4%;
  background: url(/images/img/pattern.png), #eef5f9;
  border-bottom: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .promote-accueil {
    padding: 60px 5.4%;
  }
}
@media only screen and (min-width: 78em) {
  .promote-accueil {
    padding: 80px 5.4% 60px;
  }
  .promote-accueil .short_product {
    width: calc(33.33% - 20px);
  }
  .promote-accueil .short_product:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 90em) {
  .promote-accueil {
    padding: 100px 5.4% 80px;
  }
  .promote-accueil .short_product {
    width: calc(25% - 20px);
  }
  .promote-accueil .short_product:nth-child(3) {
    display: block;
  }
}
@media only screen and (min-width: 64em) {
  .promote-accueil-inner > h2 {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .promote-accueil-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.promote-accueil .pub-chqKdo {
  position: relative;
  background: rgb(23, 102, 149);
  background: linear-gradient(180deg, rgb(23, 102, 149) 0%, rgb(0, 39, 63) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 78em) {
  .promote-accueil .pub-chqKdo {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (min-width: 90em) {
  .promote-accueil .pub-chqKdo {
    width: calc(25% - 20px);
  }
}
.promote-accueil .pub-chqKdo > p {
  font-size: 30px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}
.promote-accueil .pub-chqKdo > p > span {
  display: block;
  font-weight: normal;
  text-transform: uppercase;
}
.promote-accueil .pub-chqKdo a.link {
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 20px;
}
.promote-accueil .pub-chqKdo a.link::after {
  content: url(/images/icon/icon-chevron-right-orange.svg);
  margin-left: 5px;
}
.promote-accueil-desc {
  line-height: 1.5;
  max-width: 780px;
  margin: 40px auto 0;
}
.promote-accueil-desc p:last-child {
  margin-bottom: 0;
  margin-top: 30px;
}

.marque-accueil {
  padding: 45px 5.4%;
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .marque-accueil {
    padding: 60px 5.4%;
  }
}
@media only screen and (min-width: 78em) {
  .marque-accueil {
    padding: 80px 5.4%;
  }
}
@media only screen and (min-width: 90em) {
  .marque-accueil {
    padding: 100px 5.4%;
  }
  .marque-accueil-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.marque-accueil-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px -10px 10px;
}
@media only screen and (min-width: 48em) {
  .marque-accueil-gallery {
    margin: 70px -10px 0;
  }
}
.marque-accueil-gallery-item {
  width: 88px;
  height: 36px;
  margin: 0 10px 20px;
}
@media only screen and (min-width: 48em) {
  .marque-accueil-gallery-item {
    width: 170px;
    height: 70px;
    margin: 0 30px 42px;
  }
}
.marque-accueil-gallery-item img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 78em) {
  .marque-accueil p {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 103.125em) {
  .marque-accueil p {
    margin-top: 30px;
  }
}
.marque-accueil .btn-more {
  margin-top: 30px;
}
@media only screen and (min-width: 48em) {
  .marque-accueil .btn-more {
    margin-top: 40px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 103.125em) {
  .marque-accueil .btn-more {
    margin-top: 50px;
  }
}

.pres-accueil {
  padding: 40px 5.4%;
  background: url(/images/img/pattern.png), #eef5f9;
  border-top: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 48em) {
  .pres-accueil {
    padding: 60px 5.4%;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil {
    padding: 80px 5.4%;
  }
}
@media only screen and (min-width: 48em) {
  .pres-accueil-inner {
    display: flex;
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil {
    padding: 100px 5.4%;
  }
  .pres-accueil-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.pres-accueil-left {
  height: 200px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-left {
    height: inherit;
    margin: 0;
    width: 24%;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil-left {
    width: 40%;
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil-left {
    width: 570px;
  }
}
.pres-accueil-left img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-right {
    width: 76%;
    padding: 30px 0 30px 40px;
  }
}
@media only screen and (min-width: 78em) {
  .pres-accueil-right {
    width: 60%;
    padding: 60px 0 60px 60px;
  }
}
@media only screen and (min-width: 90em) {
  .pres-accueil-right {
    width: calc(100% - 570px);
    padding: 80px 0 80px 80px;
  }
}
@media only screen and (min-width: 103.125em) {
  .pres-accueil-right {
    padding-left: 140px;
  }
}
.pres-accueil-right h2 {
  text-align: left;
}
.pres-accueil-right ul {
  margin: 40px 0;
}
.pres-accueil-right ul li {
  margin: 0 0 25px;
}
.pres-accueil-right ul li a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.29;
  color: rgba(2, 12, 38, 0.75);
  padding-left: 60px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pres-accueil-right ul li.delivery a {
  background-image: url(/images/icon/icon-delivery-orange.svg);
}
.pres-accueil-right ul li.quest a {
  background-image: url(/images/icon/icon-question-orange.svg);
}
.pres-accueil-right ul li.map a {
  background-image: url(/images/icon/icon-map-orange.svg);
}
.pres-accueil-right .btn-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-right .btn-more {
    flex-direction: row;
    align-items: center;
    margin: 40px 0 0;
  }
}
.pres-accueil-right .btn-more .btn-full-orange, .pres-accueil-right .btn-more .category-list a, .category-list .pres-accueil-right .btn-more a, .pres-accueil-right .btn-more .btn-full-secondary, .pres-accueil-right .btn-more input[type=submit], .pres-accueil-right .btn-more .cart .flex-center input, .cart .flex-center .pres-accueil-right .btn-more input, .pres-accueil-right .btn-more #boxFiltre .filtres-header-left #filtreMaSelection a, #boxFiltre .filtres-header-left #filtreMaSelection .pres-accueil-right .btn-more a {
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .pres-accueil-right .btn-more .btn-full-orange, .pres-accueil-right .btn-more .category-list a, .category-list .pres-accueil-right .btn-more a, .pres-accueil-right .btn-more .btn-full-secondary, .pres-accueil-right .btn-more input[type=submit], .pres-accueil-right .btn-more .cart .flex-center input, .cart .flex-center .pres-accueil-right .btn-more input, .pres-accueil-right .btn-more #boxFiltre .filtres-header-left #filtreMaSelection a, #boxFiltre .filtres-header-left #filtreMaSelection .pres-accueil-right .btn-more a {
    margin-bottom: 0;
    margin-right: 30px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 103.125em) {
  .pres-accueil-right .btn-more .btn-full-orange, .pres-accueil-right .btn-more .category-list a, .category-list .pres-accueil-right .btn-more a, .pres-accueil-right .btn-more .btn-full-secondary, .pres-accueil-right .btn-more input[type=submit], .pres-accueil-right .btn-more .cart .flex-center input, .cart .flex-center .pres-accueil-right .btn-more input, .pres-accueil-right .btn-more #boxFiltre .filtres-header-left #filtreMaSelection a, #boxFiltre .filtres-header-left #filtreMaSelection .pres-accueil-right .btn-more a {
    margin-right: 50px;
  }
}
.pres-accueil-right .btn-more .little-blue {
  font-size: 12px;
  font-weight: 700;
  color: #013859;
}
.pres-accueil-right .btn-more .little-blue::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/images/icon/icon-question-blue.svg) no-repeat center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.pres-accueil-right .btn-more .little-blue::after {
  content: url(/images/icon/icon-chevron-right-blue.svg);
  margin-left: 5px;
  position: relative;
  top: 2px;
}

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

	Marques

*/
body.marques .content-article {
  padding-bottom: 0;
}

.marques-intro {
  padding-bottom: 40px;
}
@media only screen and (min-width: 78em) {
  .marques-intro {
    padding-bottom: 50px;
  }
}
.marques-intro p:last-child {
  margin-bottom: 0;
}

.marques-populaires-list {
  margin: 20px 0 30px;
}
@media only screen and (min-width: 78em) {
  .marques-populaires-list {
    margin-bottom: 40px;
  }
}
.marques-populaires-list a {
  display: inline-block;
  margin: 10px 15px 0 0;
  padding: 7px 20px;
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  background-color: #fff;
  text-decoration: none;
  color: #013859;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.marques-populaires-list a:hover {
  border-color: #f19124;
  box-shadow: 0 0 8px -4px #a0a0a0;
  color: #f19124;
}

.marques-detail {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url(/images/img/pattern.png), #eef5f9;
  padding: 40px 5.4%;
  border-top: solid 1px rgba(2, 12, 38, 0.15);
}
@media only screen and (min-width: 78em) {
  .marques-detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .marques-detail {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.marques-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 23.438em) {
  .marques-detail .bloc-list {
    margin: 30px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 78em) {
  .marques-detail .bloc-list {
    margin-top: 40px;
  }
}
.marques-detail .bloc-list-item {
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
@media only screen and (min-width: 23.438em) {
  .marques-detail .bloc-list-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}
@media only screen and (min-width: 48em) {
  .marques-detail .bloc-list-item {
    width: calc(33.333% - 20px);
  }
}
@media only screen and (min-width: 78em) {
  .marques-detail .bloc-list-item {
    width: calc(25% - 20px);
  }
}
.marques-detail .bloc-list-item-img {
  width: auto;
  height: 70px;
  min-width: auto;
  width: 100%;
  margin-bottom: 20px;
}
.marques-detail .bloc-list-item-img:empty {
  height: 70px;
  width: 140px;
  max-width: 100%;
}
.marques-detail .bloc-list-item-img img {
  object-fit: contain;
}
.marques-detail .bloc-list-item-txt {
  padding: 0;
  width: 100%;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -5px 25px;
}
@media only screen and (min-width: 48em) {
  .category-list {
    margin-bottom: 45px;
  }
}
.category-list a {
  padding: 9px 11px;
  font-size: 12px;
  margin: 5px;
}

@media only screen and (min-width: 48em) {
  .description + .product-list {
    margin-top: 50px;
  }
}

.link-more {
  text-align: center;
  margin-top: 30px;
}

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

	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-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: -999999px;
  width: 100%;
  height: 100%;
  display: block;
}
.viewproduct a {
  width: 100%;
  height: 100%;
  display: block;
}

.bloc, .formulaire, .ru-contact .deux_colonnes .colleft {
  padding: 25px 5.4%;
  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, .formulaire > *:last-child, .ru-contact .deux_colonnes .colleft > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 48em) {
  .bloc, .formulaire, .ru-contact .deux_colonnes .colleft {
    padding: 40px 5.4%;
  }
}
@media only screen and (min-width: 64em) {
  .bloc, .formulaire, .ru-contact .deux_colonnes .colleft {
    padding: 50px;
  }
}

.bold {
  font-weight: 600;
}

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

.no-photo {
  background: url("/images/img/nophoto.png") no-repeat center, rgba(2, 12, 38, 0.15);
}

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

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

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

.color1 {
  color: #013859;
}

.color2 {
  color: #f19124;
}

.color3 {
  color: rgba(2, 12, 38, 0.3);
}

.color4 {
  color: #f50023;
}

.exergue {
  font-size: 18px;
  color: rgba(2, 12, 38, 0.5);
  font-style: italic;
}

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

	PRINT
	Ces fichiers contiennent les styles pour l'impression

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

	Style lors de l'impression

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