.dwe_woo_products_ticker{
	overflow: hidden;
}
.dwe-products-ticker-wrap{
	display: flex;
	overflow: hidden;
	max-width: 100%;
}

/* Ticker label. */
.dwe-products-ticker-label {
	font-size: 18px;
	color: #fff;
	border: 0 solid #000;
	white-space: nowrap;
    position: relative;
	z-index: 3;
	overflow: unset !important;
}

/* Ticker items. */
.dwe-products-ticker-items{
	position: relative;
	overflow: hidden;
	flex-grow: 1;
	border: 0 solid #000;
	white-space: nowrap;
}
.dwe-products-ticker-item{
	display: flex;
}
.dwe-products-ticker-item-inner{
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: nowrap;
}
.dwe-products-ticker-bar{
	display: flex;
	align-items: center;
	max-width: 100%;
}
.dwe-products-ticker-item-content-wrap{
	flex-grow: 1;
}
.dwe-products-ticker-product-image{
	display: block;
	width: 34px;
	max-height: 100%;
	object-fit: cover;
	border: 0 solid;
}
.dwe-products-ticker-product-title a{
	padding: 0 5px;
	font-size: 16px;
	color: #000;
	text-decoration: none;
	flex-grow: 1;
}

/* Scroll effect. */
.dwe-ticker-effect-scroll .dwe-products-ticker-bar{
	top: 0;
	bottom: 0;
	left: 100%;
	white-space: nowrap;
	max-width: none !important; /* Force full width of content. */
	width: max-content; 
	animation-name: dwe-products-ticker-scroll;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-duration: 35.00s;
}
.dwe-products-ticker-label + .dwe-products-ticker-items .dwe-products-ticker-bar{
	position: absolute;
}
.dwe-ticker-effect-scroll:hover .dwe-products-ticker-bar{
	animation-play-state: paused;
}
.dwe-ticker-effect-scroll .dwe-products-ticker-item{
	white-space: nowrap;
}
.dwe-ticker-effect-scroll .dwe-products-ticker-item::after{
	content: "";
	vertical-align: middle;
	align-self: center;
}
.dwe-ticker-effect-scroll .dwe-products-ticker-item:last-child::after {
	display: none !important;
}
.dwe-ticker-effect-scroll .dwe-products-ticker-product-title{
	display: inline-block;
}

/* Fade/Slide effect. */
.dwe-ticker-effect-slide .dwe-products-ticker-bar,
.dwe-ticker-effect-fade .dwe-products-ticker-bar{
	height: 100%;
}
.dwe-ticker-effect-fade .dwe-products-ticker-item{
	max-width: 100%;
	height: auto !important;
}
.dwe-ticker-effect-slide .dwe-products-ticker-product-title,
.dwe-ticker-effect-fade .dwe-products-ticker-product-title{
	display: block;
}
.dwe-ticker-effect-slide .dwe-products-ticker-item{
	max-width: 100%;
	height: 100% !important;
}
.dwe-ticker-effect-slide .swiper-container{
	margin-left: 0;
	flex-grow: 1;
	height: auto;
}
.dwe-ticker-effect-fade .swiper-container{
	width: 100%;
}
.dwe-products-ticker-items .dwe_swiper_navigation .swiper-button-next {
	margin-left: 7px;
}

.dwe-products-ticker-items .dwe_swiper_navigation{
	order: 1;
	flex-wrap: nowrap;
	height: 100%;
	margin: 0;
}

@keyframes dwe-products-ticker-scroll {
	from {
		left: 100%;
		transform: translateX(0);
	}
	to {
		left: 0;
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 768px) {
	.dwe-products-ticker-wrap{
		flex-direction: column;
	}
	.dwe-ticker-effect-scroll .dwe-products-ticker-bar{
		position: relative;
	}
}
