.sonar-container {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateGradient 7s linear infinite;
}

.sonar-gradient {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(236, 89, 40, 0.00) 0deg,
    rgba(236, 89, 40, 0.18) 190.8deg,
    rgba(236, 89, 40, 0.17) 331.2deg,
    rgba(236, 89, 40, 0.86) 360deg
  );
  opacity: 0.4;
  width: 100%;
  height: 100%;
}

.radar-line {
  position: absolute;
  width: 2px;
  height: 50%;
  top: 0;
  left: 50%;
  background-image: linear-gradient(
    to bottom,
    rgba(236, 89, 40, 0.9) 0%,
    rgba(236, 89, 40, 0.0) 85%
  );
  transform: rotate(180deg);
  transform-origin: bottom center;
}

@keyframes rotateGradient {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.gmnoprint, .gmnoscreen, .gm-style-cc {
  display: none !important;
}