#main div.tabs ul.nav-tabs li.tab span {
  cursor: var(--cursor-pointer) !important;
}

div.tabs {
  display: block;
  position: relative;
  margin: 16px 0;
}

div.tabs ul.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: flex-start;
  margin: 0 0 24px 0;
  line-height: 1.5;
  position: relative;
}

div.tabs ul.nav-tabs.center {
  justify-content: center;
}

div.tabs ul.nav-tabs:before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px solid var(--color-h2-border);
  bottom: -4px;
  box-sizing: unset;
  transition: 1s;
}

div.tabs ul.nav-tabs .tab-indicator {
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  background: var(--color-h2-after);
  border-radius: 8px;
  box-shadow: var(--shadow-red-6-shadow);
  transition: 0.3s;
}

div.tabs ul.nav-tabs li.tab {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 40px;
}

div.tabs ul.nav-tabs li.tab a {
  display: block;
  padding: 8px 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-default);
}

div.tabs ul.nav-tabs li.tab a i {
  pointer-events: none;
}

div.tabs .tab-content .tab-pane:not(.active) {
  display: none;
}

div.tabs .tab-content .tab-pane.active {
  display: block;
}
