/* =========================================================
   PRACTICE COMMON
   Shared variables and base page wrappers
   ========================================================= */

.bb-home-page,
.bb-practice-page {
  min-height: 100vh;
  background: #f4f5f7;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.bb-home-page a,
.bb-practice-page a {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bb-card-w: 270px;
  --bb-card-h: 224px;
  --bb-card-gap: 22px;

  --bb-check-title-size: 50px;
  --bb-check-message-size: 20px;
  --bb-check-card-width: 1080px;
  --bb-check-card-title-size: 25px;
  --bb-check-legend-size: 18px;
  --bb-check-grid-number-size: 30px;
  --bb-check-grid-box-size: 50px;
  --bb-check-grid-gap-x: 18px;
  --bb-check-grid-gap-y: 18px;

  --bb-check-space-top: 34px;
  --bb-check-space-title-bottom: 26px;
  --bb-check-space-message-bottom: 34px;
  --bb-check-card-padding-y: 34px;
  --bb-check-card-padding-x: 38px;
}

/* =========================================================
   CHECK YOUR WORK
   ========================================================= */

.bb-module-flow-screen {
  display: block;
  min-height: 100%;
  background: #fff;
}

.bb-module-flow-screen[hidden] {
  display: none !important;
}

.bb-module-flow-body {
  color: #111;
}

.bb-module-flow-inner {
  max-width: 1080px;
  margin: var(--bb-check-space-top) auto 0;
  padding: 18px 32px 40px;
  box-sizing: border-box;
}

.bb-module-flow-title {
  margin: 0 0 var(--bb-check-space-title-bottom) 0;
  text-align: center;
  font-size: var(--bb-check-title-size);
  font-weight: 400;
  line-height: 1.1;
  color: #111;
}

.bb-check-flow {
  text-align: center;
}

.bb-check-flow-message {
  margin: 0 auto var(--bb-check-space-message-bottom) auto;
  max-width: 920px;
}

.bb-check-flow-message p {
  margin: 0 0 14px 0;
  font-size: var(--bb-check-message-size);
  line-height: 1.45;
}

.bb-check-flow-message p:last-child {
  margin-bottom: 0;
}

.bb-check-card {
  width: min(var(--bb-check-card-width), 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: var(--bb-check-card-padding-y) var(--bb-check-card-padding-x) 30px;
  box-sizing: border-box;
  text-align: left;
}

.bb-check-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.bb-check-card-title {
  font-size: var(--bb-check-card-title-size);
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.bb-check-card-legend {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bb-check-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--bb-check-legend-size);
  color: #111;
  line-height: 1;
}

.bb-check-legend-box {
  width: 18px;
  height: 18px;
  border: 1.5px dashed #555;
  box-sizing: border-box;
}

.bb-check-legend-flag {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 16px;
  background: #c83b52;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.bb-check-card-rule {
  height: 1px;
  background: #cfcfcf;
  margin: 22px 0 26px 0;
}

.bb-check-grid {
  display: grid;
  grid-template-columns: repeat(var(--bb-check-cols), var(--bb-check-grid-box-size));
  gap: var(--bb-check-grid-gap-y) var(--bb-check-grid-gap-x);
  justify-content: start;
}

.bb-check-grid-item {
  position: relative;
  width: var(--bb-check-grid-box-size);
  height: var(--bb-check-grid-box-size);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-check-grid-item.is-unanswered {
  border: 1.5px dashed #555;
  background: #fff;
  color: #3553d8;
}

.bb-check-grid-item.is-answered {
  background: #3553d8;
  border: 1.5px solid #3553d8;
  color: #fff;
}

.bb-check-grid-item.is-review .bb-check-grid-flag {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 14px;
  background: #c83b52;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.bb-check-grid-number {
  font-size: var(--bb-check-grid-number-size);
  font-weight: 700;
  line-height: 1;
}

/* =========================================================
   MODULE OVER SCREEN
   ========================================================= */

.bb-app.bb-module-over-mode {
  grid-template-rows: 1fr;
  background: #fff;
}

.bb-app.bb-module-over-mode .bb-header,
.bb-app.bb-module-over-mode .bb-header-preview-wrap,
.bb-app.bb-module-over-mode .bb-footer {
  display: none !important;
}

.bb-app.bb-module-over-mode .bb-main {
  grid-row: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.bb-app.bb-module-over-mode #bb-module-flow-screen {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: #fff;
}

.bb-app.bb-module-over-mode .bb-module-flow-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  transform: translateY(150px);
}

.bb-app.bb-module-over-mode .bb-module-flow-title {
  margin: 0 0 30px 0;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  color: #3553d8;
  text-align: center;
}

.bb-app.bb-module-over-mode .bb-module-flow-body {
  color: #111;
}

.bb-module-over-flow {
  text-align: center;
}

.bb-module-over-message {
  display: grid;
  gap: 18px;
  margin: 0 0 72px 0;
}

.bb-module-over-message p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  color: #111;
}

.bb-module-over-spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 6px dotted #222;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: bb-module-over-spin 1.1s linear infinite;
}

