#swb_web_root,
.swb_web_scope {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1d1b20;
  line-height: 1.5;
}
#swb_web_root *,
#swb_web_root *::before,
#swb_web_root *::after,
.swb_web_scope *,
.swb_web_scope *::before,
.swb_web_scope *::after {
  box-sizing: border-box;
}
#swb_web_root a,
.swb_web_scope a {
  color: inherit;
  text-decoration: none;
}
#swb_web_root img,
.swb_web_scope img {
  max-width: 100%;
  height: auto;
}
#swb_web_root p,
.swb_web_scope p {
  margin: 0 0 1rem;
}
#swb_web_root h1,
#swb_web_root h2,
#swb_web_root h3,
#swb_web_root h4,
#swb_web_root h5,
#swb_web_root .swb_web_title,
.swb_web_scope h1,
.swb_web_scope h2,
.swb_web_scope h3,
.swb_web_scope h4,
.swb_web_scope h5,
.swb_web_scope .swb_web_title {
  margin: 0 0 0.75rem;
  color: #1d1b20;
  line-height: 1.2;
}

.swb_web_scope {
  width: 100%;
}

.swb_web_hide {
  display: none !important;
}

.swb_web_mb_0_5_rem {
  margin-bottom: 0.5rem;
}

.swb_web_justify_content_center {
  justify-content: center;
}

.swb_web_muted_placeholder {
  color: rgba(29, 27, 32, 0.45);
}

@keyframes swb_web_spin {
  to {
    transform: rotate(360deg);
  }
}
.swb_web_btn_spinner_wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.swb_web_btn_loading {
  opacity: 0.72;
  pointer-events: none;
}

.swb_web_btn_spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(29, 27, 32, 0.14);
  border-top-color: #206ce4;
  border-radius: 50%;
  animation: swb_web_spin 0.8s linear infinite;
}

.swb_web_row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.swb_web_col_md_4,
.swb_web_col_md_6,
.swb_web_col_md_8,
.swb_web_col_md_12 {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 48rem) {
  .swb_web_col_md_4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .swb_web_col_md_6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .swb_web_col_md_8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .swb_web_col_md_12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.swb_web_alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
}

.swb_web_alert_danger {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}

.swb_web_error_debug_block {
  margin: -0.75rem 0 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(29, 27, 32, 0.12);
  border-radius: 0.75rem;
  background: #fff;
  color: #1d1b20;
}

.swb_web_error_debug_title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.swb_web_error_debug_summary {
  margin-bottom: 1rem;
}

.swb_web_error_debug_line {
  margin: 0 0 0.5rem;
}

.swb_web_error_debug_line:last-child {
  margin-bottom: 0;
}

.swb_web_error_debug_line_title {
  font-size: 1rem;
}

.swb_web_error_debug_facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.swb_web_error_debug_fact {
  padding: 0.75rem 0.875rem;
  border-radius: 0.65rem;
  background: rgba(29, 27, 32, 0.04);
  border: 1px solid rgba(29, 27, 32, 0.08);
}

.swb_web_error_debug_fact_label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(29, 27, 32, 0.68);
}

.swb_web_error_debug_fact_value {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  word-break: break-word;
}

.swb_web_error_debug_raw_title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.swb_web_error_debug_pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  line-height: 1.55;
}

.swb_web_ajax_error {
  margin-bottom: 1rem;
}

.swb_web_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #206ce4;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.swb_web_btn:hover {
  background: #1559c6;
}
.swb_web_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(32, 108, 228, 0.12);
}

.swb_web_btn_sm {
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
}

.swb_web_btn_outline {
  background: transparent;
  border-color: rgba(29, 27, 32, 0.24);
  color: #1d1b20;
}
.swb_web_btn_outline:hover {
  background: rgba(29, 27, 32, 0.08);
  color: #1d1b20;
}

