.highlight-tab {
  position: sticky;
  top: 15rem;
  z-index: 10;
  width: 100vw;
  overflow: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .highlight-tab {
    top: 12rem;
  }
}

.highlight-tab-content {
  display: flex;
  width: 100%;
  padding: 1rem;
  border-radius: 99rem;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  gap: 1rem;
  background-color: white;
  /* box-shadow: 0px 8px 20px 0px #00000026; */
}

@media (min-width: 1280px) {
  .highlight-tab-content {
    gap: 6rem;
  }
}

.highlight-tab-divider {
  height: 4rem;
  width: 0.2rem;
  background-color: #9A9A9A;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .highlight-tab-divider {
    height: 2rem;
    width: 0.2rem;
    background-color: #9A9A9A;
    flex-shrink: 0;
  }
}

.highlight-tab-item {
  padding: 1rem 1.2rem;
  border-radius: 99rem;
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.highlight-tab-item:focus {
  outline: 0.1rem solid #003792;
  outline-offset: 0.8rem;
}

.highlight-tab-item.active,
.highlight-tab-item:hover {
  background-color: #F5F5F5;
  /* box-shadow: inset 0 0 0 0.1rem #1D1D1D; */
}

@media (max-width: 767px) {
  .highlight-tab-item {
    padding: 1rem;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

#skip-to-content {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 9999;
}

#skip-to-content:not(:focus) {
  width: 0.1rem;
  height: 0.1rem;
  padding: 0 !important;
  top: -0.1rem;
}