.zfc-accordion {
  margin: auto;
  color: white !important;
  /*animation effect*/
}
.zfc-accordion ul ul {
  display: none;
  margin: 0;
  padding: 0;
}
.zfc-accordion ul ul li .item-link {
    cursor: pointer;
    padding: 10px 0px !important;
    z-index: 1;
    font-size: 13px;
    color: #000 !important;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.zfc-accordion ul {
  margin: 0 !important;
  padding: 0 !important;
}
.zfc-accordion ul li {
  list-style-type: none;
  line-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  background-image: none !important;
}
.zfc-accordion ul li .item-link {
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-bottom: none;
  padding: 10px 0px !important;
}
.zfc-accordion > ul > li > .item-link {
    padding:5px 0 !important;
    color: #000 !important;
    background: #2d3e50;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 15px !important;
    text-transform: none !important;
}

.zfc-accordion .has-sub > .item-link > .arrow {
    width: 0;
    height: 0;
    position: absolute;
    padding: 12px !important;
    top: 7px;
    right: 9px;
    border: none !important;
    border-radius: 0 !important;
    border-color: transparent !important;
}
.zfc-accordion .has-sub > .item-link > .arrow:after {
  top: 8px;
  display: block;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 9px;
  z-index: 10;
  -webkit-transform: rotate(-134deg);
  -moz-transform: rotate(-134deg);
  -ms-transform: rotate(-134deg);
  -o-transform: rotate(-134deg);
  transform: rotate(-134deg);
}
.zfc-accordion .has-sub > .item-link > .arrow:after {
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
.zfc-accordion .has-sub.open > .item-link > .arrow:after {
  right: 8px;
  top: 7px;
  border-top: 2px solid #ffffff;
  border-bottom: none;
  border-left: 2px solid #ffffff;
}
.zfc-accordion .ripple-effect {
  display: block;
  position: absolute;
  background: #e6e6e6;
  border-radius: 100%;
  transform: scale(0);
}
.zfc-accordion .ripple-effect.ripple-animate {
  animation: zfc-ripple 0.7s linear;
}

@keyframes zfc-ripple {
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
