.basic-accordion {
  width: 100%;
  margin: auto;
}
.basic-accordion .acc-body {
  width: 100%;
  height: 0;
  color: red;
  background-color: rgba(255, 255, 255, 0.2);
  line-height: 28px;
  padding: 0 20px;
  box-sizing: border-box;
  transition: 0.2s;
  opacity:0;
  display:none;
}
.basic-accordion .acc-body p{
	margin-bottom:12px;
}

.basic-accordion label {
  cursor: pointer;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  padding: 4px 15px;
  width: 100%;
  color: #ffffff;
  font-weight: 400;
  box-sizing: border-box;
  z-index: 100;
  margin-left: 0 !important;
  line-height:2.3;
}

.basic-accordion input{
  display: none;
}
.basic-accordion .accordion_meta{
  margin-bottom: 10px;
  clear:both;
}

.basic-accordion label:before {
  font-family: 'FontAwesome';
  content: '\f067';
  font-weight: bolder;
  float: right;
}
/* 
.basic-accordion input:checked+label {
  background-color: #ed413a;
} */

.basic-accordion input:checked+label:before {
  font-family: 'FontAwesome';
  content: '\f00d';
  transition: 0.2s;
}

.basic-accordion input:checked~.acc-body {
  height: auto;
  color: #000;
  font-size: 16px;
  padding: 10px 20px 10px;
  transition: 0.2s;
  opacity:1;
  display:block;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  background:transparent;
  width: 100%;
  border:1px solid #eaeaea;
  overflow: hidden;
}