
.resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 7px solid #9B9797;
}

/* ------------------------------------------ */

ul.resp-tabs-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 15px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding-top: 30px;
}
.resp-tab-content h4 {
  font-size: 28px;
  color: #090909;
  margin-bottom: 20px;
}

.resp-tab-content li + li {
  margin-top: 12px;
}

.resp-tab-content .item + .item {
  margin-top: 30px;
}

.resp-tab-content li {
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.resp-tab-content li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #9eb7af;
  border-radius: 50%;
}

.resp-tab-content-active {
  display: block !important;
}

@media only screen and (min-width: 861px) {
  .resp-tabs-list li {
    cursor: pointer;
    width: calc(100% / 2);
    background: transparent !important;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }

  .resp-tab-active {
    font-weight: bold;
    border-bottom: 2px solid currentColor !important;
  }
}

@media only screen and (max-width: 860px) {
  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
    margin: 0 !important;
    background:rgb(244 244 244) !important;
  }
  .resp-tab-content-active {
    display: block !important;
    padding: 15px;
    border: 1px solid rgb(244 244 244);
  }
  .resp-tab-content:not(:last-child){
    margin-bottom:10px;
  }
}
