/*
Theme Name: Trans Faire
Theme URI:  https://www.trans-faire.fr
Author:     Damien Vanhille
Author URI: https://www.dionysos-digital.com/
Template:   hello-elementor
Version:    1.0
License:    GNU General Public License v2 or later
*/

/* Global */

footer {
	margin-top: -55px;
}

/* Ajouter automatiquement 100px de padding sur les cotés aux elements principaux de la page (overide du 10px par defaut de padding sur les container)
Uniquement en mode "boxed" */
.elementor[data-elementor-type="wp-page"] > .e-con-boxed,
.elementor[data-elementor-type="single-post"] > .e-con-boxed,
header > .e-con-boxed,
footer > .e-con-boxed {
	padding-left: 100px;
	padding-right: 100px;
}

@media (max-width: 1024px) {
	.elementor[data-elementor-type="wp-page"] > .e-con-boxed,
	.elementor[data-elementor-type="single-post"] > .e-con-boxed,
	header > .e-con-boxed,
	footer > .e-con-boxed {
		padding-left: 35px;
		padding-right: 35px;
	}
}

@media (max-width: 728px) {
	.elementor[data-elementor-type="wp-page"] > .e-con-boxed,
	.elementor[data-elementor-type="single-post"] > .e-con-boxed,
	header > .e-con-boxed,
	footer > .e-con-boxed {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* Jamais de marge après la dernier paragraphe dans les widgets textes de Elementor */
.elementor-widget-text-editor p:last-of-type {
	margin-bottom: 0;
	margin-block-end: 0;
}

/* Fil ariane Rank Math SEO */
.rank-math-breadcrumb p {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
}

.rank-math-breadcrumb > * {
    min-width: 0;
    white-space: nowrap;
}

.rank-math-breadcrumb .last {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

/* Effet border inversee */
.topleft-invert:after {
	content: ' ';
	display: block;
	position: absolute;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'><g transform='rotate(90 45 45)'><path fill='white' d='M0 90 Q90 90 90 0 L90 90Z'/></g></svg>");
	width: 90px;
	height: 90px;
	top: -90px;
	left: 0;
}

.bottomright-invert:before {
	content: ' ';
	display: block;
	position: absolute;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'><g transform='rotate(90 45 45)'><path fill='white' d='M0 90 Q90 90 90 0 L90 90Z'/></g></svg>");
	width: 90px;
	height: 90px;
	right: -90px;
	bottom: 0;
}

/* Carrousel articles */
.carrousel-articles .e-flexbox-base { padding: 0; }
@media (max-width: 1024px) {
    .carrousel-articles .swiper {     overflow: visible; }
}
/*@media (max-width: 1024px) and (min-width: 768px) {
        .carrousel-articles .swiper-slide-prev, .carrousel-articles .swiper-slide-duplicate { 
        filter: blur(4px);
    }
}
@media (max-width: 767px) {
            .carrousel-articles .swiper-slide-prev, .carrousel-articles .swiper-slide-next { 
        filter: blur(4px);
    }
}*/

/* Loop post */
.loop-post-img {
	height: 519px !important;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.loop-post-img {
		height: 419px !important;
	}
}

@media (max-width: 768px) {
	.loop-post-img {
		height: 419px !important;
	}
}

/* Formulaires Elementor */
.elementor-form .elementor-field-label {
	margin-bottom: 12px;
}

.elementor-form .elementor-field-group {
	margin-bottom: 31px !important;
}

.elementor-form .elementor-acceptance-field + label {
	font-size: 18px;
	font-weight: 400;
	text-transform: inherit;
}



@media (max-width: 1024px) {
	.elementor-form .elementor-acceptance-field + label {
		font-size: 14px;
	}	

	.elementor-form .elementor-acceptance-field + label a {
		font-size: 14px;
	}
}

.elementor-form .elementor-button-icon svg {
	width: 24px;
	height: 24;
}

.elementor-form select,
.elementor-form select option {
	font-size: 15px !important;
	font-weight: 600 !important;
}

/* Wrapper Elementor checkbox */
.elementor-form .elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

/* Cache la checkbox native */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Label */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"] + label {
	position: relative;
	padding-left: 42px;
	cursor: pointer;
	line-height: 30px;
	display: inline-block;
}

/* Carré custom */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"] + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 1px solid #000;
	border-radius: 5px;
	background: #fff;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

/* Checkmark */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"] + label:after {
	content: "";
	position: absolute;
	left: 10px;
	top: 15px;
	width: 7px;
	height: 14px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: translateY(-58%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
}

/* Etat checked */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"]:checked + label:before {
	background: #000;
	border-color: #000;
}

.elementor-form .elementor-field-type-acceptance input[type="checkbox"]:checked + label:after {
	opacity: 1;
}

/* Focus accessibilité */
.elementor-form .elementor-field-type-acceptance input[type="checkbox"]:focus + label:before {
	outline: 2px solid rgba(0, 0, 0, 0.2);
	outline-offset: 2px;
}

.elementor-form .elementor-field[type="email"] {
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.32"><path d="M9.99984 13.3334C11.8408 13.3334 13.3332 11.841 13.3332 10C13.3332 8.15907 11.8408 6.66669 9.99984 6.66669C8.15889 6.66669 6.6665 8.15907 6.6665 10C6.6665 11.841 8.15889 13.3334 9.99984 13.3334Z" stroke="black" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.3332 6.66666V10.8333C13.3332 11.4964 13.5966 12.1323 14.0654 12.6011C14.5343 13.0699 15.1701 13.3333 15.8332 13.3333C16.4962 13.3333 17.1321 13.0699 17.6009 12.6011C18.0698 12.1323 18.3332 11.4964 18.3332 10.8333V9.99999C18.3331 8.11918 17.6967 6.29372 16.5276 4.82043C15.3584 3.34715 13.7253 2.31268 11.8937 1.88524C10.0621 1.4578 8.13979 1.66253 6.4393 2.46613C4.73881 3.26974 3.36018 4.62495 2.52756 6.31143C1.69494 7.9979 1.45732 9.91644 1.85332 11.7551C2.24932 13.5937 3.25566 15.2444 4.7087 16.4385C6.16175 17.6327 7.97604 18.3003 9.85657 18.3326C11.7371 18.365 13.5733 17.7602 15.0665 16.6167" stroke="black" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/></g></svg>');
	background-repeat: no-repeat;
	background-position: 15px 20px;
	padding-left: 40px !important;
}


/* Elementor custom classes
Car on ne peut pas encore cibler le root avec une classe supplémentaire pour le moment */
/*.formation-info-mosaic.grayed-out {
	opacity: 0.3;
}*/

.formation-info-mosaic.grayed-out::after {
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #D9D9D9;
	opacity: 0.8;
	border-radius: 20px;
}

.formation-info-mosaic.grayed-out.small-border::after {
	border-radius: 10px;
}

body:not(.elementor-editor-active) .formation-info-box {
	display: none;
}

.video-thumb-item::after {
  	content: ' ';
  	background-image: url('data:image/svg+xml,<svg width="127" height="127" viewBox="0 0 127 127" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M88.1696 62.6056L49.3618 43.2017C48.5639 42.8028 47.6252 43.383 47.6252 44.275V82.7251C47.6252 83.6171 48.5639 84.1973 49.3618 83.7984L88.1696 64.3945C88.9067 64.0259 88.9067 62.9741 88.1696 62.6056Z" fill="white"/><path d="M27.7207 53.913C29.1912 48.4248 31.9045 43.3485 35.6508 39.0768C39.397 34.805 44.0757 31.4523 49.3249 29.278C54.5742 27.1037 60.2532 26.1661 65.9228 26.5377C71.5924 26.9093 77.1005 28.5801 82.021 31.421C86.9415 34.2619 91.1426 38.1966 94.2992 42.9208C97.4558 47.645 99.4833 53.032 100.225 58.6651C100.967 64.2983 100.402 70.0265 98.576 75.4067C96.7497 80.7869 93.7102 85.6749 89.6926 89.6925" stroke="white" stroke-opacity="0.5" stroke-width="4" stroke-linecap="round"/></svg>');
  	width: 127px;
  	height: 127px;
  	position: absolute;
  	display: block;
  	z-index: 2;
  	top: calc(50% - 63px);
  	left: calc(50% - 63px);
}

/* Grid custom formations */
.tf-formations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 21px;
}

