/* Gradient text with fallback solid color. */
/* Real gradient border for dark cards.
   Pass an angle or omit it to generate a random compile-time angle (0-360deg). */
/* Transparent gradient surface for card headers or badges. */
:root {
  --color-white: #fff;
  --color-black: #000000;
  --color-light-grey: #f4f4f2;
  --color-dark-grey: #111827;
  --color-teal: #009eb8;
  --color-aqua: #00aa92;
  --color-azure: #2581c4;
  --color-lime: #a1c754;
  --color-yellow: #ffdd00;
  --color-gold: #fdc400;
  /* Base gradient stops (angle is applied where used) */
  --gradient-gold-aqua-teal: #fdc400 0%, #00aa92 52%, #009eb8 100%;
  /* Transparent gradients (use for card headers / overlays on dark cards) */
  --gradient-gold-aqua-teal-alpha-soft: linear-gradient(135deg, rgba(253, 196, 0, 0.16) 0%, rgba(0, 170, 146, 0.2) 52%, rgba(0, 158, 184, 0.16) 100%);
  --gradient-gold-aqua-teal-alpha-mid: linear-gradient(135deg, rgba(253, 196, 0, 0.24) 0%, rgba(0, 170, 146, 0.28) 52%, rgba(0, 158, 184, 0.24) 100%);
  --gradient-gold-aqua-teal-alpha-strong: linear-gradient(135deg, rgba(253, 196, 0, 0.34) 0%, rgba(0, 170, 146, 0.38) 52%, rgba(0, 158, 184, 0.34) 100%);
  --font-main: "Open Sans";
  --font-accent: "Source Sans 3";
  --font-weight-main: normal;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.error-text-style {
  text-align: left;
  color: var(--color-teal);
  font-weight: bold;
  position: absolute;
  top: calc(100% - 12px);
  left: 16px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .error-text-style {
    font-size: 12px;
  }
}

.error-message-style {
  padding: 10px 30px;
  display: none;
  border: 1px solid var(--color-teal);
  align-self: center;
}
.error-message-style p {
  text-align: center;
  color: var(--color-teal);
  font-weight: bold;
}

.form .acf-field {
  border: 0;
  min-height: 0 !important;
  padding: 0;
  margin: 0;
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file]),
.form .acf-field textarea,
.form .acf-field select {
  font-family: var(--font-main);
  background: var(--color-dark-grey);
  border: 1px solid var(--color-teal);
  border-radius: 20px;
  color: var(--color-white);
  font-size: var(--fs-18);
  height: 50px;
  padding: 0.125em 1em;
  line-height: 1.5;
  box-shadow: none;
  outline: none;
  transition: all 0.2s ease;
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file])::placeholder,
.form .acf-field textarea::placeholder,
.form .acf-field select::placeholder {
  color: var(--color-white);
  opacity: 1;
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file]):hover,
.form .acf-field textarea:hover,
.form .acf-field select:hover {
  border-color: var(--color-aqua);
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file]):focus,
.form .acf-field textarea:focus,
.form .acf-field select:focus {
  border-color: var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file]):active,
.form .acf-field textarea:active,
.form .acf-field select:active {
  border-color: var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
}
.form .acf-field input:not([type=checkbox]):not([type=radio]):not([type=file]):disabled,
.form .acf-field textarea:disabled,
.form .acf-field select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form .acf-field textarea {
  min-height: 150px;
  padding: 0.5em 1em;
}
.form .acf-field .acf-label label {
  font-weight: bold;
}
.form .acf-field[data-width="100"], .form .acf-field[data-width="50"], .form .acf-field[data-width="33"], .form .acf-field[data-width="25"] {
  width: 100% !important;
  margin: 0;
  border: none !important;
}
.form .acf-input-wrap {
  overflow: visible;
}
.form .acf-input-wrap .acf-is-appended {
  border-radius: 20px !important;
}
.form .acf-input-append {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  height: 50px;
  background-color: var(--color-teal);
  border: none;
  padding: 0.6em 1em;
  font-size: var(--fs-18);
  line-height: 1.5;
  border-radius: 0 20px 20px 0;
}

ul.acf-radio-list, ul.acf-checkbox-list {
  border: 0;
  padding: 0;
  margin: 0;
}

