
a {
  color: RGB(80,80,80);
  text-decoration: none;
}

/* --------------------------------

Main components

-------------------------------- */

.cd-faq {
  width: 90%;
  max-width: 1024px;
  margin: 5px 0px 0px 5px;
}
.cd-faq:after {
  content: "";
  display: table;
  clear: both;
}

.cd-faq-categories a {
 font-family:"Open Sans",sans-serif;
  font-size: 14px;
  position: relative;
  display: block;
  height: 33px;
  line-height: 50px;
  padding: 7px 0 0 0;
  color: RGB (150,150,150);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cd-faq-categories a::before, .cd-faq-categories a::after {
  /* plus icon on the right */
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  height: 1px;
  width: 10px;
  background-color: #7f868e;
}
.cd-faq-categories a::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cd-faq-categories li:last-child a {
  border-bottom: none;
}
.cd-faq-categories {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 2;
  }
.cd-faq-categories a::before {
    /* decorative rectangle on the left visible for the selected item */
    display: block;
    top: 0;
    right: auto;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #a9c056;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
.cd-faq-categories.is-fixed {
    /* top and left value assigned in jQuery */
    position: fixed;
  }
.no-js .cd-faq-categories {
    position: relative;
  }

.cd-faq-items {
  position: relative;
  height: 100%;
  width: 90%;
  top: 0;
  right: 0;
  background: #ffffff;
  padding: 0 0 0 200px;
  overflow: auto;
  z-index: 1;
}
.cd-faq-items.slide-in {
  -webkit-transform: translateZ(0) translateX(0%);
  -moz-transform: translateZ(0) translateX(0%);
  -ms-transform: translateZ(0) translateX(0%);
  -o-transform: translateZ(0) translateX(0%);
  transform: translateZ(0) translateX(0%);
}
.no-js .cd-faq-items {
  position: static;
  height: auto;
  width: 100%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-close-panel {
  position: fixed;
  top: 5px;
  right: -100%;
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  transition: right 0.4s;
}
.cd-close-panel::before, .cd-close-panel::after {
  /* close icon in CSS */
  position: absolute;
  top: 16px;
  left: 12px;
  display: inline-block;
  height: 3px;
  width: 18px;
  background: #6c7d8e;
}
.cd-close-panel::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-close-panel::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-close-panel.move-left {
  right: 2%;
}
.cd-faq-group {
  /* hide group not selected */
  display: block;
}
.cd-faq-group.selected {
  display: block;
}
.cd-faq-group .cd-faq-title {
  padding: 4px 0;
}
.no-touch .cd-faq-group .cd-faq-title:hover {
  box-shadow: none;
  display:block;
}
.cd-faq-group .cd-faq-title h2 {
  font-family:"Open Sans",sans-serif;
  font-size: 18px;
  color: slategray;
}
.no-js .cd-faq-group {
  display: block;
}
.cd-faq-trigger {
  font-family:"Open Sans",sans-serif;
  font-size: 14px;
  position: relative;
  margin: 1.6em 0 .4em;
  line-height: 1.2;
}

.cd-faq-content p {
  font-family:"Open Sans",sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: RGB(150,150,150;
}

