/* Add custom CSS styles below */ 



@property --angle {
	syntax: '<angle>';
	inherits: true;
	initial-value: 0deg;
}

section.s-block.s-block--testimonials salla-slider .flex.flex-col.w-full.px-4.pb-8.-mt-8{
	--angle: 0deg;
	background: linear-gradient(white, white) padding-box, conic-gradient(from var(--angle), #dfdfdf, #17171b) border-box;
	border: 2px solid transparent;
	border-radius: 16px;
	max-width: 400px;
	animation: rotate-gradient 3s infinite linear;
}

@keyframes rotate-gradient {
	from { --angle: 0deg; }
	to { --angle: 360deg; }
}