
pragma-tabsheet {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

.tabsheet-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--c-surface-bg);
  margin-bottom: 1rem;
}

.tabsheet-bar:focus {
  outline: none;
}

.tabsheet-bar {
  flex: 1;
}

.tabsheet-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.tabsheet-bar div {
  line-height: 2rem;
  cursor: pointer;
  text-align: center;
  min-width: 5rem;
  border-bottom: transparent;
  border-bottom-width: 0.2rem;
  border-bottom-style: solid;
  box-sizing: border-box;
}

.tabsheet-bar-item {
  transition: border 0.05s linear;
}

.tabsheet-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow-x: hidden;
}

.tabsheet-page[aria-hidden=true] {
  display: none;
}
