.jsb,
.jsb-form {
  --jsb-bg: #ffffff;
  --jsb-text: #0b1220;
  --jsb-muted: #5b6472;
  --jsb-border: #e5e7eb;
  --jsb-soft: #f8fafc;
  --jsb-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  --jsb-radius: 7px;
  --jsb-radius-sm: 7px;
  --jsb-gap: 12px;
  --jsb-focus: 0 0 0 4px rgba(2, 132, 199, .22);

  --jsb-logo-card-max-h: 120px;
  --jsb-logo-profile-max-h: var(--jsb-logo-card-max-h);

  --jsb-black: #0b1220;
  --jsb-blue: #0b6bd6;
  --jsb-green: #0f9a4a;
  --jsb-yellow: #f4b400;

  --jsb-primary: #00857C;
  --jsb-primary-hover: #00665F;

  --jsb-filter: #F15A24;
  --jsb-filter-hover: #CF3700;
  --jsb-success: var(--jsb-green);
  --jsb-warn: var(--jsb-yellow);
  --jsb-danger: #ef4444;

  --jsb-control-h: 44px;
  font-family: "PT Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.jsb,
.jsb *,
.jsb-form,
.jsb-form * {
  font-family: "PT Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.jsb-more-item.is-hidden {
  display: none;
}

.jsb-btn,
.jsb-tab,
.jsb-pill,
.jsb-page,
.jsb-ac-item {
  font: inherit;
}

.jsb,
.jsb * {
  box-sizing: border-box;
}

.jsb a {
  color: inherit;
  text-decoration: none;
}

.jsb-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.jsb-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.jsb-title h1,
.jsb-title h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--jsb-text);
}

.jsb-sub {
  color: var(--jsb-muted);
  font-size: 13px;
}

.jsb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--jsb-control-h);
  padding: 0 14px;
  border-radius: var(--jsb-radius-sm);
  color: #ffffff !important;
  border: 1px solid var(--jsb-primary);
  background: var(--jsb-primary);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: transform .06s ease, box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-btn:active {
  transform: translateY(1px);
}

.jsb-btn:focus-visible {
  outline: none;
  box-shadow: var(--jsb-focus);
}

button.jsb-btn,
.jsb-btn[type="button"],
.jsb-btn[type="submit"] {
  background: var(--jsb-primary);
  border-color: var(--jsb-primary);
  color: #ffffff !important;
}

button.jsb-btn:hover,
.jsb-btn[type="button"]:hover,
.jsb-btn[type="submit"]:hover {
  background: var(--jsb-primary-hover);
  border-color: var(--jsb-primary-hover);
  color: #ffffff !important;
}

a.jsb-btn {
  background: var(--jsb-primary);
  border-color: var(--jsb-primary);
  color: #ffffff !important;
}

a.jsb-btn:hover {
  background: var(--jsb-primary-hover);
  border-color: var(--jsb-primary-hover);
  color: #ffffff !important;
}

.jsb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--jsb-gap);
}

@media (max-width:900px) {
  .jsb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .jsb-grid {
    grid-template-columns: 1fr;
  }
}

.jsb-card {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: var(--jsb-bg);
  padding: 14px;
  box-shadow: var(--jsb-shadow);
  cursor: pointer;
}

.jsb-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--jsb-text);
  font-weight: 700;
}

.jsb-card .jsb-muted {
  font-size: 18px;
}

.jsb-muted {
  color: var(--jsb-muted);
  font-size: 13px;
}

.jsb-info {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 14px;
  margin-bottom: 12px;
}

.jsb-info h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--jsb-text);
}

.jsb-klassen h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--jsb-text);
}

.jsb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.jsb-tab {
  border: 1px solid rgba(11, 18, 32, .9);
  border-radius: 7px;
  padding: 10px 12px;
  background: #ffffff;
  color: rgba(11, 18, 32, .9) !important;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-tab:hover {
  filter: brightness(.98);
}

.jsb-tab[aria-current="page"] {
  background: rgba(11, 18, 32, 1);
  color: #ffffff !important;
  border-color: rgba(11, 18, 32, 1);
  font-size: 15px;
  font-weight: 700;
}

.jsb-tab:focus-visible {
  outline: none;
  box-shadow: var(--jsb-focus);
}

.jsb-list {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: var(--jsb-bg);
  overflow: hidden;
}

.jsb-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid #f1f5f9;
}

