/*
	Magento styles
*/
.column {
	display: block;
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
	padding: 0.75rem;
}

.columns {
	box-sizing: border-box;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	margin-top: -0.75rem;
}

.columns > * {
	box-sizing: border-box;
}

.columns:last-child {
	margin-bottom: -0.75rem;
}

.columns .columns {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	margin-top: -0.75rem;
}

.columns .columns:last-child {
	margin-bottom: -0.75rem;
}

.columns.is-mobile > .column.is-narrow {
	flex: none;
}

.columns.is-mobile > .column.is-full {
	flex: none;
	width: 100%;
}

.columns.is-mobile > .column.is-three-quarters {
	flex: none;
	width: 75%;
}

.columns.is-mobile > .column.is-two-thirds {
	flex: none;
	width: 66.6666%;
}

.columns.is-mobile > .column.is-half {
	flex: none;
	width: 50%;
}

.columns.is-mobile > .column.is-one-third {
	flex: none;
	width: 33.3333%;
}

.columns.is-mobile > .column.is-one-quarter {
	flex: none;
	width: 25%;
}

.columns.is-mobile > .column.is-one-fifth {
	flex: none;
	width: 20%;
}

.columns.is-mobile > .column.is-two-fifths {
	flex: none;
	width: 40%;
}

.columns.is-mobile > .column.is-three-fifths {
	flex: none;
	width: 60%;
}

.columns.is-mobile > .column.is-four-fifths {
	flex: none;
	width: 80%;
}

.columns.is-mobile > .column.is-offset-three-quarters {
	margin-left: 75%;
}

.columns.is-mobile > .column.is-offset-two-thirds {
	margin-left: 66.6666%;
}

.columns.is-mobile > .column.is-offset-half {
	margin-left: 50%;
}

.columns.is-mobile > .column.is-offset-one-third {
	margin-left: 33.3333%;
}

.columns.is-mobile > .column.is-offset-one-quarter {
	margin-left: 25%;
}

.columns.is-mobile > .column.is-offset-one-fifth {
	margin-left: 20%;
}

.columns.is-mobile > .column.is-offset-two-fifths {
	margin-left: 40%;
}

.columns.is-mobile > .column.is-offset-three-fifths {
	margin-left: 60%;
}

.columns.is-mobile > .column.is-offset-four-fifths {
	margin-left: 80%;
}

.columns.is-mobile > .column.is-1 {
	flex: none;
	width: 8.33333%;
}

.columns.is-mobile > .column.is-offset-1 {
	margin-left: 8.33333%;
}

.columns.is-mobile > .column.is-2 {
	flex: none;
	width: 16.66667%;
}

.columns.is-mobile > .column.is-offset-2 {
	margin-left: 16.66667%;
}

.columns.is-mobile > .column.is-3 {
	flex: none;
	width: 25%;
}

.columns.is-mobile > .column.is-offset-3 {
	margin-left: 25%;
}

.columns.is-mobile > .column.is-4 {
	flex: none;
	width: 33.33333%;
}

.columns.is-mobile > .column.is-offset-4 {
	margin-left: 33.33333%;
}

.columns.is-mobile > .column.is-5 {
	flex: none;
	width: 41.66667%;
}

.columns.is-mobile > .column.is-offset-5 {
	margin-left: 41.66667%;
}

.columns.is-mobile > .column.is-6 {
	flex: none;
	width: 50%;
}

.columns.is-mobile > .column.is-offset-6 {
	margin-left: 50%;
}

.columns.is-mobile > .column.is-7 {
	flex: none;
	width: 58.33333%;
}

.columns.is-mobile > .column.is-offset-7 {
	margin-left: 58.33333%;
}

.columns.is-mobile > .column.is-8 {
	flex: none;
	width: 66.66667%;
}

.columns.is-mobile > .column.is-offset-8 {
	margin-left: 66.66667%;
}

.columns.is-mobile > .column.is-9 {
	flex: none;
	width: 75%;
}

.columns.is-mobile > .column.is-offset-9 {
	margin-left: 75%;
}

.columns.is-mobile > .column.is-10 {
	flex: none;
	width: 83.33333%;
}

.columns.is-mobile > .column.is-offset-10 {
	margin-left: 83.33333%;
}

.columns.is-mobile > .column.is-11 {
	flex: none;
	width: 91.66667%;
}

.columns.is-mobile > .column.is-offset-11 {
	margin-left: 91.66667%;
}

.columns.is-mobile > .column.is-12 {
	flex: none;
	width: 100%;
}

.columns.is-mobile > .column.is-offset-12 {
	margin-left: 100%;
}

.columns:not(:last-child) {
	margin-bottom: calc(1.5rem - 0.75rem);
}

.columns.is-centered {
	justify-content: center;
}

.columns.is-gapless {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

.columns.is-gapless > .column {
	margin: 0;
	padding: 0 !important;
}

.columns.is-gapless:not(:last-child) {
	margin-bottom: 1.5rem;
}

.columns.is-gapless:last-child {
	margin-bottom: 0;
}

.columns.is-mobile {
	display: flex;
}

.columns.is-multiline {
	flex-wrap: wrap;
}

.columns.is-vcentered {
	align-items: center;
}

.columns.is-variable {
	--columnGap: 0.75rem;
	margin-left: calc(-1 * var(--columnGap));
	margin-right: calc(-1 * var(--columnGap));
}

.columns.is-variable .column {
	padding-left: var(--columnGap);
	padding-right: var(--columnGap);
}

.columns.is-variable.is-0 {
	--columnGap: 0rem;
}

.columns.is-variable.is-1 {
	--columnGap: 0.25rem;
}

.columns.is-variable.is-2 {
	--columnGap: 0.5rem;
}

.columns.is-variable.is-3 {
	--columnGap: 0.75rem;
}

.columns.is-variable.is-4 {
	--columnGap: 1rem;
}

.columns.is-variable.is-5 {
	--columnGap: 1.25rem;
}

.columns.is-variable.is-6 {
	--columnGap: 1.5rem;
}

.columns.is-variable.is-7 {
	--columnGap: 1.75rem;
}

.columns.is-variable.is-8 {
	--columnGap: 2rem;
}

/* # Defaults
---------------------------------------------------------------------------------------------------- */
/* ## Forms
--------------------------------------------- */
input,
select,
textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #ededed;
	color: #333333;
	background-color: #ffffff;
	font-size: 1.8rem;
	font-weight: 400;
}

input:focus,
input:focus,
select:focus,
select:focus,
textarea:focus,
textarea:focus {
	border: 1px solid #999999;
	outline: none;
}

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

::-moz-placeholder {
	opacity: 1;
	color: #333333;
}

