

.ecs {
	background-color:CornflowerBlue;
}

.ecslegende {
	position: relative;
	top: -270px;
	left: 10px;
	width:175px;
	text-align: center;
}

.svgecsfond {
	position: relative;
	top: 50px;
	left:25px;
}

.svgecs {
	position: relative;
	top: -120px;
	left: 25px;
	transform-origin: 44% 81%;
}

.trans {
	opacity: 25%;
	top: -40px;

}

.txt {
	font-size:14px;
	fill:black;
}

.wave {
	/* fill: rgba(100, 149, 237,0.4); */
	fill: rgba(40, 60, 150,0.4);
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 28%,
			16% 27%,
			33% 33%,
			54% 40%,
			70% 41%,
			84% 39%,
			100% 35%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		top: 40px;
		clip-path: polygon(
			0% 40%,
			15% 45%,
			34% 46%,
			51% 42%,
			67% 34%,
			84% 28%,
			100% 29%,
			100% 100%,
			0% 100%
		);
	}
}