.jsb-item:first-child {
  border-top: none;
}

.jsb-item strong {
  font-size: 14px;
}

.jsb-empty {
  padding: 14px;
  color: var(--jsb-muted);
}

.jsb-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 18, 32, .8);
  background: #ffffff;
  color: rgba(11, 18, 32, .8) !important;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  margin: 4px 6px 0 0;
  transition: box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-pill:hover {
  background: var(--jsb-primary-hover);
  border-color: var(--jsb-primary);
  color: #ffffff !important;
}

.jsb-pill:focus-visible {
  outline: none;
  box-shadow: var(--jsb-focus);
}

.jsb-hr {
  height: 1px;
  background: #eef2f7;
  margin: 12px 0;
}

.jsb-filters {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 14px;
  margin-bottom: 12px;
}

.jsb-filters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.jsb-filters-grid:has(.jsb-field--actions),
.jsb-filters-grid.has-actions {
  grid-template-columns: 2fr 1fr 1fr auto;
}

@media (max-width:900px) {

  .jsb-filters-grid,
  .jsb-filters-grid:has(.jsb-field--actions),
  .jsb-filters-grid.has-actions {
    grid-template-columns: 1fr;
  }
}

.jsb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.jsb-field label {
  font-size: 12px;
  color: var(--jsb-muted);
}

.jsb-input,
.jsb-select,
.jsb input[type="text"],
.jsb input[type="email"],
.jsb input[type="tel"],
.jsb input[type="number"],
.jsb input[type="search"],
.jsb select,
.jsb textarea,
.jsb-form .jsb-control,
.jsb-form input[type="text"],
.jsb-form input[type="email"],
.jsb-form input[type="tel"],
.jsb-form input[type="number"],
.jsb-form input[type="search"],
.jsb-form select,
.jsb-form textarea {
  width: 100%;
  min-height: var(--jsb-control-h);
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: var(--jsb-radius-sm);
  padding: 10px 12px;
  background: var(--jsb-bg);
  font: inherit;
  color: var(--jsb-text);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.jsb input[type="search"].jsb-input,
.jsb-form input[type="search"].jsb-input {
  -webkit-appearance: none;
  appearance: none;
}

.jsb textarea,
.jsb-form textarea {
  min-height: 110px;
  resize: vertical;
}

.jsb-input:hover,
.jsb-select:hover,
.jsb input:hover,
.jsb select:hover,
.jsb textarea:hover,
.jsb-form .jsb-control:hover,
.jsb-form input:hover,
.jsb-form select:hover,
.jsb-form textarea:hover {
  border-color: rgba(11, 18, 32, 1);
}

.jsb-input:focus,
.jsb-select:focus,
.jsb input:focus,
.jsb select:focus,
.jsb textarea:focus,
.jsb-form .jsb-control:focus,
.jsb-form input:focus,
.jsb-form select:focus,
.jsb-form textarea:focus {
  outline: none;
  box-shadow: var(--jsb-focus);
  border-color: rgba(11, 107, 214, 1);
}

.jsb input[aria-invalid="true"],
.jsb select[aria-invalid="true"],
.jsb textarea[aria-invalid="true"],
.jsb-form .wpcf7-not-valid {
  border-color: var(--jsb-danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .14);
}

.jsb-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.jsb-check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--jsb-text);
}

.jsb-check input {
  width: 16px;
  height: 16px;
}

.jsb-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jsb-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 18, 32, .8);
  background: #ffffff !important;
  color: rgba(11, 18, 32, .8);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  transition: box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-badge:hover {
  background: var(--jsb-primary-hover);
  border-color: var(--jsb-primary);
  color: var(--jsb-primary);
}

.jsb-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  /* flex-direction: column; */
}

.jsb-field--actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.jsb [aria-busy="true"] {
  opacity: .7;
  pointer-events: none;
}

@media (max-width:640px) {
  .jsb-top {
    flex-direction: column;
  }

  .jsb-btn {
    width: 100%;
  }
}

.jsb-more-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.jsb-form {
  font-family: "PT Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  color: var(--jsb-text);
  font-size: 16px;
  line-height: 1.4;
}

.jsb-form .jsb-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 180, 0, .35);
  background: rgba(244, 180, 0, .10);
  border-radius: var(--jsb-radius);
  color: var(--jsb-text);
}

