﻿ol {
  padding: 0;
  margin: 0;
}
.nummerierte-liste {
  counter-reset: li;
  list-style: none;
  padding: 0;
  margin: 0;
  	line-height: 130%;
  		font-size: 1.2em;
}

.nummerierte-liste li {
	position: relative;
	padding: 10px 10px 10px 70px;
	border-bottom: 2px dotted #E9E3DC;
	margin: -1px 0;
	text-align: left;
}
.li-top {
	border-top: 2px dotted #E9E3DC;
}
.nummerierte-liste li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 1rem;
  top: 10px;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  background: #282727;
  color: #d8cec0;
  font-weight: bold;
  text-align: center;
  border-radius: 0.2rem; 
}
    /* Media Queries */
@media (max-width: 768px) {
.nummerierte-liste {
	margin-top: 40px;
}
} 