/* ASTRA THEME SPECIFIC */
.ast-container .entry-content .ec-catalog ul,
.ast-container .entry-content .ec-catalog ol {
	margin: 0;
	padding: 0;
}
/* ASTRA THEME SPECIFIC */

/* BASIC */
.ec-catalog {
	font-size: initial;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	position: relative;
}
.ec-card {
	position: relative;
	border: 0 solid #ccc;
}
a.ec-card {
	text-decoration: none;
}
.ec-no-shadow {
	box-shadow: none !important;
}
.ec-no-underline,
.ec-no-underline a {
	text-decoration: none !important;
}
.ec-flex {
	display: flex;
}
.ec-flex-gap {
	gap: 15px;
}
.ec-flex-wrap {
	flex-wrap: wrap;
}
.ec-flex-start {
	display: flex;
	align-items: flex-start;
}
.ec-flex-1 {
	flex: 1;
}
@media (min-width: 768px) {
	.ec-flex-sm {
		display: flex;
	}
	.ec-flex-start-sm {
		display: flex;
		align-items: flex-start;
	}
}
/* END BASIC */

/* BREADCRUNB */
.ec-breadcrumb {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: initial;
	overflow: auto;
	white-space: nowrap;
	overflow: initial;
	white-space: initial;
}
.ec-breadcrumb + .ec-breadcrumb {
	white-space: unset;
}
.ec-breadcrumb > li {
	position: relative;
	display: inline-block;
	padding: 0 0 0 10px;
	margin: 0;
}
.ec-breadcrumb > li > a {
	position: relative;
	display: block;
	padding: 10px 20px;
    line-height: 1em;
	text-decoration: none;
	transition: all 200ms ease;
}
.ec-breadcrumb > li > button.ec-dropdown-toggle {
	padding: 10px 20px;
}
.ec-breadcrumb > li:before {
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	left: 5px;
	box-sizing: initial;
}
.ec-breadcrumb-separator-default > li:before {
    height: 6px;
    width: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
    transform: translate(-75%, -50%) rotate(45deg);
}
.ec-breadcrumb-separator-none > li:before {
	display: none;
}
.ec-breadcrumb.ec-breadcrumb-separator-none > li {
	padding: 0;
}
.ec-breadcrumb-separator-slash > li:before {
    height: 12px;
	border-left: 1px solid #000;
    transform: translate(-50%, -50%) skewX(-20deg);
}
.ec-breadcrumb-separator-vertical > li:before {
    height: 12px;
	border-left: 1px solid #000;
    transform: translate(-50%, -50%);
}
.ec-breadcrumb-separator-horizontal > li:before {
    width: 8px;
	border-top: 1px solid #000;
    transform: translate(-50%, -50%);
}
.ec-breadcrumb-separator-square > li:before {
    height: 4px;
    width: 4px;
	border: 1px solid #000;
    transform: translate(-50%, -50%);
}
.ec-breadcrumb-separator-square-filled > li:before {
    height: 6px;
    width: 6px;
	background-color: #000;
    transform: translate(-50%, -50%);
}
.ec-breadcrumb-separator-diamond > li:before {
    height: 4px;
    width: 4px;
	border: 1px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ec-breadcrumb-separator-diamond-filled > li:before {
    height: 6px;
    width: 6px;
	background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ec-breadcrumb-separator-circle > li:before {
    height: 4px;
	width: 4px;
	border-radius: 5px;
	border: 1px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ec-breadcrumb-separator-circle-filled > li:before {
    height: 6px;
	width: 6px;
	border-radius: 5px;
	background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ec-breadcrumb + .ec-breadcrumb > li:before {
	display: none;
}
@media (min-width: 768px) {
	.ec-breadcrumb > li:first-child {
		padding: 0;
	}
	.ec-breadcrumb > li:first-child:before {
		display: none;
	}
}
@media (max-width: 768px) {
	.ec-breadcrumb > li > a,
	.ec-breadcrumb > li > button,
	.ec-breadcrumb > li.ec-p {
		width: 100%;
		padding: 5px 10px !important;
		box-sizing: border-box;
	}
	.ec-breadcrumb:not(.ec-breadcrumb-separator-none) > li {
		display: block;
		width: 100%;
		padding-left: 15px;
		box-sizing: border-box;
	}
	.ec-breadcrumb:not(.ec-breadcrumb-separator-none) > li:before {
		left: 7.5px;
	}
}
/* END BREADCRUNB */

/* DROPDOWN */
.ec-dropdown-parent {
	position: relative !important;
	overflow: initial !important;
}
.ec-dropdown-toggle {
	position: relative;
	display: flex;
	padding: 10px;
	border: none;
	border-radius: 0;
	background-color: transparent;
	outline: none;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	text-decoration: none;
	text-transform: initial;
	text-align: left;
	align-items: center;
	cursor: pointer;
	transition: all 200ms ease;
}
.ec-dropdown-toggle:hover,
.ec-dropdown-toggle:focus {
	text-decoration: none;
}
.ec-dropdown-pages .ec-dropdown-toggle {
	padding: 10px;
}
.ec-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	margin: 0;
	min-width: 100%;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	list-style: none;
	visibility: hidden;
	opacity: 0;
	transition: all 200ms ease;
	z-index: 1;
}
.ec-dropdown-open > .ec-dropdown {
	visibility: visible;
	opacity: 1;
}
.ec-dropdown > li {
	margin: 0;
}
.ec-dropdown > li > a {
	display: block;
	text-decoration: none;
	white-space: nowrap;
}
.ec-dropdown > li > a.ec-flex {
	display: flex;
}
.ec-dropdown-toggle span {
	flex: 1;
	pointer-events: none;
}
.ec-dropdown-caret {
    display: inline-block;
	width: 0;
    height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
    border-color: #000 transparent transparent transparent;
    vertical-align: middle;
	transition: all 200ms ease;
	pointer-events: none;
}
.ec-dropdown-toggle .ec-dropdown-caret {
	flex: none;
	margin-left: 10px;
}
.ec-dropdown-open > .ec-dropdown-toggle > .ec-dropdown-caret {
	transform: rotate(180deg);
}

.ec-filters .ec-dropdown-toggle {
	width: 100%;
	white-space: pre-wrap;
}
.ec-filters .ec-dropdown {
	max-height: 300px;
    max-width: 100%;
	overflow: auto;
}
.ec-filters .ec-dropdown > li > a {
	white-space: pre-wrap;
}
@media (max-width: 768px) {
	.ec-dropdown-pages {
		display: none;
	}
	.ec-dropdown-open:after {
		content: "";
		position: fixed;
		top: -30vh;
		left: 0 !important;
		right: 0;
		bottom: -30vh;
		background-color: rgba(0, 0, 0, 0.2);
		z-index: 10;
	}
	.ec-dropdown {
		position: fixed;
		top: 45vh;
		left: 20px;
		right: 20px;
		min-width: initial !important;
		width: initial !important;
		width: calc(100vw - 40px) !important;
		max-height: calc(100vh - 200px);
		overflow: auto;
		transform: translateY(-50%);
		z-index: 11;
	}
	.ec-dropdown-open > .ec-dropdown {
		top: 50vh;
	}
	/* CHROME FIX TEMPORAIRE */
	.ec-dropdown {
		width: calc(100vw - 40px) !important;
	}
}
/* END DROPDOWN */

/* PAGINATION */
.ec-pagination {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: initial;
}
.ec-pagination > li {
	position: relative;
	display: inline-block;
	margin: 0 2px;
}
.ec-pagination > li > a {
	display: block;
	padding: 10px 15px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	transition: all 200ms ease;
}
/* END PAGINATION */

/* SELECT */
.ec-select {
	display: block;
	height: unset;
    width: initial;
	margin: 7px 15px;
	padding: 3px 5px;
	border: 0 solid #ccc;
	background: transparent;
	font-size: 1em;
	line-height: initial;
	outline: none;
}
.ec-filters .ec-select {
	width: 100%;
	margin: 0;
	padding: 0;
}
.ec-select-pages {
	margin: 0 2px;
	padding: 10px 10px;
}
@media (max-width: 768px) {
	.ec-select-pages {
		display: none;
	}
}
/* END SELECT */

/* SEARCH */
.ec-search {
	display: flex;
	width: 300px;
	line-height: 1em;
}
.ec-search input[type="text"],
.ec-search input[type="text"]:focus {
	flex: 1;
	min-width: 100px;
	height: unset;
	margin: 0;
	padding: 10px 0 10px 20px;
	border: none;
	background-color: transparent;
	font-size: 1em;
	line-height: normal;
	outline: none;
}
.ec-search-close {
	padding: 0 10px;
	font-size: 1.2em;
	border: none;
	border-radius: 0;
	background-color: transparent;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	line-height: initial;
	outline: none;
	cursor: pointer;
	overflow: hidden;
	transition: all 200ms ease;
}
.ec-search-close span {
	display: block;
	line-height: 0em;
}
.ec-search input:placeholder-shown ~ .ec-search-close {
	width: 0;
	padding: 0;
}
.ec-search-btn {
	padding: 6px 12px;
	font-size: 1.7em;
	border: none;
	border-radius: 0;
	background-color: transparent;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	line-height: initial;
	cursor: pointer;
	outline: none;
	box-shadow: none;
	transition: all 200ms ease;
}
.ec-search-btn span {
	display: block;
	line-height: 0em;
	transform: rotate(45deg);
}
/* END SEARCH */

/* FILTERS */ 
.ec-filters {
	width: 300px;
	transition: margin-left 400ms ease, opacity 400ms ease, visibility 400ms ease;
}
.ec-filters + .ec-page,
.ec-filters + .ec-page-message {
	padding-left: 15px;
	transition: margin-right 400ms ease, opacity 400ms ease, visibility 400ms ease, padding-left 400ms ease;
}
.ec-filters-toggle {
	position: relative;
	display: block;
	padding: 10px 20px;
    outline: none;
    font-size: 1em;
    font-weight: normal;
    line-height: 1em;
    text-decoration: none;
    text-transform: initial;
    text-align: left;
    align-items: center;
    cursor: pointer;
    transition: all 200ms ease;
}
.ec-breadcrumb .ec-filters-toggle {
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.ec-filters .ec-filters-toggle {
	width: 100%;
	text-align: center;
}
.ec-filters:empty {
	display: none;
}
.ec-filters .ec-card div {
	overflow: auto;
}
.ec-filters .ec-select,
.ec-filters input[type="checkbox"].ec-checkbox + label,
.ec-filters input[type="radio"].ec-radio + label {
	display: flex;
}
@media (min-width: 768px) {
	.ec-filters.ec-filters-open {
		margin-left: -300px;
		opacity: 0;
		visibility: hidden;
	}
	.ec-filters.ec-filters-open + .ec-page,
	.ec-filters.ec-filters-open + .ec-page-message {
		padding-left: 0;
	}
	.ec-filters .ec-filters-toggle {
		display: none;
	}
}
@media (max-width: 768px) {
	.ec-filters,
	.ec-filters + .ec-page,
	.ec-filters + .ec-page-message {
		width: 100%;
	}
	.ec-filters + .ec-page,
	.ec-filters + .ec-page-message {
		padding-left: 0;
	}
	.ec-filters:not(.ec-filters-open) {
		margin-left: -100%;
		opacity: 0;
		visibility: hidden;
	}
	.ec-filters.ec-filters-open:not(:empty) + .ec-page,
	.ec-filters.ec-filters-open:not(:empty) + .ec-page-message {
		margin-right: -100%;
		opacity: 0;
		visibility: hidden;
	}

	.ec-catalog.ec-filters-is-open .ec-pagination {
		display: none;
	}
}
/* END FILTERS */ 

/* CHECKBOX */
.ec-checkbox-list {
	max-height: 300px;
	overflow: scroll;
}
input[type="checkbox"].ec-checkbox  {
	display: none;
}
input[type="checkbox"].ec-checkbox + label {
	position: relative;
	padding: 0;
	line-height: initial;
	font-weight: normal;
}
input[type="checkbox"].ec-checkbox + label::before {
	content: "";
	display: inline-block;
	position: relative;
	margin-right: 0.5em;
	width: 2.5em;
	height: 1em;
	border-radius: 1em;
	background-color: rgba(170, 170, 170, 0.4);
	cursor: pointer;
	vertical-align: text-top;
	transition: all 200ms ease;
}
input[type="checkbox"].ec-checkbox + label::after {
	position: absolute;
	display: block;
	content: "";
	width: 0.8em;
	height: 0.8em;
	top: 0.1em;
	left: 0.1em;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	transition: all 200ms ease;
}
input[type="checkbox"].ec-checkbox:checked + label::before {
	background-color: #9fd6ae;
}
input[type="checkbox"].ec-checkbox:checked + label::after {
	left: 1.6em;
}
/* END CHECKBOX */

/* RADIO */
.ec-radio-list {
	max-height: 300px;
	overflow: scroll;
}
input[type="radio"].ec-radio  {
	display: none;
}
input[type="radio"].ec-radio + label {
	position: relative;
	padding: 0;
	line-height: initial;
	font-weight: normal;
}
input[type="radio"].ec-radio + label::before {
	content: "";
	display: inline-block;
	position: relative;
	margin-right: 0.5em;
	width: 1em;
	height: 1em;
	border-radius: 1em;
	background-color: rgba(170, 170, 170, 0.4);
	cursor: pointer;
	vertical-align: text-top;
	transition: all 200ms ease;
}
input[type="radio"].ec-radio + label::after {
	position: absolute;
	display: block;
	content: "";
	width: 0.4em;
	height: 0.4em;
	top: 0.5em;
	left: 0.5em;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: all 200ms ease;
}
input[type="radio"].ec-radio:checked + label::before {
	background-color: #9fd6ae;
}
/* END RADIO */

/* RANGE */ 
.ec-range {
	display: table;
	border-collapse: separate;
}
.ec-filters .ec-card div.ec-range {
	overflow: hidden;
}
.ec-range input[type="number"] {
	display: table-cell;
	width: 100%;
	padding: 5px;
	border: none;
	background-color: rgba(170, 170, 170, 0.2);
	outline: none;;
}
.ec-range span {
	display: table-cell;
	width: 1%;
	padding: 0 5px;
}
.ec-range span > button {
	padding: 7px;
}
/* END RANGE */

/* RANGE SLIDER*/
.ec-range-slider {
	width: 100%;
	margin: auto;
	text-align: center;
	position: relative;
	height: 25px;
}
.ec-range-slider input[type=range] {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 10px 0;
}
.ec-range-slider input[type=range] {
	-webkit-appearance: none;
	width: 100%;
}
.ec-range-slider input[type=range]:focus {
	outline: none;
}
.ec-range-slider input[type=range]:focus::-webkit-slider-runnable-track {
	background: #2497e3;
}
.ec-range-slider input[type=range]:focus::-ms-fill-lower {
	background: #2497e3;
}
.ec-range-slider input[type=range]:focus::-ms-fill-upper {
	background: #2497e3;
}
.ec-range-slider input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.ec-range-slider input[type=range]::-webkit-slider-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}
.ec-range-slider input[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.ec-range-slider input[type=range]::-moz-range-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
.ec-range-slider input[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
.ec-range-slider input[type=range]::-ms-fill-lower,
.ec-range-slider input[type=range]::-ms-fill-upper {
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}
.ec-range-slider input[type=range]::-ms-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
/* END RANGE SLIDER */

/* PAGE */ 
.ec-page {
	display: grid;
}
/* END PAGE */ 

/* LEVEL */
.ec-level {
	position: relative;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	overflow: hidden;
	transition: all 200ms ease;
}
.ec-level-img {
	position: relative;
	text-align: center;
	overflow: hidden;
	padding-bottom: 70%;
}
.ec-level-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	transition: all 200ms ease;
}
.ec-level:hover .ec-level-img img {
	transform: translate(-50%, -50%) scale(1.1);
}
.ec-level-more {
	flex: 1;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition: all 200ms ease;
	box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.0) inset;
}
.ec-level:hover > .ec-level-more {
	box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.1) inset;
}
.ec-level-color-square {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    border-radius: 5px;
    background-color: #0078D4;
    align-self: center;
}
/* END LEVEL */

/* PRODUCT */
.ec-product {
	display: flex;
	transition: all 200ms ease;
}
.ec-page .ec-product {
	flex-direction: column;
	cursor: pointer;
	overflow: hidden;
}
.ec-product-img {
	position: relative;
	text-align: center;
	padding-bottom: 100%;
}
.ec-product-img > img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 100%;
	max-width: 100%;
	transform: translate(-50%, -50%);
}
.ec-product-img > div {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: flex-end;
}
.ec-product-img > div img {
	display: block;
	max-height: 30px;
	max-width: 30px;
    margin-top: 10px;
	object-fit: contain;
}
.ec-product-img a {
	opacity: 0.6;
	transition: all 200ms ease;
}
.ec-product-img a + a {
	margin-left: 5px;
}
.ec-product-img a:hover {
	opacity: 1;
}
.ec-product-detail {
	border-top: 1px solid #e6e9ed;
}
.ec-catalog.ec-catalog-context-list .ec-product-detail .ec-flex:has(.ec-product-identifier) {
	flex-direction: column;
}
.ec-product-identifier,
.ec-product-condition {
	opacity: 0.3;
	font-weight: bold;
}
.ec-product-name {
	margin: 0.5em 0;
	font-size: 1.2em;
	font-weight: bold;
}
.ec-product-description {
	position: relative;
	height: calc(4 * 1.15em);
	overflow: hidden;
}
.ec-product-description:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, #fff 0%, transparent 2em);
	pointer-events: none;
}
@supports (display: -webkit-box) {
	.ec-product-description {
		display: -webkit-box;
		height: unset;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
	.ec-product-description:after {
		display: none;
	}
}
.ec-product .ec-product-more {
	margin-top: auto;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	transition: all 200ms ease;
}
.ec-product:hover > .ec-product-more {
	box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.1) inset;
}