::-webkit-input-placeholder {
	color: #333333;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'],
.button,
.facet .facetwp-type-dropdown,
.has-button-ghost a {
	display: inline-block;
	width: auto;
	padding: 13px 30px;
	color: #ffffff;
	border: 1px solid #ffffff;
	background-color: #e30613;
	font-size: 1.6rem;
	font-weight: 600;
	white-space: normal;
	text-decoration: none;
	cursor: pointer;
	font-style: italic;
	text-align: center;
	box-sizing: border-box;
}

button:focus,
button:hover,
input[type='button']:focus,
input[type='button']:hover,
input[type='reset']:focus,
input[type='reset']:hover,
input[type='submit']:focus,
input[type='submit']:hover,
.button:focus,
.facet .facetwp-type-dropdown:focus,
.has-button-ghost a:focus,
.button:hover,
.facet .facetwp-type-dropdown:hover,
.has-button-ghost a:hover {
	background-color: transparent;
	border-color: #e30613;
	color: #e30613;
}

button.block,
input[type='button'].block,
input[type='reset'].block,
input[type='submit'].block,
.button.block,
.facet .block.facetwp-type-dropdown,
.has-button-ghost a.block {
	width: 100%;
}

button.small,
input[type='button'].small,
input[type='reset'].small,
input[type='submit'].small,
.button.small,
.facet .small.facetwp-type-dropdown,
.has-button-ghost a.small {
	padding: 8px 10px;
	font-size: 1.2rem;
}

button.extra-small,
input[type='button'].extra-small,
input[type='reset'].extra-small,
input[type='submit'].extra-small,
.button.extra-small,
.facet .extra-small.facetwp-type-dropdown,
.has-button-ghost a.extra-small {
	padding: 3px 10px;
	font-size: 1.0rem;
}

button.ghost,
input[type='button'].ghost,
input[type='reset'].ghost,
input[type='submit'].ghost,
.button.ghost,
.facet .ghost.facetwp-type-dropdown,
.has-button-ghost a.ghost {
	background-color: transparent;
	border: 1px solid #e30613;
	color: #e30613;
}

button.ghost:hover,
input[type='button'].ghost:hover,
input[type='reset'].ghost:hover,
input[type='submit'].ghost:hover,
.button.ghost:hover,
.facet .ghost.facetwp-type-dropdown:hover,
.has-button-ghost a.ghost:hover {
	background-color: #e30613;
	color: #ffffff;
	border-color: #e30613;
}

button .entry-content:focus,
button .entry-content:hover,
input[type='button'] .entry-content:focus,
input[type='button'] .entry-content:hover,
input[type='reset'] .entry-content:focus,
input[type='reset'] .entry-content:hover,
input[type='submit'] .entry-content:focus,
input[type='submit'] .entry-content:hover,
.button .entry-content:focus,
.facet .facetwp-type-dropdown .entry-content:focus,
.has-button-ghost a .entry-content:focus,
.button .entry-content:hover,
.facet .facetwp-type-dropdown .entry-content:hover,
.has-button-ghost a .entry-content:hover {
	color: #ffffff;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button {
	display: none;
}

/* ## Gallery
--------------------------------------------- */
.gallery {
	overflow: hidden;
}

.gallery img {
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999999;
	outline: none;
}

.gallery-item {
	float: left;
	margin: 0;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n + 1),
.gallery-columns-3 .gallery-item:nth-child(3n + 1),
.gallery-columns-4 .gallery-item:nth-child(4n + 1),
.gallery-columns-5 .gallery-item:nth-child(5n + 1),
.gallery-columns-6 .gallery-item:nth-child(6n + 1),
.gallery-columns-7 .gallery-item:nth-child(7n + 1),
.gallery-columns-8 .gallery-item:nth-child(8n + 1),
.gallery-columns-9 .gallery-item:nth-child(9n + 1) {
	clear: left;
}

/* ## Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: 0 0 20px;
	font-family: 'Merriweather', serif;
	font-weight: 400;
	line-height: 1.2;
}

h1,
.h1 {
	font-size: 2.4rem;
	font-weight: bold;
}

h2,
.h2 {
	font-size: 2.7rem;
}

h3,
.h3 {
	font-size: 2.4rem;
}

.entry-content h3,
.entry-content .h3 {
	font-weight: 600;
}

h4,
.h4 {
	font-size: 2rem;
	font-weight: bold;
	border-bottom: 1px solid #e30613;
	padding-bottom: 5px;
}

.entry-content h4,
.entry-content .h4 {
	margin-top: 4rem;
	font-weight: 600;
}

h5,
.h5 {
	font-size: 1.8rem;
}

h6,
.h6 {
	font-size: 1.6rem;
}

/* ## Objects
--------------------------------------------- */
embed,
iframe,
object,
video,
.wp-caption {
	width: 100%;
	max-width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* ## Screen Reader Text
--------------------------------------------- */
.visuallyhidden,
.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	word-wrap: normal !important;
}

.screen-reader-shortcut:focus,
.screen-reader-text:focus,
.widget_search input[type='submit']:focus {
	display: block;
	clip: auto !important;
	z-index: 100000;
	/* Above WP toolbar. */
	width: auto;
	height: auto;
	padding: 15px 23px 14px;
	color: #333333;
	background: #ffffff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
}

.more-link {
	position: relative;
}

/* ## Tables
--------------------------------------------- */
table {
	width: 100%;
	margin-bottom: 40px;
	border-spacing: 0;
	border-collapse: collapse;
	line-height: 2;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eeeeee;
}

td {
	padding: 6px;
	border-top: 1px solid #eeeeee;
	text-align: left;
}

td:first-child {
	padding-left: 0;
}

th {
	padding: 0 6px;
	font-weight: 400;
	text-align: left;
}

th:first-child {
	padding-left: 0;
}

/* ## Typographical Elements
--------------------------------------------- */
html {
	font-size: 62.5%;
	/* 10px browser default */
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

/* Chrome fix */
body > div {
	font-size: 1.3rem;
}

body {
	margin: 0;
	color: #333333;
	background-color: #ffffff;
	font-family: 'Merriweather', serif;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.625;
}

body.page-boxed {
	max-width: 1024px;
	margin: 0 auto;
	background-color: #f5f5f5;
	box-shadow: 0 0 20px rgba(51, 51, 51, 0.075);
}

button,
input:focus,
input[type='button'],
input[type='reset'],
input[type='submit'],
textarea:focus,
.button,
.facet .facetwp-type-dropdown,
.has-button-ghost a,
.gallery img {
	transition: all 0.2s ease-in-out;
}

a {
	color: #e30613;
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
	color: #333333;
	text-decoration: none;
}

p {
	margin: 0 0 30px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	clear: both;
	margin: 30px 0;
	border: 0;
	border-top: 1px solid #eeeeee;
	border-collapse: collapse;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ededed;
}

blockquote {
	margin: 30px;
}

blockquote:before {
	display: block;
	position: relative;
	top: -10px;
	left: -20px;
	height: 0;
	font-size: 3rem;
	content: '\201C';
}

/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */
/* ## Column Classes
--------------------------------------------- */
.full-width {
	width: 100%;
}

/* ## Site Container
--------------------------------------------- */
.site-container {
	background-color: #ffffff;
	word-wrap: break-word;
	-webkit-animation: fadein 1s;
	        animation: fadein 1s;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type='button']:disabled,
.site-container input[type='button']:disabled:hover,
.site-container input[type='reset']:disabled,
.site-container input[type='reset']:disabled:hover,
.site-container input[type='submit']:disabled,
.site-container input[type='submit']:disabled:hover {
	border-width: 0;
	color: #777777;
	background-color: #eeeeee;
	cursor: not-allowed;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.wrap,
.content-sidebar-wrap {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

.wrap .wrap,
.content-sidebar-wrap .wrap {
	width: 100%;
	min-width: 100%;
}

.content-sidebar-wrap {
	margin: 6rem auto;
}

/* ## Site Inner
--------------------------------------------- */
.site-inner {
	clear: both;
	margin: 0 auto;
}

/*
.content {

	@include breakpoint(sm) {
		width: 65%;
	}

	.full-width-content & {
		width: 100%;
	}
}

*/
.store-highlight {
	background: #f5f5f5;
	padding: 20px;
	margin-bottom: 20px;
}

.store-highlight .store-content-text {
	margin-bottom: 20px;
}

.store-highlight strong {
	color: #e30613;
}

.column.type-furet_store .content-post-grid {
	display: flex;
	align-items: center;
	overflow: hidden;
}

.column.type-furet_store .content-post-grid h2 {
	margin-bottom: 0;
}

.column.type-furet_store .content-post-grid .content-post-grid-image {
	width: 25%;
}

.column.type-furet_store .content-post-grid .content-post-info {
	width: 75%;
	padding: 20px;
	box-sizing: border-box;
}

.column.type-furet_store .content-post-grid .button,
.column.type-furet_store .content-post-grid .facet .facetwp-type-dropdown,
.facet .column.type-furet_store .content-post-grid .facetwp-type-dropdown,
.column.type-furet_store .content-post-grid .has-button-ghost a,
.has-button-ghost .column.type-furet_store .content-post-grid a {
	margin-top: 10px;
}

.column.type-furet_store .content-post-grid img {
	width: 100%;
	height: auto;
}

.content-post-data-list li:not(:last-child).content-post-right-special-date {
	border-top: 10px solid #ffffff;
	position: relative;
	background: #e30613;
	border-bottom: none;
	top: -1px;
	padding: 15px 25px;
	color: #ffffff;
}

.content-post-data-list li:not(:last-child).content-post-right-critizr {
	padding-left: 0;
}

.map-wrapper {
	background: #ededed;
	padding: 40px 20px;
}

.map-wrapper h3 {
	color: #e30613;
	font-size: 19px;
	font-size: 1.9rem;
	font-weight: bold;
}

.type-furet_store .fb_link {
	position: absolute;
	left: 0;
}

/* # Skip Links
---------------------------------------------------------------------------------------------------- */
/* Display outline on focus */
:focus {
	outline: #cccccc solid 1px;
	color: #333333;
}

/* # Site Navigation
---------------------------------------------------------------------------------------------------- */
/* ## Primary Navigation
--------------------------------------------- */
.nav-primary {
	width: 100%;
	background-color: #ffffff;
}

/* ## Secondary Navigation
--------------------------------------------- */
.nav-secondary {
	border-top: 1px solid #eeeeee;
	background-color: #ffffff;
}

/* ## Responsive Menu
--------------------------------------------- */
.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.menu-toggle {
	display: block;
	visibility: visible;
	position: relative;
	z-index: 1000;
	padding: 1.25em 0 1.25em 1.25em;
	border-width: 0;
	color: #333333;
	background-color: transparent;
	line-height: 1;
	text-align: center;
}

.menu-toggle:focus,
.menu-toggle:hover {
	border-width: 0;
	color: #e30613;
	background-color: transparent;
}

.menu-toggle:focus span,
.menu-toggle:focus span:before,
.menu-toggle:focus span:after,
.menu-toggle:hover span,
.menu-toggle:hover span:before,
.menu-toggle:hover span:after {
	background-color: #e30613;
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
	display: block;
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: #333333;
	content: '';
	transition: background-color 0.2s ease-in-out;
}

.menu-toggle span {
	top: 1px;
	bottom: 0;
	left: 0;
	margin: auto;
}

.menu-toggle span:before {
	top: -4px;
}

.menu-toggle span:after {
	bottom: -4px;
}

.menu-toggle.activated span {
	background-color: transparent;
}

.menu-toggle.activated span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.menu-toggle.activated span:after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.sub-menu-toggle {
	position: relative;
	width: 3.6rem;
	height: 3.6rem;
	padding: 0;
	background: transparent;
}

.sub-menu-toggle:hover,
.sub-menu-toggle:focus {
	background: none;
}

.sub-menu-toggle:before,
.sub-menu-toggle:after {
	display: block;
	position: absolute;
	width: 0.8rem;
	height: 2px;
	background-color: #333333;
	content: '';
}

.sub-menu-toggle:before {
	left: 1.2rem;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.sub-menu-toggle:after {
	right: 1.2rem;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.sub-menu-toggle.activated:before {
	left: 1.2rem;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.sub-menu-toggle.activated:after {
	right: 1.2rem;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

/* # Site Header
---------------------------------------------------------------------------------------------------- */
/* ## Before Header
--------------------------------------------- */
#beta_header {
	position: relative;
	z-index: 20;
	display: none;
}

#beta_header h1 {
	display: none;
}

#beta_header ul.top_left,
#beta_header ul.top_right {
	display: flex;
	flex-direction: row;
}

#beta_header a,
#beta_header span {
	text-decoration: none;
	font-family: MerriweatherBold, arial;
	color: #ffffff;
	font-size: 12px;
	font-size: 1.2rem;
}

.wp #beta_header a,
.wp #beta_header span {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

#beta_header a {
	height: 100%;
	display: flex;
	align-items: center;
}

#beta_header a.logo_fidelite {
	border-right: 1px solid white;
	line-height: 41px;
	line-height: 4.1rem;
	background: transparent url('resources/img/picto/programme-fidelite.png') no-repeat 10px bottom;
	display: block;
	width: 229px;
	height: 41px;
	padding-left: 57px;
	box-sizing: border-box;
}

#beta_header a.logo_magasins {
	border-right: 1px solid white;
	line-height: 41px;
	line-height: 4.1rem;
	background: transparent url('resources/img/picto/magasins.png') no-repeat 20px center;
	display: block;
	width: 157px;
	height: 41px;
	padding-left: 54px;
	box-sizing: border-box;
}

#beta_header a.lien_b2b {
	border-right: 1px solid white;
	line-height: 41px;
	line-height: 4.1rem;
	text-align: center;
	display: block;
	width: 106px;
	height: 41px;
	box-sizing: border-box;
}

#beta_header a.link_cart {
	position: relative;
	z-index: 11;
}

#beta_header .top {
	height: 41px;
	background: #e30613;
}

#beta_header .top .content {
	height: 41px;
	width: 100%;
	max-width: 990px;
	margin: auto;
}

#beta_header .top .content .left {
	float: left;
}

#beta_header .top .content .right {
	float: right;
}

#beta_header .top ul li {
	display: inline-block;
	height: 41px;
	line-height: 41px;
	line-height: 4.1rem;
	float: left;
}

#beta_header .top .left ul li {
	margin-right: 15px;
}

#beta_header .top .right {
	position: relative;
}

#beta_header .top .sous_right {
	background: transparent;
	width: 150px;
	position: absolute;
	display: none;
	z-index: 10;
	top: 0;
	left: 0;
	/*180px*/
	padding: 35px 0 0;
	margin-left: 15px;
}

#beta_header .top .rentree_scolaire {
	background: transparent;
	width: 150px;
	position: absolute;
	display: none;
	z-index: 10;
	top: 0;
	left: 0;
	padding: 35px 0 0;
	margin-left: 15px;
}

#beta_header .top .sous_right ul,
#beta_header .top .rentree_scolaire ul {
	background: #a28d74;
	padding: 5px 0;
	display: none;
}

#beta_header .top .sous_right ul li {
	display: block;
	list-style-type: none;
}

#beta_header .header_link #link_moncompte,
#beta_header .header_link .link_cart {
	position: relative;
}

#beta_header .minidropdown {
	position: absolute;
	width: 59px;
	text-align: left;
	display: none;
	background: #e30613;
	left: 0;
	z-index: 999;
	top: 100%;
}

#beta_header .minidropdown li {
	text-align: center;
	width: 100%;
	height: 41px;
	line-height: 41px;
	line-height: 4.1rem;
	text-align: center;
	float: none;
}

#beta_header .minidropdown li a {
	display: block;
	width: 100%;
	height: 41px;
	line-height: 41px;
	line-height: 4.1rem;
}

#beta_header .store-languages span.toggle {
	padding-left: 5px;
	display: inline;
}

#beta_header .store-languages span.toggle:before {
	content: '\f107';
	font: normal normal normal 16px/1 FontAwesome;
	font: normal normal normal 1.6rem/1 FontAwesome;
}

#beta_header .store-languages:hover .minidropdown {
	display: block;
	border-top: 1px solid white;
	box-sizing: border-box;
}

#beta_header .top .rentree_scolaire ul li {
	display: block;
	list-style-type: none;
}

#beta_header .top .sous_right a {
	font-family: DINMedium, arial;
	font-size: 13px;
	font-size: 1.3rem;
	color: #302111;
	display: block;
	padding: 3px 14px;
}

#beta_header .moncompte fieldset ul li a {
	font-family: DINMedium, arial;
	font-size: 13px;
	font-size: 1.3rem;
	color: #302111;
	display: block;
	padding: 3px 14px;
}

#beta_header .top .rentree_scolaire a {
	font-family: DINMedium, arial;
	font-size: 13px;
	font-size: 1.3rem;
	color: #302111;
	display: block;
	padding: 3px 14px;
}

#beta_header .top .sous_right a:hover,
#beta_header .top .rentree_scolaire a:hover,
#beta_header .top .sous_right ul li:focus,
#beta_header .top .rentree_scolaire ul li:focus {
	list-style-type: disc;
}

#beta_header .top .sous_right ul li:focus,
#beta_header .top .rentree_scolaire ul li:focus {
	list-style-type: disc;
}

.store-languages {
	height: 41px;
	width: 59px;
	color: white;
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
}

.store-languages .languages-list .language {
	padding: 0 5px;
	height: 24px;
	vertical-align: top;
	width: 30px;
	display: inline-block !important;
}

.store-languages .languages-list-level2 {
	background: #a28d74;
	display: none;
	padding: 5px 0;
}

.store-languages .languages-list-level2 .language-level2 {
	padding: 0 5px;
	margin-top: 5px;
	display: block !important;
}

#selected-store:before {
	content: attr(data-lang);
	text-transform: capitalize;
}

/*#publicite_header { width:1000px; margin:auto; height:150px; background:url(../images/content/pub_entete.jpg) no-repeat }*/
/* ## Hero Section
--------------------------------------------- */
.hero-section {
	position: relative;
	padding: 12rem 0 6rem;
	color: #ffffff;
	background-color: #333333;
	background-position: center;
	background-size: cover;
	text-align: center;
	position: relative;
}

.hero-section:before {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(51, 51, 51, 0.2);
	content: '';
	pointer-events: none;
}

.hero-section .wrap {
	position: relative;
	z-index: 1;
}

.hero-section h1 {
	max-width: 768px;
	margin: 0 auto 0.382em;
}

.hero-section p {
	max-width: 768px;
	margin: 0 auto;
}

/********** SEARCH AUTOCOMPLETE **********************************************************************************/
.search {
	position: relative;
}

.search-autocomplete-background {
	overflow: auto;
	display: flex;
	flex-direction: row;
	width: 458px;
	padding: 24px 10px;
	box-sizing: border-box;
}

.search-autocomplete-border {
	background-color: #ffffff;
	border: 1px solid #e30613;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}

#masthead .search .search-autocomplete {
	right: 0;
}

.search-autocomplete {
	z-index: 99999 !important;
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 80;
}

.search-autocomplete .search_top,
.search-autocomplete .search_bottom {
	margin-top: 0;
}

.search-autocomplete .search_top.no-games {
	float: left;
	margin-top: 0;
}

.search-autocomplete ul {
	background-color: #f9f5f0;
	font-size: 11px;
	font-size: 1.1rem;
	display: flex;
	flex-direction: column;
	background-color: transparent;
	border: none;
	background-position: 0 0;
	background-repeat: no-repeat;
}

.search-autocomplete li {
	font-family: MerriweatherRegular;
	color: black;
	cursor: pointer;
	text-transform: capitalize;
	margin: 0 0 15px 34px;
}

