.secondary-tab-component {
  width: 100%;
}
.secondary-tab-nav {
  display: flex;
  gap: var(--space-md, 16px);
  margin-bottom: var(--space-2xl, 40px);
  justify-content: center;
}
.secondary-tab-button.is-active {
  border: 2px solid var(--color-border-width-border-width-interaction-active, #1975FF);
  background-color: #E8F1FF80;
}
.secondary-tab-panel {
  display: none;
}
.secondary-tab-panel.is-active {
  display: block;
}
.secondary-tab-button {
  max-width: 352.5px;
  width: 100%;
  border: 1px solid var(--color-border-width-default, #DEDEE0);
  border-radius: var(--border-radius-border-radius-md, 8px);
  padding: var(--space-md, 16px);
  display: flex;
  gap: var(--space-sm, 8px);
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.secondary-tab-button .tab-icon {
  width: 147px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondary-tab-button .tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tab-title,
.tab-description {
  color: var(--color-foreground-strong, #606062);
}
.secondary-tab-button.is-active .tab-title,
.secondary-tab-button.is-active .tab-description {
  color: var(--color-foreground-interaction-active, #1975FF);
}
.text_color_white .secondary-tab-button.is-active .tab-title,
.text_color_white .secondary-tab-button.is-active .tab-description {
  color: var(--color-background-default,#FFFFFF);
}
.tab-icon + .tab-wrap-content {
  width: calc(100% - 163px);
  text-align: left;
}
.secondary-tab-top {
  margin-bottom: var(--space-lg, 24px);
}
.text_color_white .secondary-tab-button.is-active {
  background: #0A3576B2;
}
.text_color_white .tab-title,
.text_color_white .tab-description,
.text_color_white .secondary-tab-top .heading {
  color: var(--color-background-default,#FFFFFF);
}
@media only screen and (max-width: 960px) {
  .secondary-tab-nav {
    margin-bottom: var(--space-md, 16px);
    gap: var(--space-sm, 8px);
  }
  .tab-icon + .tab-wrap-content {
    width: 100%;
  }
  .tab-wrap-content {
    text-align: center;
  }
  .secondary-tab-button {
    flex-direction: column;
  }
  .tab-title,
  .tab-description {
    text-align: center;
  }
}