.mini-mark {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  flex: 0 0 auto;
  border: 2px solid var(--cobalt);
}

.mini-mark i {
  position: absolute;
  display: block;
}

.mini-mark i:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 35%;
  height: 35%;
  background: var(--cobalt);
  border-radius: 100% 0 0;
}

.mini-mark i:nth-child(2) {
  top: 10%;
  right: 10%;
  width: 35%;
  height: 35%;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.mini-mark i:nth-child(3) {
  bottom: 10%;
  left: 10%;
  width: 35%;
  height: 35%;
  background: var(--magenta);
  clip-path: circle(50% at 100% 0);
}

.mini-mark i:nth-child(4) {
  right: 10%;
  bottom: 10%;
  width: 35%;
  height: 35%;
  background: var(--lime);
  border-radius: 0 0 100% 0;
}
