.tabs {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
}

.tabs__tab {
  display: flex;
  position: relative;
  padding: .5rem 1rem;
  border: 1px solid #e6e8eb;
  border-radius: .25rem;
  cursor: pointer;
  font-weight: 600;
  background-color: #fbfbfb;
  white-space: nowrap;
}
.tabs__tab:not(:last-child) {
  margin-right: 1rem;
}

.tabs__tab.is-active {
  background-color: #fff;
}

.itw-salesart-html .tabs__tab.is-active:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}
/* End Tabs */
