.success-tick {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #28a745;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.success-tick::before {
  content: "";
  width: 35px;
  height: 65px;
  border: solid #fff;
  border-width: 0 10px 10px 0;
  transform: rotate(45deg);
  margin-top: -10px;
}