.tabs {
  position: relative;
  display: flex;
  flex-direction: column
}
.tabs-headers {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
  background: #fff;
  overflow-x: auto
}
.tabs-headers::after {
  content: "";
  display: block;
  position: sticky;
  right: -1px;
  height: 20px;
  width: 1px;
  border-width: 0;
  box-shadow: -5px 0 12px 8px #fff;
  pointer-events: none
}
.tabs-headers > input[type="radio"] {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  opacity: 0.01;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  margin: 0 -1px 0 0
}
.tabs-headers > label {
  flex: 0 0 auto;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  left: 0;
  margin: 0;
  padding: 8px 32px 12px 32px;
  min-width: .75em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  text-align: center;
  color: #6b7276;
  white-space: nowrap;
  scroll-snap-align: start;
  border-bottom: 2px solid #d6dce0
}
.tabs-headers > label:active,
.tabs-headers > label:hover {
  color: #00111a
}
.tabs-headers > input[type=radio]:checked + label {
  color: #00111a;
  border-bottom: 2px solid currentColor
}
.tabs-headers > input[type=radio]:checked + label:focus,
.tabs-headers > input[type=radio]:checked:focus + label {
  outline: 1px solid #a7c7ff
}
.firefox .tabs-headers > input[type=radio]:checked + label:focus,
.firefox .tabs-headers > input[type=radio]:checked:focus + label {
  outline: 1px dotted #0099e0
}
.tabs-headers > input[type=radio]:disabled + label {
  color: #d6dce0
}
.tabs-contents {
  position: relative;
  padding-top: 4px
}
.tabs-contents > div {
  display: none
}
.tabs-contents > div.tab-selected {
  display: block
}
.tabs.tabs-center-headers {
  text-align: center
}
.tabs.tabs-center-headers .tabs-headers {
  margin: 0 auto
}
.tabs.tabs-center-headers .tabs-contents {
  text-align: left
}
.tabs.tabs-fixed-width-headers .tabs-headers > label {
  min-width: 240px
}
.tabs.tabs-sticky-headers .tabs-headers {
  position: sticky;
  top: 0
}
.tabs.tabs-wrap-headers .tabs-headers {
  flex-wrap: wrap
}
.tabs.tabs-wrap-headers .tabs-headers::after {
  display: none
}
.tabs.tabs-full > .tabs-headers,
.tabs.tabs-skin-minimal-full > .tabs-headers {
  z-index: 2
}
.tabs.tabs-full > .tabs-contents,
.tabs.tabs-skin-minimal-full > .tabs-contents {
  z-index: 1;
  margin-top: -2px;
  border-top: 2px solid #d6dce0
}
.tabs.tabs-skin-thumbnails-under .tabs-headers::after {
  display: none
}
.tabs.tabs-skin-thumbnails-under .tabs-headers label {
  padding: 0;
  margin: 0 10px 0 0;
  min-width: 0;
  width: auto;
  border: none
}
.tabs.tabs-skin-thumbnails-under .tabs-headers > input[type=radio]:checked + label {
  border: none
}
.tabs.tabs-skin-thumbnails-under .tabs-headers > input[type=radio]:checked + label:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #0075c2;
  z-index: 1
}
.tabs.tabs-skin-thumbnails-under .tabs-headers > input[type=radio]:disabled + label {
  opacity: .25
}
.tabs.tabs-skin-thumbnails-under .tabs-contents {
  padding-top: 0
}