h1{margin-bottom:10px;}

#product-list-help {
    width: 100%;
    text-align: center;
    border-top: 3px solid #d3581a;
    margin-top: 24px;
}

span.product-list-help-button {
    font-size: 12px;
    line-height: 24px;
	padding: 6px 24px;
}

.content_scene_cat {
	padding: 5px 5px 12px;
	border:1px solid #adadaf;
	margin-bottom: 40px;
}

.content_scene_cat img {
	margin-bottom: 12px;
}

.cat_desc p {padding:0 10px 5px 10px}

.cat_desc_bottom {
	margin-top: 32px;
	color: #adadaf;
	font-size: 12px;
}

.cat_desc_bottom h2,
.cat_desc_bottom h3 {
	color: #adadaf;
	font-weight: bold;
	font-size: 14px;
}

.cat_desc_bottom a {
	color: #adadaf;
	font-weight: bold;
}

@media only screen and (min-width: 768px) {
	html:lang(en) #category .content_scene_cat img,
	html:lang(de) #category .content_scene_cat img {
		margin-left: 145px;
		width: 640px;
		object-fit: cover;
		object-position: 0;
	}
}


/* ************************************************************************************************
      SUB CATEGORIES
************************************************************************************************ */

#subcategories h2 { display: none; }

.inline_list {
	list-style-type:none;
	margin-top:10px;
}
.inline_list  li {
	height: 160px;
	width: 160px;
	padding: 5px;
	margin: 8px;
	background: #eee;
	float: left;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 10px;
	transition: all 0.3s
}

.inline_list li:hover {
    transform: scale(1.04) rotate(0.0001deg);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.inline_list li:hover .cat_name {
    color: #d45819;
    text-decoration: none;
}

.inline_list  li .img {
	display: block;
	mix-blend-mode: multiply;
}

.inline_list  li .cat_name {
	font-size: 14px;
	height: 38px;
	font-weight: bold;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	color: #333;
	transition: all 0.3s
}


/* ************************************************************************************************
		CSS responsive pour version mobile
************************************************************************************************ */


@media only screen and (max-width: 767px) {

#subcategories {
    margin: auto -3%;
}

.content_scene_cat {
	padding:0;
	border: none;
	margin-left: -3%;
	margin-right: -3%;	
	border-radius: 0px;
	box-shadow: none;
}

.content_scene_cat img {
	width: 100%;
	height: auto;
}

.inline_list {
	border-top: 1px solid #ccc;
}

.inline_list li,
.inline_list li:hover {
	height: 170px;
	width: 50%;
	box-sizing: border-box;
	padding: 2%;
	margin: 0;
	border-top: none;
	border-left: none;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: scale(1) rotate(0deg);
	box-shadow: none;
	border-color: #ccc;
	background: #fff;
}

.inline_list  li:nth-child(even) {
	border-right: none;
}

.inline_list li img {
    width: 100%;
    height: auto;
    max-width: 120px;
}

}