ul.list-style-ticks {
  list-style-type:"✔";
}

ul.list-style-ticks li::marker {
  color:#090;
}

ul.list-style-ticks li {
  padding-left: 10px;
}

.subnav {
  display: flex;
  margin-bottom: 40px;
  margin-top: 40px;
  height: 48px;
}

.subnav ul {
  width: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #333;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.20);
  border-radius: 100px;
  overflow: hidden;
}

.subnav ul li {
  display: inline-block;
  text-align: center;
  width: 150px;
}

.subnav ul li a {
  display: block;
  font-family: 'Avenir Next', sans-serif;
  font-weight: 600;
  font-size: 0.85em;
  color: #ccc;
  line-height: 48px;
  padding: 0 10px;
  transition: all 0.2s ease;
}

.subnav ul li:first-child a {
  padding-left: 24px;
}

.subnav ul li:last-child a {
  padding-right: 24px;
}

.subnav ul li a:hover {
  text-decoration: none;
  color: #fff;	
}

.subnav ul li a.active {
  background-color: #1a1a1a;
  color: #fff;
}

.error {
list-style-type: none;
color: red;
padding: 0;
}

@media screen and (max-width: 767px) {
.subnav ul li {
  width: 120px;
}
}