/* Card formation */
.tf-formation-card {
	position: relative;
	width: 100%;
}

.tf-formation-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.tf-formation-card__media {
	position: relative;
	margin-bottom: 20px;
}

.tf-formation-card__image-wrapper {
	width: 100%;
	border-radius: 25px;
	border-bottom-right-radius: 0;
	overflow: hidden;
}

.tf-formation-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.5s ease;
}

.tf-formation-card:hover .tf-formation-card__image,
.tf-formation-card:focus .tf-formation-card__image {
	transform: scale(1.1);
}

.tf-formation-card__diploma {
	position: absolute;
	top: 13px;
	right: 18px;
	background: #2F6BFF;
	color: #FFFFFF;
	padding: 7px 12px;
	border-radius: 32px;
	font-size: 16px;
	font-weight: 700;
	z-index: 2;
}

.tf-formation-card__content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tf-formation-card__title {
	margin: 0;
}

.tf-formation-card__rating {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 13px;
	margin-bottom: 4px;
}

.tf-formation-card__stars {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #F5A623;
}

.tf-star {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.tf-formation-card__rating-value {
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}

.tf-formation-card__rating-value span {
	color: rgba(0, 0, 0, 0.6);
}

.tf-formation-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.tf-formation-card__start-date {
	display: inline-flex;
	align-items: center;
	padding: 3px 7px;
	background: #F2F0F1;
	color: #000000;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
}

.tf-formation-card__format {
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	display: flex;
	align-items: center;
}

.grid-mini-formation .tf-formation-card__content {
	gap: 9px;
}

.grid-mini-formation .tf-formation-card__image-wrapper {
	height: auto;
	aspect-ratio: 1;
}

.grid-mini-formation .tf-formation-card__title {
	font-size: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.grid-mini-formation .tf-formation-card__meta {
	display: none;
}

/* Filtres formations */
.tf-formations-filters {
	position: relative;
	margin-bottom: 46px;
}

@media (max-width: 1024px) {
	.tf-formations-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.tf-formations-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.tf-formations-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* =========================
   1ERE LIGNE
========================= */
.tf-filters-categories-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.tf-filters-categories-list {
	display: flex;
	align-items: center;
	flex-wrap: no-wrap;
	gap: 39px;
	flex: 1 1 auto;
}

.tf-formations-filters .tf-filter-category {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	height: 112px;
	padding: 16px 24px 16px 40px;
	border: none;
	border-radius: 40px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	color: #FFFFFF;
	flex-grow: 1;
	width: 50%;
	transition: 0.5s ease;
}

.tf-formations-filters .tf-filter-category:hover {
	transform: scale(1.03);
}

.tf-filter-category__label {
	position: relative;
	z-index: 2;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.tf-formations-filters .tf-filters-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	border: none;
	border-radius: 50%;
	background: #F2F2F2;
	cursor: pointer;
	flex: 0 0 auto;
	padding: 25px;
	background-color: #F0F0F0 !important;
	position: relative;
}

.tf-formations-filters .tf-filters-toggle.has-active-filters::before {
	content: " ";
	background-image: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1C19.6274 1 25 6.37258 25 13C25 19.6274 19.6274 25 13 25C6.37258 25 1 19.6274 1 13C1 6.37258 6.37258 1 13 1Z" fill="%231426E3" stroke="white" stroke-width="2"/><path d="M17.0243 10.609L12.2421 15.3912L10.0684 13.2175" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	width: 26px;
	height: 26px;
	display: block;
	position: absolute;
	top: -2px;
	left: 7px;
}

.tf-filters-toggle__icon {
	display: inline-flex;
	width: 62px;
	height: 62px;
}

.tf-filters-toggle__icon svg {
	width: 100%;
	height: 100%;
}

.tf-filters-toggle__icon--opened {
	display: none;
}

.tf-filters-toggle[aria-expanded="true"] .tf-filters-toggle__icon--closed {
	display: none;
}

.tf-filters-toggle[aria-expanded="true"] .tf-filters-toggle__icon--opened {
	display: inline-flex;
}

@media (max-width: 1024px) {
	.tf-formations-filters .tf-filters-toggle {
		position: fixed;
		bottom: 33px;
		right: 25px;
		z-index: 2001;
		width: 77px;
		height: 77px;
		padding: 18px;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
	}

	.tf-filters-categories-list {
		gap: 12px;
	}

	.tf-formations-filters .tf-filter-category {
		height: 36px;
		background-size: cover;
		background-position: 100% 50%;
	}

	.tf-filter-category__label {
		font-size: 12px;
	}

	.tf-filter-category.is-active::before {
		top: -11px;
	}
}

@media (max-width: 768px) {
	.tf-filters-categories-list {
		flex-wrap: wrap;
		gap: 3px;
	}
}

/* =========================
   2EME LIGNE
========================= */
.tf-filters-panel {
	position: relative;
	margin-top: 31px;
	padding: 45px 45px 60px;
	border-radius: 24px;
	background: #F6F6F6;
}

.tf-filters-panel__inner {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: space-between;
}

.tf-filter-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tf-filters-panel .tf-filter-group__title {
	margin: 0;
	font-size: 20px;
	color: #000000;
}

@media (max-width: 1024px) {
	.tf-filters-panel.is-open {
	    position: fixed;
	    z-index: 2000;
	    top: 10px;
	    bottom: 120px;
	    left: 20px;
	    right: 20px;
		overflow-y: auto;	
	}
}

/* TYPE */
.tf-filter-group--type {
	max-width: 183px;
}

.tf-filter-group__options--checkboxes {
	display: flex;
	gap: 9px;
	flex-direction: row;
	flex-wrap: wrap;
}

.tf-filter-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0px;
	cursor: pointer;
	padding: 4px 6px;
	border-radius: 1000px;
	border: 1px solid #707070;
	background-color: #FFF;
	position: relative;
	height: 27px;
}

.tf-filter-category.is-active::before,
.tf-filter-checkbox.active::before,
.tf-filter-tag-card.active::before {
	content: " ";
	background-image: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1C19.6274 1 25 6.37258 25 13C25 19.6274 19.6274 25 13 25C6.37258 25 1 19.6274 1 13C1 6.37258 6.37258 1 13 1Z" fill="%231426E3" stroke="white" stroke-width="2"/><path d="M17.0243 10.609L12.2421 15.3912L10.0684 13.2175" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	width: 26px;
	height: 26px;
	display: block;
	position: absolute;
	top: -6px;
	left: -2px;
}

.tf-filter-category.is-active::before {
	top: -3px;
	left: 1px;
}

.tf-filter-checkbox.active::before {
	top: -14px;
	left: -14px;
}

.tf-filter-tag-card.active::before {
	top: -6px;
	left: -2px;	
}

.tf-filter-checkbox input {
	display: none;
}

/*.tf-filter-checkbox__box {
	width: 20px;
	height: 20px;
	border: 1px solid #CFCFCF;
	border-radius: 6px;
	background: #FFFFFF;
	flex: 0 0 auto;
}*/

.tf-filter-checkbox__content {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.tf-filter-checkbox__label {
	font-family: 'Poppins';
	font-weight: 400;
	font-size: 12px;
	color: #707070;
}

.tf-filter-checkbox__content svg path:not(.keep-stroke):not(.has-fill),
.tf-filter-checkbox__content svg line:not(.keep-stroke):not(.has-fill) {
	stroke: #707070;
}

.tf-filter-checkbox__content svg path.has-fill,
.tf-filter-checkbox__content svg line.has-fill {
	fill: #707070;
}

.tf-filter-checkbox.active {
	border-color: #1426E3;
}

.tf-filter-checkbox.active .tf-filter-checkbox__content svg path:not(.keep-stroke):not(.has-fill),
.tf-filter-checkbox.active .tf-filter-checkbox__content svg line:not(.keep-stroke):not(.has-fill) {
	stroke: #1426E3;
}

.tf-filter-checkbox.active svg path.has-fill,
.tf-filter-checkbox.active svg line.has-fill {
	fill: #1426E3;
}

.tf-filter-checkbox.active .tf-filter-checkbox__label {
	color: #1426E3;
}

/*.tf-filter-input[type="checkbox"] + label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	margin: 4px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #f5f5f5;
	color: #333;
	cursor: pointer;
	transition: all 0.2s;
}


.tf-filter-input[type="checkbox"] + label:hover {
	background: #e0e0e0;
}

.tf-filter-input[type="checkbox"]:checked + label {
	background-color: #0073e6;
	color: #fff;
	border-color: #005bb5;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	transform: scale(1.05);
}*/

/* TAGS */
.tf-filter-group--tags {
	max-width: 371px;
}

.tf-filter-tags-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 3px;
}

.tf-filter-tag-card {
	display: block;
	cursor: pointer;
	position: relative;
}

.tf-filter-tag-card input {
	display: none;
}

.tf-filter-tag-card__inner {
	display: flex;
   flex-direction: column;
   align-items: center;
}

.tf-filter-tag-card__image-wrapper {
	width: 60px;
	height: 60px;
	border: 5px solid white;
	border-radius: 50px;
	overflow: hidden;
	margin-bottom: 9px;
}

.tf-filter-tag-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tf-filter-tag-card__label {
	font-size: 12px;
	color: #202020;
	line-height: 17px;
	font-weight: 500;
}

@media (max-width: 767px) {
	.tf-filter-tags-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* DATE + LIEUX */
.tf-filter-group--session {
	max-width: 240px;
}

.tf-filter-session-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tf-filter-select-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tf-filter-select__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
}

.tf-filter-select__inner {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #FFFFFF;
	border-radius: 14px;
	padding: 6px;
}

.tf-filter-select__icon {
	display: inline-flex;
	padding: 13px;
	background-color: #EFEFEF;
	border-radius: 8px;
	color: #000000;
	flex: 0 0 auto;
}

.tf-filter-select__icon svg {
	width: 100%;
	height: 100%;
}

.tf-filter-input--select,
#tf-session-date,
#tf-session-city {
	border: none;
	background: transparent;
	width: 100%;
	font-size: 15px;
	color: #000000;
	outline: none;
	font-size: 14px;
	color: #555E67;
	padding-left: 10px;
}

@media (max-width: 1024px) {
	.tf-filter-group {
		width: calc(50% - 30px);
		max-width: unset !important;
	}

	.tf-filter-group--price {
		margin-bottom: 50px;
	}
}

@media (max-width: 768px) {
	.tf-filter-group {
		width: 100%;
	}
}

/* RESET */
.tf-filters-panel .tf-filters-reset {
	position: absolute;
	right: 55px;
	bottom: -25px;
	color: #000 !important;
	font-size: 16px;
	text-decoration: none;
	font-weight: 400;
	padding: 14px 23px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #FFF !important;
	border-radius: 62px;
}

.tf-filters-panel .tf-filters-reset:hover,
.tf-filters-panel .tf-filters-reset:focus {
	background-color: #FF3333 !important;
	color: #FFF !important;
}

@media (max-width: 1024px) {
	.tf-filters-panel .tf-filters-reset {
		right: calc(50% - 80px);
		bottom: 75px;
		position: fixed;
	}
}

/* Price filter */
.tf-filter-group--price {
	max-width: 315px;
}

.tf-price-filter {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.tf-price-filter-header {
	display: flex;
	justify-content: space-between;
}

.tf-price-numeric-inputs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transform: translateY(-5px);
}

.tf-price-numeric-inputs .tf-price-num {
	width: 64px;
	padding: 5px 12px !important;
	font-size: 13px !important;
	border: 1px solid #C9CFE5;
	border-radius: 4px !important;
	text-align: center !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 22px !important;
	background-color: white !important;
}

.tf-price-num-separator {
	color: #7B7F8F;
	font-size: 31px;
	font-weight: 300;
}

.tf-price-num::-webkit-outer-spin-button,
.tf-price-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.tf-price-num {
  -moz-appearance: textfield;
}

.tf-price-chart {
	width: 100%;
	height: 96px;
}

.tf-price-chart__svg {
	width: 100%;
	height: 100%;
	display: block;
}

.tf-price-values {
	display: none;
}

.tf-price-values__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tf-price-values__label {
	font-size: 13px;
	color: #666666;
}

.tf-price-values__value {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
}

.tf-price-slider {
	position: relative;
	display: flex;
	align-items: center;
}

.tf-price-slider__track,
.tf-price-slider__range {
	position: absolute;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 6px;
}

.tf-price-slider__track {
	background: #C9CFE5;
}

.tf-price-slider__range {
	background: #1426E3;
}

.tf-price-slider__input {
	position: absolute;
	top: -8px;
	width: 100%;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	line-height: 21px !important;
	background-color: transparent !important;
	padding: 0 !important;
}

.tf-price-slider__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1426E3;
	background: linear-gradient(189deg,rgba(20, 38, 227, 1) 0%, rgba(77, 176, 209, 1) 100%);
	border: 3px solid #FFF;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
	cursor: pointer;
	pointer-events: auto;
}

