.resp-tabs-list {
  background: #D8D8D8;
  padding: 5px;
}

.resp-tabs-list li {
  font-size: 18px;
  display: inline-block;
  padding: 13px 27px;
  cursor: pointer;
  font-weight: 500;
}

.resp-tabs-list,
.resp-tabs-list li {
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

h2.resp-accordion {
  cursor: pointer;
  display: none;
  margin: 0;
  font-family: var(--font-primary);
}

.resp-tabs-list .resp-tab-active {
  background: #ffffff;
  color: var(--color-third);
}

.resp-tab-content {
  display: none;
  margin: 50px 0 0 0;
  background: #D8D8D8;
  border-radius: 16px;
  padding: 50px;
}

.resp-tab-content>p br {
  display: none;
}

h2.resp-accordion {
  font-size: 13px;
  padding: 10px 15px;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ffffff;
}

.resp-content-active,
.resp-accordion-active,
.resp-tab-content-active .resp-easy-accordion h2.resp-accordion {
  display: block;
}

.resp-tab-content h4 {
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media only screen and (max-width: 860px) {

  .resp-tab-content h4 {
    margin-bottom: 15px;
  }

  .resp-tab-content {
    margin: 0;
    border-radius: 0;
  }

  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--color-secondary);
  }

  .resp-tab-content {
    padding: 25px 15px;
  }

  .resp-tab-content+.resp-accordion {
    border-top: 1px solid #89abb7;
  }

  .resp-tab-active .resp-arrow {
    border-top: initial;
    border-bottom: 8px solid #ffffff;
  }

  h2.resp-accordion:first-child {
    -moz-order-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
  }

  h2.resp-accordion:nth-last-child(2) {
    -moz-order-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
  }
}