:root {
      color-scheme: light;
    }

    html {
      background: transparent;
    }

    body {
      margin: 0;
      min-width: 0;
      overflow-x: hidden;
      background: transparent;
    }

    .gopbc-app,
    .gopbc-app * {
      box-sizing: border-box;
    }

    .gopbc-app {
      --gopbc-ink: #10212a;
      --gopbc-ink-2: #1b303a;
      --gopbc-metal: #304852;
      --gopbc-metal-light: #48616c;
      --gopbc-paper: #eef3f3;
      --gopbc-paper-2: #dce5e6;
      --gopbc-white: #ffffff;
      --gopbc-line: #92a6ac;
      --gopbc-cyan: #42d9ff;
      --gopbc-cyan-deep: #0698c2;
      --gopbc-cyan-dark: #075b72;
      --gopbc-yellow: #f3c846;
      --gopbc-orange: #ef8b3c;
      --gopbc-red: #d94b4b;
      --gopbc-shadow: #081218;
      width: 100%;
      max-width: 1040px;
      margin: 28px auto;
      color: var(--gopbc-ink);
      font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
      line-height: 1.45;
      letter-spacing: .005em;
    }

    .gopbc-shell {
      position: relative;
      overflow: hidden;
      border: 4px solid var(--gopbc-ink);
      background: var(--gopbc-paper);
      box-shadow:
        0 7px 0 var(--gopbc-shadow),
        0 18px 30px rgba(8, 18, 24, .22);
      clip-path: polygon(
        0 20px,
        20px 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        20px 100%,
        0 calc(100% - 20px)
      );
    }

    .gopbc-shell::before,
    .gopbc-shell::after {
      content: "";
      position: absolute;
      z-index: 6;
      width: 44px;
      height: 8px;
      background: var(--gopbc-yellow);
      border: 2px solid var(--gopbc-ink);
      pointer-events: none;
    }

    .gopbc-shell::before {
      top: 12px;
      right: 30px;
      transform: skewX(-28deg);
    }

    .gopbc-shell::after {
      bottom: 12px;
      left: 30px;
      transform: skewX(-28deg);
    }

    .gopbc-header {
      position: relative;
      min-height: 210px;
      padding: 26px 30px 24px;
      overflow: hidden;
      border-bottom: 5px solid var(--gopbc-ink);
      background: var(--gopbc-ink-2);
      color: var(--gopbc-white);
    }

    .gopbc-header::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 42%;
      height: 100%;
      opacity: .24;
      background:
        repeating-linear-gradient(
          128deg,
          transparent 0,
          transparent 18px,
          var(--gopbc-cyan) 19px,
          var(--gopbc-cyan) 21px,
          transparent 22px,
          transparent 40px
        );
      transform: skewX(-8deg) translateX(12%);
      transform-origin: top right;
      pointer-events: none;
    }

    .gopbc-header::after {
      content: "";
      position: absolute;
      right: 34px;
      bottom: 24px;
      width: 148px;
      height: 34px;
      border-top: 4px solid var(--gopbc-cyan);
      border-bottom: 4px solid var(--gopbc-yellow);
      transform: skewX(-28deg);
      opacity: .9;
      pointer-events: none;
    }

    .gopbc-header-top {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 82px minmax(0, 1fr);
      gap: 20px;
      align-items: center;
    }

    .gopbc-orb {
      position: relative;
      display: grid;
      place-items: center;
      width: 78px;
      height: 78px;
      border: 5px solid var(--gopbc-white);
      border-radius: 50%;
      background:
        linear-gradient(
          to bottom,
          var(--gopbc-cyan) 0,
          var(--gopbc-cyan) 44%,
          var(--gopbc-ink) 45%,
          var(--gopbc-ink) 55%,
          var(--gopbc-paper) 56%,
          var(--gopbc-paper) 100%
        );
      box-shadow:
        0 0 0 4px var(--gopbc-ink),
        6px 7px 0 rgba(0, 0, 0, .35);
    }

    .gopbc-orb::before {
      content: "";
      position: absolute;
      width: 25px;
      height: 25px;
      border: 5px solid var(--gopbc-ink);
      border-radius: 50%;
      background: var(--gopbc-yellow);
      box-shadow: 0 0 0 3px var(--gopbc-white);
    }

    .gopbc-orb::after {
      content: "";
      position: absolute;
      inset: 8px 14px auto;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .66);
      transform: rotate(-10deg);
    }

    .gopbc-heading {
      min-width: 0;
    }

    .gopbc-system-label {
      display: inline-block;
      margin-bottom: 8px;
      padding: 4px 10px 3px;
      border-left: 5px solid var(--gopbc-yellow);
      background: rgba(255, 255, 255, .08);
      color: var(--gopbc-cyan);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .gopbc-kicker {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      align-items: center;
      margin-bottom: 10px;
    }

    .gopbc-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 27px;
      padding: 4px 12px;
      border: 2px solid var(--gopbc-cyan);
      border-radius: 0;
      background: transparent;
      color: var(--gopbc-white);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
    }

    .gopbc-badge + .gopbc-badge {
      border-color: var(--gopbc-yellow);
      color: var(--gopbc-yellow);
    }

    .gopbc-badge[data-state="loading"]::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-right: 7px;
      border: 2px solid rgba(66, 217, 255, .28);
      border-top-color: var(--gopbc-cyan);
      border-radius: 50%;
      animation: gopbc-spin .8s linear infinite;
    }

    @keyframes gopbc-spin {
      to { transform: rotate(360deg); }
    }

    .gopbc-title {
      max-width: 780px;
      margin: 0;
      color: var(--gopbc-white);
      font-size: clamp(28px, 4.2vw, 46px);
      font-weight: 1000;
      line-height: .98;
      letter-spacing: -.035em;
      text-transform: uppercase;
      text-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
    }

    .gopbc-description {
      position: relative;
      z-index: 2;
      max-width: 740px;
      margin: 14px 0 0 102px;
      color: #c9d8dc;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 14px;
    }

    .gopbc-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 0;
      border-bottom: 4px solid var(--gopbc-ink);
      background: var(--gopbc-metal);
    }

    .gopbc-tab {
      position: relative;
      min-height: 58px;
      padding: 13px 18px 12px 58px;
      border: 0;
      border-right: 2px solid var(--gopbc-ink);
      border-radius: 0;
      background: var(--gopbc-metal);
      color: #d6e1e4;
      font: inherit;
      font-size: 15px;
      font-weight: 950;
      letter-spacing: .035em;
      text-align: left;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color .16s ease, color .16s ease;
    }

    .gopbc-tab:last-child {
      border-right: 0;
    }

    .gopbc-tab::before {
      position: absolute;
      left: 20px;
      top: 50%;
      color: var(--gopbc-yellow);
      font-size: 22px;
      font-weight: 1000;
      transform: translateY(-50%);
    }

    .gopbc-tab:first-child::before {
      content: "01";
    }

    .gopbc-tab:last-child::before {
      content: "02";
    }

    .gopbc-tab::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 6px;
      background: var(--gopbc-cyan);
      transition: width .18s ease;
    }

    .gopbc-tab:hover {
      background: var(--gopbc-metal-light);
      color: var(--gopbc-white);
    }

    .gopbc-tab[aria-selected="true"] {
      background: var(--gopbc-paper);
      color: var(--gopbc-ink);
    }

    .gopbc-tab[aria-selected="true"]::after {
      width: 100%;
    }

    .gopbc-main {
      position: relative;
      padding: 28px 30px 32px;
      background:
        linear-gradient(rgba(16, 33, 42, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 33, 42, .055) 1px, transparent 1px),
        var(--gopbc-paper);
      background-size: 26px 26px, 26px 26px, auto;
    }

    .gopbc-main::before {
      content: "PAL GENETICS // DATABASE ACCESS";
      display: block;
      margin: 0 0 20px;
      padding: 7px 11px 6px;
      border-left: 7px solid var(--gopbc-cyan-deep);
      border-bottom: 2px solid var(--gopbc-line);
      background: rgba(255, 255, 255, .76);
      color: var(--gopbc-ink-2);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .14em;
    }

    .gopbc-panel[hidden] {
      display: none !important;
    }

    .gopbc-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
      gap: 14px;
      align-items: end;
    }

    .gopbc-plus {
      display: grid;
      place-items: center;
      width: 52px;
      height: 51px;
      margin-bottom: 0;
      border: 3px solid var(--gopbc-ink);
      background: var(--gopbc-yellow);
      color: var(--gopbc-ink);
      font-size: 28px;
      font-weight: 1000;
      box-shadow: 4px 4px 0 var(--gopbc-ink);
      clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
    }

    .gopbc-field {
      min-width: 0;
    }

    .gopbc-label {
      display: block;
      margin: 0 0 7px;
      color: var(--gopbc-ink);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .gopbc-label::before {
      content: "//";
      margin-right: 6px;
      color: var(--gopbc-cyan-deep);
      letter-spacing: -.1em;
    }

    .gopbc-input,
    .gopbc-select {
      width: 100%;
      min-height: 51px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 0;
      outline: none;
      background: var(--gopbc-white);
      color: var(--gopbc-ink);
      font: inherit;
      font-family: "Segoe UI", Arial, sans-serif;
      font-weight: 700;
      box-shadow: 4px 4px 0 #9aabb0;
      transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
      clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    }

    .gopbc-input {
      padding: 10px 14px;
    }

    .gopbc-select {
      padding: 8px 12px;
    }

    .gopbc-input::placeholder {
      color: #71858c;
      font-weight: 600;
    }

    .gopbc-input:focus,
    .gopbc-select:focus {
      border-color: var(--gopbc-cyan-deep);
      box-shadow: 4px 4px 0 var(--gopbc-cyan);
      transform: translate(-1px, -1px);
    }

    .gopbc-gender-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 19px;
      padding-top: 18px;
      border-top: 2px dashed var(--gopbc-line);
    }

    .gopbc-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .gopbc-button {
      position: relative;
      min-height: 45px;
      padding: 10px 18px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 0;
      font: inherit;
      font-size: 13px;
      font-weight: 1000;
      letter-spacing: .045em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 4px 4px 0 var(--gopbc-ink);
      transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
      clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
    }

    .gopbc-button:hover {
      transform: translate(2px, 2px);
      box-shadow: 2px 2px 0 var(--gopbc-ink);
    }

    .gopbc-button:active {
      transform: translate(4px, 4px);
      box-shadow: 0 0 0 var(--gopbc-ink);
    }

    .gopbc-button:disabled {
      cursor: not-allowed;
      opacity: .45;
      filter: grayscale(.6);
      transform: none;
      box-shadow: 4px 4px 0 var(--gopbc-ink);
    }

    .gopbc-button-primary {
      background: var(--gopbc-cyan);
      color: var(--gopbc-ink);
    }

    .gopbc-button-primary:hover {
      background: #78e6ff;
    }

    .gopbc-button-secondary {
      background: var(--gopbc-white);
      color: var(--gopbc-ink);
    }

    .gopbc-button-secondary:hover {
      background: var(--gopbc-yellow);
    }

    .gopbc-status {
      min-height: 23px;
      margin: 18px 0 0;
      padding-left: 12px;
      border-left: 5px solid var(--gopbc-cyan-deep);
      color: #52666d;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 13px;
      font-weight: 650;
    }

    .gopbc-status:empty {
      border-left-color: transparent;
    }

    .gopbc-status[data-kind="error"] {
      border-left-color: var(--gopbc-red);
      color: #9e2f2f;
    }

    .gopbc-result {
      margin-top: 20px;
    }

    .gopbc-empty,
    .gopbc-result-card {
      border: 3px solid var(--gopbc-ink);
      border-radius: 0;
      background: var(--gopbc-white);
      box-shadow: 6px 6px 0 #a3b3b7;
      clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    }

    .gopbc-empty {
      position: relative;
      padding: 30px 24px 28px 76px;
      color: #53676e;
      font-family: "Segoe UI", Arial, sans-serif;
      text-align: left;
    }

    .gopbc-empty::before {
      content: "?";
      position: absolute;
      left: 22px;
      top: 50%;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 50%;
      background: var(--gopbc-yellow);
      color: var(--gopbc-ink);
      font-family: "Arial Narrow", Arial, sans-serif;
      font-size: 22px;
      font-weight: 1000;
      transform: translateY(-50%);
    }

    .gopbc-result-card {
      overflow: hidden;
    }

    .gopbc-result-card + .gopbc-result-card {
      margin-top: 16px;
    }

    .gopbc-result-head {
      position: relative;
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 17px 20px;
      border-bottom: 3px solid var(--gopbc-ink);
      background: var(--gopbc-metal);
      color: var(--gopbc-white);
    }

    .gopbc-result-head::after {
      content: "MATCH";
      position: absolute;
      top: 13px;
      right: 16px;
      padding: 3px 8px;
      border: 2px solid var(--gopbc-yellow);
      color: var(--gopbc-yellow);
      font-size: 10px;
      font-weight: 1000;
      letter-spacing: .13em;
    }

    .gopbc-avatar {
      position: relative;
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      width: 64px;
      height: 64px;
      border: 4px solid var(--gopbc-white);
      border-radius: 50%;
      background: var(--gopbc-cyan-deep);
      color: var(--gopbc-white);
      font-size: 21px;
      font-weight: 1000;
      text-transform: uppercase;
      box-shadow: 0 0 0 3px var(--gopbc-ink);
    }

    .gopbc-avatar::after {
      content: "";
      position: absolute;
      right: -3px;
      bottom: 7px;
      width: 13px;
      height: 13px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 50%;
      background: var(--gopbc-yellow);
    }

    .gopbc-result-name {
      margin: 0;
      color: var(--gopbc-white);
      font-size: 27px;
      font-weight: 1000;
      line-height: 1.05;
      letter-spacing: -.02em;
      text-transform: uppercase;
    }

    .gopbc-result-meta {
      margin: 5px 0 0;
      color: #c6d6db;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 12px;
    }

    .gopbc-result-body {
      padding: 19px 20px 20px;
      background: var(--gopbc-white);
    }

    .gopbc-combo {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
      gap: 11px;
      align-items: center;
    }

    .gopbc-pal-chip {
      position: relative;
      min-width: 0;
      padding: 13px 14px 12px 18px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 0;
      background: var(--gopbc-paper-2);
      box-shadow: 3px 3px 0 #9babb0;
      clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    }

    .gopbc-pal-chip::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 7px;
      background: var(--gopbc-cyan-deep);
    }

    .gopbc-pal-chip strong {
      display: block;
      overflow: hidden;
      color: var(--gopbc-ink);
      font-size: 16px;
      font-weight: 1000;
      text-overflow: ellipsis;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .gopbc-pal-chip small {
      display: block;
      margin-top: 4px;
      color: #5e737a;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 12px;
      font-weight: 650;
    }

    .gopbc-equals {
      display: grid;
      place-items: center;
      min-height: 38px;
      border: 3px solid var(--gopbc-ink);
      background: var(--gopbc-yellow);
      color: var(--gopbc-ink);
      font-size: 20px;
      font-weight: 1000;
      box-shadow: 3px 3px 0 var(--gopbc-ink);
      clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
    }

    .gopbc-note {
      margin: 16px 0 0;
      padding: 9px 12px;
      border-left: 6px solid var(--gopbc-orange);
      background: #fff4df;
      color: #614a2f;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 12px;
      font-weight: 650;
    }

    .gopbc-reverse-tools {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(190px, .42fr);
      gap: 14px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 2px dashed var(--gopbc-line);
    }

    .gopbc-list-info {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      margin: 22px 0 13px;
      padding: 10px 12px;
      border: 3px solid var(--gopbc-ink);
      background: var(--gopbc-metal);
      color: var(--gopbc-white);
      box-shadow: 4px 4px 0 var(--gopbc-ink);
    }

    .gopbc-count {
      color: var(--gopbc-white);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .gopbc-list-info .gopbc-button {
      min-height: 35px;
      padding: 6px 12px;
      border-width: 2px;
      box-shadow: 2px 2px 0 var(--gopbc-ink);
      font-size: 11px;
    }

    .gopbc-combo-list {
      display: grid;
      gap: 10px;
    }

    .gopbc-combo-row {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding: 13px 14px;
      border: 3px solid var(--gopbc-ink);
      border-radius: 0;
      background: var(--gopbc-white);
      box-shadow: 4px 4px 0 #9babb0;
      clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
    }

    .gopbc-combo-row::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 7px;
      background: var(--gopbc-cyan-deep);
    }

    .gopbc-combo-row:nth-child(even)::before {
      background: var(--gopbc-yellow);
    }

    .gopbc-combo-name {
      min-width: 0;
      padding-left: 6px;
    }

    .gopbc-combo-name strong {
      display: block;
      overflow: hidden;
      color: var(--gopbc-ink);
      font-size: 15px;
      font-weight: 1000;
      text-overflow: ellipsis;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .gopbc-combo-name small {
      color: #63777e;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 11px;
      font-weight: 650;
    }

    .gopbc-footer {
      position: relative;
      padding: 17px 30px 22px;
      border-top: 4px solid var(--gopbc-ink);
      background: var(--gopbc-ink-2);
      color: #aebfc4;
      font-family: "Segoe UI", Arial, sans-serif;
      font-size: 11px;
    }

    .gopbc-footer::before {
      content: "DATA LINK ACTIVE";
      display: inline-block;
      margin-right: 10px;
      padding: 3px 7px;
      border: 1px solid var(--gopbc-cyan);
      color: var(--gopbc-cyan);
      font-family: "Arial Narrow", Arial, sans-serif;
      font-weight: 1000;
      letter-spacing: .09em;
    }

    .gopbc-footer a {
      color: var(--gopbc-cyan);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .gopbc-noscript {
      padding: 20px;
      border: 3px solid var(--gopbc-ink);
      background: #ffe4e4;
      color: #822f2f;
      font-family: "Segoe UI", Arial, sans-serif;
    }


    .gopbc-retry {
      display: none;
      margin-top: 12px;
    }

    .gopbc-retry.is-visible {
      display: inline-flex;
    }

    @media (max-width: 720px) {
      .gopbc-app {
        margin: 16px auto;
      }

      .gopbc-shell {
        border-width: 3px;
        clip-path: polygon(
          0 12px,
          12px 0,
          calc(100% - 12px) 0,
          100% 12px,
          100% calc(100% - 12px),
          calc(100% - 12px) 100%,
          12px 100%,
          0 calc(100% - 12px)
        );
      }

      .gopbc-header,
      .gopbc-main,
      .gopbc-footer {
        padding-left: 17px;
        padding-right: 17px;
      }

      .gopbc-header {
        min-height: 0;
      }

      .gopbc-header::after {
        display: none;
      }

      .gopbc-header-top {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 13px;
      }

      .gopbc-orb {
        width: 55px;
        height: 55px;
        border-width: 3px;
        box-shadow: 0 0 0 3px var(--gopbc-ink), 4px 5px 0 rgba(0, 0, 0, .35);
      }

      .gopbc-orb::before {
        width: 18px;
        height: 18px;
        border-width: 3px;
        box-shadow: 0 0 0 2px var(--gopbc-white);
      }

      .gopbc-system-label {
        margin-bottom: 5px;
        font-size: 9px;
      }

      .gopbc-kicker {
        margin-bottom: 7px;
      }

      .gopbc-badge {
        min-height: 23px;
        padding: 3px 8px;
        font-size: 9px;
      }

      .gopbc-title {
        font-size: clamp(23px, 8vw, 34px);
      }

      .gopbc-description {
        margin: 13px 0 0;
        font-size: 13px;
      }

      .gopbc-tabs {
        grid-template-columns: 1fr;
      }

      .gopbc-tab {
        min-height: 51px;
        border-right: 0;
        border-bottom: 2px solid var(--gopbc-ink);
      }

      .gopbc-tab:last-child {
        border-bottom: 0;
      }

      .gopbc-main::before {
        font-size: 9px;
        letter-spacing: .08em;
      }

      .gopbc-grid {
        grid-template-columns: 1fr;
      }

      .gopbc-plus {
        width: 100%;
        height: 40px;
        margin: 0;
      }

      .gopbc-gender-row,
      .gopbc-reverse-tools {
        grid-template-columns: 1fr;
      }

      .gopbc-combo,
      .gopbc-combo-row {
        grid-template-columns: 1fr;
      }

      .gopbc-equals {
        min-height: 34px;
        width: 100%;
        text-align: center;
      }

      .gopbc-result-head::after {
        position: static;
        margin-left: auto;
      }

      .gopbc-result-name {
        font-size: 22px;
      }

      .gopbc-empty {
        padding: 70px 20px 22px;
        text-align: center;
      }

      .gopbc-empty::before {
        left: 50%;
        top: 19px;
        transform: translateX(-50%);
      }

      .gopbc-footer::before {
        display: block;
        width: max-content;
        margin: 0 0 8px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .gopbc-app *,
      .gopbc-app *::before,
      .gopbc-app *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }

/* Isolamento contra estilos agressivos do tema */
.gopbc-app button,
.gopbc-app input,
.gopbc-app select {
  appearance: auto;
  -webkit-appearance: auto;
}

.gopbc-app .gopbc-button,
.gopbc-app .gopbc-tab {
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

.gopbc-app .gopbc-title {
  display: block;
}

.gopbc-app [hidden] {
  display: none !important;
}


.gopbc-app .gopbc-field {
  position: relative;
}

.gopbc-app .gopbc-suggestions {
  position: absolute;
  z-index: 50;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  max-height: 310px;
  overflow-y: auto;
  border: 3px solid var(--gopbc-ink);
  background: var(--gopbc-white);
  box-shadow: 5px 5px 0 var(--gopbc-ink);
}

.gopbc-app .gopbc-suggestion {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid var(--gopbc-line);
  background: var(--gopbc-white);
  color: var(--gopbc-ink);
  text-align: left;
  cursor: pointer;
}

.gopbc-app .gopbc-suggestion:last-child {
  border-bottom: 0;
}

.gopbc-app .gopbc-suggestion:hover,
.gopbc-app .gopbc-suggestion:focus {
  background: #ddf8ff;
  outline: 0;
}

.gopbc-app .gopbc-suggestion strong {
  font-size: 13px;
  text-transform: uppercase;
}

.gopbc-app .gopbc-suggestion span {
  flex: 0 0 auto;
  color: #63777e;
  font-size: 11px;
  font-weight: 700;
}
