.loader {
    color: rgb(5, 153, 0);
    display: inline-block;
    position: relative;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
  }
  .loader::after {
    content: '';  
    width: 3px;
    height: 3px;
    background: currentColor;
    position: absolute;
    bottom: 8px;
    right: -5px;
    box-sizing: border-box;
    animation: animloader 1s linear infinite;
  }
  
  @keyframes animloader {
    0% {
        box-shadow: 10px 0 rgba(94, 94, 94, 0), 20px 0 rgba(0, 0, 0, 0);
      }
    50% {
      box-shadow: 10px 0 black, 20px 0 rgba(36, 36, 36, 0);
    }
    100% {
      box-shadow: 10px 0 black, 20px 0 black;
    }
  }