.ec-page-fiche > .ec-product {
	flex-wrap: wrap;
}
.ec-page-fiche > .ec-product > div > .ec-product-img > div,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img > div {
	top: 0;
	bottom: unset;
}
.ec-page-fiche > .ec-product > .ec-product-detail .ec-product-description {
	display: block;
	height: unset;
	overflow: auto;
}
.ec-page-fiche > .ec-product > .ec-product-detail .ec-product-description:after {
	display: none;
}
.ec-page-fiche > .ec-product label {
	display: block;
	font-weight: bold;
}
.ec-page-fiche > .ec-product > .ec-product-detail a,
.ec-page-fiche > .ec-product .ec-ft-long a,
.ec-page-fiche > .ec-product .ec-fds-long a {
	display: block;
	transition: all 200ms ease;
}
.ec-page-fiche > .ec-product > div > .ec-product-img,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img,
.ec-page-fiche > .ec-product > .ec-product-detail,
.ec-page-fiche > .ec-product > .ec-product-detail-more {
	flex: 1;
}
.ec-page-fiche > .ec-product > .ec-product-detail-more {
	flex-basis: 100%;
}
.ec-page-fiche > .ec-product > div > .ec-product-img,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img {
	padding-bottom: 0;
}
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img {
	display: flex;
	align-items: center;
	height: 100%;
}
.ec-page-fiche > .ec-product > div > .ec-product-img img,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img img {
	position: initial;
    max-height: 350px;
	margin: 10px auto;
	transform: none;
}
.ec-page-fiche > .ec-product > div > .ec-product-img > div,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img > div {
    align-items: flex-start;
}
.ec-page-fiche > .ec-product > div > .ec-product-img > div img,
.ec-page-fiche > .ec-product > .ec-flex-1 > .splide .ec-product-img > div img {
    max-height: 30px;
    max-width: unset;
	margin: 0 0 10px 0;
}



