ol {
    margin-top:0;
    margin-left:1em;
}

.faq-items .item {
  background: white;
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 7px 35px 10px 22px;
  cursor: pointer;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  margin-top: 20px;
}



.faq-items .item h4 {
    position:relative;
    display:block;
  margin-top: 18px;
  font-weight: normal;
  font-size: 25px;
  letter-spacing: 1px;
}

.faq-items .item h4 i {
  position:absolute;
  right:0px;
  top:1px;
  transition:0.2s linear all;
}

.faq-items .item.active h4 i {
  transform: rotate(90deg);
  transform-origin: center;
}

.faq-items .item .answer {
  padding-top: 5px;
  display: none;
}