/* Accordion styles */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #444;
  overflow: hidden;
  /* :checked */
  /* Icon styles*/
}
.tab .tab-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab .tab-label {
  position: relative;
  display: block;
  padding: .4em 0 .5em 0;
  background: transparent;
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
  color: #c37937;
  font-size: 2rem;
  margin-bottom: 0;
}
.tab .tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  -o-transition: max-height 0.35s;
  transition: max-height 0.35s;
  background-color: transparent;
}
.tab .tab-content p {
  margin: 1em;
}
.tab .tab-content .tab {
  padding: 10px;
  background: transparent;
  color: #3d556e;
  margin: 2px 0px;
}
.tab .tab-content .tab label {
  border-radius: 0;
}
.tab .tab-inner {
  padding: 1px 0 0;
}
.tab .tab-inner label {
  font-weight: 400;
  background-color: transparent;
  color: #fff;
}
.tab .tab-inner .tab-content ul {
  margin: 0;
  padding: 0;
}
.tab .tab-inner .tab-content ul li {
  list-style-type: none;
}
.tab .tab-inner .tab-content ul li .checkBox label {
  background-color: transparent;
  color: #3d556e;
  padding-left: 0;
  margin: 0;
}
.tab .tab-inner .tab-content ul li .checkBox label:after {
  content: "";
}
.tab .tab-input:checked ~ .tab-content {
  max-height: 4500px;
}