.tf-price-slider__input::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #1426E3;
	background: linear-gradient(189deg,rgba(20, 38, 227, 1) 0%, rgba(77, 176, 209, 1) 100%);
	border: 3px solid #FFF;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
	cursor: pointer;
	pointer-events: auto;
}

.tf-price-slider__input::-webkit-slider-runnable-track {
	background: transparent;
	border: none;
}

.tf-price-slider__input::-moz-range-track {
	background: transparent;
	border: none;
}

.tf-price-slider__bubble {
	position: absolute;
	top: 12px;
	background: #1426E3;
	border-radius: 4px;
	padding: 6px;
	white-space: nowrap;
	z-index: 5;
	pointer-events: none;
	box-shadow: 0 4px 16px rgb(85 128 251 / 50%);
	background-image: url('data:image/svg+xml,<svg width="52" height="38" viewBox="0 0 52 38" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_d_193_5505)"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 5.46668C0 2.08778 3.93014 0.231028 6.54022 2.37682L9.8403 5.08986C10.5561 5.67831 11.4539 6 12.3805 6H48C50.2091 6 52 7.79086 52 10V34C52 36.2091 50.2091 38 48 38H4C1.79086 38 0 36.2091 0 34L0 5.46668Z" fill="%231426E3"/></g><defs><filter id="filter0_d_193_5505" x="-16" y="-10.5409" width="84" height="68.5409" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.333333 0 0 0 0 0.501961 0 0 0 0 0.984314 0 0 0 0.5 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_193_5505"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_193_5505" result="shape"/></filter></defs></svg>');
	background-color: unset;
	background-size: cover;
	height: 41px;
	display: flex;
	align-items: center;

}