/* Scope everything to frontend wrapper */
.acf-repeater > table,
.acf-repeater > table > tbody,
.acf-repeater > table > thead,
.acf-repeater > table > tfoot,
.acf-repeater > table > tbody > tr,
.acf-repeater > table > tbody > tr > td {
  display: block;
  width: 100%;
  border: 0;
  background-color: var(--color-dark-grey);
}

/* Hide ACF's table header (labels per column) */
.acf-repeater > table > thead {
  display: none;
}

/* Each row becomes a "card" */
.acf-repeater > table > tbody > tr.acf-row {
  background-color: var(--color-dark-grey);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(9deg, var(--gradient-gold-aqua-teal)) border-box;
}
.acf-repeater > table > tbody > tr.acf-row:hover {
  border-color: var(--color-teal);
  border-color: color-mix(in srgb, var(--color-teal) 85%, white 15%);
  transform: translateY(-3px);
}

/* Remove default cell padding/borders */
.acf-repeater > table > tbody > tr.acf-row > td {
  padding: 0;
  background: transparent;
}

/* The main repeater fields cell */
.acf-repeater td.acf-fields {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
@media (max-width: 991.98px) {
  .acf-repeater td.acf-fields {
    row-gap: 20px;
  }
}
.acf-repeater td.acf-fields .acf-field {
  padding: 0;
}
.acf-repeater td.acf-fields .acf-field[data-width="50"] {
  border: none;
}
@media (min-width: 992px) {
  .acf-repeater td.acf-fields .acf-field[data-width="50"] {
    width: calc(50% - 10px) !important;
  }
}

/* Turn subfields into a responsive 2-col grid */
.acf-repeater td.acf-fields > .acf-table {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* like space-y / gap */
}

/* Label styling */
.acf-field > .acf-label label {
  font-weight: 500;
  margin-bottom: 0.35rem;
  opacity: 0.9;
  color: var(--color-white);
}

/* Hide order handle, per-row add, and duplicate buttons entirely */
.acf-repeater .acf-row-handle.order,
.acf-repeater .acf-row-handle [data-event=add-row],
.acf-repeater .acf-row-handle [data-event=duplicate-row],
.acf-repeater .acf-row-handle .acf-icon[class*=-duplicate] {
  display: none !important;
}

/* Make card position:relative so remove can anchor to it */
.acf-repeater > table > tbody > tr.acf-row {
  position: relative;
  padding-bottom: 50px;
}

/* Remove handle cell: hidden by default (existing rows) */
.acf-repeater .acf-row-handle.remove {
  display: none !important;
}

/* Hide remove button on already-saved rows */
.acf-repeater .bb-existing-row .acf-row-handle.remove {
  display: none !important;
}

/* Show and position remove button for new (unsaved) rows */
.acf-repeater .acf-row:not(.bb-existing-row) .acf-row-handle.remove {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.3);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  padding: 0;
}
.acf-repeater .acf-row:not(.bb-existing-row) .acf-row-handle.remove:hover {
  background-color: rgba(231, 76, 60, 0.25);
  border-color: #e74c3c;
}
.acf-repeater .acf-row:not(.bb-existing-row) .acf-row-handle.remove [data-event=remove-row] {
  display: flex !important;
  font-size: 14px;
  color: #e74c3c;
  line-height: 1;
}

/* File field -> dropzone-ish 
   Only when uploader does NOT have a value */