.jsb-form .jsb-req {
  color: var(--jsb-danger);
  font-weight: 700;
}

.jsb-form .jsb-fieldset {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 14px;
  margin: 0 0 12px;
  box-shadow: var(--jsb-shadow);
}

.jsb-form .jsb-legend {
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--jsb-text);
  font-size: 14px;
}

.jsb-form .jsb-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.jsb-form .jsb-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.jsb-form .jsb-grid--3:has(> .jsb-btn),
.jsb-form .jsb-grid--3:has(> .jsb-field--actions) {
  grid-template-columns: 2fr 1fr 1fr auto;
}

.jsb-form .jsb-grid--3:has(> .jsb-btn)>.jsb-btn {
  width: auto;
  min-width: 140px;
  justify-self: end;
  align-self: end;
}

.jsb-form .jsb-grid--3:has(> .jsb-field--actions)>.jsb-field--actions {
  grid-column: 4;
  justify-self: end;
  align-self: end;
  min-width: 140px;
}

@media (max-width:900px) {
  .jsb-form .jsb-grid--3 {
    grid-template-columns: 1fr;
  }

  .jsb-form .jsb-grid--3:has(> .jsb-btn),
  .jsb-form .jsb-grid--3:has(> .jsb-field--actions) {
    grid-template-columns: 1fr;
  }

  .jsb-form .jsb-grid--3:has(> .jsb-btn)>.jsb-btn,
  .jsb-form .jsb-grid--3:has(> .jsb-field--actions)>.jsb-field--actions {
    grid-column: auto;
    justify-self: stretch;
    min-width: 0;
    width: 100%;
  }
}

.jsb-form .jsb-mt {
  margin-top: 12px;
}

.jsb-form .jsb-cell {
  margin: 0;
}

.jsb-form .jsb-label {
  display: block;
  font-weight: 700;
  color: var(--jsb-text);
  font-size: 13px;
}

.jsb-form #jsb-boerse.is-placeholder {
  color: rgba(11, 18, 32, .55);
}

.jsb-form #jsb-boerse option {
  color: var(--jsb-text);
}

.jsb-form #jsb-boerse option:disabled {
  color: rgba(11, 18, 32, .55);
}

.jsb-form .jsb-options .wpcf7-list-item {
  margin: 0 10px 10px 0;
}

.jsb-form .jsb-options .wpcf7-list-item label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: var(--jsb-control-h);
  padding: 0 14px;
  border: 1px solid rgba(11, 18, 32, .8);
  border-radius: 999px;
  background: #ffffff !important;
  color: rgba(11, 18, 32, .8);
  cursor: pointer;
  user-select: none;
  transition: box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-form .jsb-options .wpcf7-list-item label:hover {
  background: var(--jsb-primary-hover);
  border-color: var(--jsb-primary);
  color: #ffffff !important;
}

.jsb-form .jsb-options input[type="checkbox"],
.jsb-form .jsb-options input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--jsb-black);
}

.jsb-form .jsb-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  overflow: hidden;
  background: #ffffff !important;
}

.jsb-form .jsb-table th,
.jsb-form .jsb-table td {
  border-right: 1px solid var(--jsb-border);
  border-bottom: 1px solid var(--jsb-border);
  padding: 12px 10px;
  vertical-align: top;
}

.jsb-form .jsb-table th:last-child,
.jsb-form .jsb-table td:last-child {
  border-right: 0;
}

.jsb-form .jsb-table tbody tr:last-child td {
  border-bottom: 0;
}

.jsb-form .jsb-table th {
  font-weight: 800;
  text-align: left;
  background: linear-gradient(180deg, rgba(11, 18, 32, .05) 0%, rgba(244, 180, 0, .10) 100%);
  font-size: 13px;
}

.jsb-form .jsb-other {
  margin: 10px 0 0;
}

.jsb-form .wpcf7-not-valid-tip {
  color: var(--jsb-danger);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 700;
}

