.icon-ok {
  position: relative;
}
.icon-ok::after {
  position: absolute;
  border: 2px solid;
  border-color: rgb(28, 255, 181);
  border-radius: 50%;
  aspect-ratio: 1;
  content: "";
  width: 17px;
  top: 0;
}

.icon-x {
  position: relative;
}
.icon-x::after, .icon-x::before {
  position: absolute;
  background-color: red;
  height: 2px;
  width: 17px;
  content: "";
  top: 12px;
  transform: rotateZ(-45deg);
}
.icon-x::after {
  transform: rotateZ(45deg);
}

.icon-dash {
  position: relative;
}
.icon-dash::before {
  position: absolute;
  background-color: black;
  height: 2px;
  width: 17px;
  content: "";
  top: 12px;
}

/*# sourceMappingURL=icons.css.map */
