.tabs {
  position: relative
}
.tabs-headers {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  max-width: 100%
}
.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 20px;
  min-width: .75em;
  font-size: 16px;
  line-height: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  text-align: center;
  color: #00111a;
  white-space: nowrap;
  scroll-snap-align: start
}
.tabs-headers > label:hover {
  color: #0099e0
}
.tabs-headers > label:active {
  color: #00111a
}
.tabs-headers > input[type=radio]:checked + label {
  color: #0099e0;
  font-weight: bold
}
.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 {
  opacity: 0.4;
  cursor: auto;
  color: #00111a;
  background: #c8cbcc;
  border-color: #c8cbcc;
  background: transparent
}
.tabs-headers > input[type=radio]:disabled + label:hover {
  color: #00111a
}
.tabs-contents {
  position: relative
}
.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-skin-minimal > .tabs-headers label,
.tabs.tabs-skin-minimal-full > .tabs-headers label,
.tabs.tabs-skin-standard > .tabs-headers label {
  padding: 7px 20px 13px 20px;
  border-bottom: 1px solid #e6e6e6
}
.tabs.tabs-skin-minimal > .tabs-headers > input[type=radio]:checked + label,
.tabs.tabs-skin-minimal-full > .tabs-headers > input[type=radio]:checked + label,
.tabs.tabs-skin-standard > .tabs-headers > input[type=radio]:checked + label {
  padding-bottom: 11px;
  border-bottom: 3px solid #0099e0
}
.tabs.tabs-skin-minimal > .tabs-contents,
.tabs.tabs-skin-minimal-full > .tabs-contents,
.tabs.tabs-skin-standard > .tabs-contents {
  padding-top: 4px
}
.tabs.tabs-skin-minimal-full > .tabs-contents {
  margin-top: -1px;
  border-top: 1px solid #e6e6e6
}
.tabs.tabs-skin-thumbnails-under .tabs-headers {
  padding-top: 10px
}
.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
}
.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 #0099e0;
  z-index: 1
}
.tabs.tabs-skin-thumbnails-under .tabs-headers > input[type=radio]:disabled + label {
  opacity: .25
}