.swb_web_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.swb_web_table th,
.swb_web_table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(29, 27, 32, 0.08);
}
.swb_web_table th {
  font-weight: 600;
}

.swb_web_card_header {
  margin-bottom: 1rem;
}

.swb_web_search_bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 26rem;
  min-height: 3rem;
  padding: 0 0.25rem 0 1rem;
  border: 1px solid rgba(29, 27, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.swb_web_search_bar:hover {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.swb_web_search_input {
  flex: 1 1 auto;
  width: 100%;
  min-height: 3rem;
  margin: 0 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1d1b20;
  font: inherit;
}
.swb_web_search_input:focus {
  outline: none;
}
.swb_web_search_input::placeholder {
  color: rgba(95, 99, 104, 0.82);
}

.swb_web_search_leading_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(95, 99, 104, 0.92);
}

.swb_web_search_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(95, 99, 104, 0.92);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.swb_web_search_btn:hover {
  background: rgba(29, 27, 32, 0.08);
  color: #1d1b20;
}
.swb_web_search_btn .dashicons {
  font-size: 1.25rem;
}

.swb_web_search_count_loader {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
  border: 2px solid #ced4da;
  border-left-color: #206ce4;
  border-radius: 50%;
  animation: swb_web_spin 0.8s linear infinite;
}

.swb_web_map_surface {
  position: relative;
  width: 100%;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid rgba(29, 27, 32, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 248, 252, 0.95) 48%, rgba(32, 108, 228, 0.08) 100%);
  box-shadow: 0 0.875rem 2.25rem rgba(32, 108, 228, 0.08);
}
.swb_web_map_surface::before, .swb_web_map_surface::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.swb_web_map_surface::before {
  top: -12%;
  right: -8%;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 108, 228, 0.24) 0%, rgba(32, 108, 228, 0.08) 45%, rgba(32, 108, 228, 0) 72%);
  filter: blur(18px);
}
.swb_web_map_surface::after {
  inset: 0;
  background-image: linear-gradient(rgba(29, 27, 32, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 27, 32, 0.06) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: 0.32;
  filter: blur(1.5px);
}
.swb_web_map_surface.swb_web_is_loaded {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.92) 100%);
}
.swb_web_map_surface.swb_web_is_loaded::before, .swb_web_map_surface.swb_web_is_loaded::after {
  opacity: 0;
}

.swb_web_map_placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
}

.swb_web_map_placeholder_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 29rem;
  padding: 1.6rem 1.4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0.75rem 2rem rgba(32, 108, 228, 0.12);
}

.swb_web_map_placeholder_overline {
  margin: 0;
  color: rgba(95, 99, 104, 0.9);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swb_web_map_placeholder_title {
  margin: 0;
  font-size: 1.35rem;
}

.swb_web_map_placeholder_text {
  margin: 0;
  color: rgba(95, 99, 104, 0.96);
  font-size: 0.95rem;
  line-height: 1.55;
}

.swb_web_map_load_btn {
  min-width: 13rem;
}
.swb_web_map_load_btn[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.swb_web_google_maps_canvas,
.swb_web_map_embed_host {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  z-index: 1;
}

.swb_web_map_embed_host iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.swb_web_map_noscript {
  margin-top: 0.75rem;
  color: rgba(95, 99, 104, 0.9);
  font-size: 0.875rem;
}

#swb_web_root.swb_web_user_list_fe .swb_web_user_results_row {
  align-items: stretch;
}
#swb_web_root.swb_web_user_list_fe .swb_web_user_results_list_col,
#swb_web_root.swb_web_user_list_fe .swb_web_user_results_map_col {
  display: flex;
  flex-direction: column;
}
#swb_web_root.swb_web_user_list_fe #swb_web_user_table_body {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(29, 27, 32, 0.14);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.92) 100%);
  box-shadow: 0 0.875rem 2.25rem rgba(32, 108, 228, 0.08);
}
#swb_web_root.swb_web_user_list_fe .swb_web_list_item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  min-height: 5.5rem;
  padding: 1rem 1.25rem;
  background: transparent;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}
