#infotable {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

td {
  line-height: 1.4em;
  font-size: 1.2rem;
}
table {
  border-collapse: collapse;
}
th {
  background: rgb(255 255 255);
  font-size: 1.5rem;
}
th,
td {
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding: 12px;
}
td p {
  line-height: 1.4em;
}
td b{
  color: rgb(62, 67, 160);
  font-size: 1.2em;
  margin-bottom: 20px;
  position: relative;
}
td b::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: #f8a30d;
}
tr:hover {
  background-color: #f9f9f9;
}


.list {
  margin: 8px 0;
}

.list ul {
  padding: 20px;
  display: flex;
  border-radius: 35px;
  border: solid 1px #ccc;
  display: block;
  list-style: none;
  align-content: flex-start;
}

.list ul:first-child {
  display: none;
}

.list ul>li {
  display: block;
  padding: .25em 0;
}

.list ul:nth-child(odd)>li+li {
  border-radius: 35px;
  border-top: solid 1px #ccc;
}

.list ul:nth-child(even)>li+li {
  border-radius: 35px;
  border-top: solid 1px #eee;
}

.list ul>li:before {
  color: #000;
  content: attr(data-label);
  display: inline-block;
  font-weight: bold;
  text-transform: capitalize;
  vertical-align: top;
  width: 50%;
}

.list p {
  margin: -1em 0 0 50%;
}

@media only screen and (max-width: 768px) {
  .list {
    margin: auto;
  }
}

/* tiny */
@media screen and (max-width:349px) {

  .list ul>li:before {
    display: block;
  }

  .list p {
    margin: 0;
  }

}