.ec-product-detail-tabs {
	display: flex;
    flex-wrap: wrap;
}
.ec-product-detail-tabs > input[type="radio"] {
    display: none;
}
.ec-product-detail-tabs > label {
	order: 1;
    padding: 10px 15px;
    margin-bottom: -1px;
    opacity: 0.5;
	cursor: pointer;
}
.ec-product-detail-tabs > .ec-product-detail-tab {
	order: 99;
	flex-grow: 1;
	width: 100%;
    display: none !important;
	border: 1px solid #ddd;
}
.ec-product-detail-tabs > input[type="radio"]:checked + label {
    border: 1px solid #ddd;
    border-bottom: 0;
    background-color: #fff;
    opacity: 1;
    z-index: 0;
}
.ec-product-detail-tabs > input[type="radio"]:checked + label + .ec-product-detail-tab {
	display: block !important;
}
/* END PRODUCT */

/* WORDPRESS GUTENBERG SPECIFIC */
.editor-styles-wrapper ol.ec-breadcrumb,
.editor-styles-wrapper ul.ec-pagination,
.editor-styles-wrapper ul.ec-dropdown {
	padding: 0;
	margin: 0;
	list-style: none;
}
.wp-core-ui select.ec-select {
	font-size: initial;
}
/* WORDPRESS GUTENBERG SPECIFIC */

