/* Add Your Styles Here */
body {
	padding: 0;
  margin: 0;
}

#iftlkg {
width:10px !important;
  height:10px !important;
}

#iftlkg {
  animation: greenPulse 1.4s infinite ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#iftlkg svg {
  display: block;
}

@keyframes greenPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 90, 0.6);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 16px rgba(0, 200, 90, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 90, 0);
  }
}



body * {
  box-sizing: border-box;
}