.px.autocomplete .search-container .search-container-input {
  padding: 0.375rem 0.75rem;
  vertical-align: middle;
  width: auto;
}
.px.autocomplete .chosen-container {
  margin-bottom: 0.5rem;
}
.px.autocomplete .chosen-container .selected-option {
  padding: 0.375rem;
  margin-right: 0.5rem;
}
.px.autocomplete .chosen-container .selected-option .selected-option-remove {
  margin-left: 0.375rem;
  display: inline-block;
  cursor: pointer;
  color: #000000;
}
.px.autocomplete .results-container {
  border: 1px #777 solid;
  position: absolute;
  z-index: 2;
}
.px.autocomplete .results-container .result-item {
  padding: 0.375rem;
  background-color: #ffffff;
  min-width: 250px;
  width: auto;
}
.px.autocomplete .results-container .result-item:hover {
  background-color: #efefef;
  cursor: pointer;
}

.search-container-input {
  width: 100% !important;
}

.goal_number {
  flex: 0 0 auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.203rem;
  border-radius: 50%;
  background-color: var(--bs-primary, #0f6cbf);
  color: var(--bs-white, #fff);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}

.selected_goal, .unselected_goal {
  display: flex;
  align-items: flex-start;
  line-height: 1.5rem;
  gap: 8px;
  margin: 2px 0;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: normal;
}
.selected_goal .goal_text, .unselected_goal .goal_text {
  flex: 1;
  min-width: 0;
}

.unselected_goal {
  position: relative;
  border-left: 4px solid transparent;
  padding-left: 4px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.unselected_goal:hover {
  background-color: rgba(var(--bs-success-rgb, 27, 138, 76), 0.14);
}
.unselected_goal .goal_version_badge {
  align-self: flex-start;
  margin-top: 0.078rem;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.goal_load_state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 6rem;
  padding: 1rem;
  text-align: center;
  white-space: normal;
}

.goal_load_state_error {
  color: var(--bs-danger, #ca3120);
}

.goal_row {
  align-items: flex-start;
  line-height: 1.5rem;
}

.already_selected_goal {
  opacity: 0.45;
  cursor: default;
}
.already_selected_goal:hover {
  background-color: transparent;
}

.selected_goal {
  transition: background-color 160ms ease;
}
.selected_goal:hover {
  background-color: rgba(var(--bs-danger-rgb, 220, 53, 69), 0.12);
}

.goal_tooltip_icon {
  cursor: help;
}

.goal_tooltip {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 1000;
  max-width: 320px;
  filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.22));
}

.goal_tooltip_card {
  min-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  color: #1e293b;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.goal_tooltip_card_title {
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.goal_tooltip_card_list {
  margin: 0;
}

.goal_tooltip_card_row {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  gap: 12px;
  align-items: start;
  padding: 5px 0;
}

.goal_tooltip_card_row dt {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
}

.goal_tooltip_card_row dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.goal_tooltip_card_row_block {
  display: block;
}

.goal_tooltip_card_row_block dt {
  margin-bottom: 4px;
}

.goal_tooltip_card_row_block dd {
  font-weight: 400;
  text-align: left;
}

.goal_tooltip_card_row_block p {
  display: block;
  margin: 0;
}

.goal_tooltip_icon:hover {
  transform: scale(1.06);
}

.is_outdated_goal {
  border-left-color: #b42318;
  opacity: 0.8;
  background: rgba(180, 35, 24, 0.16);
  box-shadow: inset 0 0 0 1px rgba(180, 35, 24, 0.22);
}
.is_outdated_goal .goal_version_badge {
  border: 1px solid rgba(180, 35, 24, 0.35);
  color: #7a271a;
  background: #fff5f4;
}

.is_valid_in_future_goal {
  border-left-color: #027a48;
  background: rgba(2, 122, 72, 0.2);
  box-shadow: inset 0 0 0 1px rgba(2, 122, 72, 0.2);
}
.is_valid_in_future_goal .goal_version_badge {
  border: 1px solid rgba(2, 122, 72, 0.35);
  color: #05603a;
  background: #ecfdf3;
}

@media (prefers-reduced-motion: reduce) {
  .unselected_goal {
    transition: none;
  }
  .is_outdated_goal::before {
    animation: none;
  }
}
.list_container {
  height: 200px;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.5rem;
  padding: 3px;
  overflow: auto;
  white-space: nowrap;
  resize: vertical;
}

.clickable {
  cursor: pointer;
}

.subject_table_wrapper {
  height: 400px;
  overflow: auto;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.5rem;
  resize: vertical;
}

table.subjectTable {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  white-space: nowrap;
  table-layout: fixed;
}

.subjectTable th,
.subjectTable td {
  overflow: hidden;
  text-overflow: ellipsis;
}

.subjectTable thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-weight: 600;
  background-color: var(--bs-body-bg, #fff);
  border: 0;
  border-bottom: 2px solid var(--bs-border-color, #dee2e6);
}

.subjectTable td {
  padding: 0.5rem 0.75rem;
  border: 0;
  border-top: 1px solid var(--bs-border-color, #dee2e6);
}

.subject_filtered_out {
  display: none;
}

.subject_filter_toggle {
  padding: 0 0.25rem;
  border: 0;
  background: none;
  color: var(--bs-secondary-color, #6a737b);
  line-height: 1;
  cursor: pointer;
}
.subject_filter_toggle:hover {
  color: var(--bs-primary, #0f6cbf);
}

.subject_filter_active {
  color: var(--bs-primary, #0f6cbf);
}

.subject_filter_panel {
  position: fixed;
  z-index: 1050;
  min-width: 12rem;
  max-height: 16rem;
  padding: 0.5rem;
  overflow-y: auto;
  background-color: var(--bs-body-bg, #fff);
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  white-space: normal;
}

.education_state_badge {
  margin-left: 0.5rem;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: middle;
}

.education_state_current {
  color: #05603a;
  background: #ecfdf3;
  border: 1px solid rgba(2, 122, 72, 0.35);
}

.education_state_historic {
  color: var(--bs-secondary-color, #6a737b);
  background: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.06);
  border: 1px solid var(--bs-border-color, #dee2e6);
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.subject_filter_option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.25rem 0.25rem;
  font-weight: 400;
  cursor: pointer;
}
.subject_filter_option:hover {
  background-color: rgba(var(--bs-primary-rgb, 15, 108, 191), 0.08);
}

.subjectTable thead th span {
  vertical-align: middle;
}

.subjectTable tbody tr {
  cursor: pointer;
  transition: background-color 120ms ease;
}

.subjectTable tbody tr:nth-child(even) {
  background-color: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.03);
}

.subjectTable tbody tr:hover {
  background-color: rgba(var(--bs-primary-rgb, 15, 108, 191), 0.1);
}

.subjectTable tbody tr.selected_subject > * {
  --bs-table-bg-state: var(--bs-primary, #0f6cbf);
  --bs-table-color-state: var(--bs-white, #fff);
  background-color: var(--bs-primary, #0f6cbf);
  color: var(--bs-white, #fff);
}

body#page-mod-pxelevplan-view #intro {
  display: none;
}

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