/* BASIC css start */
.item-cont-wrap { counter-reset: colorcircle 0; }
.colorcircle_item {
  position: relative;
  list-style: none
}
.colorcircle_item::after {
  counter-increment: colorcircle 1;
  content: counter(colorcircle);
  position: absolute;
  top: 10px; left: 10px;
  display: inline-block;
  background-color: #000;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  color: #fff;
  z-index: 1;
  font-size: 1.2em;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
}

.normal_item:first-child .colorcircle_item::after {
	background-color: #640585;
}
/* BASIC css end */