#swb_web_root.swb_web_user_list_fe .swb_web_list_item::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  left: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 108, 228, 0) 0%, rgba(29, 27, 32, 0.12) 12%, rgba(29, 27, 32, 0.12) 88%, rgba(32, 108, 228, 0) 100%);
}
#swb_web_root.swb_web_user_list_fe .swb_web_list_item:last-child::after {
  display: none;
}
#swb_web_root.swb_web_user_list_fe .swb_web_list_item:hover {
  background: rgba(32, 108, 228, 0.04);
}
#swb_web_root.swb_web_user_list_fe .swb_web_list_item:focus-within {
  background: linear-gradient(180deg, rgba(32, 108, 228, 0.08) 0%, rgba(32, 108, 228, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 27, 32, 0.22);
}
#swb_web_root.swb_web_user_list_fe .swb_web_leading,
#swb_web_root.swb_web_user_list_fe .swb_web_trailing {
  display: flex;
  align-items: center;
  justify-content: center;
}
#swb_web_root.swb_web_user_list_fe .swb_web_avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  border-radius: 50%;
  background: #206ce4;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
#swb_web_root.swb_web_user_list_fe .swb_web_avatar_text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#swb_web_root.swb_web_user_list_fe .swb_web_content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
#swb_web_root.swb_web_user_list_fe .swb_web_headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
#swb_web_root.swb_web_user_list_fe .swb_web_supporting_text,
#swb_web_root.swb_web_user_list_fe .swb_web_user_residence {
  color: rgba(95, 99, 104, 0.96);
  font-size: 0.9375rem;
  line-height: 1.45;
}
#swb_web_root.swb_web_user_list_fe .swb_web_user_residence {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#swb_web_root.swb_web_user_list_fe .swb_web_trailing {
  margin-left: 0.5rem;
}
#swb_web_root.swb_web_user_list_fe .swb_web_icon_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(32, 108, 228, 0.1);
  color: #206ce4;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
