.tabpanel {
  display: flex;
  flex-wrap: wrap;
}

.tab,
.Tabs__show-more {
  background: #eee; 
  border: 1px solid #ddd; 
  padding: .7em 1em;
  cursor: pointer;
  z-index: 1;
  white-space: nowrap;
  /* margin-left: -1px; */
}

.Tabs__show-more {
  position: relative;
}

.tab:first-of-type {
  margin-left: 0;
}

.tab[aria-selected='true'] {
  background: #fff;
  border-bottom: 1px solid #fff;
}

.panel {
  width: 100%;
  margin-top: -1px;
  padding: 1em;
  border: 1px solid #ddd;
  order: 1;
}

.panel[aria-hidden='true'] {
  display: none;
}

.panel[aria-hidden='false'] {
  display: block;
}

.Tabs__show-more-list {
  position: absolute;
  right: -1px;
  top: 100%;
}

.Tabs__show-more-list[aria-hidden='true'] {
  display: none;
}


.collapsed  .tab {
  width: 100%;
}
.collapsed  .panel {
  order: 0;
}






/* resize detection */
.resize-triggers { 
  visibility: hidden; 
  opacity: 0; 
}

.resize-triggers, 
.resize-triggers > div, 
.contract-trigger:before { 
  content: " "; 
  display: block; 
  position: absolute; 
  top: 0; 
  left: 0; 
  height: 100%; 
  width: 100%; 
  overflow: hidden; 
}

.resize-triggers > div { 
  background: #eee; 
  overflow: auto; 
}

.contract-trigger:before { 
  width: 200%; 
  height: 200%; 
}