.hList--spaceAround {
  display: flex;
  justify-content: space-around;
}

.hList__item .hList__item--spacingLeft-x10 {
  padding-left: 10rem;
}

/*Color*/
.hdg--gold {
  color: #b49461;
}

/*Lists*/
.userContent ol {
  list-style-type: none;
  counter-reset: li;
}

.userContent ol li {
  position: relative;
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 54px;
}

.userContent ol li::before {
  content: counter(li);
  counter-increment: li;
  display: inline-block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 5px;
  left: 0;
  background: #00853e;
  color: #fff;
  font-size: 18px;
  line-height: 38px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
}

/*Select*/

.field__select {
  border: 1px solid #ebebeb;
}

/*Search*/
.searchForm {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.searchForm .search__input {
  /*height: 40px;*/
  padding-left: 40px;
  /*font-size: 0.778rem;*/
  color: #4d442e;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-sizing: border-box;
}

.searchForm .search__submit {
  width: 15px;
  height: 14px;
  min-width: 0;
  float: none;
  position: absolute;
  border: none;
  top: 15px;
  left: 14px;
  margin: 0;
  padding: 0;
  background: url(../media/images/search-icon.png) no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
