.ftb-tabs__header {
  display: flex;
}
.ftb-tabs__body {
  position: relative;
}
.ftb-tabs__body-tab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.ftb-tabs__body-tab.selected {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  position: relative;
}