.faq-accrdn {
  margin-top: 60px;
  margin-bottom:60px;
}

.faq-accrdn .tab-list p {
  display: none;
}

.faq-accrdn .tab-list ul {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  list-style: none;
}

.faq-accrdn .tab-list ul li {
  padding: 20px;
  background-color: #f5f5f5;
  align-items: center;
  color: #333333;
  cursor: pointer;
  margin: 0;
  margin-right: 20px;
  align-content: center;
  display: flex;
  flex-flow: row wrap;
  height: 135px;
  width: 25%;
  border-radius: 5px;
  text-align: center;
}

.faq-accrdn .tab-list ul li:hover,
.faq-accrdn .tab-list ul li.selected {
  background-color: #63a62c;
  color: #ffffff;
}

.faq-accrdn .tab-list ul li:last-of-type {
  margin-right: 0;
}

.faq-accrdn .tab-list ul li strong {
  font-size: 25px;
}

.faq-accrdn .tab-list ul li strong,
.faq-accrdn .tab-list ul li span {
  width: 100%;
}

.faq-accrdn .tab-list ul li span {
  display: flex;
  margin-top: 5px;
  justify-content: center;
  font-size: 20px;
  padding-top: 15px;
}

.faq-accrdn .tab-content {
  display: none;
  opacity: 0;
}

.faq-accrdn .tab-content.active {
  opacity: 1;
  display: block;
}

.faq-accrdn .card {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 5px;
}

.faq-accrdn .card h5 {
  transition: all 0.3s ease-out 0s;
  font-size: 15px;
  width: 100%;
  margin: 0;
  padding: 13px 13px 13px 22px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.faq-accrdn .card.selected h5 {
  color: #63a62c !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-accrdn .card h5:hover {
  color: #63a62c !important;
  border: #63a62c;
  cursor: pointer;
}

.faq-accrdn .card h5:after {
  font-family: FontAwesome;
  content: "\f067";
  font-weight: 300;
  font-size: 13px;
  color: #333;
  float: right;
  line-height: 100%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq-accrdn .card:hover h5:after {
  color: #63a62c;
}

.faq-accrdn .card.selected h5:after {
  content: "\f068";
  color: #63a62c;
}

.faq-accrdn .card .description {
  width: 100%;
  display: none;
}

.faq-accrdn .card .description > div {
  padding: 25px 20px;
}

@media all and (max-width: 768px) {
  .faq-accrdn {
    margin-top: 20px;
  }

  .faq-accrdn .tab-list ul li {
    height: auto;
  }
}

@media all and (max-width: 767px) {
  .faq-accrdn .tab-list {
    margin-bottom: 10px;
    position: relative;
  }

  .faq-accrdn .tab-list p {
    display: flex;
    background-color: #63a62c;
    color: #ffffff;
    padding: 10px 15px;
    align-content: center;
    margin: 0;
    position: relative;
  }

  .faq-accrdn .tab-list p:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    position: absolute;
    right: 6px;
    top: 46%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .faq-accrdn .tab-list p.clicked ~ ul {
    display: flex;
  }

  .faq-accrdn .tab-list ul {
    margin: 0;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    flex-flow: row wrap;
  }

  .faq-accrdn .tab-list ul li {
    width: 100%;
    margin: 0;
    border-top: 1px solid;
    padding: 10px 15px;
    border-radius: 0;
  }

  .faq-accrdn .tab-list ul li:last-of-type {
    border-bottom: 1px solid;
  }

  .faq-accrdn .tab-list ul li strong, 
  .faq-accrdn .tab-list ul li span {
    width: auto;
  }

  .faq-accrdn .tab-list ul li strong {
    font-size: 15px;
    margin-right: 6px;
  }

  .faq-accrdn .tab-list ul li:hover, 
  .faq-accrdn .tab-list ul li.selected {
    background-color: #2e3f4a;
  }
  
  .faq-accrdn .tab-list ul li span {
      font-size: 13px;
      padding-top: 0;
  }
}