.jsb-form .jsb-submit,
.jsb-form input[type="submit"].jsb-submit,
.jsb-form .wpcf7-submit.jsb-submit {
  width: 100%;
  min-height: calc(var(--jsb-control-h) + 4px);
  border-radius: var(--jsb-radius);
  padding: 12px 16px;
  font-size: 15px;
  color: #ffffff !important;
  border: 1px solid var(--jsb-primary);
  background: var(--jsb-primary);
  cursor: pointer;
  transition: transform .05s ease, box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.jsb-form .jsb-submit:hover {
  filter: brightness(.95);
  box-shadow: 0 0 0 5px rgba(0, 133, 124, .18);
}

.jsb-form .jsb-submit:active {
  transform: translateY(1px);
}

.jsb-form .jsb-submit:focus-visible {
  outline: none;
  box-shadow: var(--jsb-focus);
}

@media (max-width:640px) {
  .jsb-form .jsb-fieldset {
    padding: 12px;
  }
}

.jsb-field--search {
  position: relative;
}

.jsb-ac {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  border-radius: var(--jsb-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  max-height: 320px;
  overflow: auto;
  color: black !important;
}

.jsb-ac-item {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.jsb-ac-item:hover,
.jsb-ac-item.is-active {
  background: rgba(0, 0, 0, .04);
}

.jsb-ac-badge {
  font-size: 12px;
  opacity: .75;
  min-width: 86px;
}

.jsb-ac-text {
  min-width: 0;
}

.jsb-form .jsb-error {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #b91c1c;
}

.jsb-form .jsb-classes {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.jsb-form .jsb-class-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

@media (max-width:900px) {
  .jsb-form .jsb-class-row {
    grid-template-columns: 1fr;
  }
}

.jsb-form .jsb-class-row .jsb-field--actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.jsb-form .jsb-class-row .jsb-field--actions .jsb-btn {
  width: 100%;
}

.jsb-form .jsb-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jsb-item strong a {
  color: var(--jsb-text) !important;
}

.jsb-item strong a:hover {
  color: var(--jsb-primary) !important;

}

.jsb .jsb-btn,
.jsb-form .jsb-btn {
  height: var(--jsb-control-h);
  min-height: var(--jsb-control-h);
  line-height: 1;
  padding: 0 14px;
}

.jsb .jsb-input,
.jsb .jsb-select,
.jsb-form .jsb-input,
.jsb-form .jsb-select {
  height: var(--jsb-control-h);
  min-height: var(--jsb-control-h);
  line-height: 1.2;
}

.jsb .jsb-input,
.jsb-form .jsb-input {
  padding: 0 12px;
}

.jsb .jsb-select,
.jsb-form .jsb-select {
  padding: 0 12px;
  -webkit-appearance: none;
  appearance: none;
}

.jsb textarea,
.jsb-form textarea {
  height: auto;
  min-height: 110px;
  padding: 10px 12px;
}

.jsb .jsb-btn {
  height: var(--jsb-control-h) !important;
}

.jsb-actions-row {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

@media (max-width:640px) {
  .jsb-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .jsb-actions-row .jsb-btn {
    width: 100%;
  }
}

.jsb-filters-grid--mt {
  margin-top: 10px;
}

.jsb .jsb-field--actions button.jsb-btn,
.jsb-form .jsb-field--actions button.jsb-btn {
  background: #ffffff;
  color: var(--jsb-primary) !important;
  border-color: var(--jsb-primary);
}

.jsb .jsb-field--actions button.jsb-btn:hover,
.jsb-form .jsb-field--actions button.jsb-btn:hover {
  background: var(--jsb-primary-hover);
  color: #ffffff !important;
  border-color: var(--jsb-primary-hover);
}

.jsb-filters .jsb-btn,
.jsb-filters .jsb-btn[type="button"],
.jsb-filters .jsb-btn[type="submit"] {
  background: var(--jsb-filter);
  border-color: var(--jsb-filter);
  color: #ffffff !important;
}

.jsb-filters .jsb-btn:hover,
.jsb-filters .jsb-btn[type="button"]:hover,
.jsb-filters .jsb-btn[type="submit"]:hover {
  background: var(--jsb-filter-hover);
  border-color: var(--jsb-filter-hover);
  color: #ffffff !important;
}

.jsb-grid .jsb-card:hover {
  border-color: rgba(241, 90, 36, .55);
}

.jsb-card--scroll {
  height: 350px;
  display: flex;
  flex-direction: column;
}

.jsb-card--scroll .jsb-card__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 0;
}

.jsb-card--scroll .jsb-card__body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.jsb-card--scroll .jsb-card__body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .06);
  border-radius: 999px;
}

.jsb-card--scroll .jsb-card__body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .22);
  border-radius: 999px;
}