.tf-price-slider__bubble-value {
	display: block;
	color: #FFF;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
	transform: translateY(3px);
}

.tf-price-slider__bubble--min {
	background-image: url('data:image/svg+xml,<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(%23filter0_d_193_5508)"><path fill-rule="evenodd" clip-rule="evenodd" d="M38 7.2855C38 3.68969 33.5556 1.99994 31.1667 4.68748C30.4246 5.52234 29.3609 6 28.2439 6H4C1.79086 6 0 7.79086 0 10V34C0 36.2091 1.79086 38 4 38H34C36.2091 38 38 36.2091 38 34V7.2855Z" fill="%231426E3"/></g><defs><filter id="filter0_d_193_5508" x="-16" y="-8.63287" width="70" height="66.6329" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.333333 0 0 0 0 0.501961 0 0 0 0 0.984314 0 0 0 0.5 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_193_5508"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_193_5508" result="shape"/></filter></defs></svg>');
}

/* Page formation prochaines sessions */
/* Container global */
.tf-prochaines-sessions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: sans-serif;
}

/* Ligne titre + filtres */
.tf-prochaines-sessions__header {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 31px;
}

.tf-prochaines-sessions__title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	text-wrap: nowrap;
}

.tf-prochaines-sessions .tf-filters-toggle {
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: none;
	border-radius: 50%;
	background: #F2F2F2;
	cursor: pointer;
	flex: 0 0 auto;
	background-color: white !important;
	position: relative;
	display: none;
}

