.rpep-full {
  float: left;
  width: 100%;
  padding: 0em;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif;
	color: #222;
}

.rpep-full a {
	font-size: 15px;
	font-weight: 500;
}
/* Acordeon styles */
.rpep-accordion {
  position: relative;
  margin-left: .5em;
	margin-bottom: 3px;
	margin-top: 1px;
  width: 100%;
  overflow: hidden;
}

.rpep-depth-1 {
	margin-left: 0;
}

.rpep-accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.rpep-accordion label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #f7f7f7;
  line-height: 3;
  cursor: pointer;
}
.rpep-accordion .tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.rpep-accordion .tab-content p {
  margin: 1em;
}
/* :checked */
.rpep-accordion input:checked ~ .tab-content {
  max-height: 1000em;
}
/* Icon */
.rpep-accordion label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.rpep-accordion input[type=checkbox] + label::after {
  content: "+";
}
.rpep-accordion input[type=checkbox]:checked + label::after {
	transform: rotate(360deg);
	color: #ef8240;	
	content: "↓";
	font-weight: bolder;
}

.rpep-templates-fallback-text {
	font-family:  'Open Sans',Helvetica,Arial,Lucida,sans-serif;;
	color: #2e2e2e;
	font-size: 16px;
	font-weight: 300;
}