Components/PCF/AzureMaps/data-set/azureMapsDataSetControl/css/app.css [38:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      content: "";
      border-radius: 50%;
      height: 40px;
      width: 40px;
      position: absolute;
      margin: -13px 0 0 -13px;
      animation: pulsate 1s ease-out;
      animation-iteration-count: infinite;
      opacity: 0;
      box-shadow: 0 0 1px 2px #00cae9;
      animation-delay: 1.1s;
  }
@keyframes pulsate {
  0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
  }
}
@keyframes bounce {
  0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
  }
  80% {
      transform: translateY(-10px) rotate(-45deg);
  }
  100% {
      transform: translateY(0) rotate(-45deg);
  }
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Components/PCF/AzureMaps/field/azureMapsFieldControl/css/app.css [52:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      content: "";
      border-radius: 50%;
      height: 40px;
      width: 40px;
      position: absolute;
      margin: -13px 0 0 -13px;
      animation: pulsate 1s ease-out;
      animation-iteration-count: infinite;
      opacity: 0;
      box-shadow: 0 0 1px 2px #00cae9;
      animation-delay: 1.1s;
  }
@keyframes pulsate {
  0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
  100% {
      transform: scale(1.2, 1.2);
      opacity: 0;
  }
}
@keyframes bounce {
  0% {
      opacity: 0;
      transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
      opacity: 1;
      transform: translateY(30px) rotate(-45deg);
  }
  80% {
      transform: translateY(-10px) rotate(-45deg);
  }
  100% {
      transform: translateY(0) rotate(-45deg);
  }
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



