.tabs__header {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-collapse: initial;
}
.tabs--responsive .tabs__header {
  display: none;
}
@media screen and (min-width:64.063em) {
  .tabs--responsive .tabs__header {
    /*display: table;*/
   display: block;
  }
}
@media screen and (min-width: 320px) {
  .tabs__header {
    display: table;
  }
}
.tabs__header ul li {
	margin-right: 0.5rem;
}
.tabs__header li {
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  border: 1px solid #ccc;
  border-right-width: 0;
  text-align: center;
  font-size: 14px;
}
/*.tabs__header li:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}*/
.tabs__header li:last-child {
  border-right-width: 1px;
  /*border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;*/
}
.tabs__header li a {
  display: table-cell;
  vertical-align: middle;
  color: #737373;
  height: 40px;
  text-decoration: none;
  padding: 10px 56px;
  min-width: 100px;
}
.tabs__header li.active {
  color: #fff;
  background: #737373;
  position: relative;
}
.tabs__header li.active a {
  color: #fff;
}
.tabs__header li.active:after, .tabs__header li.active:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.tabs__header li.active:after {
  border-color: rgba(245, 245, 245, 0);
  border-top-color: #737373;
  border-width: 10px;
  margin-left: -10px;
}
.tabs__header li.active:before {
  border-color: rgba(221, 221, 221, 0);
  border-top-color: #ccc;
  border-width: 11px;
  margin-left: -11px;
}

.tabs__container {
  clear: both;
  float: left;
  width: 100%;
}
@media screen and (min-width:64.063em) {
  .tabs__container {
    padding-top: 20px;
  }
}

.tabs__content {
  padding: 20px;
  margin: 0;
  display: none;
}
.tabs--responsive .tabs__content {
  border-top: 1px solid #ccc;
}
@media screen and (min-width:64.063em) {
  .tabs--responsive .tabs__content {
    border: 0;
  }
}
@media screen and (min-width:64.063em) {
  .tabs__content {
    padding: 0;
  }
}

.tabs__accordion-heading {
  display: none;
  font-size: 14px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: normal;
  font-size: 1em;
  position: relative;
}
.tabs__accordion-heading:before {
  content: "+";
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 14px;
}
.tabs__accordion-heading.active {
  color: #fff;
  background-color: #737373;
}
.tabs__accordion-heading.active:before {
  content: "-";
  color: #fff;
}
.tabs--responsive .tabs__accordion-heading {
  display: block;
}
@media screen and (min-width:64.063em) {
  .tabs--responsive .tabs__accordion-heading {
    display: none;
  }
}
@media screen and (min-width:64.063em) {
  .tabs__accordion-heading {
    display: none;
  }
}
