.nd-nav-tabs {
  padding: 1.5em var(--padding) 0;
  border-bottom: 1px solid var(--dark-grey);
  margin: var(--half-padding);
  position: relative;
}

.nd-nav-tabs .nd-nav-item {
  width: 80%;
}

.nd-nav-tabs .nd-nav-item > div {
  position: absolute;
  display: none;
}

.nd-nav-tabs .nd-nav-item > .nd-tab-title {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 1.3em 0;
  flex-grow: 1;
  text-align: center;
  background-color: var(--white);
  top: 1px;
  margin-bottom: 0;
}

.nd-nav-tabs .nd-tab-content {
  position: absolute;
  display: none;
  z-index: 0;
  left: 0;
  width: 100%;
}

.nd-nav-tabs > .nd-nav-item.active > .nd-tab-title,
.nd-nav-tabs > .nd-nav-item > .active + .nd-tab-title {
  border: 1px solid var(--dark-grey);
  border-bottom: 1px solid var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--lighter-blue);
  font-weight: bold;
}

.nd-nav-item.active > .nd-tab-content {
  display: block;
  z-index: 300;
}