.tf-prochaines-sessions .tf-filters-toggle.has-active-filters::before {
	content: " ";
	background-image: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1C19.6274 1 25 6.37258 25 13C25 19.6274 19.6274 25 13 25C6.37258 25 1 19.6274 1 13C1 6.37258 6.37258 1 13 1Z" fill="%231426E3" stroke="white" stroke-width="2"/><path d="M17.0243 10.609L12.2421 15.3912L10.0684 13.2175" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	width: 26px;
	height: 26px;
	display: block;
	position: absolute;
	top: -9px;
	left: -5px;
}

.tf-prochaines-sessions__filters {
	display: flex;
	gap: 31px;
	flex-grow: 1;
}

.tf-prochaines-sessions__filters .tf-filter-select-wrap {
	width: 50%;
}

.tf-prochaines-sessions__filter select {
	padding: 6px 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 14px;
	cursor: pointer;
}

/* Liste des sessions */
.tf-prochaines-sessions__list {
	display: flex;
	flex-direction: row;
	gap: 76px;
	margin-top: 66px;
	padding-left: 20px;
	padding-right: 20px;
	justify-content: space-around;
}

/* Carte session */
.tf-session-card {
	display: flex;
	width: 50%;
	height: 183px;
}

.tf-session-card__left {
	width: 183px;
	position: relative;
	position: absolute;
}

