
  .circle {
    display: inline-block;
    background-color: orange;
    height: 15px;
    width: 15px;
    border-radius: 25px;
  }

  #loadingcontainer {
    height: 200px;
    margin-top: 50px;
  }

  #ball-1 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
  }

  #ball-2 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1.1s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
  }

  #ball-3 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1.2s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
  }

  @-webkit-keyframes bounce {
    0% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(23px);
    }

    60% {
      transform: translateY(-25px);
    }

    80% {
      transform: translateY(0);
    }
  }
  .display-loading{
    padding-left: 49%;
    padding-top: 30%;
    width: 100%;
    z-index: 100;
    position: fixed;
    background: white;
  }

  .badgecheck{
    padding: 6px 20px !important;
    font-size: 14px !important;
    color: black !important;
    border-color: #dddbda !important;
    border-width: 1px !important;
  }
  
  .badgecheck .uil{
    font-size: 20px !important;
    margin-right: 10px;
    color: green;
    
  }
  