.b-counter__list {
  display: flex;
  max-width: 360px;
  border-radius: 5px;
  overflow: hidden;
  background: #e2e4e6;
}
.b-counter__item {
  flex: 1;
  min-height: 58px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.b-counter__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.b-counter__item .number {
  font-weight: 500;
  margin-bottom: 3px;
}
.b-counter__item .text {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}
