/**
 * Acordion (zippy) + Custom "temporary" layout
 */

 .accordion .accordion-toggle {
  -webkit-user-select: text;
  background-color: rgb(255, 255, 255);
  background-position: right 16px bottom 0%;
  border-bottom-color: #9b8346;
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-color: #9b8346;
  border-left-style: none;
  border-left-width: 0px;
  border-right-color: #9b8346;
  border-right-style: none;
  border-right-width: 0px;
  border-top-color: rgb(224, 224, 224);
  border-top-style: solid;
  border-top-width: 1px;
  box-sizing: border-box;
  color: rgb(202,162,8)!important;
  cursor: pointer;
  direction: ltr;
  display: inline-block;
  font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 15px;
  font-stretch: normal;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 24px;
  opacity: 1;
  outline-color: #9b8346;
  outline-style: none;
  outline-width: 0px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 50px;
  padding-top: 16px;
  position: relative;
  text-decoration: none;
  transition-delay: 0s, 0s;
  transition-duration: 0.218s, 0.218s;
  transition-property: background-color, opacity;
  transition-timing-function: ease, ease;
  vertical-align: baseline;
  width: 100%;
  word-wrap: break-word;
}

.accordion .accordion-content {
  border-bottom-color: rgb(33, 33, 33);
  border-bottom-style: none;
  border-bottom-width: 0px;
  border-image-outset: 0px;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-left-color: rgb(33, 33, 33);
  border-left-style: none;
  border-left-width: 0px;
  border-right-color: rgb(33, 33, 33);
  border-right-style: none;
  border-right-width: 0px;
  border-top-color: rgba(0, 0, 0, 0);
  border-top-style: solid;
  border-top-width: 1px;
  color: rgb(33, 33, 33);
  direction: ltr;
  display: block;
  font-family: Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 20px;
  margin:0;
  margin-left: 18px;
  outline-color: rgb(33, 33, 33);
  outline-style: none;
  outline-width: 0px;
  padding-left: 16px;
  padding-right: 10px;
  padding-top: 0px;
  position: relative;
  vertical-align: baseline;
  word-wrap: break-word;
}

.accordion .accordion-content:before {
  background-color: #e0e0e0;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  width: 2px;
}


.accordion .accordion-toggle.accordion-open:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion .accordion-toggle:after {
  font-family: 'Material Icons';
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1;
  font-style: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\E313';
  float: right;
  margin-right: -32px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition:all 300ms;
}


.accordion .accordion-toggle {
    font-weight: bold !important;
}

.accordion .accordion-content {
  display: none;
}