.jsb-card--scroll .jsb-card__body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .30);
}

.jsb-filters-grid--fairs {
  grid-template-columns: 2fr 1fr 1fr auto;
}

@media (max-width:900px) {
  .jsb-filters-grid--fairs {
    grid-template-columns: 1fr;
  }
}

.jsb-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.jsb-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 12px;
  border: 1px solid rgba(11, 18, 32, .9);
  border-radius: 7px;
  background: #ffffff;
  color: rgba(11, 18, 32, .9) !important;
  font-size: 14px;
  line-height: 1;
}

.jsb-page:hover {
  filter: brightness(.98);
}

.jsb-page.is-current {
  background: rgba(11, 18, 32, 1);
  color: #ffffff !important;
  border-color: rgba(11, 18, 32, 1);
  font-weight: 700;
}

.jsb-form .jsb-grid--3.has-actions {
  grid-template-columns: 2fr 1fr 1fr auto;
}

.jsb-form .jsb-grid--3.has-actions>.jsb-btn {
  width: auto;
  min-width: 140px;
  justify-self: end;
  align-self: end;
}

.jsb-form .jsb-grid--3.has-actions>.jsb-field--actions {
  grid-column: 4;
  justify-self: end;
  align-self: end;
  min-width: 140px;
}

.jsb-box {
  border: 1px solid var(--jsb-border);
  border-radius: var(--jsb-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 14px;
  box-shadow: var(--jsb-shadow);
  color: var(--jsb-text);
}

.jsb-box.is-error {
  border-color: rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .06);
}

.jsb-filters-grid--fairs {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

@media (max-width:900px) {
  .jsb-filters-grid--fairs {
    grid-template-columns: 1fr;
  }
}

.jsb-info {
  display: none !important;
  visibility: hidden !important;
}

.jsb-filters-grid.jsb-filters-grid--fairs {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.jsb-filters-grid.jsb-filters-grid--fairs:has(.jsb-field--actions),
.jsb-filters-grid.jsb-filters-grid--fairs.has-actions {
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
}

@media (max-width:900px) {

  .jsb-filters-grid.jsb-filters-grid--fairs,
  .jsb-filters-grid.jsb-filters-grid--fairs:has(.jsb-field--actions),
  .jsb-filters-grid.jsb-filters-grid--fairs.has-actions {
    grid-template-columns: 1fr;
  }
}

.jsb-exhibitors-grid .jsb-exhibitor-card .jsb-row {
  flex-direction: column;
  gap: 0;
}

.jsb-exhibitors-grid .jsb-exhibitor-card .jsb-logo {
  width: 100%;
  height: var(--jsb-logo-card-max-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0;
  overflow: hidden;
}

.jsb-exhibitors-grid .jsb-exhibitor-card .jsb-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.jsb-exhibitors-grid .jsb-exhibitor-card .jsb-exhibitor-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 30;
  overflow: hidden;
  line-height: 1.35;
  max-height: calc(30 * 1.35em);
}

.jsb>.jsb-card:has(> .jsb-row > .jsb-logo)>.jsb-row {
  flex-direction: row;
  gap: 0;
  align-items: stretch;
}

.jsb>.jsb-card:has(> .jsb-row > .jsb-logo)>.jsb-row>.jsb-logo {
  width: 100%;
  max-width: 320px;
  padding: 10px;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: start;
  overflow: hidden;
}

.jsb>.jsb-card:has(> .jsb-row > .jsb-logo)>.jsb-row>.jsb-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.jsb>.jsb-card:has(> .jsb-row > .jsb-logo)>.jsb-row>.jsb-hr {
  margin-top: 0;
}

.jsb-card__link:hover {
  color: #CF3700 !important;
}

.jsb-card h3 {
  width: 100%;
}

.jsb-card h3+.jsb-exhibitor-branch {
  width: 100%;
}

.jsb-card .jsb-exhibitor-desc {
  width: 100%;
}

.jsb-card :is(.jsb-card__head, .jsb-card__header, .jsb-card__title, .jsb-card__meta, .jsb-card__top) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.jsb-box.is-success {
  border-color: rgba(0, 133, 124, .35);
  background: var(--jsb-primary);
  color: #ffffff;
}