﻿.flow-app {
  margin: 10px auto 30px;
  counter-reset: flow-step;
}

.flow-app h4 {
  position: relative;
  background: none;
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0 0 0;
	padding: 0 0 0 25px;
  counter-increment: flow-step;
}
.flow-app h4::before {
  content: counter(flow-step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); 
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background: #5fbfc0;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.flow-app p {
  font-size: 14px;
  margin: 0 0 12px 36px; 
  line-height: 1.6;
}