@keyframes bb-module-over-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   PRACTICE TEST BREAK
   ========================================================= */

:root {
  --bb-break-title-size: 30px;
  --bb-break-body-size: 18px;
  --bb-break-heading-size: 30px;
  --bb-break-subhead-size: 18px;
  --bb-break-list-size: 18px;
  --bb-break-timer-label-size: 18px;
  --bb-break-timer-size: 82px;
  --bb-break-user-size: 22px;
  --bb-break-resume-size: 16px;

  --bb-break-shell-padding-x: 160px;
  --bb-break-shell-padding-y: 170px;
  --bb-break-column-gap: 86px;
  --bb-break-timer-card-width: 320px;
  --bb-break-timer-card-padding-y: 16px;
  --bb-break-timer-card-padding-x: 12px;
}

.bb-app.bb-practice-break-mode {
  grid-template-rows: 1fr;
  background: #171717;
}

.bb-app.bb-practice-break-mode .bb-header,
.bb-app.bb-practice-break-mode .bb-header-preview-wrap,
.bb-app.bb-practice-break-mode .bb-footer {
  display: none !important;
}

.bb-app.bb-practice-break-mode .bb-main {
  grid-row: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.bb-app.bb-practice-break-mode #bb-module-flow-screen {
  display: block !important;
  width: 100%;
  min-height: 100%;
  background: #171717;
  color: #fff;
}

.bb-app.bb-practice-break-mode .bb-module-flow-inner {
  width: 100%;
  max-width: 1240px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.bb-app.bb-practice-break-mode .bb-module-flow-title {
  display: none;
}

.bb-app.bb-practice-break-mode .bb-module-flow-body {
  height: 100%;
}

.bb-practice-break-flow {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: var(--bb-break-column-gap);
  align-items: center;

  padding: var(--bb-break-shell-padding-y) var(--bb-break-shell-padding-x) 28px;
  box-sizing: border-box;
}

.bb-practice-break-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
/*  transform: translateY(90px);*/
}

