#page_categorie {
	line-height: normal;
}
#page_categorie main .contenu {
	max-width: var(--width-max);
	margin: 0 auto;
}
#page_categorie #intro .contenu {
	text-align: center;
	font-size: 10px;
	padding: 10px;
}
#page_categorie #intro h1 {
	font-weight: bold;
	font-size: 12px;
	margin: 0 0 5px;
}
#page_categorie #intro .categoryDescription {
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}
#page_categorie #intro .categoryDescription span.readMore {
	font-weight: bold;
	text-decoration: underline;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background: var(--background-primary-color);
	cursor: pointer;
	transition: var(--transition);
}
#page_categorie #intro .categoryDescription span.readMore:hover {
	color: var(--secondary-color);
}
#page_categorie #intro .categoryDescription.actif {
	-webkit-line-clamp: initial;
}
#page_categorie #intro .categoryDescription.actif span.readMore {
	display: none;
}

/* Filtres */
#page_categorie #filtres {
	padding: 10px;
	background: var(--background-secondary-color);
}
#page_categorie #filtres .contenu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 15px;
}
#page_categorie #filtres button {
	font-family: var(--font-secondary);
	font-size: 16px;
	border-radius: var(--border-radius);
	border: none;
	background: var(--text-secondary-color);
	color: var(--text-invert-color);
	padding: 8px 22px;
	cursor: pointer;
}
#page_categorie #filtres button img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	transition: var(--transition);
}
#page_categorie #filtres button.trier img {
	filter: var(--filter-invert);
}
#page_categorie #filtres button:hover {
	background: var(--background-primary-color);
	color: var(--text-primary-color);
}
#page_categorie #filtres .tri:hover button {
	background: var(--background-primary-color);
	color: var(--text-primary-color);
}
#page_categorie #filtres .tri:hover img {
	filter: none;
}
#page_categorie #filtres .tri:hover img {
	transform: rotate(90deg);
}
#page_categorie #filtres .tri {
	position: relative;
}
#page_categorie #filtres .tri:hover ul {
	display: flex;
}
#page_categorie #filtres button.filtrer:hover img {
	filter: var(--filter-black);
}

/* Trie */
#page_categorie #filtres .tri ul {
	position: absolute;
	top: 35px;
	background: var(--background-primary-color);
	padding: 15px;
	box-shadow: var(--box-shadow);
	list-style-type: none;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	display: none;
	flex-direction: column;
}
#page_categorie #filtres .tri:hover ul {
	display: flex;
}
#page_categorie #filtres .tri li {
	cursor: pointer;
	padding: 5px 0;
	transition: var(--transition);
}
#page_categorie #filtres .tri li:hover, #page_categorie #filtres .tri li.actif {
	color: var(--secondary-color);
}
#page_categorie #produits {
	padding-bottom: 20px;
	background: var(--background-secondary-color);
}
#page_categorie #produits .contenu {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
}

/* Popup filtre */
#page_categorie #popup_filtrer {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: initial;
	gap: 10px;
}
#page_categorie #popup_filtrer .contenu {
	margin: 0;
	max-width: 480px;
	padding: 0;
}
#page_categorie #popup_filtrer .fermer {
	background: transparent;
}
#page_categorie #popup_filtrer .fermer img {
	transition: var(--transition);
	filter: var(--filter-black);
}
#page_categorie #popup_filtrer .fermer:hover {
	filter: var(--filter-primary-color);
}
#page_categorie #popup_filtrer .contenu > .titre {
	font-size: 16px;
	background: var(--background-secondary-color);
	padding: 4px 10px;
}
#page_categorie #popup_filtrer .contenu > .titre img {
	filter: var(--filter-black);
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
#page_categorie #popup_filtrer ul:not(.f-c) {
	display: none;
	list-style-type: none;
	padding: 10px 10px 18px 10px;
	font-size: 14px;
	font-weight: 300;
	flex-direction: column;
	gap: 12px;
	border-bottom: 1px solid var(--border-primary-color);
}
#page_categorie #popup_filtrer .couleur ul {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
#page_categorie #popup_filtrer .couleur li {
	width: 30px;
	height: 30px;
}
#page_categorie #popup_filtrer .couleur li input {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: transparent;
	border: 1px solid var(--border-primary-color);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	transition: var(--transition);
}
#page_categorie #popup_filtrer .couleur li input:checked {
	border-color:var(--text-primary-color);
	box-shadow: var(--box-shadow), var(--box-shadow-top);
}
#page_categorie #popup_filtrer .couleur .vert {
    background-color: #00a651;
}
#page_categorie #popup_filtrer .couleur .orange {
    background-color: #f7941d;
}
#page_categorie #popup_filtrer .couleur .rose {
    background-color: #f49ac1;
}
#page_categorie #popup_filtrer .couleur .marron {
    background-color: #a4937e;
}
#page_categorie #popup_filtrer .couleur .multicolore {
	background-image: linear-gradient(45deg, red, orange, #ff0, green, #00f, indigo, violet) !Important;
}
#page_categorie #popup_filtrer .couleur .noir {
    background-color: #000;
}
#page_categorie #popup_filtrer .couleur li .noir:checked {
	border-color:var(--primary-color);
}
#page_categorie #popup_filtrer .couleur .rouge {
    background-color: #ff0000;
}
#page_categorie #popup_filtrer .couleur .bleu {
    background-color: #0072bc;
}
#page_categorie #popup_filtrer .couleur .jaune {
    background-color: #fff200;
}
#page_categorie #popup_filtrer .couleur .beige {
    background-color: #e8d9bc;
}
#page_categorie #popup_filtrer .couleur .multicolor {
    background-image: linear-gradient(45deg,red,orange,#ff0,green,#00f,indigo,violet)
}
#page_categorie #popup_filtrer .couleur .gris {
    background-color: #c6c6c6;
}
#page_categorie #popup_filtrer .couleur .blanc {
    background-color: #fff;
}
#page_categorie #popup_filtrer .couleur .violet {
    background-color: #7c00ed;
}
#page_categorie #popup_filtrer .couleur .transparent {
    background-color: #f5f5f5;
}
#page_categorie #popup_filtrer .couleur .cuivre {
    background-color: #b36700;
}
#page_categorie #popup_filtrer .couleur .or {
    background-color: #efd807;
}
#page_categorie #popup_filtrer .couleur .argent {
    background-color: silver;
}