.search-autocomplete li.title {
	font-family: MerriweatherBold;
	color: black;
	font-size: 15px;
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.search-autocomplete li .amount {
	float: right;
	font-weight: bold;
}

.search-autocomplete li a {
	color: black;
}

.search-autocomplete hr {
	width: 90%;
	margin: auto;
	border: none;
	border-top: solid 1px #d0d0d2;
}

.search-autocomplete .MATCH {
	display: inline !important;
	font-weight: bold;
}

.search-autocomplete .match {
	display: inline !important;
	font-weight: bold;
	text-transform: capitalize;
}

.search-autocomplete .suggests-rgt {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.search-autocomplete .suggests-lft {
	width: 50%;
	border-right: 1px solid #000000;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.search-autocomplete .suggests-lft .suggests {
	padding: 0 10px 0 0;
}

.search-autocomplete .suggests-rgt .suggests {
	padding: 0 0 0 10px;
}

.search-autocomplete .suggests {
	margin-bottom: 10px;
}

.search-autocomplete .suggests-spl li:last-child,
.search-autocomplete .suggests-cms li:last-child,
.search-autocomplete .suggests-bks li:last-child {
	border-bottom: none;
	margin-bottom: 10px;
}

.search-autocomplete .suggests-spl li a {
	font-weight: bold;
}

.search-autocomplete ul.search_spell {
	background-image: url(resources/img/search/loupe.png);
}

.search-autocomplete ul.search_auteurs {
	background-image: url(resources/img/search/recherche-auteurs.png);
}

.search-autocomplete ul.search_livres {
	background-image: url(resources/img/search/recherche-livres.png);
}

.search-autocomplete ul.search_events {
	background-image: url(resources/img/search/recherche-evenements.png);
}

.search-autocomplete ul.search_pages {
	background-image: url(../../furet_b2b/images/content/picto_descriptif_inactive.png);
}

.search-autocomplete ul.search_stores {
	background-image: url(resources/img/search/recherche-magasins.png);
}

.search-autocomplete ul.search_collections {
	background-image: url(resources/img/search/recherche-collection.png);
}

.search-autocomplete ul.search_categs {
	background-image: url(../../furet_b2b/images/content/picto_fiche_technique.png);
}

.search-autocomplete ul.search_fournisseurs,
.search-autocomplete ul.search_jeux {
	display: none;
}

.search-autocomplete ul li.title:hover {
	background: none;
	cursor: default;
}

.search-autocomplete ul li.last {
	border: none;
}

.search-autocomplete ul.search_livres li .pertimm-img,
.search-autocomplete ul.search_jeux li .pertimm-img {
	margin-right: 10px;
	width: 40px;
}

.search-autocomplete ul.search_livres li .pertimm-infos,
.search-autocomplete ul.search_jeux li .pertimm-infos {
	float: left;
	width: calc(100% - 50px);
}

.search-autocomplete ul.search_livres li .pertimm-infos span,
.search-autocomplete ul.search_jeux li .pertimm-infos span {
	display: block;
	line-height: 18px;
	line-height: 1.8rem;
}

.search-autocomplete ul.search_livres li .pertimm-infos .pertimm-title,
.search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-title {
	color: #414141;
}

.search-autocomplete ul.search_livres li .pertimm-infos .pertimm-sku,
.search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-sku {
	color: #7d7d7d;
}

.search-autocomplete ul.search_livres li .pertimm-infos .pertimm-price,
.search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-price {
	color: #e3001b;
	font-weight: bold;
}

/* .search-autocomplete .suggests-spl, .search-autocomplete .suggests-cms, .search-autocomplete .suggests-lib { float: right; clear: right; } */
/* Backward compatibility */
body.wp {
	background: url(resources/img/background/background-furet.jpg) repeat;
}

body.wp #page.site {
	background: #ffffff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

.site-header {
	z-index: 9999;
	width: 100%;
	background-color: #ffffff;
}

.has-sticky-header .site-header {
	position: fixed;
}

.page-boxed .site-header {
	max-width: 1024px;
}

.site-header > .wrap {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: space-between;
	align-items: center;
}

.site-header > .wrap:before,
.site-header > .wrap:after {
	position: absolute;
}

#masthead {
	margin: 0 auto;
	background: white;
	padding: 40px 0;
}

#masthead a {
	text-decoration: none;
}

#masthead a:hover {
	text-decoration: underline;
}

#masthead .top {
	position: relative;
	width: auto;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}

#masthead .top .site-branding {
	width: 156px;
	margin-right: 37px;
	margin-left: 10px;
}

#masthead .bottom div {
	float: left;
	text-align: center;
}

#masthead .logo {
	display: block;
}

#masthead .lien_boutique {
	background: url(../images/habillage/lien_librairie_noel.png) no-repeat;
	width: 320px;
	height: 70px;
	margin: 64px 0 0;
}

#masthead .lien_boutique a {
	display: block;
	width: 100%;
	height: 100%;
}

#masthead .lien_librairie a,
#masthead .lien_cafe a {
	display: block;
	width: 100%;
	height: 100%;
}

#masthead .red-btn {
	margin-left: 14px;
	position: relative;
	width: 123px;
	height: 41px;
	line-height: 41px;
	line-height: 4.1rem;
	font-family: MerriweatherBold, arial;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 1.2rem;
	background: #e30613;
	cursor: pointer;
	z-index: 10000;
}

.quadmenu-offcanvas-in #masthead .red-btn {
	z-index: 10;
}

#masthead .red-btn:hover > div {
	display: block;
}

.wp #masthead .red-btn {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

#masthead .red-btn > span,
#masthead .red-btn a {
	padding-left: 40px;
	display: block;
	width: 100%;
	color: white;
	line-height: 41px;
	line-height: 4.1rem;
	height: 41px;
	box-sizing: border-box;
}

#masthead .top-conteneur-right {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	margin-top: 30px;
	padding-right: 61px;
	width: 197px;
	justify-content: space-between;
}

#masthead #account-btn.red-btn > span,
#masthead #account-btn.red-btn a {
	background: transparent url('resources/img/picto//mon-compte.png') no-repeat 13px center;
}

#masthead #cart-btn.red-btn > span,
#masthead #cart-btn.red-btn a {
	background: transparent url('resources/img/picto//panier.png') no-repeat 13px center;
}

#masthead .moncompte form div a:hover,
#masthead .moncompte fieldset ul li a:hover {
	background: #ffffff;
	width: 200px;
	position: absolute;
	display: none;
	z-index: 10;
	top: 40px;
	right: 16px;
	padding: 0 0 0;
	border: 1px solid #e20612;
}

#masthead .mes_paniers {
	background: #ffffff;
	position: absolute;
	display: none;
	z-index: 10;
	top: 100%;
	right: 0;
	padding: 0 0 0;
	border: 1px solid #e20612;
	min-width: 220px;
}

#masthead .mes_paniers li a {
	color: #000000;
	padding-left: 10px;
	padding-right: 10px;
}

#masthead .mes_paniers li a:hover {
	text-decoration: underline;
}

#masthead .mes_paniers ul {
	background: #ffffff;
}

#masthead .moncompte {
	background: transparent;
	padding: 0 0 5px;
	width: 220px;
	position: absolute;
	top: 40px;
	right: 56px;
	display: none;
	z-index: 10;
}

#masthead .moncompte a {
	color: #000000;
}

#masthead .moncompte fieldset {
	background: #ffffff;
	padding: 5px 0;
	display: none;
	border: 1px solid #e20612;
}

#masthead .moncompte label {
	font-size: 13px;
	font-size: 1.3rem;
	color: #302111;
	margin-left: 10px;
}

#masthead .moncompte form input.search-field {
	padding: 2px 0;
	margin: 5px 10px;
	width: 195px;
	background: white;
	border: 1px solid #302111;
}

#masthead .moncompte form input.btn {
	width: 96px;
}

#masthead .moncompte form div {
	text-align: center;
	margin-top: 5px;
}

#masthead .moncompte form div a {
	font-size: 12px;
	font-size: 1.2rem;
	color: #302111;
	display: block;
	margin-top: 5px;
}

#masthead .moncompte fieldset ul li {
	display: block;
}

.dropdown {
	width: 290px;
	left: -30px;
	position: absolute;
	text-align: left;
	display: none;
	background: white;
	z-index: 999;
	padding: 30px;
	box-sizing: border-box;
	top: 22px;
}

#menu_librairie .dropdown {
	width: 990px;
	left: -210px;
}

#menu_blog .dropdown {
	width: 195px;
}

.dropdown #section_librairie {
	display: flex;
	flex-direction: row;
	margin-bottom: 30px;
}

.dropdown #section_librairie li {
	background-color: #e30613;
	margin-right: 27px;
}

.dropdown .conteneur-souscat {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.dropdown .conteneur-souscat .sous-categorie {
	width: 100%;
}

#menu_librairie .dropdown .conteneur-souscat .sous-categorie {
	width: 19%;
	border-bottom: 1px solid #000000;
	padding-bottom: 12px;
	margin-bottom: 20px;
}

#menu_librairie .dropdown .conteneur-souscat .sous-categorie:nth-child(n+6) {
	border-bottom: 0;
}

.dropdown .conteneur-souscat .sous-categorie li {
	display: block;
}

.dropdown .conteneur-souscat .sous-categorie li a {
	display: block;
	font-family: MerriweatherRegular;
	color: #000000;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 30px;
	line-height: 3rem;
}

.wp .dropdown .conteneur-souscat .sous-categorie li a {
	font-family: 'Merriweather', serif;
}

#menu_librairie .dropdown .conteneur-souscat .sous-categorie li a {
	line-height: initial;
}

.dropdown .conteneur-souscat .sous-categorie li h2 a {
	font-family: MerriweatherBold;
	color: #000000;
	font-size: 15px;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.wp .dropdown .conteneur-souscat .sous-categorie li h2 a {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

.hamburger-menu {
	display: none;
}

.hamburger-menu {
	padding: 9px;
	display: none;
	font: normal normal normal 16px/1 Roboto;
	font: normal normal normal 1.6rem/1 Roboto;
	text-transform: uppercase;
}

li span.toggle {
	padding-left: 1em;
	display: none;
}

li span.toggle:before {
	content: '\f105';
	font: normal normal normal 16px/1 FontAwesome;
	font: normal normal normal 1.6rem/1 FontAwesome;
}

li span.toggle2 {
	position: absolute;
	right: 0;
	margin-right: 20px;
	display: none;
}

li span.toggle2:before {
	content: '\f105';
	font: normal normal normal 16px/1 FontAwesome;
	font: normal normal normal 1.6rem/1 FontAwesome;
}

.dropdown2 {
	display: block;
}

#quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu ul.furet-sub-nav .quadmenu-item-content {
	font-family: MerriweatherRegular, arial !important;
	font-weight: normal !important;
}

.wp #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu ul.furet-sub-nav .quadmenu-item-content {
	font-family: 'Merriweather', serif !important;
}

.search {
	width: calc(100% - 275px);
	height: 41px;
	margin-bottom: 25px;
	/********** SEARCH AUTOCOMPLETE **********************************************************************************/
	/* .search-autocomplete .suggests-spl, .search-autocomplete .suggests-cms, .search-autocomplete .suggests-lib { float: right; clear: right; } */
	/* Backward compatibility */
}

.search h3 {
	padding-left: 5px;
	font-family: kaufmannStd, arial;
	color: white;
	font-size: 24px;
	font-size: 2.4rem;
	height: 38px;
	margin: 0 0 0 5px;
	padding-top: 6px;
}

.search form {
	display: flex;
	flex-direction: row;
}

.search input {
	border: 0;
	float: left;
}

.search .search-field {
	width: 100%;
	height: 41px;
	padding-left: 19px;
	margin: 0;
	font-family: MerriweatherRegularItalic, arial;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 1.2rem;
	color: #000000;
	border: 1px solid #e9e9e8;
	background-color: #ededed;
}

.wp .search .search-field {
	font-family: 'Merriweather', serif;
	font-style: italic;
}

.search .search-field.loading {
	background: url(./resources/img/loading.gif) no-repeat 246px 1px;
	border: 1px solid #e30613;
	box-sizing: border-box;
}

.search .search-field.hasResult {
	border: 1px solid #e30613;
	box-sizing: border-box;
}

.search .search-submit {
	background-color: #e30613;
	width: 41px;
	height: 41px;
	color: #ffffff;
	padding: 0;
}

.search .search-submit .icon {
	fill: #ffffff;
	width: 18px;
	height: 18px;
}

.search .search-autocomplete {
	z-index: 999;
	display: none;
	position: absolute;
	top: 41px;
	right: 285px;
	z-index: 99999;
}

.search .search-autocomplete ul {
	background-color: #f9f5f0;
	font-size: 11px;
	font-size: 1.1rem;
	display: flex;
	flex-direction: column;
	background-color: transparent;
	border: none;
	background-position: 0 0;
	background-repeat: no-repeat;
}

.search .search-autocomplete ul li.title:hover {
	background: none;
	cursor: default;
}

.search .search-autocomplete ul li.last {
	border: none;
}

.search .search-autocomplete li {
	font-family: MerriweatherRegular;
	color: black;
	cursor: pointer;
	text-transform: capitalize;
	margin: 0 0 15px 34px;
}

