section.recirc-strip {
	align-items: center;
	background-color: #fff;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	width: 100%;
	z-index: 11;
}

#tmbi-recirculation-strip {
	align-items: center;
	background: #FFF;
	border: 1px solid #eaeaea;
	display: flex;
	height: 64px;
	justify-content: space-between;
	width: 1220px;
}

#tmbi-recirculation-strip .nav-btn[disabled] {
	opacity: 0.2;
	pointer-events: none;
}

.tmbi-recirculation-strip-list {
	overflow: hidden !important;
	width: 100%;
}

.tmbi-recirculation-strip-list::-webkit-scrollbar {
	display: none;
}

.tmbi-recirculation-strip-items-wrapper {
	align-items: center;
	display: flex;
	gap: 5px;
}

#tmbi-recirculation-strip .item {
	flex: none;
	width: 16.67%;
}

#tmbi-recirculation-strip .item a {
	align-items: center;
	border: none;
	display: flex;
	flex: 1 0 0;
	gap: 10px;
	justify-content: center;
}

#tmbi-recirculation-strip .tmbi-recirculation-strip-items-wrapper .item img {
	border: 1px solid #eaeaea;
	height: 64px;
	width: 64px;
}

#tmbi-recirculation-strip .recirc-strip-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #444;
	display: -webkit-box;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
	line-height: 125%;
	max-height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
}

#tmbi-recirculation-strip .recirc-strip-title:hover {
	text-decoration: underline;
}

#tmbi-recirculation-strip .nav-btn {
	align-items: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 50px;
}

@media only screen and (max-width: 1024px) {
	#tmbi-recirculation-strip {
		width: 100%;
	}

	#tmbi-recirculation-strip .nav-btn svg {
		margin: 0;
	}

	.tmbi-recirculation-strip-list {
		overflow-x: scroll;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	#tmbi-recirculation-strip .item {
		scroll-snap-align: start;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	#tmbi-recirculation-strip .item {
		width: 25%;
	}
}

@media only screen and (max-width: 767px) {
	#tmbi-recirculation-strip .item {
		width: 50%;
	}
}

/** Sticky CSS Start **/

.tmbi-rs-sticky {
	position: sticky;
}

@media screen and (min-width: 1025px) {
	section.recirc-strip.tmbi-recirc-strip-sticky-desktop {
		position: sticky;
		top: 76px
	}

	.tmbi-rs-sticky {
		top: 76px;
	}
}

@media screen and (max-width: 1024px) {
	.header-2021.sticky {
		position: relative;
	}

	section.recirc-strip.tmbi-recirc-strip-sticky-mobile {
		position: sticky;
		top: 0;
	}

	.tmbi-rs-sticky {
		top: 0;
	}
}

/** Sticky CSS End **/