/* Styles for FAQ Component */

.faq-block {
  display: block;
  clear: both;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
}
.faq-question {
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: block;
  font-family: "aaux-next",Helvetica,Arial,sans-serif;
  position: relative;
  padding: 10px;
  cursor: pointer;
}
.faq-question>h3 {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 30px;
  margin: 0;
  margin-left: 60px;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
}
.faq-question>h3::after {
  display: none;
}
.faq-question>.toggle {
  background-color: #444;
  border-right: 1px solid rgba(0,0,0,0.1);
  box-sizing: content-box;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  padding: 0 10px;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}
.expanded>.faq-question>.toggle {
  background-color: #BE9954;
}
.faq-answer {
  font-family: georgia, serif;
  padding: 0 20px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.1s;
  line-height: 1.6;
  border-left: 51px solid #F7F5ED;
}
.faq-answer>p {
  line-height: 1.6;
  margin: 20px 0;
  max-width: none;
}
.expanded>.faq-answer {
  max-height: 1000px;
  overflow: auto;
}