.search .search-autocomplete li .amount {
	float: right;
	font-weight: bold;
}

.search .search-autocomplete li a {
	color: black;
}

.search .search-autocomplete li.title {
	font-family: MerriweatherBold;
	color: black;
	font-size: 15px;
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.search .search-autocomplete hr {
	width: 90%;
	margin: auto;
	border: none;
	border-top: solid 1px #d0d0d2;
}

.search .search-autocomplete .MATCH {
	display: inline !important;
	font-weight: bold;
}

.search .search-autocomplete .match {
	display: inline !important;
	font-weight: bold;
	text-transform: capitalize;
}

.search .search-autocomplete .search_top {
	margin-top: 0;
}

.search .search-autocomplete .search_bottom {
	margin-top: 0;
}

.search .search-autocomplete .search_top.no-games {
	float: left;
	margin-top: 0;
}

.search .search-autocomplete .suggests-rgt {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.search .search-autocomplete .suggests-rgt .suggests {
	padding: 0 0 0 10px;
}

.search .search-autocomplete .suggests-lft {
	width: 50%;
	border-right: 1px solid #000000;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.search .search-autocomplete .suggests-lft .suggests {
	padding: 0 10px 0 0;
}

.search .search-autocomplete .suggests {
	margin-bottom: 10px;
}

.search .search-autocomplete .suggests-spl li:last-child {
	border-bottom: none;
	margin-bottom: 10px;
}

.search .search-autocomplete .suggests-spl li a {
	font-weight: bold;
}

.search .search-autocomplete .suggests-cms li:last-child {
	border-bottom: none;
	margin-bottom: 10px;
}

.search .search-autocomplete .suggests-bks li:last-child {
	border-bottom: none;
	margin-bottom: 10px;
}

.search .search-autocomplete ul.search_spell {
	background-image: url(../images/content/loupe.png);
}

.search .search-autocomplete ul.search_auteurs {
	background-image: url(./resources/img/picto/recherche-auteurs.png);
}

.search .search-autocomplete ul.search_livres {
	background-image: url(./resources/img/picto/recherche-livres.png);
}

.search .search-autocomplete ul.search_livres li .pertimm-img {
	margin-right: 10px;
	width: 40px;
	float: right;
}

.search .search-autocomplete ul.search_livres li .pertimm-infos {
	float: left;
}

.search .search-autocomplete ul.search_livres li .pertimm-infos span {
	display: block;
	line-height: 18px;
	line-height: 1.8rem;
}

.search .search-autocomplete ul.search_livres li .pertimm-infos .pertimm-title {
	color: #414141;
}

.search .search-autocomplete ul.search_livres li .pertimm-infos .pertimm-sku {
	color: #7d7d7d;
}

.search .search-autocomplete ul.search_livres li .pertimm-infos .pertimm-price {
	color: #e3001b;
	font-weight: bold;
}

.search .search-autocomplete ul.search_events {
	background-image: url(./resources/img/picto/recherche-evenements.png);
}

.search .search-autocomplete ul.search_pages {
	background-image: url(../../furet_b2b/images/content/picto_descriptif_inactive.png);
}

.search .search-autocomplete ul.search_stores {
	background-image: url(./resources/img/picto/recherche-magasins.png);
}

.search .search-autocomplete ul.search_collections {
	background-image: url(./resources/img/picto/recherche-collection.png);
}

.search .search-autocomplete ul.search_categs {
	background-image: url(../../furet_b2b/images/content/picto_fiche_technique.png);
}

.search .search-autocomplete ul.search_fournisseurs {
	display: none;
}

.search .search-autocomplete ul.search_jeux {
	display: none;
}

.search .search-autocomplete ul.search_jeux li .pertimm-img {
	margin-right: 10px;
	width: 40px;
	float: right;
}

.search .search-autocomplete ul.search_jeux li .pertimm-infos {
	float: left;
}

.search .search-autocomplete ul.search_jeux li .pertimm-infos span {
	display: block;
	line-height: 18px;
	line-height: 1.8rem;
}

.search .search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-title {
	color: #414141;
}

.search .search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-sku {
	color: #7d7d7d;
}

.search .search-autocomplete ul.search_jeux li .pertimm-infos .pertimm-price {
	color: #e3001b;
	font-weight: bold;
}

.search .search-autocomplete-background {
	overflow: auto;
	display: flex;
	flex-direction: row;
	width: 500px !important;
	padding: 24px 10px;
	box-sizing: border-box;
}

.search .search-autocomplete-border {
	background-color: #ffffff;
	border: 1px solid #e30613;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}

.search .search_top {
	zoom: 1;
}

.search .search_top:after {
	content: '';
	display: table;
	clear: both;
}

.search .search_bottom {
	zoom: 1;
}

.search .search_bottom:after {
	content: '';
	display: table;
	clear: both;
}

#menu {
	width: 100%;
}

#top-menu {
	text-align: center;
	font: normal normal normal 1em/1 Roboto, sans-serif;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

#top-menu li.hoverMenu {
	list-style: none;
	display: block;
	cursor: pointer;
	position: relative;
	padding-bottom: 10px;
}

#top-menu li a {
	display: inline-block;
	font-family: MerriweatherBold;
	color: #555963;
	font-size: 16px;
	font-size: 1.6rem;
}

.wp #top-menu li a {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

/* Menu toggle */
.menu-toggle {
	background-color: transparent;
	border: 0;
	box-shadow: none;
	color: #222222;
	display: none;
	font-size: 14px;
	font-size: 1.4rem;
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.5;
	margin: 1px auto 2px;
	padding: 1em;
	text-shadow: none;
}

/* Display the menu toggle when JavaScript is available. */
.js .menu-toggle {
	display: block;
}

.main-navigation.toggled-on ul.nav-menu {
	display: block;
}

.menu-toggle:hover,
.menu-toggle:focus {
	background-color: transparent;
	box-shadow: none;
}

.menu-toggle:focus {
	outline: thin solid;
}

.menu-toggle .icon {
	margin-right: 0.5em;
	top: -2px;
}

.toggled-on .menu-toggle .icon-bars,
.menu-toggle .icon-close {
	display: none;
}

.toggled-on .menu-toggle .icon-close {
	display: inline-block;
}

/* Dropdown Toggle */
.dropdown-toggle {
	background-color: transparent;
	border: 0;
	box-shadow: none;
	color: #222222;
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	right: -0.5em;
	line-height: 1.5;
	margin: 0 auto;
	padding: 0.5em;
	position: absolute;
	text-shadow: none;
	top: 0;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background: transparent;
}

.dropdown-toggle:focus {
	outline: thin dotted;
}

.dropdown-toggle.toggled-on .icon {
	/* IE 9 */
	-webkit-transform: rotate(-180deg);
	/* Chrome, Safari, Opera */
	        transform: rotate(-180deg);
}

/* Scroll down arrow */
.site-header .menu-scroll-down {
	display: none;
}

#site-navigation #quadmenu.quadmenu-is-horizontal.quadmenu-hover-ripple .quadmenu-navbar-nav > li.quadmenu-item > a:before {
	display: none;
}

#site-navigation #quadmenu {
	background: #ffffff;
	color: #000000;
}

#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu > li.quadmenu-item > a {
	font-family: MerriweatherRegular, arial;
}

.wp #site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu > li.quadmenu-item > a {
	font-family: 'Merriweather', serif;
}

#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu > li.quadmenu-item.quadmenu-has-link:hover,
#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu > li.quadmenu-item.quadmenu-has-link .open {
	text-decoration: underline;
}

#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu li.quadmenu-has-link:hover,
#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu li.quadmenu-has-link .open {
	background: transparent;
}

#site-navigation #quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu li a:hover {
	text-decoration: underline;
}

#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed ul > li:first-child:not(.button-red),
#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .quadmenu-title {
	text-transform: uppercase;
	font-family: MerriweatherBold, arial;
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed ul > li:first-child:not(.button-red) .quadmenu-item-content,
#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .quadmenu-title .quadmenu-item-content {
	color: #000000;
	font-size: 15px;
	font-size: 1.5rem;
	font-family: MerriweatherBold, arial;
}

.wp #site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed ul > li:first-child:not(.button-red) .quadmenu-item-content,
.wp
#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .quadmenu-title .quadmenu-item-content {
	font-family: 'Merriweather', serif;
	font-weight: bold;
	display: block !important;
}

.wp #site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed ul > li:first-child:not(.button-red),
.wp
#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .quadmenu-title {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

#site-navigation #quadmenu .quadmenu-dropdown-menu li.quadmenu-item:not(.col-sm-12) .quadmenu-item > a {
	border-bottom: 0;
}

#site-navigation #quadmenu .button-red {
	background-color: #e30613;
	background-position: 14px center;
	background-repeat: no-repeat;
	padding: 0 0 0 34px;
	line-height: 41px;
	line-height: 4.1rem;
}

#site-navigation #quadmenu .button-red:hover {
	background-color: #b1050f !important;
	color: #b1050f;
	background-repeat: no-repeat !important;
	background-position: 14px center !important;
}

#site-navigation #quadmenu .button-red a {
	color: white;
	border-bottom: none !important;
}

#site-navigation #quadmenu .button-red a:hover {
	color: #b1050f;
}

#site-navigation #quadmenu .button-red .quadmenu-item-content {
	color: white !important;
	font-family: MerriweatherBold, arial;
	font-size: 1.2rem !important;
}

.wp #site-navigation #quadmenu .button-red .quadmenu-item-content {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

#site-navigation #quadmenu .quadmenu_paraitre {
	background-image: url('resources/img/picto//cta-a-paraitre.png') !important;
}

#site-navigation #quadmenu .quadmenu_nouveautes {
	background-image: url('resources/img/picto//cta-nouveautes.png') !important;
}

#site-navigation #quadmenu .quadmenu_coup_coeur {
	background-image: url('resources/img/picto//cta-coup-coeur.png') !important;
}

#site-navigation #quadmenu .quadmenu_meilleures_ventes {
	background-image: url('resources/img/picto//cta-meilleures-ventes.png') !important;
}

#site-navigation #quadmenu .quadmenu_prix_reduits {
	background-image: url('resources/img/picto//cta-prix-reduits.png') !important;
}

#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li {
	display: block !important;
}

#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li.quadmenu-has-link:hover,
#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li.quadmenu-has-link.open {
	background: #ffffff;
}

#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li.quadmenu-has-link:hover > a > .quadmenu-item-content,
#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li.quadmenu-has-link.open > a > .quadmenu-item-content {
	text-decoration: underline;
}

#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li > a {
	font-size: 16px;
	font-size: 1.6rem;
}

#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li > a > .quadmenu-item-content {
	color: #000000;
	text-transform: none;
	font-family: MerriweatherBold, arial;
}

.wp #site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li > a > .quadmenu-item-content {
	font-family: 'Merriweather', serif;
	font-weight: bold;
}

#site-navigation #quadmenu .quadmenu-navbar-toggle {
	margin-right: 0;
	margin-left: 0;
	margin-top: 0;
	right: 10px;
}

#site-navigation #quadmenu:not(.quadmenu-is-horizontal).quadmenu-offcanvas-right .navbar-offcanvas {
	right: 0;
}

#site-navigation #quadmenu:not(.quadmenu-is-horizontal) .navbar-offcanvas {
	background: #ffffff;
}

#cart-btn:before {
	content: attr(data-cart-total);
	border: 1px solid #e30613;
	background: #ffffff;
	position: absolute;
	left: 32px;
	top: 4px;
	line-height: 17px;
	line-height: 1.7rem;
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	text-indent: 0;
}

#cart-btn[data-cart-total='0']:before {
	display: none;
}

.wp .facebox_overlayBG {
	z-index: 99998;
}

.wp #facebox {
	z-index: 99999;
	position: fixed;
	left: calc((100vw - 637px)/2) !important;
	top: calc((100vh - 431px)/2) !important;
	/*-webkit-transform: translate(-50%, -50%);*/
	/*transform: translate(-50%, -50%);*/
}

/* ## Title Area
--------------------------------------------- */
.title-area {
	display: flex;
	align-items: center;
	height: 6.2rem;
}

.wp-custom-logo .title-area {
	width: 100%;
	max-width: 350px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333333;
	text-decoration: none;
}

.wp-custom-logo .site-title {
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	word-wrap: normal !important;
}

.site-description {
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	word-wrap: normal !important;
}

/* # Site Footer
---------------------------------------------------------------------------------------------------- */
/* ## Before Footer
--------------------------------------------- */
/* ## Footer Widgets
--------------------------------------------- */
.footer-widgets {
	clear: both;
	padding: 60px 0;
	border-bottom: 1px solid #eeeeee;
	font-size: 1.8rem;
	text-align: left;
}

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

.footer-widgets .wrap:before,
.footer-widgets .wrap:after {
	position: absolute;
}

.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widget-area {
	margin-bottom: 4rem;
}

.footer-widget-area:last-child {
	margin-bottom: 0;
}

.site-footer {
	border-top: 1px solid #eeeeee;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: left;
	background: #eeeeee;
	font-size: 12px;
	font-size: 1.2rem;
}