.acf-field-file .acf-file-uploader:not(.has-value) label,
.acf-field-image .acf-image-uploader:not(.has-value) label {
  width: 100%;
}
.acf-field-file .acf-file-uploader:not(.has-value) input[type=file],
.acf-field-image .acf-image-uploader:not(.has-value) input[type=file] {
  border: 2px dashed var(--color-teal);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  background: transparent;
  width: 100%;
  cursor: pointer;
}
.acf-field-file .acf-file-uploader:not(.has-value) input[type=file]:hover,
.acf-field-image .acf-image-uploader:not(.has-value) input[type=file]:hover {
  border-color: var(--color-azure);
}
.acf-field-file .acf-file-uploader:not(.has-value) input[type=file]::file-selector-button,
.acf-field-image .acf-image-uploader:not(.has-value) input[type=file]::file-selector-button {
  background: var(--color-teal);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.acf-field-file .acf-file-uploader:not(.has-value) input[type=file]:hover::file-selector-button,
.acf-field-image .acf-image-uploader:not(.has-value) input[type=file]:hover::file-selector-button {
  background: var(--color-azure);
}

.acf-field-file .acf-file-uploader img,
.acf-field-image .acf-image-uploader img {
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.acf-card {
  background-color: var(--color-dark-grey);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(216deg, var(--gradient-gold-aqua-teal)) border-box;
}
.acf-card:hover {
  border-color: var(--color-teal);
  border-color: color-mix(in srgb, var(--color-teal) 85%, white 15%);
  transform: translateY(-3px);
}

.bb-duration-total {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(128deg, var(--gradient-gold-aqua-teal)) border-box;
  background: var(--gradient-gold-aqua-teal-alpha-soft);
}
.bb-duration-total.is-active {
  display: flex;
}
.bb-duration-total__icon {
  font-size: 20px;
  flex-shrink: 0;
}
.bb-duration-total__label {
  font-size: var(--fs-14);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
.bb-duration-total__time {
  font-size: var(--fs-18);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-teal);
  background-image: linear-gradient(90deg, var(--gradient-gold-aqua-teal));
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .bb-duration-total__time {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.bb-duration-picker-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.bb-duration-picker-ui__fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.bb-duration-picker-ui__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767.98px) {
  .bb-duration-picker-ui__group {
    width: 100%;
  }
}
.bb-duration-picker-ui__label {
  font-size: var(--fs-14);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: default;
}
.bb-duration-picker-ui__input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(0, 158, 184, 0.45);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 158, 184, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bb-duration-picker-ui__input-wrap:focus-within {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 158, 184, 0.15);
}
.bb-duration-picker-ui__btn {
  flex: 0 0 36px;
  width: 36px;
  height: 50px;
  background: transparent;
  border: none;
  color: var(--color-teal);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}
.bb-duration-picker-ui__btn:hover {
  background: rgba(0, 158, 184, 0.18);
  color: var(--color-white);
}
.bb-duration-picker-ui__btn:active {
  background: rgba(0, 158, 184, 0.3);
}
.bb-duration-picker-ui--ms .bb-duration-picker-ui__input {
  width: 64px;
}
.bb-duration-picker-ui--steps .bb-duration-picker-ui__input, .bb-duration-picker-ui__input--wide {
  width: 88px;
}
.bb-duration-picker-ui--stacked .bb-duration-picker-ui__fields {
  flex-direction: column;
}
.bb-duration-picker-ui--stacked .bb-duration-picker-ui__group {
  width: 100%;
}
.bb-duration-picker-ui--stacked .bb-duration-picker-ui__input-wrap {
  width: 100%;
}
.bb-duration-picker-ui--stacked .bb-duration-picker-ui__input {
  flex: 1;
  width: auto;
  min-width: 0;
}
.bb-duration-picker-ui__input {
  width: 52px;
  height: 44px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: var(--fs-18);
  font-family: var(--font-main);
  text-align: center;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.bb-duration-picker-ui__input::-webkit-inner-spin-button, .bb-duration-picker-ui__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.bb-duration-picker-ui__warning {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 221, 0, 0.15);
  border: 1px solid rgba(255, 221, 0, 0.45);
  border-radius: 20px;
  color: var(--color-gold);
  font-size: var(--fs-14);
  font-weight: 600;
  width: fit-content;
}
.bb-duration-picker-ui__warning.is-visible {
  display: inline-flex;
}
.bb-duration-picker-ui__summary {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0, 158, 184, 0.12);
  border: 1px solid rgba(0, 158, 184, 0.45);
  border-radius: 20px;
  color: var(--color-teal);
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: 0.06em;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.bb-duration-picker-ui__summary.is-active {
  display: inline-flex;
}
.bb-duration-picker-ui__summary-icon {
  font-size: 15px;
}

.dog-card {
  background-color: var(--color-dark-grey);
  padding: 0px;
  margin-bottom: 20px;
  border: 2px solid var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(88deg, var(--gradient-gold-aqua-teal)) border-box;
  height: 100%;
}
.dog-card:hover {
  border-color: var(--color-teal);
  border-color: color-mix(in srgb, var(--color-teal) 85%, white 15%);
  transform: translateY(-3px);
}
.dog-card__hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-image: var(--gradient-gold-aqua-teal-alpha-soft);
  border-radius: 20px 20px 0 0;
}
.dog-card__hero-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.dog-card__avatar-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 20px;
}
.dog-card__avatar {
  width: 160px;
  height: 160px;
  flex: 160px 0 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-teal);
  background: var(--color-dark-grey);
}
@media (max-width: 991.98px) {
  .dog-card__avatar {
    width: 80px;
    height: 80px;
    flex: 80px 0 0;
  }
}
.dog-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dog-card__switch-input {
  width: 3rem !important;
  height: 1.5rem !important;
}
.dog-card__switch-input:checked {
  background-color: var(--color-lime);
  border-color: var(--color-lime);
  margin: 0;
}
.dog-card__body {
  padding: 20px;
}
.dog-card__status-badge {
  border: 1px solid rgba(255, 20, 20, 0.45);
  background: rgba(255, 20, 20, 0.15);
  color: var(--color-lime);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dog-card__status-badge.dog-active {
  border-color: rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.15);
}
.dog-card__icon-chip {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dog-card__icon-chip--blue {
  background: rgba(47, 123, 255, 0.18);
  color: var(--color-teal);
}
.dog-card__icon-chip--yellow {
  background: rgba(255, 216, 77, 0.18);
  color: var(--color-yellow);
}
.dog-card__icon-chip--green {
  background: rgba(57, 255, 20, 0.18);
  color: var(--color-lime);
}
.dog-card__note {
  border: 1px solid #495057;
  background: rgba(31, 41, 55, 0.55);
  border-radius: 1rem;
  padding: 20px;
}

.submission-card {
  background-color: var(--color-dark-grey);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(194deg, var(--gradient-gold-aqua-teal)) border-box;
  height: 100%;
}
.submission-card:hover {
  border-color: var(--color-teal);
  border-color: color-mix(in srgb, var(--color-teal) 85%, white 15%);
  transform: translateY(-3px);
}
.submission-card__status-badge {
  border: 1px solid rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.15);
  color: var(--color-lime);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.submission-card__icon-chip {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.submission-card__icon-chip--blue {
  background: rgba(47, 123, 255, 0.18);
  color: var(--color-teal);
}
.submission-card__icon-chip--yellow {
  background: rgba(255, 216, 77, 0.18);
  color: var(--color-yellow);
}
.submission-card__icon-chip--green {
  background: rgba(57, 255, 20, 0.18);
  color: var(--color-lime);
}
.submission-card__note {
  border: 1px solid #495057;
  background: rgba(31, 41, 55, 0.55);
  border-radius: 1rem;
}
.submission-card__select.form-select, .submission-card__select {
  background-color: rgba(0, 158, 184, 0.12);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.submission-card__select.form-select:focus, .submission-card__select:focus {
  background-color: rgba(0, 158, 184, 0.12);
  border-color: rgba(0, 158, 184, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 158, 184, 0.15);
  color: rgba(255, 255, 255, 0.9);
  outline: none;
}
.submission-card__select.form-select option, .submission-card__select option {
  background: #1c2126;
  color: rgba(255, 255, 255, 0.9);
}
.submission-card__open-btn {
  transition: all 0.2s ease-in-out !important;
}
.submission-card__open-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.window-card__badge {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.window-card__badge--open {
  border: 1px solid rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.15);
  color: var(--color-lime);
}
.window-card__badge--closed {
  border: 1px solid rgba(255, 20, 20, 0.45);
  background: rgba(255, 20, 20, 0.15);
  color: var(--color-lime);
}
.window-card__badge--upcoming {
  border: 1px solid rgba(255, 165, 0, 0.45);
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
}

.bb-leaderboard {
  color: var(--color-white);
}
.bb-leaderboard__panel {
  background-color: var(--color-dark-grey);
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--color-teal);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15), 12px 12px 20px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark-grey), var(--color-dark-grey)) padding-box, linear-gradient(356deg, var(--gradient-gold-aqua-teal)) border-box;
  margin-bottom: 0;
  background: color-mix(in srgb, var(--color-dark-grey) 94%, #000 6%);
  border-color: var(--color-teal);
}
.bb-leaderboard__panel:hover {
  border-color: var(--color-teal);
  border-color: color-mix(in srgb, var(--color-teal) 85%, white 15%);
  transform: translateY(-3px);
}
@media (min-width: 992px) {
  .bb-leaderboard__panel--sticky {
    position: sticky;
    top: 20px;
  }
}
.bb-leaderboard__filters {
  height: fit-content;
}
.bb-leaderboard__filters-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
}
@media (min-width: 992px) {
  .bb-leaderboard__filters-toggle {
    display: none;
  }
}
.bb-leaderboard__filters-toggle:focus-visible {
  outline: 2px solid rgba(0, 158, 184, 0.45);
  outline-offset: 2px;
}
.bb-leaderboard__filters-toggle-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, color 0.2s ease;
}
.bb-leaderboard__filters-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding-top: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding-top 0.2s ease;
}
@media (min-width: 992px) {
  .bb-leaderboard__filters-body {
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    padding-top: 0;
  }
}
.bb-leaderboard__filters.is-open .bb-leaderboard__filters-body {
  max-height: 2000px;
  opacity: 1;
  pointer-events: auto;
  padding-top: 16px;
}
.bb-leaderboard__filters.is-open .bb-leaderboard__filters-toggle-icon {
  transform: rotate(180deg);
  color: var(--color-teal);
}
.bb-leaderboard__filter-row .select2-container {
  width: 100% !important;
}
.bb-leaderboard__header {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bb-leaderboard__label {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-14);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bb-leaderboard__input, .bb-leaderboard__input-addon, .bb-leaderboard__select {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}
.bb-leaderboard__input:focus, .bb-leaderboard__input-addon:focus, .bb-leaderboard__select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 158, 184, 0.45);
  box-shadow: none;
  color: var(--color-white);
}
.bb-leaderboard__input:disabled {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.bb-leaderboard__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.bb-leaderboard__select {
  width: 100%;
}
.bb-leaderboard__select option {
  color: var(--color-white);
  background: var(--color-dark-grey);
}
.bb-leaderboard__date::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.75);
  cursor: pointer;
}
.bb-leaderboard__checklist {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.bb-leaderboard__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.bb-leaderboard__check-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.bb-leaderboard__check-item .form-check-input {
  margin-top: 0;
  margin-left: 0;
  float: none;
  width: 16px;
  height: 16px;
  border-color: rgba(255, 255, 255, 0.28);
  background-color: transparent;
  box-shadow: none;
}
.bb-leaderboard__check-item .form-check-input:checked {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
}
.bb-leaderboard__check-item .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 158, 184, 0.15);
  border-color: rgba(0, 158, 184, 0.45);
}
.bb-leaderboard__check-item .form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-14);
  line-height: 1.2;
  cursor: pointer;
}
.bb-leaderboard__ghost-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
}
.bb-leaderboard__ghost-btn:hover, .bb-leaderboard__ghost-btn:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}
.bb-leaderboard__ghost-btn:disabled {
  opacity: 0.7;
}
.bb-leaderboard__seg-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-14);
  padding: 10px 8px;
}
.bb-leaderboard__seg-btn:hover, .bb-leaderboard__seg-btn:focus {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.18);
}
.bb-leaderboard__seg-btn.is-active {
  background: rgba(0, 158, 184, 0.12);
  border-color: rgba(0, 158, 184, 0.45);
  color: var(--color-teal);
}
.bb-leaderboard__summary {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gradient-gold-aqua-teal-alpha-soft);
}
.bb-leaderboard__summary-label {
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}
.bb-leaderboard__summary-value {
  font-size: var(--fs-28);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 4px;
}
.bb-leaderboard__summary-help, .bb-leaderboard__muted {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-14);
}
.bb-leaderboard__filter-info {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bb-leaderboard__filter-info::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .bb-leaderboard__filter-info {
    overflow-x: visible;
  }
}
.bb-leaderboard__filter-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
@media (min-width: 992px) {
  .bb-leaderboard__filter-badges {
    flex-wrap: wrap;
  }
}
.bb-leaderboard__filter-chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}
.bb-leaderboard__chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 14px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.2;
  white-space: nowrap;
  gap: 4px;
}
.bb-leaderboard__chip.bb-leaderboard__filter-chip strong {
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-teal);
  font-weight: 700;
  margin-right: 0;
}
.bb-leaderboard__chip.bb-leaderboard__filter-chip span {
  font-size: var(--fs-14);
  font-weight: 400;
}
.bb-leaderboard__results {
  overflow: hidden;
  padding-bottom: 0;
}
.bb-leaderboard__table-wrap {
  display: none;
}
@media (min-width: 992px) {
  .bb-leaderboard__table-wrap {
    display: block;
  }
}
@media (min-width: 992px) {
  .bb-leaderboard__mobile-wrap {
    display: none !important;
  }
}
.bb-leaderboard__table {
  --bs-table-bg: transparent !important;
  --bs-table-color: var(--color-white) !important;
  --bs-table-border-color: rgba(255, 255, 255, 0.08) !important;
}
.bb-leaderboard__table thead th {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom-width: 1px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.bb-leaderboard__table tbody tr {
  transition: background-color 0.2s ease;
}
.bb-leaderboard__table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.bb-leaderboard__table td {
  padding-top: 14px;
  padding-bottom: 14px;
  background: transparent;
}
.bb-leaderboard__rank span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}
.bb-leaderboard__rank.is-gold span {
  background: rgba(255, 221, 0, 0.15);
  border-color: rgba(255, 221, 0, 0.45);
  color: var(--color-yellow);
}
.bb-leaderboard__rank.is-gold .fa-trophy {
  color: #FFD700;
  opacity: 1;
}
.bb-leaderboard__rank.is-silver span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.bb-leaderboard__rank.is-silver .fa-trophy {
  color: #C0C0C0;
  opacity: 1;
}
.bb-leaderboard__rank.is-bronze span {
  background: rgba(253, 196, 0, 0.12);
  border-color: rgba(253, 196, 0, 0.32);
  color: var(--color-gold);
}
.bb-leaderboard__rank.is-bronze .fa-trophy {
  color: #CD7F32;
  opacity: 1;
}
.bb-leaderboard__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bb-leaderboard__mobile-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #0d1e2b;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(var(--color-white), 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.bb-leaderboard__mobile-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--color-teal), 0.4);
}
.bb-leaderboard__mobile-rank-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  border-right: 0;
  margin-right: 16px;
  padding-right: 0;
}
.bb-leaderboard__mobile-rank-box .fa-trophy {
  font-size: var(--fs-12);
  margin-bottom: 2px;
  color: rgba(var(--color-white), 0.4);
}
.bb-leaderboard__mobile-rank-box.is-gold .fa-trophy {
  color: #FFD700;
  opacity: 1;
}
.bb-leaderboard__mobile-rank-box.is-silver .fa-trophy {
  color: #C0C0C0;
  opacity: 1;
}
.bb-leaderboard__mobile-rank-box.is-bronze .fa-trophy {
  color: #CD7F32;
  opacity: 1;
}
.bb-leaderboard__mobile-rank-box .rank-num {
  font-size: var(--fs-14);
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
  font-family: "Outfit", sans-serif;
}
.bb-leaderboard__mobile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(var(--color-white), 0.05);
  margin-right: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(var(--color-white), 0.1);
}
.bb-leaderboard__mobile-avatar .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--color-teal), 0.2), transparent);
  font-size: var(--fs-18);
  color: rgba(var(--color-white), 0.2);
}
.bb-leaderboard__mobile-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  padding-right: 0;
  gap: 2px;
}
.bb-leaderboard__mobile-name {
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-leaderboard__mobile-sub {
  font-size: var(--fs-14);
  color: rgba(var(--color-white), 0.4);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-leaderboard__mobile-points-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-left: 0;
  border: 0;
  box-shadow: none;
}
.bb-leaderboard__mobile-points-box .points-val {
  font-size: var(--fs-14);
  color: var(--color-white);
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.bb-leaderboard__mobile-info-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(var(--color-white), 0.2);
  font-size: var(--fs-16);
  transition: color 0.2s ease;
}
.bb-leaderboard__mobile-item:hover .bb-leaderboard__mobile-info-icon {
  color: var(--color-teal);
}
.bb-leaderboard__popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-black), 0.7);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bb-leaderboard__popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.bb-leaderboard__popup-card {
  background: linear-gradient(160deg, var(--color-dark-grey) 0%, color-mix(in srgb, var(--color-dark-grey), #000 30%) 100%);
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(var(--color-teal), 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-visible .bb-leaderboard__popup-card {
  transform: scale(1) translateY(0);
}
.bb-leaderboard__popup-header {
  background: linear-gradient(135deg, rgba(var(--color-teal), 0.15), transparent);
  padding: 24px;
  border-bottom: 1px solid rgba(var(--color-white), 0.08);
  display: flex;
  align-items: center;
}
.bb-leaderboard__popup-header .bb-leaderboard__mobile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.bb-leaderboard__popup-header .bb-leaderboard__mobile-name {
  font-size: var(--fs-18);
  margin-bottom: 4px;
}
.bb-leaderboard__popup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bb-leaderboard__popup-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bb-leaderboard__popup-row label {
  font-size: var(--fs-12);
  text-transform: uppercase;
  color: var(--color-teal);
  font-weight: 800;
  opacity: 0.9;
}
.bb-leaderboard__popup-row .val {
  font-size: var(--fs-14);
  color: rgba(var(--color-white), 0.95);
  font-weight: 600;
  line-height: 1.4;
}
.bb-leaderboard__popup-row .val strong {
  font-size: var(--fs-16);
  color: var(--color-white);
  font-family: "Outfit", sans-serif;
}
.bb-leaderboard__popup-close {
  width: 100%;
  padding: 18px;
  background: rgba(var(--color-white), 0.03);
  border: 0;
  border-top: 1px solid rgba(var(--color-white), 0.08);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--fs-12);
  cursor: pointer;
  transition: background 0.2s ease;
}
.bb-leaderboard__popup-close:hover {
  background: rgba(var(--color-teal), 0.1);
  color: var(--color-teal);
}
.bb-leaderboard__points {
  color: var(--color-teal);
}
.bb-leaderboard__empty {
  margin-top: 4px;
  border: 1px solid rgba(0, 158, 184, 0.45);
  background: rgba(0, 158, 184, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
}
.bb-leaderboard__pagination {
  margin-bottom: 16px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .bb-leaderboard__pagination {
    flex-wrap: nowrap;
  }
}
.bb-leaderboard__pagination .btn {
  white-space: nowrap;
}
.bb-leaderboard__pagination #bb-leaderboard-prev,
.bb-leaderboard__pagination #bb-leaderboard-next {
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .bb-leaderboard__pagination #bb-leaderboard-prev,
  .bb-leaderboard__pagination #bb-leaderboard-next {
    flex: 0 0 auto;
  }
}
.bb-leaderboard__pagination #bb-leaderboard-page-info {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .bb-leaderboard__pagination #bb-leaderboard-page-info {
    width: auto;
  }
}
.bb-leaderboard__pagination .page-link {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: var(--fs-14);
  transition: all 0.2s ease;
}
.bb-leaderboard__pagination .page-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}
.bb-leaderboard__pagination .page-link.active {
  background: rgba(0, 158, 184, 0.12);
  border-color: rgba(0, 158, 184, 0.45);
  color: var(--color-teal);
}
.bb-leaderboard__pagination .page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bb-leaderboard__pagination .page-link.disabled:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.bb-cert__accordion {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bb-cert__accordion.is-open {
  border-color: rgba(0, 158, 184, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.bb-cert__accordion-header {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
.bb-cert__accordion-header:not(.bb-cert__product-header):hover {
  background: rgba(255, 255, 255, 0.05);
}
.bb-cert__accordion-header:focus-visible {
  outline: 2px solid rgba(0, 158, 184, 0.45);
  outline-offset: 2px;
}
.bb-cert__accordion-caret {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bb-cert__accordion.is-open > .bb-cert__accordion-header .bb-cert__accordion-caret {
  transform: rotate(180deg);
  color: var(--color-teal);
  background: rgba(0, 158, 184, 0.12);
  border-color: rgba(0, 158, 184, 0.45);
}
.bb-cert__accordion-content {
  background: transparent;
}
.bb-cert__header-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bb-cert__product-header, .bb-cert__challenge-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .bb-cert__product-header, .bb-cert__challenge-header {
    flex-direction: row;
    align-items: center;
  }
}
.bb-cert__product-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bb-cert__product-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-aqua), var(--color-teal));
}
.bb-cert__product-icon--gold {
  background: linear-gradient(135deg, var(--color-teal), var(--color-gold));
}
.bb-cert__challenge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  overflow: hidden;
}
.bb-cert__challenge-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bb-cert__window {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.bb-cert__window-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
@media (min-width: 576px) {
  .bb-cert__window-header {
    flex-direction: row;
    align-items: center;
  }
}
.bb-cert__window-header-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bb-cert__attempt {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.bb-cert__attempt:hover {
  border-color: rgba(0, 158, 184, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}
.bb-cert__attempt-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bb-cert__attempt-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}
.bb-cert__attempt-content {
  width: 100%;
}
.bb-cert__attempt-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .bb-cert__attempt-btn {
    width: fit-content;
  }
}

.select2-container .select2-selection,
.select2-container .select2-dropdown {
  border: 2px solid var(--color-teal);
  background: var(--color-dark-grey);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
}
.select2-container .select2-selection input,
.select2-container .select2-dropdown input {
  border: 2px solid var(--color-teal) !important;
  background: var(--color-dark-grey);
  color: white;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background: var(--color-dark-grey);
}
.select2-container--default .select2-results__option[data-selected=true] {
  background: var(--color-teal);
}
.select2-container--default .select2-results > .select2-results__options li:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.bb-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.bb-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.bb-modal {
  background: var(--color-dark-grey);
  border: 1px solid rgba(0, 158, 184, 0.45);
  border-radius: 20px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.bb-modal-backdrop.is-active .bb-modal {
  transform: translateY(0) scale(1);
}
.bb-modal--sm {
  max-width: 400px;
}
.bb-modal--md {
  max-width: 600px;
}
.bb-modal--lg {
  max-width: 900px;
}
.bb-modal--xl {
  max-width: 1140px;
}
.bb-modal--full {
  max-width: 95vw;
  height: 95vh;
}
.bb-modal__header, .bb-modal__footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
}
.bb-modal__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-between;
}
.bb-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-teal);
}
.bb-modal__close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 8px;
}
.bb-modal__close:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}
.bb-modal__close svg {
  width: 24px;
  height: 24px;
}
.bb-modal__body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.bb-modal__body::-webkit-scrollbar {
  width: 6px;
}
.bb-modal__body::-webkit-scrollbar-track {
  background: transparent;
}
.bb-modal__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.bb-modal__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: flex-end;
  gap: 12px;
}
.bb-modal__btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.bb-modal__btn--primary {
  background: linear-gradient(135deg, var(--color-teal), #00768a);
  color: var(--color-white);
  border: none;
}
.bb-modal__btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.bb-modal__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
}
.bb-modal__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.bb-teamname-wrap {
  position: relative;
}
.bb-teamname-wrap input[type=text] {
  padding-right: 45px;
}
.bb-teamname-wrap .bb-teamname-restore {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-teal);
  transition: color 0.2s ease, opacity 0.2s ease;
  border-radius: 0 20px 20px 0;
}
.bb-teamname-wrap .bb-teamname-restore:hover {
  color: var(--color-white);
}

