.container .help {
  border: 1px solid #e2e2e2;
}
.container .help .head {
  background-color: #e2e2e2;
  min-height: 50px;
  text-align: center;
}
@media screen and (max-width: 420px) {
  .container .help .head {
    position: fixed;
    width: 100%;
    top: 70px;
    left: 0;
    z-index: 3;
  }
}
.container .help .head > section {
  float: left;
  width: 33.333%;
  box-sizing: border-box;
  padding: 5px 20px;
  line-height: 40px;
}
.container .help .body {
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 420px) {
  .container .help .body {
    padding-top: 50px;
  }
}
.container .help .body .faq {
  float: left;
  width: 60%;
  padding: 40px 0px;
  padding-left: 10%;
  box-sizing: border-box;
}
.container .help .body .faq .node > span {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}
.container .help .body .faq .node > span:before {
  position: absolute;
  content: "";
  background-position: -315px -515px;
  width: 20px;
  height: 20px;
  left: -20px;
  top: 0px;
  font-size: 10px;
}
.container .help .body .faq .node.active > span:before {
  background-position: -265px -515px;
}
.container .help .body .faq .node ul {
  display: none;
}
.container .help .body .faq .node.active ul {
  display: block; 
}
.container .help .body .faq .node ul li {
  list-style: none;
  font-size: 12px;
  line-height: 25px;
}
.container .help .body .faq .node ul li .question {
  position: relative;
  cursor: pointer;
}
.container .help .body .faq .node ul li .answer {
  display: none;
  padding: 0px 20px;
  font-style: italic;
  padding-bottom: 20px;
}
.container .help .body .faq .node ul li.active .question:before {
  position: absolute;
  content: "⎣";
  top: 22px;
  left: -4px;
}
.container .help .body .faq .node ul li.active .answer {
  display: block;
}
.container .help .body .contact {
  float: left;
  width: 40%;
  padding: 40px 7%;
  box-sizing: border-box;
}
.container .help .body .contact input {
  border: 1px solid #d5d5d5;
  margin: 10px 0px;
  font-size: 12px;
}
.container .help .body .contact textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  margin: 10px 0px;
  outline: none;
  box-sizing: border-box;
  resize: none;
  font-size: 12px;
  padding: 5px;
}
.container .help .body .contact button {
  background-color: #f7a719; 
  color: #fff; 
}
@media screen and (max-width:420px){
  .container .help .body .faq,
  .container .help .body .contact {
    width: 100%;
  }
  .faq {
    display: none;
  }
}
div.faqMobileTitle {
  margin: 20px 30px 0px; 
  cursor: pointer;
  text-decoration: underline;
}
div.contactforminfo {
  display: none;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: crimson;  
}