.site-footer h3 {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 0;
}

.site-footer .footer-social-links {
	margin-top: 30px;
}

.site-footer ul:not(.help-menu) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.site-footer ul li {
	margin-top: 10px;
	width: calc(50% - 5px);
}

.site-footer ul:not(.social-links) li {
	border-bottom: 1px solid #000000;
}

.site-footer ul.social-links {
	justify-content: flex-start;
}

.site-footer ul.social-links li {
	max-width: 120px;
}

.site-footer ul.social-links li img {
	width: 18px;
	height: 18px;
	-o-object-fit: contain;
	   object-fit: contain;
	padding: 4px;
	background: #000000;
	margin-right: 10px;
	border-radius: 4px;
}

.site-footer ul.social-links li .logo_twitter img {
	background-color: #63cdf1;
}

.site-footer ul.social-links li .logo_youtube img {
	background-color: #f16261;
}

.site-footer ul.social-links li .logo_facebook img {
	background-color: #507cbe;
}

.site-footer ul.social-links li .logo_instagram img {
	background-color: #c7c5b3;
}

.site-footer .site-info-wrapper ul {
	display: block;
}

.site-footer .site-info-wrapper ul li {
	display: inline-block;
	width: auto;
	border-bottom: none;
}

.site-footer .site-info-wrapper ul li:not(:first-child):before {
	content: ' I ';
}

.site-footer #newsletter-validate-detail {
	position: relative;
}

.site-footer #newsletter-validate-detail #newsletter {
	font-size: 12px;
	font-size: 1.2rem;
	background: #eeeeee;
	margin-top: 10px;
	border-bottom: 1px solid #000000;
	padding: 5px 0;
	line-height: 1.6;
}

.site-footer #newsletter-validate-detail #newsletter:hover {
	border-bottom-color: #e30613;
}

.site-footer #newsletter-validate-detail #newsletter::-webkit-input-placeholder {
	color: #777777;
	font-style: italic;
}

.site-footer #newsletter-validate-detail #newsletter::-moz-placeholder {
	color: #777777;
	font-style: italic;
}

.site-footer #newsletter-validate-detail #newsletter::-ms-input-placeholder {
	color: #777777;
	font-style: italic;
}

.site-footer #newsletter-validate-detail #newsletter::placeholder {
	color: #777777;
	font-style: italic;
}

.site-footer #newsletter-validate-detail .icon {
	fill: #000000;
}

.site-footer #newsletter-validate-detail button {
	position: absolute;
	padding: 4px 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 0;
	background: #eeeeee;
}

.site-footer li a {
	color: #000000;
	text-decoration: none;
	display: inline-block;
	padding: 3px 0;
}

.site-footer li a:hover {
	opacity: 0.8;
}

.site-footer > .wrap {
	margin: 3rem auto;
}

.site-footer > .wrap > * {
	margin-top: 30px;
}

.site-footer p {
	margin-bottom: 0;
}

