.multi-tab-container {
  --active-color: hsl(3, 77%, 42%);
  width: 100%;
}
.multi-tab-container .header {
  display: flex;
  width: 100%;
}
.multi-tab-container .header .hTab {
  padding: 10px 25px;
  margin: 0 1px;
  background: #efefef;
  font-size: 14px;
  cursor: pointer;
}
.multi-tab-container .header .hTab::selection {
  background: transparent;
}
.multi-tab-container .header .hTab *::selection {
  background: transparent;
}
.multi-tab-container .header .hTab.active {
  border-bottom: 2px solid var(--active-color);
}
.multi-tab-container .body .bTab {
  display: none;
  padding: 15px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.multi-tab-container .body .bTab.active {
  display: block;
}/*# sourceMappingURL=MultiTab.css.map */