.tf-session-card__city {
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	padding: 7px 12px;
	border-radius: 16px;
	background-color: #1426E3;
	color: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	top: -20px;
	text-wrap-mode: nowrap;
}

.tf-session-card__date-circle {
	width: 183px;
	height: 183px;
	background: #FF3333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	font-weight: 700;
	position: relative;
}

.tf-session-card__date-icon {
	width: 55px;
	height: 57px;
	margin-bottom: 7px;
}

.tf-session-card__date {
	font-size: 20px;
	text-align: center;
	font-weight: 800;
	line-height: 30px;
	padding: 0 13px;
}

/* Colonne droite */
.tf-session-card__right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-content: center;
	padding-left: 50px;
}

.tf-session-card__end-inscription,
.tf-session-card__end-formation {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	flex-direction: column;
	background-color: #FFF;
	font-family: Poppins;
	padding: 10px 30px 10px 160px;
	border-radius: 40px 40px 0 40px;
}

.tf-session-card__label {
	font-size: 18px;
	line-height: 25px;
}

.tf-session-card__value {
	font-weight: 700;
	font-size: 24px;
	line-height: 25px;
}

/* Message vide */
.tf-prochaines-sessions__empty {
	text-align: center;
	color: #666;
	font-style: italic;
}

@media (max-width: 1024px) {
	.tf-prochaines-sessions__list {
		flex-direction: column;
		align-items: center;
	}

	.tf-prochaines-sessions__header {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.tf-prochaines-sessions__filters {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 16px;
		width: 100%;
		display: none;
	}

	.tf-prochaines-sessions__filters.is-open {
		display: flex;
	}

	.tf-prochaines-sessions .tf-filters-toggle {
		display: inline-flex;
	}

	.tf-prochaines-sessions__filters .tf-filter-select-wrap {
		width: 100%;
		max-width: 500px;
	}

	.tf-session-card {
		width: auto;
	}

	.tf-session-card__date {
		padding: 0 5px;
	}
}

@media (max-width: 768px) {

	.tf-session-card {
		height: 112px;
	}

	.tf-prochaines-sessions__list {
		padding-left: 0;
		padding-right: 0;
		gap: 33px;
		margin-top: 30px;
	}

	.tf-session-card__date-circle {
		width: 112px;
		height: 112px;
	}

	.tf-session-card__left {
		width: 112px;
	}

	.tf-session-card__date-icon {
		margin-bottom: 4px;
		width: 33px;
		height: 34px;
	}

	.tf-session-card__city,
	.tf-session-card__date,
	.tf-session-card__value {
		font-size: 12px;
	}

	.tf-session-card__date {
		line-height: 20px;
	}

	.tf-session-card__label {
		font-size: 10px;
	}

	.tf-session-card__label,
	.tf-session-card__value {
		line-height: 12px;
	}

	.tf-session-card__right {
		gap: 11px;
	}

	.tf-session-card__end-inscription, .tf-session-card__end-formation {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 80px;
	}
}

/* select2 */
.select2-container {
	width: calc(100% - 70px) !important;
}

.select2-search__field {
	font-size: 14px !important;
	color: #555E67 !important;
}

.select2-container--default .select2-selection--multiple {
	overflow-x: hidden !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	left: unset !important;
	right: 2px !important;
	color: white !important;
	border: unset !important;
	font-weight: 300 !important;
	background-color: transparent !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: blue !important;
	border-radius: 10px !important;
	color: white !important;
	font-size: 15px !important;
	padding: 6px 16px !important;
	font-weight: 500 !important;
}

.select2-search.select2-search--inline {
	width: auto;
	display: inline-block;
}

.select2-selection{
  /*overflow-y:auto !important;*/
  white-space:nowrap !important;
}

ul.select2-selection__rendered{  
    white-space: nowrap !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
	border: unset !important;
}

.select2-dropdown--below,
.select2-dropdown--above {
	padding: 17px 21px !important;
	border: unset !important;
	border-radius: 0 20px 20px 20px !important;
	transform: translateY(20px);
}

/* chromium only */
body.is-chrome .select2-dropdown--below,
body.is-chrome .select2-dropdown--above {
	transform: translateY(50px);
}

.select2-dropdown--below .select2-results__option--selectable,
.select2-dropdown--above .select2-results__option--selectable,
.select2-dropdown--below .select2-results__option--highlighted,
.select2-dropdown--above .select2-results__option--highlighted {
	color: black !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #000 !important;
	border-radius: 20px !important;
	padding: 6px 12px !important;
	text-align: center !important;
	margin-bottom: 11px !important;
	background-color: transparent !important;
}

.select2-dropdown--below .select2-results__option--selected,
.select2-dropdown--above .select2-results__option--selected,
.select2-dropdown--below .select2-results__option--selectable:hover,
.select2-dropdown--above .select2-results__option--selectable:hover,
.select2-dropdown--below .select2-results__option--selectable:active,
.select2-dropdown--above .select2-results__option--selectable:active,
.select2-dropdown--below .select2-results__option--selectable:focus,
.select2-dropdown--above .select2-results__option--selectable:focus {
	background-color: #1426E3 !important;
	color: #FFF !important;
}

.select2-dropdown--below ul .select2-results__option--selectable:last-of-type,
.select2-dropdown--above ul .select2-results__option--selectable:last-of-type {
	margin-bottom: 0 !important;
}

/* Google review widget */
.ti-disable-animation.ti-widget.ti-goog .ti-reviews-container-wrapper {
	margin: 0px !important;
}

.ti-widget.ti-goog .ti-controls .ti-prev {
	left: -50px !important;
	outline: unset !important;
	background-color: transparent !important;
}

.ti-widget.ti-goog .ti-controls .ti-next {
	right: -50px !important;
	outline: unset !important;
	background-color: transparent !important;
}

body .ti-widget.ti-goog .ti-controls .ti-next:hover,
body .ti-widget.ti-goog .ti-controls .ti-next:focus,
body .ti-widget.ti-goog .ti-controls .ti-prev:hover,
body .ti-widget.ti-goog .ti-controls .ti-prev:focus {
	background-color: transparent !important;
	box-shadow: unset !important;
}

.ti-widget.ti-goog .ti-controls .ti-next:before, .ti-widget.ti-goog .ti-controls .ti-prev:before {
	border-color: #000 !important;
	border-bottom-width: 3px !important;
	border-left-width: 3px !important;
	width: 13px !important;
	height: 13px !important;
}

body .ti-widget.ti-goog .ti-controls .ti-next:hover:before,
body .ti-widget.ti-goog .ti-controls .ti-next:focus:before,
body .ti-widget.ti-goog .ti-controls .ti-prev:hover:before,
body .ti-widget.ti-goog .ti-controls .ti-prev:focus:before {
	border-color: #FF3333 !important;
}

/* Video widget */
  
  /* Track */

  .video-thumbs-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
    border-radius: 6px;
  }
  
  /* Handle */
  .video-thumbs-wrapper::-webkit-scrollbar-thumb {
  background: #1426e3;
    border-radius: 6px;
  }

    @media (min-width: 768px) {

    	.video-thumbs-wrapper {
    		overflow-y: auto !important;
    		overflow-x: hidden !important;
    	}

    	 .video-thumbs-wrapper::-webkit-scrollbar {
  		max-width: 6px;
    }
    }

  @media (max-width: 767px) {
  	 .video-thumbs-wrapper::-webkit-scrollbar {
		height: 6px;
  }
  }