/* THEME DEFAULT  */
.ec-catalog {
	margin: 15px;
}
.ec-mt {
	margin-top: 15px;
}
.ec-mb {
	margin-bottom: 15px;
}
.ec-ml {
	margin-left: 15px;
}
.ec-mr {
	margin-right: 15px;
}
.ec-p {
	padding: 10px;
}
.ec-pt {
	padding-top: 10px;
}
.ec-pl {
	padding-left: 10px;
}
.ec-pr {
	padding-right: 10px;
}
.ec-variation-none {
	opacity: 0.5;
}
.ec-variation-selected a {
	outline: 3px solid #0078D4;
}
.ec-pointer {
	cursor: pointer;
}
.ec-center {
	text-align: center;
}
.ec-catalog label:empty {
    display: none;
}
.ec-card,
.ec-dropdown-pages > .ec-dropdown-toggle {
	border-radius: 5px;
}
.ec-page,
.ec-page-message,
.ec-page-fiche {
	padding-bottom: 15px;
}
.ec-filters:empty + .ec-page,
.ec-filters:empty + .ec-page-message {
	padding-left: 0;
}
.ec-page {
	grid-gap: 15px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.ec-message {
	text-align: center;
	padding: 30px;
}
.ec-card,
.ec-shadow-hover {
	box-shadow: 0 1px 15px -5px rgba(0, 0, 0, 0.2);
}
.ec-shadow-hover:hover {
	box-shadow: 0 1px 15px -5px rgba(0, 0, 0, 0.4);
}
.ec-card,
.ec-product-detail {
	border-width: 1px;
	border-color: #e6e9ed;
}
.ec-bg-color {
	background-color: #ffffff;
}
.ec-color {
	color: #000000;
}
.ec-accent,
.ec-accent-hover:hover,
input[type="checkbox"].ec-checkbox:checked + label::before,
input[type="radio"].ec-radio:checked + label::before {
	border-color: #2493c7;
	background-color: #2493c7;
	color: #ffffff;
}
/* END THEME DEFAULT */

/* SPLIDE  SPECIFIC */
.ec-page-fiche,
.ec-page-fiche .ec-product-detail-more {
    max-width: 100%;
}
.ec-product-img-slider + .splide .splide__track .splide__list {
	height: unset;
}
.ec-page.splide__list {
	display: flex !important;
	height: unset;
	grid-gap: unset !important;
	grid-template-columns: unset !important;
}
.ec-page.splide__list .ec-product {
	height: 100%;
}

.ec-product-img-slider {
    padding: 15px;
	overflow: hidden !important;
}
.splide.slider-thumb {
    padding-top: 0;
    padding-bottom: 0;
}
.splide.slider-thumb .splide__slide {
	display: flex;
	align-items: center;
	opacity: 0.3;
}
.splide.slider-thumb .splide__slide.is-active {
	opacity: 1;
}
.ec-page-fiche .splide {
	padding: 0;
}
.splide .splide__pagination {
	position: relative;
	bottom: 0;
}
.splide .splide__arrow--prev {
	left: 0;
}
.splide .splide__arrow--next {
	right: 0;
}
/* END SPLIDE  SPECIFIC */