/* ul li a {
  position: relative;
  display: block;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  color: #1f0757;
  z-index: 1;
} */

ul li a i {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

ul li a span {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  color: #1f0757;
  display: block;
  margin-top: 0.25rem;
}

ul li.use a {
  color: #31bf61;
}

ul li.use a span {
  color: #31bf61;
  display: none !important;;
}

ul li.use a {
  position: relative;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgb(33 37 41 / 30%);
  margin: -25px auto 0;
  border-radius: 50%;
  color: #ffffff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

li.use a::before {
  border-radius: 50%;
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  right: 10%;
  z-index: -10;
  background-color: #0d6efd;
  content: "";
}