#page_categorie #popup_filtrer .range {
	display: none;
}
#page_categorie #popup_filtrer .filtre:not(.couleur) input[type="checkbox"] {
	accent-color: var(--text-primary-color);
	width: 18px;
	height: 18px;
	border-radius: 0;
	vertical-align: bottom;
	margin: 0 5px 0 0;
}
#page_categorie #popup_filtrer .filtre label {
	cursor: pointer;
	transition: var(--transition);
	list-style-type: none;
	font-size: 14px;
	font-weight: 300;
}
#page_categorie #popup_filtrer .filtre label:hover {
	color: var(--secondary-color);
}
#page_categorie #popup_filtrer .filtre .titre {
	font-size: 16px;
	font-weight: 500;
	padding: 18px 10px 0 10px;
	position: relative;
	cursor: pointer;
	transition: var(--transition);
}
#page_categorie #popup_filtrer .filtre .titre:hover {
	color: var(--secondary-color);
}
#page_categorie #popup_filtrer .filtre .titre:after {
	content: '';
	position: absolute;
	top: 18px;
	right: 10px;
	background: url('../../../new_style_images/common/img/icon/icon-arrow-forward.svg') no-repeat center;
	background-size: contain;
	width: 12px;
	height: 12px;
	transform: rotate(90deg);
	transition: var(--transition);
}
#page_categorie #popup_filtrer .filtre .titre.actif + ul {
	display: flex;
}
#page_categorie #popup_filtrer .filtre .titre.actif ~ .range {
	display: block;
}
#page_categorie #popup_filtrer .filtre .titre.actif:after {
	transform: rotate(-90deg);
}
#page_categorie #popup_filtrer .livraison ul {
	flex-direction: row;
	gap: 15px;
}
#page_categorie #popup_filtrer .livraison .titre:after {
	display: none;
}
#page_categorie #popup_filtrer button:not(.top-apply-button) {
	margin: 20px auto 10px auto;
	width: fit-content;
	display: block;
	font-size: 20px;
	padding: 10px 15px;
}

/* Popup filtre Range */
#page_categorie #popup_filtrer .range {
	padding-bottom: 10px;
	width: 250px;
	margin: 0 auto;
}
#page_categorie #popup_filtrer .range strong {
	padding: 10px 0 10px 0;
	display: block;
}
#page_categorie #popup_filtrer .range-slider {
	height: 5px;
	position: relative;
	background-color: var(--secondary-color-30);
	border-radius: 2px;
	box-shadow: inset var(--box-shadow);
}
#page_categorie #popup_filtrer .range-selected {
	height: 100%;
	left: 0%;
	right: 0%;
	position: absolute;
	border-radius: var(--border-radius);
	background-color: var(--secondary-color);
	box-shadow: inset var(--box-shadow);
}

#page_categorie #popup_filtrer .range-input {
	position: relative;
}
#page_categorie #popup_filtrer .range-input input {
	position: absolute;
	width: 100%;
	height: 5px;
	top: -7px;
	background: none;
	pointer-events: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}
