﻿.elementor-widget-custom_marquee {
}
.elementor-widget-custom_marquee .elementor-widget-container{
	transform-origin: bottom;
	width: 100vw;
}
.elementor-scrolling-wrapper {
	display: flex;
	white-space: nowrap;
}
.elementor-marquee--align-left .elementor-scrolling-wrapper {
	flex-direction: row-reverse;
}

.elementor-scrolling-wrapper:hover .elementor-scrolling-inner {
	animation-play-state: paused
}

.elementor-scrolling-item {
	display: flex;
	align-items: center;
	position: relative;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-webkit-transition: all ease .3s;
	transition: all ease .3s
}


.elementor-scrolling-item a {
	white-space: nowrap;
	color: inherit
}

.elementor-scrolling-item .scrolling-title:hover a {
	text-decoration: none
}

.elementor-scrolling-item:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	display: inline-block;
	background-color: coral;
	margin-left: 10px;
}

.elementor-scrolling-inner {
	display: inline-flex;
	position: relative;
	animation-name: marquee;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-duration: 10s;
}

.elementor-scrolling-inner.slide_left{
	animation-name: marquee_left;
}
.elementor-scrolling-item-inner {
	display: inline-flex;
	flex-direction: column
}
@keyframes marquee {
	100% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translate(100%)
	}
}

@keyframes marquee_left {
	100% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translate(-100%)
	}
}