.submission-breadcrumb {
  margin-bottom: 25px;
}
.submission-breadcrumb .breadcrumb {
  background: transparent;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.submission-breadcrumb .breadcrumb-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
}
.submission-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.submission-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-teal);
}
.submission-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 12px;
}
.submission-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  padding-right: 12px;
  float: none;
  display: inline-block;
}
.submission-breadcrumb .breadcrumb-item.active {
  color: var(--color-teal);
  font-weight: 600;
}

.bb-submission-details {
  margin-top: 1rem;
}
.bb-submission-details__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .bb-submission-details__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.bb-submission-details__badge {
  display: inline-block;
  background: rgba(0, 158, 184, 0.12);
  border: 1px solid rgba(0, 158, 184, 0.45);
  color: #00d3ff;
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.bb-submission-details__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.bb-submission-details__header-metric {
  text-align: right;
}
@media (max-width: 768px) {
  .bb-submission-details__header-metric {
    text-align: left;
  }
}
.bb-submission-details__metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #00d3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.bb-submission-details__metric-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bb-submission-details__note {
  padding: 1rem 1.5rem;
}
.bb-submission-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.bb-submission-details__card {
  position: relative;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}
.bb-submission-details__card:hover {
  transform: translateY(-4px);
}
.bb-submission-details__dog-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}
.bb-submission-details__dog-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.bb-submission-details__section {
  position: relative;
}

.bb-proof-card {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}
.bb-proof-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.bb-proof-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bb-proof-card__image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
  transition: opacity 0.3s ease;
}
.bb-proof-card:hover .bb-proof-card__image-wrap img {
  transform: scale(1.08);
}
.bb-proof-card__metric-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 211, 255, 0.15);
  border: 1px solid rgba(0, 211, 255, 0.45);
  color: #616161;
  border-radius: 2rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.bb-proof-card__metric-badge i {
  font-size: 0.75rem;
}
.bb-proof-card__footer {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.01);
}

/*# sourceMappingURL=style.css.map */