#page_categorie #popup_filtrer .range-input input::-webkit-slider-thumb {
	height: 20px;
	width: 20px;
	border: none;
	border-radius: 50%;
	background-color: var(--secondary-color);
	pointer-events: auto;
	-webkit-appearance: none;
	box-shadow: var(--box-shadow);
}
#page_categorie #popup_filtrer .range-input input::-moz-range-thumb {
	height: 20px;
	width: 20px;
	border: none;
	border-radius: 50%;
	background-color: var(--secondary-color);
	pointer-events: auto;
	-moz-appearance: none;
	box-shadow: var(--box-shadow);
}

#page_categorie #popup_filtrer .range-price {
	margin-bottom: 15px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#page_categorie #popup_filtrer .range-price input {
	width: 70px;
	height: 35px;
	padding: 5px;
}

#page_categorie .noPrductsImage img{
	display: inline;
}

#page_categorie #openingSchedule td img{
	max-width: none;
	width : auto !important;
	height : auto !important;
	position : relative !important;
}
/* Section Blog */
#page_categorie #blog .posts {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-bottom: 30px;
	max-width: 1150px;
	margin: 0 auto;
}
#page_categorie #blog .post,
#page_categorie #blog .cadre_specialiste,
#page_categorie #blog .specialiste {
	max-width: 550px;
}
#page_categorie #blog .image,
#page_categorie #blog .specialiste  {
	position: relative;
}
#page_categorie #blog .image > img,
#page_categorie #blog .specialiste  > img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
#page_categorie #blog .description {
	font-size: 14px;
	font-weight: 300;
	padding: 15px 10px 0 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}

#page_categorie #blog .actif {
	-webkit-line-clamp: initial;
}

#page_categorie #blog .plus {
	color: inherit;
	text-decoration: underline;
	font-weight: 500;
	transition: var(--transition);
	cursor: pointer;
	font-size: 14px;
}

#page_categorie #blog h3 img {
	width: 37px;
}
#page_categorie #blog h3 {
	position: absolute;
	bottom: -10px;
	left: 10px;
	font-size: 16px;
	font-weight: 500;
	padding: 10px;
	background: var(--secondary-color-90);
	color: var(--text-invert-color);
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 140px;
}

.snoop-website #page_categorie #blog h3 {
	background: #A6192E;
}

#page_categorie .produit>a>div>img, #page_categorie .produit>div>img {
	height: auto !important;
	margin: auto;
	width: 100%;
}
#page_categorie .produit>a>div>img, #page_categorie .produit>div>img {
    transition: var(--transition);
}
#page_categorie .produit>a:hover>div>img, #page_categorie .produit>div:hover>img {
    transform: scale(1.05);
}
table {
	background-color: transparent;
	border-spacing: 0;
	border-collapse: collapse;
}
@media (min-width: 780px)
{
	#ImageMag {
		padding-right: 15px;
	}
	#weekdayOpening {
		padding-left: 100px;
	}
}
@media (max-width: 780px)
{
	#openingSchedule {
		display: flex;
		flex-wrap: wrap;
	}
	#ImageMag {
		width: 100%;
	}
	#weekdayOpeningInfo {
		margin-right: 15px;
		text-align: -webkit-center;
		width: 100%;
	}
	#weekdayOpening {
		text-align: -webkit-center;
	}
}
@media (min-width: 1050px)
{
	#ImageMag {
		padding-right: 15px;
	}
}

#page_categorie .monMagasin {
	font-weight: normal;
	font-family: 'Roboto';
}
#page_categorie a.boutonMagasin {
	color: #fff;
	width: 180px;
	display: block;
	border: 1px solid #fff;
	margin: 15px 0 0;
	background: #2d2e32;
	height: 35px;
	text-align: center;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 8px 15px;
}


#page_categorie .monMagasin {
	font-weight: 400;
	font-family: Roboto;
	line-height: normal;
	margin: initial;
	font-size: 18px;
}
#page_categorie .opening {
	color: #96be0e;
	font-weight: 700;
}

#page_categorie a.boutonMagasin {
	color: #fff;
	width: 180px;
	display: block;
	border: 1px solid #fff;
	margin: 15px 0 0;
	background: #2d2e32;
	height: 35px;
	text-align: center;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 8px 15px;
}
#page_categorie .smartEditComponent.dp_light{
	background: var(--background-primary-color);
    width: 247px;
    display: contents;
}
#page_categorie .smartEditComponent .produit.event{
	overflow: visible !important;
}
#page_categorie .smartEditComponent .produit.event img{
	bottom: unset !important;
	position: unset !important;
}
#page_categorie #produits video {
	width: 100%;
}

#page_categorie .produit .produit-image, #page_categorie .produit .produit-image video {
	max-height: 155px;
	height:155px;
}

