	.inputblock {
		width:4%;
		margin:1px;
		padding:0px;
	}
	.olList ol {
		counter-reset: item;
	}

	.olList ol > li {
		counter-increment: item;
	}

	.olList ol ol > li {
		display: block;
	}

	.olList ol ol > li:before {
		content: counters(item, ".") ". ";
		margin-left: -20px;
	}
.d-flex.flex-row {
  display: flex;
  flex-direction: row; /* Makes the container a row-oriented flex container */
  align-items: center; /* Centers items vertically within the container */
}

.d-flex.flex-row input[type="text"] {
  /* Add your styling for input elements here */
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
}

