.dpd-accordion {
  clear: both;
  width: 100%;
  margin: 20px 0 40px;
}

.dpd-item {
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}

.dpd-title {
  width: 100%;
  border: 0;
  background-color: #eeeeee;
  color: #333333;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dpd-title:hover,
.dpd-item.active .dpd-title {
  background-color: #fb7102;
  color: #ffffff;
}

.dpd-title .fa {
  transition: transform .3s;
}

.dpd-item.active .dpd-title .fa {
  transform: rotate(180deg);
}

.dpd-content {
  display: none;
  padding: 18px;
  border-top: 1px solid #e8e8e8;
}

.dpd-item.active .dpd-content {
  display: block;
}

.dpd-content table {
  margin-bottom: 0;
}

.dpd-content table th {
  background-color: #eeeeee;
  color: #333333;
}

.dpd-content table td,
.dpd-content table th {
  padding: 12px;
}




.dpd-counter {
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 10px;
  background-color: #e8e8e8;
  color: #333;
}

.dpd-item.active .dpd-counter {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}