/* # Plugins
---------------------------------------------------------------------------------------------------- */
.facet-container {
	background: #ededed;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar {
	border-radius: 0;
	background: #ededed;
	box-shadow: none;
	width: 100%;
	display: none;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar:nth-of-type(1) {
	display: block;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days {
	width: 100%;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer {
	width: 100%;
	min-width: 100%;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer .flatpickr-day {
	max-width: 35px;
	line-height: 33px !important;
	line-height: 3.3rem !important;
	height: 35px;
	font-family: 'Merriweather', serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer .flatpickr-day.selected {
	border-color: #e30613;
	color: #000000;
	background: #e30613;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer .flatpickr-day.today {
	border-color: #e30613;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer .flatpickr-day.today:hover {
	background: #e30613;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-days .dayContainer .flatpickr-day:hover {
	background: #dcdcdc;
	border-color: #dcdcdc;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
	fill: rgba(0, 0, 0, 0.4);
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-months .flatpickr-month .cur-month {
	font-family: 'Merriweather', serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper {
	width: auto;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper input {
	font-family: 'Merriweather', serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	width: 50px;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-weekdays .flatpickr-weekdaycontainer span {
	font-family: 'Merriweather', serif;
	font-size: 0;
	text-transform: uppercase;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-weekdays .flatpickr-weekdaycontainer span:first-letter {
	font-size: 14px;
	font-size: 1.4rem;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-clear {
	font-family: 'Merriweather', serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}

.facet-container .facet-content .facetwp-facet-furet_events_date .flatpickr-calendar .flatpickr-clear:hover {
	color: #e30613;
}

.facet-container.facet-mobile-visible {
	display: flex;
	align-items: center;
}

.facet-container .close {
	position: fixed;
	top: 25px;
	right: 25px;
}

.facet-container .close span {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
}

.facet-container .close span:after,
.facet-container .close span:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 1px;
	left: 0;
	top: 50%;
	background: #e30613;
}

.facet-container .close span:before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.facet-container .close span:after {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.facet {
	padding: 10px 25px;
}

.facet .facetwp-facet {
	margin-bottom: 20px;
}

.facet .facetwp-type-dropdown {
	position: relative;
	padding: 0;
	background-color: transparent;
	border: 1px solid #e30613;
	color: #e30613;
	width: 100%;
}

.facet .facetwp-type-dropdown:hover {
	background-color: transparent;
	color: #ca0511;
	border-color: #ca0511;
}

.facet .facetwp-type-dropdown:after {
	content: '>';
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.facet .facetwp-dropdown {
	-webkit-appearance: none;
	background: #ededed;
	color: #e30613;
	padding: 10px15px;
	text-align: center;
	font-size: 1.6rem;
	font-style: italic;
	font-weight: bold;
	line-height: 1.6;
}

.facet .facetwp-dropdown::-ms-expand {
	display: none;
}

.facet-title {
	margin-bottom: 10px;
	padding: 10px 0;
	font-size: 1.9rem;
	font-weight: bold;
	color: #e30613;
}

.facet-content .facetwp-loading {
	margin: 0 auto;
}

.facet-svg {
	margin: 0 auto;
	width: 80px;
}

.facet-svg svg {
	width: 80px;
	height: 80px;
}

.furet-facet-show {
	min-width: 220px;
	text-align: center;
	position: relative;
	padding: 10px 40px;
	font-weight: bold;
}

.furet-facet-show:after {
	content: '>';
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

/* ## Google Map
--------------------------------------------- */
/* ## Jetpack
--------------------------------------------- */
#wpstats {
	display: none;
}

.furet-slider-outer-wrapper {
	width: 100%;
}

.furet-slider {
	width: 100%;
}

.furet-slider .slide-item {
	position: relative;
}

.furet-slider .slider-item-content {
	position: relative;
	z-index: 2;
}

.furet-slider .wp-block-image {
	margin: 0;
	padding: 0;
	max-width: 100%;
	width: 100%;
}

.furet-slider .wp-block-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}

.furet-slider .slick-dots {
	bottom: 8px;
}

.furet-slider .slick-dots li button {
	font-style: normal;
}

.furet-slider .slick-dots li button:before {
	color: rgba(255, 255, 255, 0.5);
	opacity: 1;
	font-size: 18px;
	font-size: 1.8rem;
}

.furet-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: rgba(255, 255, 255, 0.2);
}

/* # Common Classes
---------------------------------------------------------------------------------------------------- */
/* ## Avatar
--------------------------------------------- */
.avatar {
	float: left;
	border-radius: 50%;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* ## Common casses
--------------------------------------------- */
.after-entry {
	margin-bottom: 40px;
	padding: 20px 30px;
	box-shadow: 0 0 20px rgba(51, 51, 51, 0.075);
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	margin: 0 15px 40px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	font-size: 1.2rem;
	font-weight: bold;
	display: none;
}

.breadcrumb a {
	color: #000000;
}

.archive-description {
	margin-bottom: 40px;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

.archive-description .entry-title {
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 600;
}

.author-box {
	margin-bottom: 40px;
}

.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Gutenberg
--------------------------------------------- */
.alignwide {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 1024px;
	-webkit-transform: translate(-50%);
	        transform: translate(-50%);
}

.alignwide img {
	display: inline-block;
	margin: 1.618em auto;
}

.alignfull {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-left: -50vw;
}

.content-sidebar .alignfull,
.sidebar-content .alignfull {
	max-width: calc(100% + 12rem);
}

.alignfull img {
	display: inline-block;
	width: 100%;
	margin: 1.618em auto;
}

.wp-block-image figcaption {
	margin: 0 auto 2em;
}

.wp-block-button {
	display: block;
	width: 100%;
	background: transparent;
	text-align: center;
	clear: both;
}

.wp-block-button:before,
.wp-block-button:after {
	display: block;
	clear: both;
	content: '';
}

.wp-block-button a {
	display: inline-block;
}

.wp-block-button a:hover,
.wp-block-button a:focus {
	color: #ffffff;
}

.wp-block-button .wp-block-button__link {
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-content .wp-block-button__link {
	background-color: #e30613;
}

.wp-block-pullquote > p {
	font-family: 'Merriweather', serif;
	font-weight: 400;
}

.wp-block-pullquote cite {
	font-style: normal;
}

.wp-block-gallery .blocks-gallery-image {
	margin-right: 0;
}

.blocks-gallery-image {
	display: block;
	width: 100%;
	margin: 0 0 6vw;
	text-align: center;
}

.icon {
	display: inline-block;
	fill: currentColor;
	height: 1em;
	position: relative;
	top: -0.0625em;
	vertical-align: middle;
	width: 1em;
}

.icon.icon-pixel {
	background-color: transparent;
	background-image: url(resources/img/pixicons/sprite.png);
	background-repeat: no-repeat;
}

.icon.icon-pin {
	width: 22px;
	height: 31px;
	background-position: 0 0;
}

.icon.icon-calendar {
	width: 23px;
	height: 25px;
	background-position: 0 -31px;
}

.icon.icon-help {
	width: 22px;
	height: 22px;
	background-position: 0 -56px;
}

.icon.icon-edit {
	width: 24px;
	height: 26px;
	background-position: 0 -78px;
}

.icon.icon-key {
	background-position: 0 -104px;
	width: 27px;
	height: 25px;
}

.icon.icon-link {
	background-position: 0 -129px;
	width: 19px;
	height: 22px;
}

.icon.icon-user {
	background-position: 0 -151px;
	width: 26px;
	height: 31px;
}

.icon.icon-books {
	background-position: 0 -182px;
	width: 23px;
	height: 26px;
}

.icon.icon-phone {
	background-position: 0 -208px;
	width: 26px;
	height: 26px;
}

.icon.icon-cart {
	background-position: 0 -234px;
	width: 19px;
	height: 19px;
}

/* ## Search Form
--------------------------------------------- */
.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	width: 50%;
	margin-bottom: 40px;
}

.post-password-form input[type='submit'],
.search-form input[type='submit'] {
	margin-top: 10px;
}

.widget_search input[type='submit'] {
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	word-wrap: normal !important;
}

/* ## Titles
--------------------------------------------- */
.author-box-title {
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 600;
}

.entry-title {
	margin-bottom: 10px;
	font-size: 3rem;
}

.blog .entry-title,
.archive .entry-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.entry-title a {
	color: #333333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #e30613;
}

.widget-title {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 600;
}

.sidebar .widget-title a {
	color: #333333;
	text-decoration: none;
}

.post-content-header .archive-title {
	color: #e30613;
}

/* WordPress Editor
--------------------------------------------- */
.has-light-gray-background-color {
	background-color: #f5f5f5;
}

.has-light-gray-color {
	color: #f5f5f5;
}

.has-medium-gray-background-color {
	background-color: #999999;
}

.has-medium-gray-color {
	color: #999999;
}

.has-dark-gray-background-color {
	background-color: #333333;
}

.has-dark-gray-color {
	color: #333333;
}

/* ## WordPress
--------------------------------------------- */
a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

.gallery-caption,
.wp-caption-text {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

.post-edit-link {
	display: none;
}

.single .post-edit-link {
	display: block;
}

/* # Pagination
---------------------------------------------------------------------------------------------------- */
/* ## Pagination
--------------------------------------------- */
.comments-pagination,
.pagination {
	width: 100%;
	clear: both;
	margin: 40px 0 0;
	text-align: center;
}

.comments-pagination .page-numbers,
.pagination .page-numbers {
	display: inline-block;
	padding: 5px;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.has-button-ghost a {
	width: 100%;
	text-decoration: none;
	background-color: transparent;
	border: 2px solid #000000;
	padding-bottom: 16px 30px;
	color: #000000;
	font-size: 13px;
	font-size: 1.3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.has-button-ghost a:hover {
	background-color: transparent;
	color: #333333;
	border-color: #333333;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	display: inline-block;
	margin-bottom: 4px;
	padding: 8px 12px;
	color: #333333;
	background-color: #f5f5f5;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	color: #ffffff;
	background-color: #333333;
}

/* # Magento
---------------------------------------------------------------------------------------------------- */
.mage-home-section {
	padding: 40px 20px 80px;
}

.mage-home-section h2 {
	font-weight: bold;
	color: #e30613;
	text-align: center;
	margin-bottom: 40px;
}

.mage-home-section .post-grid {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
}

.mage-home-section .post-grid > :first-child {
	max-width: 260px;
}

.mage-home-section .post-grid .post:not(.columns) {
	max-width: 270px;
}

.mage-home-section .post-grid .post:not(.columns) .post-image img {
	box-shadow: 0 10px 39px rgba(0, 0, 0, 0.4);
}

.mage-home-section .post-grid .post.columns .post-image {
	margin-right: 20px;
}

.mage-home-section .post-image {
	margin-bottom: 20px;
}

.mage-home-section .post-image img {
	display: block;
}

.mage-home-section .h6 {
	font-weight: bold;
}

.mage-home-section .post-category {
	font-weight: bold;
}

.mage-home-section.wp-heart-section {
	background: #eeeeee;
	padding: 50px 80px;
}

.mage-home-section.wp-heart-section .slick-next,
.mage-home-section.wp-heart-section .slick-prev {
	font-style: normal;
	height: 40px;
	line-height: 40px;
	line-height: 4rem;
}

.mage-home-section.wp-heart-section .slick-next:before,
.mage-home-section.wp-heart-section .slick-prev:before {
	font-size: 30px;
	font-size: 3rem;
	color: #333333;
	font-weight: bold;
}

.mage-home-section.wp-heart-section .slick-prev {
	left: -55px;
}

.mage-home-section.wp-heart-section .slick-prev:before {
	content: '<';
}

.mage-home-section.wp-heart-section .slick-next {
	right: -55px;
}

.mage-home-section.wp-heart-section .slick-next:before {
	content: '>';
}

.mage-home-section.wp-heart-section .h6 {
	font-size: 13px;
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.mage-home-section.wp-heart-section .post-content {
	display: flex;
	flex-direction: column;
}

.mage-home-section.wp-heart-section .post-content .wrapper-button {
	margin-top: auto;
}

.mage-home-section.wp-heart-section .post-excerpt {
	line-height: 1.2;
}

.mage-home-section.wp-heart-section .heart-slider .slider-item {
	display: flex;
	flex-wrap: wrap;
}

.mage-home-section.wp-heart-section .heart-slider .post-content {
	width: calc(100% - 135px);
	box-sizing: border-box;
	padding-right: 30px;
}

.mage-home-section.wp-heart-section .heart-slider .post-image {
	width: 115px;
	margin-right: 20px;
	margin-bottom: 0;
}

.wp #conteneur {
	background: #ffffff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

.wp .item_block_list {
	border-color: #e30613;
}

.wp .item_block_list .inside {
	text-align: left;
}

.wp .item_block_list a {
	color: #000000;
}

.wp .item_block_list h3 {
	margin-bottom: 0;
	background: #e30613;
	padding: 5px 7px;
}

.wp .contenu .sous_category h2 {
	color: #e30613;
	font-weight: bold;
	font-family: 'Merriweather', serif;
}

.wp .fil_ariane {
	font-family: 'Merriweather', serif;
	color: #000000;
}

.wp .filtre,
.wp .filtre strong,
.wp .filtre,
.wp .contenu .sous_category .sous_categories .content a {
	font-family: 'Merriweather', serif;
}

.wp .filtre {
	font-size: 10px;
	font-size: 1rem;
}

.wp .droite h3 {
	color: #e30613;
	font-weight: bold;
	font-family: 'Merriweather', serif;
	font-size: 19px;
	font-size: 1.9rem;
}

.wp .droite .liste_produit .content {
	background: #ededed;
}

.wp ul.product_list li h1 {
	font-size: 15px;
	font-size: 1.5rem;
}

.wp #conteneur input,
.wp #conteneur select,
.wp #conteneur textarea {
	font-size: 1.0rem;
}

.wp .filtre .resultat {
	background: #ededed;
}

.wp .contenu .sous_category .sous_categories .content {
	background: #ededed;
	width: auto;
}

.product-main-new {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.product-best-sellers {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.product-showcase li {
	position: relative;
	padding-bottom: 60px !important;
}

.product-showcase li .jeleveux {
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
}

.product-showcase .prix {
	font-weight: bold;
	color: #e30613;
	font-size: 20px;
	font-size: 2rem;
}

.product-showcase .h6 {
	font-size: 15px;
	font-size: 1.5rem;
	border-bottom: none;
	padding: 0;
	margin-bottom: 0;
}

.product-showcase .h6 a {
	color: #000000;
	text-decoration: none;
}

.product-showcase .column {
	display: flex;
	padding: 0 15px;
}

.product-showcase .column .couverture {
	order: -1;
	margin-bottom: 20px;
}

.product-showcase.grid-mode .column {
	flex-direction: column;
}

.product-showcase.list-mode .jeleveux a:after {
	-webkit-transform: scale(0.8, 0.8) translateY(-50%);
	        transform: scale(0.8, 0.8) translateY(-50%);
	margin-top: -2px;
}

.product-showcase.list-mode li {
	padding-bottom: 20px !important;
}

.product-showcase.list-mode .column {
	flex-wrap: wrap;
}

.product-showcase.list-mode .jeleveux {
	left: 0;
}

.product-showcase.list-mode img {
	width: 50px;
	height: 75px;
	-o-object-fit: cover;
	   object-fit: cover;
}

.product-showcase.list-mode .couverture {
	width: 60px;
	margin-bottom: 0;
}

.product-showcase.list-mode .infos {
	width: calc(100% - 60px);
	position: relative;
	padding-bottom: 35px;
}

.product-showcase .jeleveux a {
	position: relative;
	padding-left: 35px;
}

.product-showcase .jeleveux a:after {
	content: '';
	display: inline-block;
	fill: #ffffff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	vertical-align: middle;
	background-color: transparent;
	background-image: url(resources/img/pixicons/sprite.png);
	background-repeat: no-repeat;
	background-position: 0 -234px;
	width: 19px;
	height: 19px;
	left: 10px;
}

.product-showcase .jeleveux a:before {
	content: '';
	background: #e30613;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 35px;
}

.product-extra-new h3.h6 {
	padding: 0 15px;
	margin-bottom: 30px;
}

.product-extra-new .product-showcase .prix {
	font-size: 10px;
	font-size: 1rem;
}

.product-extra-new .product-showcase .h6 {
	font-size: 11px;
	font-size: 1.1rem;
}

.mage-best-sellers .pagination,
.mage-new-products .pagination {
	margin-top: 20px;
}

.mage-new-products {
	padding-bottom: 40px;
}

.mage-best-sellers .columns {
	flex-wrap: wrap;
}

.mage-best-sellers h4 {
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	position: absolute !important;
	width: 1px;
	height: 1px;
	border: 0;
	word-wrap: normal !important;
}

.mage-best-sellers img {
	width: 110px;
	height: 180px;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.mage-best-sellers .product-showcase .column {
	padding-bottom: 0;
	margin-bottom: 40px;
	padding-left: 35px;
	padding-right: 35px;
}

.mage-best-sellers .product-showcase .column:nth-child(1) {
	order: 1;
}

.mage-best-sellers .product-showcase .column:nth-child(2) {
	order: 2;
}

.mage-best-sellers .product-showcase .column:nth-child(3) {
	order: 3;
}

.mage-best-sellers .product-showcase .column:nth-child(4) {
	order: 4;
}

.mage-best-sellers .product-showcase .column:nth-child(5) {
	order: 6;
}

.mage-best-sellers .product-showcase .column:nth-child(6) {
	order: 7;
}

.mage-best-sellers .product-showcase .column:nth-child(7) {
	order: 8;
}

.mage-best-sellers .product-showcase .column:nth-child(8) {
	order: 9;
}

.mage-best-sellers .product-showcase .column:nth-child(9) {
	order: 5;
}

.mage-best-sellers .product-showcase .column.highlight-shop {
	padding: 0 10px !important;
	text-align: center;
}

.mage-best-sellers .product-showcase .column.highlight-shop .inner-highlight-shop {
	background: #e30613;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.mage-best-sellers .product-showcase .column.highlight-shop .highlight-shop-title {
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.4;
}

.mage-best-sellers .product-showcase .column.highlight-shop .highlight-shop-title span {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
}

.mage-best-sellers .product-showcase .column.highlight-shop .highlight-shop-title:before {
	content: '';
	display: block;
	margin: 0 auto 10px;
	background-color: transparent;
	background-image: url(resources/img/pixicons/sprite.png);
	background-repeat: no-repeat;
	background-position: 0 -253px;
	width: 53px;
	height: 44px;
}

.mage-best-sellers .product-showcase .column .jeleveux {
	left: 35px;
	right: 35px;
}

.mage-best-sellers .product-showcase .column .couverture {
	margin-bottom: 0;
}

.reinsurance-block {
	background: #e30613;
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
}

.reinsurance-block ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.reinsurance-block ul li {
	padding: 20px;
	box-sizing: border-box;
	width: 25%;
}

.reinsurance-block ul li:not(:first-child) {
	border-left: 1px solid #ffffff;
}

.reinsurance-block .reinsurance-title {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	font-size: 1.5rem;
	text-transform: uppercase;
	line-height: 1.2;
}

.reinsurance-block .reinsurance-title:before {
	content: '';
	display: block;
	margin: 0 auto 10px;
	background-color: transparent;
	background-image: url(resources/img/pixicons/sprite.png);
	background-repeat: no-repeat;
	background-position: 0 -253px;
	width: 53px;
	height: 44px;
}

.reinsurance-block .resinsurance-booking .reinsurance-title:before {
	-webkit-transform: scale(0.8);
	        transform: scale(0.8);
}

.reinsurance-block .resinsurance-home-shipping .reinsurance-title:before {
	width: 76px;
	height: 38px;
	background-position: 0 -297px;
}

.reinsurance-block .resinsurance-return .reinsurance-title:before {
	width: 48px;
	height: 39px;
	background-position: 0 -335px;
}

.reinsurance-block .resinsurance-reward-program .reinsurance-title:before {
	width: 40px;
	height: 47px;
	background-position: 0 0;
	background-image: url(resources/img/picto/programme-fidelite.png);
}

@media (min-width: 512px) {
	.blocks-gallery-image {
		width: 48.71795%;
		margin-bottom: 2.5641%;
	}
	.blocks-gallery-image:nth-of-type(odd) {
		clear: both;
		margin-left: 0;
	}
}

@media (min-width: 768px) {
	h1,
	.h1 {
		font-size: 3rem;
		margin-bottom: 35px;
	}
	.one-half,
	.one-third,
	.one-fourth,
	.one-fifth,
	.one-sixth,
	.two-thirds,
	.two-fourths,
	.two-fifths,
	.two-sixths,
	.three-fourths,
	.three-fifths,
	.three-sixths,
	.four-fifths,
	.four-sixths,
	.five-sixths {
		float: left;
		margin-left: 2.5641%;
	}
	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.71795%;
	}
	.one-third,
	.two-sixths {
		width: 31.62393%;
	}
	.four-sixths,
	.two-thirds {
		width: 65.81197%;
	}
	.one-fourth {
		width: 23.07692%;
	}
	.three-fourths {
		width: 74.35897%;
	}
	.one-fifth {
		width: 17.94872%;
	}
	.two-fifths {
		width: 38.46154%;
	}
	.three-fifths {
		width: 58.97436%;
	}
	.four-fifths {
		width: 79.48718%;
	}
	.one-sixth {
		width: 14.52991%;
	}
	.five-sixths {
		width: 82.90598%;
	}
	.first {
		clear: both;
		margin-left: 0;
	}
	.content-sidebar-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.sidebar-content .content-sidebar-wrap {
		flex-direction: row-reverse;
	}
	.center-content .content-sidebar-wrap,
	.full-width-content .content-sidebar-wrap {
		justify-content: center;
	}
	.store-highlight {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.store-highlight .store-content-text {
		font-size: 20px;
		font-size: 2rem;
		padding-right: 20px;
		margin-bottom: 0;
	}
	.column.type-furet_store .content-post-grid {
		display: block;
		position: relative;
	}
	.column.type-furet_store .content-post-grid .content-post-grid-image {
		width: 100%;
	}
	.column.type-furet_store .content-post-grid .content-post-info {
		width: 100%;
		background: rgba(0, 0, 0, 0.8);
		color: #ffffff;
		position: absolute;
		top: 0;
		left: 0;
		bottom: -86px;
		right: 0;
		-webkit-transform: translateY(50%);
		        transform: translateY(50%);
		transition: -webkit-transform 0.25s ease-in;
		transition:         transform 0.25s ease-in;
		transition:         transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
	}
	.column.type-furet_store .content-post-grid .content-post-inner-info > *:not(.content-post-right-title) {
		opacity: 0;
		transition: opacity 0.25s ease-in;
	}
	.column.type-furet_store .content-post-grid:hover .content-post-info {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	.column.type-furet_store .content-post-grid:hover .content-post-inner-info > *:not(.content-post-right-title) {
		opacity: 1;
	}
	.map-wrapper {
		padding: 40px;
	}
	.nav-primary {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background-color: transparent;
	}
	.menu-toggle {
		display: none;
	}
	.sub-menu-toggle {
		display: none;
	}
	#beta_header {
		display: block;
	}
	.hero-section {
		padding: 16rem 0 10rem;
	}
	.has-nav-secondary .hero-section {
		padding: 21rem 0 10rem;
	}
	.hero-section h1 {
		font-size: 4.5rem;
	}
	.footer-widget-area {
		float: left;
		width: 31.62393%;
		margin-bottom: 0;
	}
	.site-footer > .wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.site-footer > .wrap .footer-col-first {
		width: calc(100% / 3);
	}
	.site-footer > .wrap .footer-col-middle {
		width: calc(100% / 3);
		max-width: 143px;
		margin-left: auto;
		margin-right: auto;
	}
	.site-footer > .wrap .footer-col-middle:not(.social-links) li {
		width: auto;
	}
	.site-footer > .wrap .footer-col-last {
		width: calc(100% / 4);
	}
	.site-footer > .wrap .site-info-wrapper {
		width: 100%;
	}
	.facet-container {
		position: relative;
		display: block;
	}
	.facet-container .close {
		display: none;
	}
	.after-entry {
		margin-bottom: 60px;
		padding: 40px 60px;
	}
	.breadcrumb {
		display: block;
	}
	.archive-description {
		margin-bottom: 60px;
	}
	.author-box {
		margin-bottom: 60px;
		padding: 30px;
		background-color: #f5f5f5;
	}
	.blocks-gallery-image {
		margin-bottom: 2.5641%;
		margin-left: 2.5641%;
	}
	.blocks-gallery-image:nth-of-type(odd) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-2 .blocks-gallery-image {
		width: 48.71795%;
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(odd) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-3 .blocks-gallery-image {
		width: 31.62393%;
	}
	.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(odd) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-4 .blocks-gallery-image {
		width: 23.07692%;
	}
	.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(3n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-5 .blocks-gallery-image {
		width: 17.94872%;
	}
	.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(4n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-6 .blocks-gallery-image {
		width: 14.52991%;
	}
	.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(5n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-7 .blocks-gallery-image {
		width: 12.08791%;
	}
	.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(6n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-8 .blocks-gallery-image {
		width: 10.25641%;
	}
	.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(7n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n + 1) {
		margin-left: 0;
	}
	.wp-block-gallery.columns-9 .blocks-gallery-image {
		width: 8.83191%;
	}
	.wp-block-gallery.columns-9 .blocks-gallery-image:nth-of-type(8n + 1) {
		margin-left: 2.5641%;
	}
	.wp-block-gallery.columns-9 .blocks-gallery-image:nth-of-type(9n + 1) {
		margin-left: 0;
	}
	.post-content-header .archive-title {
		text-align: center;
	}
	.mobile-only {
		display: none;
	}
}

@media screen and (min-width: 48em) {
	.js .menu-toggle,
	.js .dropdown-toggle {
		display: none;
	}
	.main-navigation .menu-item-has-children > a > .icon,
	.main-navigation .page_item_has_children > a > .icon {
		display: inline;
		left: 5px;
		position: relative;
		top: -1px;
	}
}

@media screen and (min-width: 769px), print {
	.column.is-narrow,
	.column.is-narrow-tablet {
		flex: none;
	}
	.column.is-full,
	.column.is-full-tablet {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters,
	.column.is-three-quarters-tablet {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds,
	.column.is-two-thirds-tablet {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half,
	.column.is-half-tablet {
		flex: none;
		width: 50%;
	}
	.column.is-one-third,
	.column.is-one-third-tablet {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter,
	.column.is-one-quarter-tablet {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth,
	.column.is-one-fifth-tablet {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths,
	.column.is-two-fifths-tablet {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths,
	.column.is-three-fifths-tablet {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths,
	.column.is-four-fifths-tablet {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters,
	.column.is-offset-three-quarters-tablet {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds,
	.column.is-offset-two-thirds-tablet {
		margin-left: 66.6666%;
	}
	.column.is-offset-half,
	.column.is-offset-half-tablet {
		margin-left: 50%;
	}
	.column.is-offset-one-third,
	.column.is-offset-one-third-tablet {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter,
	.column.is-offset-one-quarter-tablet {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth,
	.column.is-offset-one-fifth-tablet {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths,
	.column.is-offset-two-fifths-tablet {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths,
	.column.is-offset-three-fifths-tablet {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths,
	.column.is-offset-four-fifths-tablet {
		margin-left: 80%;
	}
	.column.is-1,
	.column.is-1-tablet {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1,
	.column.is-offset-1-tablet {
		margin-left: 8.33333%;
	}
	.column.is-2,
	.column.is-2-tablet {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2,
	.column.is-offset-2-tablet {
		margin-left: 16.66667%;
	}
	.column.is-3,
	.column.is-3-tablet {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3,
	.column.is-offset-3-tablet {
		margin-left: 25%;
	}
	.column.is-4,
	.column.is-4-tablet {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4,
	.column.is-offset-4-tablet {
		margin-left: 33.33333%;
	}
	.column.is-5,
	.column.is-5-tablet {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5,
	.column.is-offset-5-tablet {
		margin-left: 41.66667%;
	}
	.column.is-6,
	.column.is-6-tablet {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6,
	.column.is-offset-6-tablet {
		margin-left: 50%;
	}
	.column.is-7,
	.column.is-7-tablet {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7,
	.column.is-offset-7-tablet {
		margin-left: 58.33333%;
	}
	.column.is-8,
	.column.is-8-tablet {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8,
	.column.is-offset-8-tablet {
		margin-left: 66.66667%;
	}
	.column.is-9,
	.column.is-9-tablet {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9,
	.column.is-offset-9-tablet {
		margin-left: 75%;
	}
	.column.is-10,
	.column.is-10-tablet {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10,
	.column.is-offset-10-tablet {
		margin-left: 83.33333%;
	}
	.column.is-11,
	.column.is-11-tablet {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11,
	.column.is-offset-11-tablet {
		margin-left: 91.66667%;
	}
	.column.is-12,
	.column.is-12-tablet {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12,
	.column.is-offset-12-tablet {
		margin-left: 100%;
	}
	.columns:not(.is-desktop) {
		display: flex;
	}
	.column.type-furet_store {
		flex: none;
		width: auto;
		flex-basis: calc(25% - 1.5rem);
		box-sizing: content-box;
	}
}

@media (min-width: 896px) {
	#masthead {
		padding-bottom: 0;
	}
	#masthead .top-conteneur-right {
		width: auto;
		padding-right: 10px;
		width: 100%;
	}
	#main-menu {
		width: 100%;
	}
	.visible-desktop {
		display: block !important;
		opacity: 1 !important;
		position: static !important;
		width: auto !important;
		min-width: inherit !important;
		box-shadow: inherit !important;
		visibility: visible !important;
		background: transparent !important;
		opacity: 1 !important;
		height: auto !important;
		-webkit-transform: inherit !important;
		        transform: inherit !important;
		padding: 0 !important;
	}
	#quadmenu .quadmenu-navbar-nav .quadmenu-dropdown-menu ul.furet-sub-nav {
		margin-bottom: 22px;
	}
	#top-menu .icon-angle-down {
		display: none;
	}
	#site-navigation #quadmenu .quadmenu-navbar-nav li.quadmenu-item {
		display: block !important;
	}
	#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed {
		padding: 0 20px 30px 20px;
		margin-right: -10px;
		margin-left: -203px;
		box-shadow: inherit;
	}
	#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .col-12:not(.col-sm-12) {
		flex: inherit;
		width: calc(100% / 5);
		max-width: calc(100% / 5);
		position: relative;
		z-index: 2;
	}
	#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .col-12:not(.col-sm-12) ~ .col-12:not(.col-sm-12) {
		z-index: 1;
	}
	#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .col-12:not(.col-sm-12) ~ .col-12:not(.col-sm-12):before {
		left: 0;
		right: 20px;
		background: #000000;
		width: auto;
	}
	#site-navigation #quadmenu .quadmenu-dropdown-stretch-boxed .col-12:not(.col-sm-12):before {
		content: '';
		position: absolute;
		display: block;
		top: 0;
		left: 0;
		right: 0;
		height: 1px;
		background-color: #ffffff;
		width: calc(100vw - (100vw - 960px));
	}
	#site-navigation #quadmenu .quadmenu-dropdown-menu li.quadmenu-item:not(.col-sm-12) .quadmenu-item > a .quadmenu-item-content {
		padding: 5px 0;
	}
	#site-navigation #quadmenu .button-red {
		margin-right: 27px;
	}
	#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav li.quadmenu-item-type-column.col-12.col-sm-12 > div > ul {
		display: flex;
	}
	#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav li.quadmenu-item-type-column.col-12.col-sm-12 > div > ul a {
		border-bottom: none;
	}
	#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > .quadmenu-item > a > .quadmenu-item-content {
		padding: 0;
	}
	#site-navigation #quadmenu > .quadmenu-container > div > .quadmenu-navbar-nav > li .quadmenu-caret {
		display: none;
	}
	#site-navigation #quadmenu.quadmenu-is-horizontal .quadmenu-navbar-nav > li.quadmenu-item.quadmenu-has-caret > a > .quadmenu-item-content > .quadmenu-text {
		padding-right: 0;
	}
	#cart-btn:before {
		left: 22px;
		font-size: 10px;
		font-size: 1rem;
		line-height: 1.5rem;
		width: 17px;
		height: 17px;
	}
}

@media screen and (min-width: 1088px) {
	.column.is-narrow-desktop {
		flex: none;
	}
	.column.is-full-desktop {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters-desktop {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds-desktop {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half-desktop {
		flex: none;
		width: 50%;
	}
	.column.is-one-third-desktop {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter-desktop {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth-desktop {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths-desktop {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths-desktop {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths-desktop {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters-desktop {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds-desktop {
		margin-left: 66.6666%;
	}
	.column.is-offset-half-desktop {
		margin-left: 50%;
	}
	.column.is-offset-one-third-desktop {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter-desktop {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth-desktop {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths-desktop {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths-desktop {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths-desktop {
		margin-left: 80%;
	}
	.column.is-1-desktop {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1-desktop {
		margin-left: 8.33333%;
	}
	.column.is-2-desktop {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2-desktop {
		margin-left: 16.66667%;
	}
	.column.is-3-desktop {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3-desktop {
		margin-left: 25%;
	}
	.column.is-4-desktop {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4-desktop {
		margin-left: 33.33333%;
	}
	.column.is-5-desktop {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5-desktop {
		margin-left: 41.66667%;
	}
	.column.is-6-desktop {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6-desktop {
		margin-left: 50%;
	}
	.column.is-7-desktop {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7-desktop {
		margin-left: 58.33333%;
	}
	.column.is-8-desktop {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8-desktop {
		margin-left: 66.66667%;
	}
	.column.is-9-desktop {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9-desktop {
		margin-left: 75%;
	}
	.column.is-10-desktop {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10-desktop {
		margin-left: 83.33333%;
	}
	.column.is-11-desktop {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11-desktop {
		margin-left: 91.66667%;
	}
	.column.is-12-desktop {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12-desktop {
		margin-left: 100%;
	}
	.columns.is-desktop {
		display: flex;
	}
}

@media screen and (min-width: 1280px) {
	.column.is-narrow-widescreen {
		flex: none;
	}
	.column.is-full-widescreen {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters-widescreen {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds-widescreen {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half-widescreen {
		flex: none;
		width: 50%;
	}
	.column.is-one-third-widescreen {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter-widescreen {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth-widescreen {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths-widescreen {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths-widescreen {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths-widescreen {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters-widescreen {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds-widescreen {
		margin-left: 66.6666%;
	}
	.column.is-offset-half-widescreen {
		margin-left: 50%;
	}
	.column.is-offset-one-third-widescreen {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter-widescreen {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth-widescreen {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths-widescreen {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths-widescreen {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths-widescreen {
		margin-left: 80%;
	}
	.column.is-1-widescreen {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1-widescreen {
		margin-left: 8.33333%;
	}
	.column.is-2-widescreen {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2-widescreen {
		margin-left: 16.66667%;
	}
	.column.is-3-widescreen {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3-widescreen {
		margin-left: 25%;
	}
	.column.is-4-widescreen {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4-widescreen {
		margin-left: 33.33333%;
	}
	.column.is-5-widescreen {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5-widescreen {
		margin-left: 41.66667%;
	}
	.column.is-6-widescreen {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6-widescreen {
		margin-left: 50%;
	}
	.column.is-7-widescreen {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7-widescreen {
		margin-left: 58.33333%;
	}
	.column.is-8-widescreen {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8-widescreen {
		margin-left: 66.66667%;
	}
	.column.is-9-widescreen {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9-widescreen {
		margin-left: 75%;
	}
	.column.is-10-widescreen {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10-widescreen {
		margin-left: 83.33333%;
	}
	.column.is-11-widescreen {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11-widescreen {
		margin-left: 91.66667%;
	}
	.column.is-12-widescreen {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12-widescreen {
		margin-left: 100%;
	}
}

@media screen and (min-width: 1472px) {
	.column.is-narrow-fullhd {
		flex: none;
	}
	.column.is-full-fullhd {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters-fullhd {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds-fullhd {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half-fullhd {
		flex: none;
		width: 50%;
	}
	.column.is-one-third-fullhd {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter-fullhd {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth-fullhd {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths-fullhd {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths-fullhd {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths-fullhd {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters-fullhd {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds-fullhd {
		margin-left: 66.6666%;
	}
	.column.is-offset-half-fullhd {
		margin-left: 50%;
	}
	.column.is-offset-one-third-fullhd {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter-fullhd {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth-fullhd {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths-fullhd {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths-fullhd {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths-fullhd {
		margin-left: 80%;
	}
	.column.is-1-fullhd {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1-fullhd {
		margin-left: 8.33333%;
	}
	.column.is-2-fullhd {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2-fullhd {
		margin-left: 16.66667%;
	}
	.column.is-3-fullhd {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3-fullhd {
		margin-left: 25%;
	}
	.column.is-4-fullhd {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4-fullhd {
		margin-left: 33.33333%;
	}
	.column.is-5-fullhd {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5-fullhd {
		margin-left: 41.66667%;
	}
	.column.is-6-fullhd {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6-fullhd {
		margin-left: 50%;
	}
	.column.is-7-fullhd {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7-fullhd {
		margin-left: 58.33333%;
	}
	.column.is-8-fullhd {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8-fullhd {
		margin-left: 66.66667%;
	}
	.column.is-9-fullhd {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9-fullhd {
		margin-left: 75%;
	}
	.column.is-10-fullhd {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10-fullhd {
		margin-left: 83.33333%;
	}
	.column.is-11-fullhd {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11-fullhd {
		margin-left: 91.66667%;
	}
	.column.is-12-fullhd {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12-fullhd {
		margin-left: 100%;
	}
}

@media screen and (max-width: 1087px) {
	.column.is-narrow-touch {
		flex: none;
	}
	.column.is-full-touch {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters-touch {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds-touch {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half-touch {
		flex: none;
		width: 50%;
	}
	.column.is-one-third-touch {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter-touch {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth-touch {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths-touch {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths-touch {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths-touch {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters-touch {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds-touch {
		margin-left: 66.6666%;
	}
	.column.is-offset-half-touch {
		margin-left: 50%;
	}
	.column.is-offset-one-third-touch {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter-touch {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth-touch {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths-touch {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths-touch {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths-touch {
		margin-left: 80%;
	}
	.column.is-1-touch {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1-touch {
		margin-left: 8.33333%;
	}
	.column.is-2-touch {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2-touch {
		margin-left: 16.66667%;
	}
	.column.is-3-touch {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3-touch {
		margin-left: 25%;
	}
	.column.is-4-touch {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4-touch {
		margin-left: 33.33333%;
	}
	.column.is-5-touch {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5-touch {
		margin-left: 41.66667%;
	}
	.column.is-6-touch {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6-touch {
		margin-left: 50%;
	}
	.column.is-7-touch {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7-touch {
		margin-left: 58.33333%;
	}
	.column.is-8-touch {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8-touch {
		margin-left: 66.66667%;
	}
	.column.is-9-touch {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9-touch {
		margin-left: 75%;
	}
	.column.is-10-touch {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10-touch {
		margin-left: 83.33333%;
	}
	.column.is-11-touch {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11-touch {
		margin-left: 91.66667%;
	}
	.column.is-12-touch {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12-touch {
		margin-left: 100%;
	}
}

@media (max-width: 1000px) {
	#masthead .top .site-branding {
		margin-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.column.is-narrow-mobile {
		flex: none;
	}
	.column.is-full-mobile {
		flex: none;
		width: 100%;
	}
	.column.is-three-quarters-mobile {
		flex: none;
		width: 75%;
	}
	.column.is-two-thirds-mobile {
		flex: none;
		width: 66.6666%;
	}
	.column.is-half-mobile {
		flex: none;
		width: 50%;
	}
	.column.is-one-third-mobile {
		flex: none;
		width: 33.3333%;
	}
	.column.is-one-quarter-mobile {
		flex: none;
		width: 25%;
	}
	.column.is-one-fifth-mobile {
		flex: none;
		width: 20%;
	}
	.column.is-two-fifths-mobile {
		flex: none;
		width: 40%;
	}
	.column.is-three-fifths-mobile {
		flex: none;
		width: 60%;
	}
	.column.is-four-fifths-mobile {
		flex: none;
		width: 80%;
	}
	.column.is-offset-three-quarters-mobile {
		margin-left: 75%;
	}
	.column.is-offset-two-thirds-mobile {
		margin-left: 66.6666%;
	}
	.column.is-offset-half-mobile {
		margin-left: 50%;
	}
	.column.is-offset-one-third-mobile {
		margin-left: 33.3333%;
	}
	.column.is-offset-one-quarter-mobile {
		margin-left: 25%;
	}
	.column.is-offset-one-fifth-mobile {
		margin-left: 20%;
	}
	.column.is-offset-two-fifths-mobile {
		margin-left: 40%;
	}
	.column.is-offset-three-fifths-mobile {
		margin-left: 60%;
	}
	.column.is-offset-four-fifths-mobile {
		margin-left: 80%;
	}
	.column.is-1-mobile {
		flex: none;
		width: 8.33333%;
	}
	.column.is-offset-1-mobile {
		margin-left: 8.33333%;
	}
	.column.is-2-mobile {
		flex: none;
		width: 16.66667%;
	}
	.column.is-offset-2-mobile {
		margin-left: 16.66667%;
	}
	.column.is-3-mobile {
		flex: none;
		width: 25%;
	}
	.column.is-offset-3-mobile {
		margin-left: 25%;
	}
	.column.is-4-mobile {
		flex: none;
		width: 33.33333%;
	}
	.column.is-offset-4-mobile {
		margin-left: 33.33333%;
	}
	.column.is-5-mobile {
		flex: none;
		width: 41.66667%;
	}
	.column.is-offset-5-mobile {
		margin-left: 41.66667%;
	}
	.column.is-6-mobile {
		flex: none;
		width: 50%;
	}
	.column.is-offset-6-mobile {
		margin-left: 50%;
	}
	.column.is-7-mobile {
		flex: none;
		width: 58.33333%;
	}
	.column.is-offset-7-mobile {
		margin-left: 58.33333%;
	}
	.column.is-8-mobile {
		flex: none;
		width: 66.66667%;
	}
	.column.is-offset-8-mobile {
		margin-left: 66.66667%;
	}
	.column.is-9-mobile {
		flex: none;
		width: 75%;
	}
	.column.is-offset-9-mobile {
		margin-left: 75%;
	}
	.column.is-10-mobile {
		flex: none;
		width: 83.33333%;
	}
	.column.is-offset-10-mobile {
		margin-left: 83.33333%;
	}
	.column.is-11-mobile {
		flex: none;
		width: 91.66667%;
	}
	.column.is-offset-11-mobile {
		margin-left: 91.66667%;
	}
	.column.is-12-mobile {
		flex: none;
		width: 100%;
	}
	.column.is-offset-12-mobile {
		margin-left: 100%;
	}
}

@media screen and (max-width: 1200px) {
	.facet {
		margin-bottom: 20px;
	}
}

@media (max-width: 720px) {
	.furet-slider-outer-wrapper {
		position: relative;
		top: -20px;
		margin: 0 -10px 0 -10px;
		width: calc(100% + 20px);
	}
}

@media (max-width: 895px) {
	.search .search-autocomplete-border {
		top: 9px;
		right: 11px;
		left: 10px;
		height: calc(100vh - 195px);
		overflow: auto;
	}
	.search .search-autocomplete-background {
		display: block;
		width: auto !important;
	}
	.search .search-autocomplete .suggests-lft {
		border-right: none;
	}
	.search .search-autocomplete .suggests-rgt,
	.search .search-autocomplete .suggests-lft {
		width: auto;
	}
	#conteneur,
	.page_content {
		width: 100%;
		background: white;
	}
	#masthead {
		padding: 0 0 80px;
		width: 100%;
	}
	#masthead .top {
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}
	#masthead .top .site-branding {
		width: 65px;
		margin-top: 10px;
	}
	#masthead .top .site-branding .logo {
		display: block;
		width: 100%;
		height: 100%;
	}
	#masthead .top .site-branding .logo img {
		width: 100%;
	}
	#masthead .top .top-conteneur-right {
		position: initial;
		margin-top: 0;
		margin-right: 10px;
	}
	#masthead .top .top-conteneur-right .mes_paniers,
	#masthead .top .top-conteneur-right .moncompte {
		display: none !important;
	}
	#masthead .top .top-conteneur-right .search {
		position: absolute;
		left: 0;
		bottom: -66px;
		z-index: 99;
		width: 100%;
		background: #ffffff;
		padding: 10px;
	}
	#masthead .top .top-conteneur-right .search input.search-field {
		width: 100%;
	}
	#masthead .top .red-btn {
		width: 60px;
		text-indent: -999999px;
		margin-left: 1px;
	}
	#masthead .top .red-btn a,
	#masthead .top .red-btn span {
		padding: 0;
		background-position: center center;
	}
	.navigation {
		float: left;
		display: block;
		width: 100%;
	}
	#top-menu {
		float: left;
		width: 100vw;
		margin: auto;
		display: none;
		box-sizing: border-box;
		position: absolute;
		left: -10px;
		z-index: 999999;
		padding-left: 0;
		height: 100vh;
		background: rgba(227, 6, 19, 0.9) repeat scroll 0 0;
	}
	#top-menu li {
		width: 100%;
		display: block;
		border-bottom: 0;
		padding: 0 !important;
	}
	#top-menu li a {
		display: block;
		margin: auto;
		text-align: center;
		position: relative;
		color: white;
		line-height: 50px;
		line-height: 5rem;
	}
	#top-menu li a:hover {
		text-decoration: none;
	}
	.main-menu .hamburger-menu {
		display: block;
		text-align: center;
		float: none;
		width: 100%;
		position: relative;
	}
	.burger-1,
	.burger-2,
	.burger-3 {
		margin: 2px auto 5px;
		display: block;
		width: 20px !important;
		height: 3px !important;
		background: #ffffff;
		transition: 0.2s ease;
	}
	.hamburger-menu .burger-1,
	.hamburger-menu .burger-2,
	.hamburger-menu .burger-3 {
		-webkit-transform: rotate(0deg) translate3d(0px, 0px, 0px);
		        transform: rotate(0deg) translate3d(0px, 0px, 0px);
		transition: -webkit-transform 350ms;
		transition:         transform 350ms;
		transition:         transform 350ms, -webkit-transform 350ms;
	}
	.hamburger-menu.active .burger-1 {
		-webkit-transform: rotate(60deg) translate3d(7px, 3px, 0px);
		        transform: rotate(60deg) translate3d(7px, 3px, 0px);
	}
	.hamburger-menu.active .burger-2 {
		-webkit-transform: rotate(75deg) translate3d(-2px, 4px, 0px);
		        transform: rotate(75deg) translate3d(-2px, 4px, 0px);
	}
	.hamburger-menu.active .burger-3 {
		-webkit-transform: rotate(90deg) translate3d(-10px, 10px, 0);
		        transform: rotate(90deg) translate3d(-10px, 10px, 0);
	}
	.dropdown {
		width: 100% !important;
		text-align: center;
		position: relative;
		box-sizing: border-box;
		left: 0 !important;
		top: 0 !important;
		padding-left: 16px;
	}
	.dropdown #section_librairie {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.dropdown #section_librairie li {
		margin: 0 0 6px 0;
		border: 0;
		width: 48%;
	}
	.dropdown #section_librairie li a {
		background: 0;
	}
	.dropdown .conteneur-souscat {
		flex-direction: column;
	}
	.dropdown .conteneur-souscat .sous-categorie {
		width: 100%;
		border-bottom: 1px solid #000000 !important;
	}
	.dropdown .conteneur-souscat .sous-categorie:last-child {
		border-bottom: 0 !important;
	}
	.dropdown .conteneur-souscat .sous-categorie li {
		width: 100%;
	}
	.dropdown .conteneur-souscat .sous-categorie li:last-child {
		border: 0;
	}
	.dropdown .conteneur-souscat .sous-categorie li a {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 30px;
		line-height: 3rem;
	}
	.dropdown .conteneur-souscat .sous-categorie li h2 a {
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 40px;
		line-height: 4rem;
	}
	#menu_librairie .dropdown #section_librairie .btn_rouge_menu {
		background-image: none;
		padding: 5px;
	}
	#menu_librairie .dropdown .conteneur-souscat .sous-categorie {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	#menu_librairie .dropdown .conteneur-souscat .sous-categorie li a {
		text-align: left;
		line-height: 40px;
		line-height: 4rem;
	}
	#menu_librairie .dropdown .conteneur-souscat .sous-categorie:last-child {
		border: 0;
	}
	.dropdown2 {
		right: 0;
		top: 0;
		width: 100%;
		position: relative;
		padding: 0 20px;
	}
	li span.toggle {
		display: inline;
	}
	li span.toggle2 {
		display: inline;
		top: 11px;
		right: -35px;
	}
	li span.toggle {
		position: absolute;
		right: 10px;
		top: 12px;
	}
	li.openMenu span.toggle:before {
		content: '\f107';
	}
	.sous-categorie li.openMenu span.toggle2:before {
		content: '\f107';
	}
}