.bb-practice-break-timer-card {
  width: min(var(--bb-break-timer-card-width), 100%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: var(--bb-break-timer-card-padding-y) var(--bb-break-timer-card-padding-x);
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 32px;
}

.bb-practice-break-timer-label {
  font-size: var(--bb-break-timer-label-size);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}

.bb-practice-break-timer-display {
  font-size: var(--bb-break-timer-size);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
}

.bb-practice-break-resume-btn {
  background: #ffd800;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: var(--bb-break-resume-size);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.bb-practice-break-right {
  max-width: 400px;
/*  transform: translateY(130px);*/
}

.bb-practice-break-title {
  margin: 0 0 30px 0;
  font-size: var(--bb-break-title-size);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
}

.bb-practice-break-intro {
  margin: 0 0 28px 0;
  font-size: var(--bb-break-body-size);
  line-height: 1.45;
  color: #fff;
}

.bb-practice-break-rule {
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  margin: 0 0 34px 0;
}

.bb-practice-break-heading {
  margin: 0 0 24px 0;
  font-size: var(--bb-break-heading-size);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}

.bb-practice-break-copy {
  margin: 0 0 28px 0;
  font-size: var(--bb-break-body-size);
  line-height: 1.45;
  color: #fff;
}

.bb-practice-break-subhead {
  margin: 0 0 14px 0;
  font-size: var(--bb-break-subhead-size);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.bb-practice-break-list {
  margin: 0;
  padding-left: 32px;
  display: grid;
  gap: 14px;
}

.bb-practice-break-list li {
  font-size: var(--bb-break-list-size);
  line-height: 1.45;
  color: #fff;
}

.bb-practice-break-list,
.bb-practice-break-list li {
  font-family: Arial, Helvetica, sans-serif;
}

.bb-practice-break-shell {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bb-practice-break-user {
  position: absolute;
  left: -30px;
  bottom: -110px;
  margin-top: 0;
  font-size: var(--bb-break-user-size);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

/* =========================================================
   STAND BY SCREEN
   ========================================================= */

:root {
  --bb-standby-title-size: 40px;
  --bb-standby-body-size: 24px;
  --bb-standby-progress-size: 22px;
  --bb-standby-note-size: 18px;
  --bb-standby-home-size: 18px;

  --bb-standby-card-width: 600px;
  --bb-standby-card-min-height: 600px;
  --bb-standby-shell-padding-x: 100px;
  --bb-standby-shell-padding-y: 76px;
}

.bb-app.bb-standby-mode {
  grid-template-rows: 1fr;
  background: #f3f3f3;
}

.bb-app.bb-standby-mode .bb-header,
.bb-app.bb-standby-mode .bb-header-preview-wrap,
.bb-app.bb-standby-mode .bb-footer {
  display: none !important;
}

.bb-app.bb-standby-mode .bb-main {
  grid-row: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.bb-app.bb-standby-mode #bb-module-flow-screen {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  background: #f3f3f3;
}

.bb-app.bb-standby-mode .bb-module-flow-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--bb-standby-shell-padding-y) var(--bb-standby-shell-padding-x);
  box-sizing: border-box;
  text-align: center;
}

.bb-app.bb-standby-mode .bb-module-flow-title {
  display: none;
}

.bb-standby-shell {
  width: 100%;
}

.bb-standby-flow {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.bb-standby-title {
  margin: 0 0 26px 0;
  font-size: var(--bb-standby-title-size);
  font-weight: 400;
  line-height: 1.1;
  color: #111;
}

.bb-standby-intro {
  max-width: 500px;
  margin: 0 auto 34px auto;
  font-size: var(--bb-standby-body-size);
  line-height: 1.4;
  color: #111;
}

.bb-standby-card {
  width: min(var(--bb-standby-card-width), 100%);
  min-height: var(--bb-standby-card-min-height);
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
  padding: 34px 36px 38px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.bb-standby-progress-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px auto;
  display: grid;
  place-items: center;
}

.bb-standby-spinner {
  position: absolute;
  inset: 0;
  border: 6px dotted #222;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: bb-standby-spin 1.1s linear infinite;
}

.bb-standby-progress-text {
  position: relative;
  z-index: 1;
  font-size: var(--bb-standby-progress-size);
  font-weight: 700;
  line-height: 1;
  color: #111;
}

.bb-standby-illustration {
  margin: 8px 0 26px 0;
}

.bb-standby-illustration img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.bb-standby-note {
  margin: 0 0 8px 0;
  font-size: var(--bb-standby-note-size);
  line-height: 1.4;
  color: #111;
}

.bb-standby-home-btn {
  background: transparent;
  border: none;
  padding: 0;
  font-size: var(--bb-standby-home-size);
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  cursor: pointer;
}

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

/* =========================================================
   FINISHED SCREEN
   ========================================================= */

:root {
  --bb-finished-title-size: 42px;
  --bb-finished-card-text-size: 22px;
  --bb-finished-button-size: 18px;

  --bb-finished-card-width: 860px;
  --bb-finished-card-min-height: 290px;
  --bb-finished-shell-padding-x: 40px;
  --bb-finished-shell-padding-y: 42px;

  --bb-finished-survey-title-size: 28px;
  --bb-finished-survey-option-size: 18px;
  --bb-finished-survey-label-size: 18px;
  --bb-finished-survey-textarea-size: 17px;
  --bb-finished-survey-action-size: 18px;
}

.bb-app.bb-finished-mode {
  grid-template-rows: 1fr;
  background: #232b82;
}

.bb-app.bb-finished-mode .bb-header,
.bb-app.bb-finished-mode .bb-header-preview-wrap,
.bb-app.bb-finished-mode .bb-footer {
  display: none !important;
}

.bb-app.bb-finished-mode .bb-main {
  grid-row: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.bb-app.bb-finished-mode #bb-module-flow-screen {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  background: #232b82;
  overflow: visible;
}

.bb-app.bb-finished-mode .bb-module-flow-inner {
  width: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding: var(--bb-finished-shell-padding-y) var(--bb-finished-shell-padding-x);
  box-sizing: border-box;
}

.bb-app.bb-finished-mode .bb-module-flow-title {
  display: none;
}

.bb-finished-shell {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible;
}

.bb-finished-shell::before,
.bb-finished-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.bb-finished-shell::before {
  background-image:
    radial-gradient(circle at 8% 10%, #ffd400 0 4px, transparent 5px),
    radial-gradient(circle at 18% 20%, #ff9dc2 0 3px, transparent 4px),
    radial-gradient(circle at 28% 8%, #aef1ff 0 3px, transparent 4px),
    radial-gradient(circle at 78% 14%, #ffd400 0 4px, transparent 5px),
    radial-gradient(circle at 88% 24%, #ff9dc2 0 3px, transparent 4px),
    radial-gradient(circle at 94% 10%, #aef1ff 0 3px, transparent 4px),
    radial-gradient(circle at 12% 72%, #ffd400 0 4px, transparent 5px),
    radial-gradient(circle at 22% 88%, #ff9dc2 0 3px, transparent 4px),
    radial-gradient(circle at 82% 80%, #ffd400 0 4px, transparent 5px),
    radial-gradient(circle at 92% 70%, #aef1ff 0 3px, transparent 4px);
}

.bb-finished-shell::after {
  background-image:
    linear-gradient(45deg, transparent 0 48%, #ffd400 48% 52%, transparent 52%),
    linear-gradient(65deg, transparent 0 48%, #ff9dc2 48% 52%, transparent 52%),
    linear-gradient(25deg, transparent 0 48%, #aef1ff 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, #ffd400 48% 52%, transparent 52%),
    linear-gradient(65deg, transparent 0 48%, #ff9dc2 48% 52%, transparent 52%),
    linear-gradient(25deg, transparent 0 48%, #aef1ff 48% 52%, transparent 52%);
  background-size: 18px 18px, 16px 16px, 16px 16px, 18px 18px, 16px 16px, 16px 16px;
  background-position: 14% 36%, 34% 22%, 68% 18%, 20% 92%, 74% 64%, 90% 88%;
}

.bb-finished-title {
  position: relative;
  z-index: 1;
  margin: 0 0 56px 0;
  font-size: var(--bb-finished-title-size);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.bb-finished-card {
  position: relative;
  z-index: 1;
  width: min(var(--bb-finished-card-width), 100%);
  min-height: var(--bb-finished-card-min-height);
  margin: 0 auto 32px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 38px 42px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  column-gap: 36px;
}

.bb-finished-card-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-finished-card-left img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.bb-finished-card-divider {
  width: 1px;
  height: 100%;
  background: #d8d8d8;
}

.bb-finished-card-right {
  text-align: left;
}

.bb-finished-card-right p {
  margin: 0;
  font-size: var(--bb-finished-card-text-size);
  line-height: 1.45;
  color: #111;
}

.bb-finished-score-btn {
  position: relative;
  z-index: 1;
  background: #ffd800;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: var(--bb-finished-button-size);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.bb-finished-survey-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.bb-finished-survey-overlay[hidden] {
  display: none !important;
}

.bb-finished-survey-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.bb-finished-survey-modal {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
  padding: 30px 34px 26px;
  box-sizing: border-box;
  text-align: left;
  color: #111;
}

.bb-finished-survey-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #7a7a7a;
  cursor: pointer;
}

.bb-finished-survey-title {
  margin: 0 32px 24px 0;
  font-size: var(--bb-finished-survey-title-size);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.bb-finished-survey-options {
  display: grid;
  gap: 12px;
  margin: 0 0 28px 0;
}

.bb-finished-survey-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2f4fa;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--bb-finished-survey-option-size);
  line-height: 1.3;
}

.bb-finished-survey-option input {
  width: 22px;
  height: 22px;
  margin: 0;
}

.bb-finished-survey-label {
  display: block;
  margin: 0 0 10px 0;
  font-size: var(--bb-finished-survey-label-size);
  font-weight: 700;
  line-height: 1.3;
}

.bb-finished-survey-textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid #bcbcbc;
  border-radius: 8px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--bb-finished-survey-textarea-size);
  line-height: 1.4;
  margin: 0 0 26px 0;
}

.bb-finished-survey-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.bb-finished-dismiss-btn {
  background: transparent;
  border: none;
  padding: 0;
  font-size: var(--bb-finished-survey-action-size);
  font-weight: 500;
  color: #3553d8;
  cursor: pointer;
}

.bb-finished-submit-btn {
  min-width: 110px;
  background: #ffd800;
  color: #111;
  border: 1px solid #ffd800;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: var(--bb-finished-survey-action-size);
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   FINISHED HELP / TOP BAR
   ========================================================= */




.bb-finished-help-modal[hidden] {
  display: none !important;
}

.bb-finished-help-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
}

.bb-finished-help-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.bb-finished-help-dialog {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, calc(100vw - 40px));
  height: calc(100vh - 56px);
  background: #f6f6f6;
  border-radius: 14px;
  box-sizing: border-box;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.bb-finished-help-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 400;
  color: #111;
}

.bb-finished-help-x {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.bb-finished-help-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5d5d5;
}

.bb-finished-help-control {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.bb-finished-help-divider {
  width: 1px;
  height: 26px;
  background: #d0d0d0;
}

.bb-finished-help-content {
  flex: 1 1 auto;
  overflow-y: auto;
  margin-top: 8px;
  padding-right: 10px;
}

.bb-finished-help-item {
  border-bottom: 1px solid #d5d5d5;
}

.bb-finished-help-item-head {
  width: 100%;
  min-height: 92px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0 12px 0 28px;
  cursor: pointer;
}

.bb-finished-help-item-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  color: #111;
}

.bb-finished-help-item-icon {
  width: 28px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  color: #222;
  flex: 0 0 auto;
}

.bb-finished-help-footer {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.bb-finished-help-closebtn {
  min-width: 104px;
  height: 52px;
  border-radius: 999px;
  border: 1.5px solid #111;
  background: #f4d400;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   FINISHED PAGE TOP BAR – final
   ========================================================= */

.bb-finished-topbar {
  position: relative;
  z-index: 5;

  width: calc(100% + (2 * var(--bb-finished-shell-padding-x)));
  margin-top: calc(-1 * var(--bb-finished-shell-padding-y));
  margin-left: calc(-1 * var(--bb-finished-shell-padding-x));
  margin-right: calc(-1 * var(--bb-finished-shell-padding-x));
  margin-bottom: 68px;   /* bilo je 26px */

  padding: 12px 34px;
  box-sizing: border-box;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}

.bb-finished-toplink {
  border: 0;
  background: transparent;
  color: #111111;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font: inherit;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.bb-finished-toplink:hover {
  opacity: 0.85;
}

.bb-finished-topicon-img,
.bb-finished-topicon-help-img,
.bb-finished-topicon-home-img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none !important;
}