#swb_web_root.swb_web_user_list_fe .swb_web_icon_btn:hover {
  background: rgba(32, 108, 228, 0.16);
  color: #206ce4;
  transform: translateY(-1px);
}
#swb_web_root.swb_web_user_list_fe .swb_web_icon_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(32, 108, 228, 0.18);
}
#swb_web_root.swb_web_user_list_fe .swb_web_icon_btn .dashicons {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
#swb_web_root.swb_web_user_list_fe .swb_web_no_results_row {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 6rem;
  padding: 1.5rem;
  text-align: center;
}
#swb_web_root.swb_web_user_list_fe .swb_web_no_results_row .swb_web_supporting_text {
  max-width: 28rem;
}
@media (min-width: 48rem) {
  #swb_web_root.swb_web_user_list_fe .swb_web_user_results_list_col,
  #swb_web_root.swb_web_user_list_fe .swb_web_user_results_map_col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  #swb_web_root.swb_web_user_list_fe #swb_web_user_table_body,
  #swb_web_root.swb_web_user_list_fe .swb_web_map_surface {
    height: 31.25rem;
  }
  #swb_web_root.swb_web_user_list_fe #swb_web_user_table_body {
    min-height: 0;
    overflow-y: auto;
  }
}
@media (max-width: 47.9375rem) {
  #swb_web_root.swb_web_user_list_fe .swb_web_user_results_map_col {
    order: 1;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_user_results_list_col {
    order: 2;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_map_surface {
    min-height: 24rem;
  }
  #swb_web_root.swb_web_user_list_fe #swb_web_user_table_body {
    border-radius: 1.25rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_list_item {
    column-gap: 0.875rem;
    min-height: 5rem;
    padding: 0.9rem 1rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_list_item::after {
    right: 1rem;
    left: 1rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_avatar {
    width: 2.9rem;
    height: 2.9rem;
    flex-basis: 2.9rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_icon_btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_map_placeholder {
    padding: 1rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_map_placeholder_inner {
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_map_placeholder_title {
    font-size: 1.15rem;
  }
  #swb_web_root.swb_web_user_list_fe .swb_web_map_placeholder_text {
    font-size: 0.875rem;
  }
}

#swb_web_root.swb_web_event_list_fe .swb_web_event_results_row {
  align-items: stretch;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_results_list_col,
#swb_web_root.swb_web_event_list_fe .swb_web_event_results_map_col {
  display: flex;
  flex-direction: column;
}
#swb_web_root.swb_web_event_list_fe #swb_web_event_table_body {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(29, 27, 32, 0.14);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.92) 100%);
  box-shadow: 0 0.875rem 2.25rem rgba(32, 108, 228, 0.08);
}
#swb_web_root.swb_web_event_list_fe .swb_web_list_item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1rem;
  min-height: 7rem;
  padding: 1rem 1.25rem;
  background: transparent;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}
#swb_web_root.swb_web_event_list_fe .swb_web_list_item::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  left: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(32, 108, 228, 0) 0%, rgba(29, 27, 32, 0.12) 12%, rgba(29, 27, 32, 0.12) 88%, rgba(32, 108, 228, 0) 100%);
}
#swb_web_root.swb_web_event_list_fe .swb_web_list_item:last-child::after {
  display: none;
}
#swb_web_root.swb_web_event_list_fe .swb_web_list_item:hover {
  background: rgba(0, 178, 187, 0.04);
}
#swb_web_root.swb_web_event_list_fe .swb_web_list_item:focus-within {
  background: linear-gradient(180deg, rgba(0, 178, 187, 0.08) 0%, rgba(0, 178, 187, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 178, 187, 0.28);
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_leading,
#swb_web_root.swb_web_event_list_fe .swb_web_trailing {
  display: flex;
  align-items: center;
  justify-content: center;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_leading {
  align-self: stretch;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_thumbnail_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(0, 178, 187, 0.12) 0%, rgba(32, 108, 228, 0.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 178, 187, 0.12);
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_thumbnail_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_thumbnail_placeholder {
  color: rgba(0, 178, 187, 0.92);
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_thumbnail_placeholder .dashicons {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}
#swb_web_root.swb_web_event_list_fe .swb_web_content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
#swb_web_root.swb_web_event_list_fe .swb_web_headline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_meta_stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_meta_line {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: rgba(95, 99, 104, 0.96);
  font-size: 0.9375rem;
  line-height: 1.45;
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_meta_line .dashicons {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  font-size: 1rem;
  color: rgba(0, 178, 187, 0.92);
}
#swb_web_root.swb_web_event_list_fe .swb_web_event_excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(95, 99, 104, 0.96);
  font-size: 0.9375rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
#swb_web_root.swb_web_event_list_fe .swb_web_trailing {
  margin-left: 0.5rem;
  align-self: center;
}
#swb_web_root.swb_web_event_list_fe .swb_web_icon_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 178, 187, 0.1);
  color: #00b2bb;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
#swb_web_root.swb_web_event_list_fe .swb_web_icon_btn:hover {
  background: rgba(0, 178, 187, 0.16);
  color: #00b2bb;
  transform: translateY(-1px);
}
#swb_web_root.swb_web_event_list_fe .swb_web_icon_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.1875rem rgba(0, 178, 187, 0.18);
}
#swb_web_root.swb_web_event_list_fe .swb_web_icon_btn .dashicons {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
#swb_web_root.swb_web_event_list_fe .swb_web_no_results_row {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 6rem;
  padding: 1.5rem;
  text-align: center;
}
#swb_web_root.swb_web_event_list_fe .swb_web_no_results_row .swb_web_supporting_text {
  max-width: 28rem;
}
@media (min-width: 48rem) {
  #swb_web_root.swb_web_event_list_fe .swb_web_event_results_list_col,
  #swb_web_root.swb_web_event_list_fe .swb_web_event_results_map_col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  #swb_web_root.swb_web_event_list_fe #swb_web_event_table_body,
  #swb_web_root.swb_web_event_list_fe .swb_web_map_surface {
    height: 31.25rem;
  }
  #swb_web_root.swb_web_event_list_fe #swb_web_event_table_body {
    min-height: 0;
    overflow-y: auto;
  }
}
@media (max-width: 47.9375rem) {
  #swb_web_root.swb_web_event_list_fe .swb_web_event_results_map_col {
    order: 1;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_event_results_list_col {
    order: 2;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_map_surface {
    min-height: 24rem;
  }
  #swb_web_root.swb_web_event_list_fe #swb_web_event_table_body {
    border-radius: 1.25rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_list_item {
    column-gap: 0.875rem;
    min-height: 6.5rem;
    padding: 0.9rem 1rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_list_item::after {
    right: 1rem;
    left: 1rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_event_thumbnail_wrap {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 0.875rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_icon_btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_map_placeholder {
    padding: 1rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_map_placeholder_inner {
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_map_placeholder_title {
    font-size: 1.15rem;
  }
  #swb_web_root.swb_web_event_list_fe .swb_web_map_placeholder_text {
    font-size: 0.875rem;
  }
}

.swb_web_scope.swb_web_show_fe .swb_web_user_profile_page_title_wrap {
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_show_fe .swb_web_user_profile_header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_show_fe .swb_web_leading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swb_web_scope.swb_web_show_fe .swb_web_avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  border-radius: 50%;
  background: #206ce4;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.swb_web_scope.swb_web_show_fe .swb_web_avatar_text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.swb_web_scope.swb_web_show_fe .swb_web_user_profile_name {
  margin: 0;
}
.swb_web_scope.swb_web_show_fe .swb_web_user_profile_table td {
  overflow-wrap: anywhere;
}
.swb_web_scope.swb_web_show_fe .swb_web_user_detail_map_block {
  margin-top: 1.5rem;
}
.swb_web_scope.swb_web_show_fe .swb_web_map_surface {
  height: 28rem;
}
@media (max-width: 47.9375rem) {
  .swb_web_scope.swb_web_show_fe .swb_web_user_profile_header {
    gap: 0.75rem;
  }
  .swb_web_scope.swb_web_show_fe .swb_web_map_surface {
    height: 24rem;
    min-height: 24rem;
  }
}

.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_header {
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_overline {
  margin: 0 0 0.35rem 0;
  color: rgba(0, 178, 187, 0.92);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_title {
  margin: 0;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_meta {
  margin: 0.35rem 0 0;
  color: rgba(95, 99, 104, 0.96);
  font-size: 0.95rem;
  line-height: 1.55;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_gallery_item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 178, 187, 0.14);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.92) 100%);
  box-shadow: 0 0.625rem 1.5rem rgba(0, 178, 187, 0.08);
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_gallery_image {
  display: block;
  width: 100%;
  min-height: 12rem;
  max-height: 18rem;
  object-fit: cover;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_table {
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_description {
  margin-bottom: 1.5rem;
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_description_text {
  color: rgba(95, 99, 104, 0.96);
}
.swb_web_scope.swb_web_event_show_fe .swb_web_event_detail_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 47.9375rem) {
  .swb_web_scope.swb_web_event_show_fe .swb_web_event_gallery {
    grid-template-columns: 1fr;
  }
  .swb_web_scope.swb_web_event_show_fe .swb_web_event_gallery_image {
    min-height: 10rem;
  }
}

#swb_web_modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#swb_web_modal_card,
.swb_web_modal_card {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  max-height: 90vh;
  min-height: 70vh;
  overflow-y: auto;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.2);
}

.swb_web_modal_close_btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 27, 32, 0.06);
  color: #1d1b20;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.swb_web_modal_close_btn:hover {
  background: rgba(29, 27, 32, 0.12);
}
.swb_web_modal_close_btn span {
  display: inline-block;
  transform: translateY(-1px);
}

.swb_web_modal_title {
  margin: 0;
  padding-right: 2.5rem;
}

#swb_web_modal_body > .swb_web_scope {
  padding-right: 1rem;
  padding-left: 1rem;
}

.swb_web_modal_loading_text {
  margin: 0;
  color: rgba(95, 99, 104, 0.9);
  font-size: 0.9375rem;
}

.swb_web_event_show_fe {
  padding: 1.5rem 0 3rem;
  background: #fff;
}

.swb_web_event_page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.swb_web_event_container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.swb_web_event_section_heading {
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: 0.75rem;
  background: #00b2bb;
  color: #fff;
}

.swb_web_event_section_heading_spaced {
  margin-top: 0.5rem;
}

.swb_web_event_section_heading h1,
.swb_web_event_section_heading h2 {
  margin: 0;
  color: inherit;
}

.swb_web_event_section_body {
  padding: 1.5rem;
  border: 1px solid rgba(0, 178, 187, 0.18);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.875rem 2.25rem rgba(0, 178, 187, 0.08);
}

.swb_web_event_subtitle {
  color: rgba(95, 99, 104, 0.95);
  font-size: 1.0625rem;
}

.swb_web_event_meta_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.swb_web_event_meta_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  max-width: 32rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 178, 187, 0.12);
}
.swb_web_event_meta_item:last-child {
  border-bottom: 0;
}

.swb_web_event_meta_label {
  flex: 0 0 9rem;
  font-weight: 700;
  color: #1d1b20;
}

.swb_web_event_meta_value {
  flex: 1 1 auto;
  text-align: left;
  color: rgba(95, 99, 104, 0.96);
}
.swb_web_event_meta_value a {
  color: #00b2bb;
  font-weight: 600;
}

.swb_web_event_description {
  margin-top: 1.5rem;
  color: rgba(95, 99, 104, 0.96);
}
.swb_web_event_description strong {
  margin-right: 0.35rem;
  color: #1d1b20;
}

.swb_web_event_cta_group {
  margin-top: 1.75rem;
}

.swb_web_event_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.6rem;
  border: 1px solid #bf2600;
  border-radius: 999px;
  background: #bf2600;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.swb_web_event_cta:hover {
  background: transparent;
  color: #bf2600;
}

.swb_web_event_address {
  color: rgba(95, 99, 104, 0.96);
}
.swb_web_event_address p:last-child {
  margin-bottom: 0;
}

.swb_web_event_map {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(0, 178, 187, 0.18);
  box-shadow: 0 0.625rem 1.5rem rgba(0, 178, 187, 0.08);
}
.swb_web_event_map iframe {
  display: block;
  width: 100%;
  min-height: 24rem;
  border: 0;
}

.swb_web_event_list_fe .swb_web_row {
  row-gap: 1rem;
}

.swb_web_form .swb_web_input_box {
  margin-bottom: 1.5rem;
}
.swb_web_form .swb_web_error_message {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #842029;
}

@media (max-width: 47.9375rem) {
  .swb_web_event_show_fe {
    padding: 1rem 0 2rem;
  }
  .swb_web_event_page {
    gap: 2rem;
  }
  .swb_web_event_section_heading {
    padding: 0.95rem 1rem;
  }
  .swb_web_event_section_body {
    padding: 1.1rem;
  }
  .swb_web_event_meta_item {
    flex-direction: column;
    gap: 0.3rem;
  }
  .swb_web_event_meta_label {
    flex-basis: auto;
  }
  #swb_web_modal {
    padding: 0.75rem;
  }
  #swb_web_modal_card {
    min-height: auto;
    max-height: calc(100vh - 1.5rem);
  }
}

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