/* stylelint-disable */
.wp-component-tab-anchors__inner {
  display: flex;
  gap: var(--spacing-xxs);
  margin-right: calc(var(--spacing-body) * -1);
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: var(--spacing-body);
}

@media (min-width: 1023px) {
  .wp-component-tab-anchors__inner {
    gap: var(--spacing-xs);
  }
}
@media (min-width: 1278px) {
  .wp-component-tab-anchors__inner {
    justify-content: center;
    margin-right: 0;
    overflow-x: unset;
    overflow-y: unset;
    padding-right: 0;
  }
}
.wp-component-tab-anchors__anchor {
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-all);
  white-space: nowrap;
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor {
  border-radius: 100px;
  color: var(--colour-gray-100);
  padding: var(--spacing-xxs) var(--spacing-xs);
  position: relative;
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor::after {
  background: var(--button-primary-background-hover);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: var(--transition-all);
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor > * {
  position: relative;
  z-index: 1;
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor:hover {
  background-color: var(--colour-gray-10);
  color: var(--colour-black);
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor:focus-visible {
  outline: 2px solid var(--colour-gray-50);
  outline-offset: 2px;
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor:active {
  background-color: var(--colour-dark-blue-100);
  color: var(--colour-white);
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor.selected {
  background-color: transparent;
  color: var(--colour-white);
}

.wp-component-tab-anchors--rounded .wp-component-tab-anchors__anchor.selected::after {
  opacity: 1;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__inner {
  flex-direction: column;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-xlarge);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-p-xlarge);
  line-height: var(--line-height-p-xlarge);
  text-transform: none;
  align-items: center;
  border-bottom: 1px solid var(--colour-dark-blue-50);
  color: var(--colour-dark-blue-35);
  display: flex;
  gap: var(--spacing-xxxs);
  justify-content: space-between;
  padding-bottom: var(--spacing-xs);
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor .edwp-icon {
  background: transparent;
  border: 1px solid var(--colour-light-blue-100);
  border-radius: 50%;
  height: 48px;
  padding: var(--spacing-xxs);
  transition: var(--transition-all);
  width: 48px;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor .edwp-icon::after {
  background: var(--button-primary-background-hover);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: var(--transition-all);
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:hover {
  border-color: var(--colour-light-blue-100);
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:hover .edwp-icon {
  background: var(--gradient-light);
  color: var(--colour-white);
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:focus-visible {
  border-color: var(--colour-dark-blue-100);
  outline: 0;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:active {
  border-color: var(--colour-dark-blue-100);
  font-weight: 700;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor.selected {
  border-color: var(--colour-dark-blue-100);
  font-weight: 700;
}

.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor.selected .edwp-icon {
  background: var(--gradient-light);
  color: var(--colour-white);
}

.wp-component-tab-anchors--dark.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor {
  border-color: var(--colour-white);
  color: var(--colour-white);
}

.wp-component-tab-anchors--dark.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:hover {
  border-color: var(--colour-light-blue-100);
}

.wp-component-tab-anchors--dark.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:hover .edwp-icon {
  color: var(--colour-white);
}

.wp-component-tab-anchors--dark.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor:hover .edwp-icon, .wp-component-tab-anchors--dark.wp-component-tab-anchors--straight .wp-component-tab-anchors__anchor.selected .edwp-icon {
  background: linear-gradient(280deg, #00AEEF -33.08%, white 26.5%);
  color: var(--colour-dark-blue-35);
}

.wp-component-tab-anchors--bubble {
  background-color: var(--colour-white);
  box-shadow: 0 4px 28px 0 rgba(0, 74, 118, 0.2);
  padding: var(--spacing-xxxs);
}

@media (min-width: 1023px) {
  .wp-component-tab-anchors--bubble {
    border-radius: 100px;
  }
}
