/* Radar Sonar */

.radar-container {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radar {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: conic-gradient( from 0deg, rgba(255, 0, 0, 0.5) 0deg, rgba(0, 255, 0, 0) 60deg );
	animation: radarSpin 2s linear infinite;
}

@keyframes radarSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}




/* Radar de Pulso */

.ping-container {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ring {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid rgba(255, 0, 0, 0.7);
	border-radius: 50%;
	transform: scale(0.6);
	opacity: 0;
	animation: pingWave 2.4s ease-out infinite;
}

	.ring.delay {
		animation-delay: 0.8s;
	}

	.ring.delay2 {
		animation-delay: 1.6s;
	}

@keyframes pingWave {
	0% {
		transform: scale(0.6);
		opacity: 0.9;
	}

	70% {
		transform: scale(1.8);
		opacity: 0;
	}

	100% {
		transform: scale(0.6);
		opacity: 0;
	}
}

 /* Imagen de Icono */

.icon {
	position: relative;
	height: 40px;
	color: black;
	z-index: 1;
}