/* === tab css Begin === */
.lp__tab_full_row .cmp-tabs {
	position: relative;
}

.lp__tab_full_row .tui_scroller_btn {
	color: var(--blue-70);
	font-weight: 700;
	border: none;
	font-size: 1rem;
	line-height: 1;
	background-color: var(--white);
	cursor: pointer;
	position: absolute;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	z-index: 1;
	height: 2rem;
	width: 2rem;
	top: 0;
	display: none;
}

.lp__tab_full_row .tui_scroller_btn_next {
	right: 0;
}

.lp__tab_full_row .tui_scroller_btn_previous {
	left: 0;
}

.lp__tab_full_row .tui_scroller_btn .lp::before {
	display: inline-flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.lp__tab_full_row .lp-chevron-double-left:before {
	content: "\e113";
}

.lp__tab_full_row .lp-chevron-double-right:before {
	content: "\e114";
}

.cmp-tabs__tablist {
	display: flex;
	flex-wrap: nowrap !important;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	position: relative;
	width: auto;
	overflow-x: auto;
	border-bottom: 2px solid var(--divider-on-light-subdued);
	margin-bottom: var(--spacing-xlarge);
	/* -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0));
	mask-image: linear-gradient(to right, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0)); */
}

/* @media (min-width: 1024px) {
	.cmp-tabs__tablist {
		-webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0));
		mask-image: linear-gradient(to right, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0));
	}
} */

.cmp-tabs__tab {
	float: left;
	cursor: pointer;
	color: var(--text-on-light-link-primary-enabled);
	font-size: var(--font-size-300);
	font-style: normal;
	font-weight: var(--tabs-label-font-weight);
	line-height: 20px;
	letter-spacing: 0.25px;
	padding-bottom: 12px;
	white-space: nowrap;
	position: relative;
	outline: none;
	padding: 0 var(--spacing-regular) var(--spacing-small) 0 !important;
	display: inline-flex !important;
	-webkit-tap-highlight-color: transparent;
}

.cmp-tabs__tab::after {
	content: " ";
	display: inline-block;
	width: calc(100% - var(--spacing-regular));
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.cmp-tabs__tab:not(.cmp-tabs__tab--active):hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
	text-decoration-color: #169af3;
	color: var(--text-on-light-emphasis);
	cursor: pointer;
}

.cmp-tabs__tab:focus-visible {
	outline: var(--orange-05) solid 2px;
}

.cmp-tabs__tab--active {
	color: var(--text-on-light-emphasis);
}

.cmp-tabs__tab--active::after {
	content: " ";
	display: inline-block;
	width: calc(100% - var(--spacing-regular));
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	color: var(--background-container-on-light-link-primary-hover);
	background: var(--background-container-on-light-link-primary-hover);
}

.cmp-tabs__tabpanel {
	display: none;
}

.cmp-tabs__tabpanel--active {
	display: block;
}


.cmp-tabs__tablist {
	overflow-x: auto;
}

.cmp-tabs__tablist::-webkit-scrollbar {
	background: #f2f2f2;
	width: 4px;
	height: 4px;
}

.cmp-tabs__tablist::-webkit-scrollbar-track {
	background: #f2f2f2;
	border-radius: 12px;
	width: 1rem;
	border: 1px solid transparent;
	background-clip: content-box;
}

.cmp-tabs__tablistr::-webkit-scrollbar-thumb {
	background-color: #169af3;
	width: 0.35rem;
	border-radius: 8px;
}

.cmp-tabs__tablist::-webkit-scrollbar {
	width: 0.35rem;
}


[lang="fr"] .cmp-tabs__tab {
	line-height: 150% !important;
}

/* === tab css End === */

.scroll-btn {
	position: absolute;
	border: none;
	cursor: pointer;
	z-index: 1;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "loopicon";
	font-size: 1rem;
	line-height: 1;
	font-weight: 400;
	color: rgb(0, 113, 188);
	background-color: #fff;
	filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.32));
	border-radius: 50%;
	top: -8px;
}

.scroll-btn .lp::before {
	color: #004370;
}

.scroll-btn.left {
	left: 0;
}

.scroll-btn.right {
	right: 0;
}

.cmp-tabs__tablist::-webkit-scrollbar {
	display: none;
}

html[lang="ar"] .scroll-btn.left {
	left: auto;
	right: 0;
	transform: rotate(180deg);
}

html[lang="ar"] .scroll-btn.right {
	right: auto;
	left: 0;
	transform: rotate(180deg);
}

