/*!**************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/assets/css/fonts/fonts.css?ngGlobalStyle ***!
  \**************************************************************************************************************************************************************************************************************************************/
/* Self-hosted text fonts.
 *
 * Bundled locally (like the Material icon fonts) so the Service Worker can cache
 * them for offline use at the boat ramp and for the Capacitor shell, and so first
 * paint never blocks on a third-party request. This replaces the async Google
 * Fonts <link>s that previously caused a font-swap layout shift (CLS) on
 * text-heavy pages such as the blog.
 *
 * Three layers, belt-and-suspenders, so CLS ~ 0:
 *   1. font-display: optional   -> the browser will not swap fonts mid-pageview
 *   2. metric-matched fallback  -> the system fallback occupies the exact same
 *                                  space, so even if a swap happens it is
 *                                  reflow-free (overrides computed from the font)
 *   3. the critical face is <link rel="preload">ed in index.html so it is usually
 *      ready before first paint and the real font wins
 */

/* ── Archivo — the ONE face (variable, wght 100–900, upright + italic) ─────────
 *
 * Reinstated as the single family Jul 2026, replacing Manrope. Archivo is what the
 * design system was drawn in and what every design comp is set in; Manrope renders
 * wider and rounder, which showed up most on numerals — and a column of `24.18 lb`
 * weights is the thing this app puts on a projector.
 *
 * Still a single-family system: hierarchy comes from size, weight and color, not
 * from a second face. Do not add a display serif back.
 *
 * Chosen for the design system because it has real tabular figures (verified: the
 * font ships a `tnum` GSUB feature), which weights, standings and payout columns
 * depend on. Its default figures are PROPORTIONAL, so anything rendering a column
 * of numbers must opt in explicitly:
 *   font-variant-numeric: tabular-nums;
 *
 * ONE FILE, no unicode-range split: this binary covers latin + latin-ext, so
 * accented angler names do not fall back mid-word. That is why there is no
 * Archivo-ext to preload — Manrope needed two subsets, this does not.
 *
 * Italic EXISTS here, unlike Manrope. Consumers of --wb-font-display may set
 * font-style: italic and get the real cut rather than a synthesised oblique.
 * The italic file is NOT preloaded; it is the rare path.
 *
 * The wght axis default is 400. Manrope's was 200, so any context that failed to
 * state a weight silently rendered ExtraLight; that trap is gone, but keep stating
 * the weight in canvas ctx.font strings anyway.
 */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url(/assets/css/fonts/Archivo.woff2) format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 100 900;
  font-display: optional;
  src: url(/assets/css/fonts/Archivo-Italic.woff2) format('woff2');
}

/* Metric-matched fallback. THE RULE, because getting it wrong is silent and it has
 * already happened once in this file's history: the size-adjust divisor must be the
 * x-height ratio of whatever this shim's OWN local() chain resolves to first —
 * Arial 1062/2048 = 0.51855, Georgia 986/2048 = 0.48145. Divide by the wrong one
 * and the shim is mis-sized against the very font it falls back to, so it CAUSES
 * the shift it exists to prevent.
 *
 * size-adjust is the font's x-height ratio over Arial's, and the ascent/descent
 * overrides are the hhea metrics divided by that size-adjust. This row was computed
 * from THIS binary (upm 1000, ascent 878, descent -210, lineGap 0) and is the row
 * the outgoing Manrope row was itself validated against, so it is known good.
 * Restored verbatim alongside the woff2 it describes — do not re-derive it by hand
 * without re-reading the binary, because the two have to agree.
 *
 * size-adjust is just above 100%, scaling the fallback up slightly, because
 * Archivo's x-height is marginally larger than Arial's. */
@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial'), local('Helvetica Neue'), local('Helvetica');
  ascent-override: 86.56%;
  descent-override: 20.70%;
  line-gap-override: 0.00%;
  size-adjust: 101.44%;
}

/* ── Caveat — the SIGNATURE face, and nothing else ─────────────────────────────
 *
 * This does NOT reopen the single-family rule above. Caveat is never used for UI
 * text, headings, labels or body copy, and there is no token for it. It exists
 * for exactly one job: rendering a TYPED signature to a canvas inside
 * wb-signature-capture, which is then rasterized to a PNG and embedded in the
 * signed PDF. If you find yourself setting this family on an element, that is
 * the bug.
 *
 * Bundled locally rather than fetched, for the same reason as the faces above and
 * one sharper one: signing happens at boat ramps with no signal. A face that
 * silently falls back would change the visual mark between the review step and
 * the stored artifact — the angler approves one signature and a different one is
 * filed. See docs/signature-capture.md §3.5.
 *
 * font-display: block (NOT optional, unlike the UI faces). A swap-free UI is
 * worth a fallback; a signature is not. Better to wait than to draw the mark in
 * Arial. The component also awaits document.fonts.load() before its first render
 * and refuses typed mode if the face never arrives, so this is belt and braces.
 *
 * SIL Open Font License 1.1 — see LICENSE-Caveat in this directory. Latin subset
 * from @fontsource/caveat. */
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/css/fonts/Caveat.woff2) format('woff2');
}

/* ── Source Serif 4 — the Game Plan's editorial voice (SANCTIONED EXCEPTION) ──
 *
 * The single-family rule above still governs the app: hierarchy from size,
 * weight and color, tabular numerals on projectors. The AI Game Plan page is
 * the one deliberate exception — its design comp ("Game Plan Desktop", Aug
 * 2026) is set in Source Serif 4 as an editorial, almanac-like reading surface,
 * and the serif IS that page's identity, not a second voice inside the app UI.
 * Use it only through --gp-serif in the water-column component; do not let it
 * leak into chrome, tables, or anything with a number column.
 *
 * Latin subset only (~34KB per face, on par with Archivo), VARIABLE on wght
 * 400-900, so the Service Worker caches it like every other face here. Georgia
 * is the design's own named fallback and is metrically close enough for this
 * surface, so font-display: swap costs at most a brief, same-shape repaint.
 *
 * THESE FILES MUST BE THE VARIABLE FONT, and the range below must match what
 * they actually contain. Until 2026-08-24 this shipped Source Serif 4 BLACK — a
 * static usWeightClass 900 master — under this same `font-weight: 400 900`
 * declaration. The browser believed the declaration, so it used Black for every
 * weight on the surface: prose at 400, bait names at 700 and the 900 headline
 * all rendered identically heavy, and the whole Game Plan read bold. Nothing in
 * CSS can undo that, and two separate attempts to lighten the prose by stating
 * `font-weight: 400` looked like no-ops because they were. If you re-subset,
 * assert `fvar` is present and that a 400 and a 900 sample measure DIFFERENT
 * widths before committing the binary.
 *
 * The `opsz` axis (8-60) is deliberately NOT shipped: it pinned at 20, the
 * font's own text-reading default. Carrying it cost 48KB per face, and letting
 * the browser auto-select optical masters is what made 13-16px prose render
 * chunky in the first place. Do not add `font-variation-settings: 'opsz' …` in
 * component CSS — there is no such axis in these files, so it silently does
 * nothing.
 */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('SourceSerif4.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('SourceSerif4-Italic.woff2') format('woff2');
}

/*!************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/angular-calendar/css/angular-calendar.css ***!
  \************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.cal-month-view .cal-cell-top {
  min-height: 78px;
  flex: 1;
}
.cal-month-view .cal-cell-row {
  display: flex;
}
.cal-month-view .cal-cell {
  float: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cal-month-view .cal-cell .cal-event {
  pointer-events: all !important;
}
.cal-month-view .cal-day-cell {
  min-height: 100px;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  float: left;
}
.cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  display: flex;
  flex-wrap: wrap;
}
.cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.cal-month-view .cal-open-day-events {
  padding: 15px;
}
.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.cal-month-view .cal-draggable {
  cursor: move;
}
.cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.cal-month-view .cal-event-title {
  cursor: pointer;
}
.cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}

.cal-month-view {
  background-color: #fff;
}
.cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: initial;
  border-left-color: #e1e1e1;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}

.cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-week-view * {
  box-sizing: border-box;
}
.cal-week-view .cal-day-headers {
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers {
  padding-left: initial;
  padding-right: 70px;
}
.cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 5px;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: initial;
  border-right: 1px solid;
}
.cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.cal-week-view .cal-day-column {
  flex-grow: 1;
  border-left: solid 1px;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left: initial;
  border-right: solid 1px;
}
.cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
  direction: ltr;
}
.cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.cal-week-view .cal-current-time-marker {
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 2;
}
.cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
  margin-left: initial;
  margin-right: 70px;
}
.cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: initial;
  border-bottom-left-radius: initial;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: initial;
  border-bottom-right-radius: initial;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.cal-week-view .cal-all-day-events .cal-time-label-column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: initial;
  left: 0;
}
.cal-week-view .cal-event,
.cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  display: flex;
}
.cal-week-view .cal-time-events .cal-day-columns {
  display: flex;
  flex-grow: 1;
}
.cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.cal-week-view .cal-time-events .cal-events-container {
  position: relative;
}
.cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.cal-week-view .cal-hour-segment {
  position: relative;
}
.cal-week-view .cal-hour-segment::after {
  content: " ";
}
.cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.cal-week-view .cal-draggable {
  cursor: move;
}
.cal-week-view mwl-calendar-week-view-hour-segment,
.cal-week-view .cal-hour-segment {
  display: block;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.cal-week-view {
  background-color: #fff;
  border-top: solid 1px #e1e1e1;
}
.cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
  border-top: 0;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: initial;
  border-left: solid 1px #e1e1e1 !important;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.cal-week-view .cal-current-time-marker {
  background-color: #ea4334;
}

.cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}
.cal-day-view mwl-calendar-week-view-header {
  display: none;
}
.cal-day-view .cal-events-container {
  margin-left: 70px;
}
[dir=rtl] .cal-day-view .cal-events-container {
  margin-left: initial;
  margin-right: 70px;
}
.cal-day-view .cal-day-column {
  border-left: 0;
}
.cal-day-view .cal-current-time-marker {
  margin-left: 70px;
  width: calc(100% - 70px);
}
[dir=rtl] .cal-day-view .cal-current-time-marker {
  margin-left: initial;
  margin-right: 70px;
}

.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}

.cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}

.cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}

.cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}

.cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}

.cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}

.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}

.cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.w-100 {
  width: 100% !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}

:root {
  --fc-bg: #f3f3f3;
  --fc-brand: #008afc;
  --fc-action: #008afc;
  --fc-action-hover: #0070d6;
  --fc-text: #1c2e1e;
  --fc-muted: #6b6862;
  --fc-divider: rgba(28, 46, 30, 0.12);
  --fc-card: #ffffff;
  --fc-card-shadow: 0 2px 8px rgba(28, 46, 30, 0.06);
  --fc-display-font: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fc-cover: none;
}

.profile-stat-band {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  color: inherit;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-top: -24px;
}
@media (max-width: 768px) {
  .profile-stat-band {
    padding: 0;
    margin-top: -18px;
  }
}

.profile-stat-band__inner {
  display: grid;
  grid-template-columns: repeat(var(--profile-stat-cols, 4), 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .profile-stat-band__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.profile-stat-band__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  background: #fff;
  border: 1px solid #eceef3;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(6, 10, 18, 0.12), 0 1px 3px rgba(16, 24, 40, 0.06);
}
@media (max-width: 768px) {
  .profile-stat-band__stat {
    padding: 12px 14px;
    border-radius: 12px;
  }
}

.profile-stat-band__value {
  font-family: var(--wb-font-serif);
  font-weight: 400;
  font-synthesis-weight: none;
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--wb-text);
  display: inline-flex;
  align-items: baseline;
}
@media (max-width: 768px) {
  .profile-stat-band__value {
    font-size: 24px;
  }
}

.profile-stat-band__unit {
  font-size: 0.45em;
  font-weight: 400;
  margin-left: 4px;
  opacity: 0.85;
  font-family: var(--wb-font);
}

.profile-stat-band__label {
  font-family: var(--wb-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--wb-text-3);
  opacity: 1;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .profile-stat-band__label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
}

body {
  margin: 0;
}

* {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body.capacitor-native {
  --cap-safe-top: env(safe-area-inset-top, 24px);
  cursor: pointer;
}

.profile-dropdown-panel .mat-mdc-menu-content {
  padding: 0 !important;
}

.um-panel.mat-mdc-menu-panel {
  border: 0.5px solid #B4B2A9;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 320px;
}

.um-panel .mat-mdc-menu-content {
  padding: 0 !important;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.empty-state .empty-state-icon {
  margin-bottom: 12px;
  opacity: 0.7;
}
.empty-state .empty-state-title {
  font-size: 14px;
  font-weight: 600;
  color: #78909c;
  margin-bottom: 4px;
}
.empty-state .empty-state-text {
  font-size: 13px;
  color: #90a4ae;
  max-width: 280px;
  line-height: 1.5;
}

@media print {
  body.ss2-printing * {
    visibility: hidden !important;
  }
  body.ss2-printing .ss2-detail,
  body.ss2-printing .ss2-detail * {
    visibility: visible !important;
  }
  body.ss2-printing .ss2-detail {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
  }
  body.ss2-printing .ss2-detail__actions {
    display: none !important;
  }
  body.ss2-printing .ss2-detail__head {
    background: #fff !important;
    border-bottom: 2px solid #000;
  }
  body.ss2-printing .ss2-detail__pair,
  body.ss2-printing .ss2-detail__pts {
    color: #000 !important;
  }
  body.ss2-printing .ss2-detail__sub,
  body.ss2-printing .ss2-detail__ptslabel {
    color: #444 !important;
  }
  body.ss2-printing .ss2-iconbtn {
    display: none !important;
  }
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/login.scss?ngGlobalStyle ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  width: 100vw;
}
.login-wrapper:before, .login-wrapper:after {
  display: none;
}
.login-wrapper .show-hover {
  cursor: pointer;
  margin-right: 1px;
}
.login-wrapper .show-hover:hover {
  background: #efefef;
}
.login-wrapper .left-panel {
  padding: 29px;
  background: #fff;
  background-color: rgb(16, 145, 253);
  position: relative;
}
.login-wrapper .left-panel .headline {
  color: #000;
  font-size: 1.5rem;
  padding: 20px 0;
}
.login-wrapper .left-panel .bg-image {
  background-image: url(/assets/images/bass1.jpg);
  background-size: cover;
  min-height: calc(100vh - 120px);
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.login-wrapper .left-panel .logo-wrapper {
  z-index: 900;
}
.login-wrapper .right-panel {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btns-wrapper {
  display: flex;
  margin-top: 2rem;
}
.login-btns-wrapper .sign-in {
  margin-right: 0.75rem;
}
.login-btns-wrapper .mid-width-btn {
  width: 160px;
  padding: 5px 0;
}

.logo-wrapper .icon-label {
  color: #fff;
  padding-bottom: 10px;
  margin-top: -25px;
  font-size: 1.5rem;
}

.loading-text {
  padding: 25px 0;
}

.padded-row {
  padding: 10px 0;
}

.larger-text {
  font-size: 1.1rem;
}

.verify-wrapper {
  width: 100%;
}
.verify-wrapper .form-group {
  padding: 0 0 20px 0;
}
.verify-wrapper header {
  padding: 20px 0 0;
  text-align: center;
}
.verify-wrapper header h2 {
  display: block;
  color: #3F4254;
  font-size: 1.875rem;
  line-height: 2.25rem;
  padding: 10px 0 0 0;
  font-weight: 700;
}
.verify-wrapper header h3 {
  font-size: 2rem;
}
.verify-wrapper header .sub-title {
  color: #B5B5C3 !important;
}
.verify-wrapper .form-group {
  margin-top: 2rem;
}
.verify-wrapper .utils-row {
  margin-top: -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.verify-wrapper .submit-wrapper {
  padding-bottom: 20px;
}
.verify-wrapper .submit-wrapper button {
  padding: 1.75rem 0;
}

.sign-in button {
  color: #fff;
}

.field-wrapper input {
  background: transparent;
}

.error-wrapper {
  margin-top: -10px;
  padding-bottom: 10px;
}

.field-label {
  margin-bottom: -5px;
}
.field-label label {
  font-size: 1.175rem;
  font-weight: 600;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.flex-row {
  display: flex;
  justify-content: space-between;
}
.flex-row .field-wrapper {
  width: 50%;
}
.flex-row .field-wrapper:first-child {
  margin-right: 10px;
}
.flex-row .field-wrapper:last-child {
  margin-left: 10px;
}

@media (min-width: 850px) {
  .verify-wrapper {
    width: 400px;
    padding: 0 25px;
  }
  .verify-wrapper header {
    padding: 0;
  }
  .verify-wrapper header h3 {
    font-size: 2rem;
  }
  .register-wizard .verify-wrapper {
    width: auto;
  }
  .login-wrapper {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 9.2rem);
  }
  .login-wrapper:before, .login-wrapper:after {
    display: block;
  }
  .login-wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    background-color: rgba(30, 58, 138, 0.2);
    border-radius: 100%;
    transform: translate(0, 0) rotate(-0.45deg) skew(0) skewY(0) scaleX(1) scaleY(1);
    width: 61%;
    margin-top: -30%;
    margin-left: -14.75%;
    margin-bottom: -30%;
  }
  .login-wrapper:after {
    content: "";
    background-color: rgb(16, 145, 253);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translate(0, 0) rotate(-0.45deg) skew(0) skewY(0) scaleX(1) scaleY(1);
    width: 59%;
    margin-top: -21%;
    margin-left: -13%;
    margin-bottom: -21%;
  }
  .login-wrapper .left-panel {
    padding: 0;
    width: 40%;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-wrapper .left-panel .headline {
    padding: 20px 0 0 0;
  }
  .login-wrapper .right-panel {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.link-paragraph {
  padding: 20px 0;
}
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/main.scss?ngGlobalStyle ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --color-presenter-on-dark: #FFFFFF;
  --color-presenter-accent: #FAC775;
  --logo-presenter-url: url("/assets/images/weighbook_logo_only.webp");
  --presenter-display-name: "WeighBook";
}

.plus-jakarta-sans-weighbook {
  font-family: var(--wb-font);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

a, h1, h2, h3, h4, h5, h6, label, li, p {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  -webkit-font-smoothing: antialiased; /* For WebKit browsers on macOS */
  -moz-osx-font-smoothing: grayscale; /* For Firefox on macOS */
  text-rendering: optimizeLegibility; /* Encourages browser to prioritize legibility */
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

.min-height-400 .ck-editor__editable {
  min-height: 400px;
}

.ck .ck-html-embed .raw-html-embed__source {
  min-height: 200px;
}

.has-next-up .top-5-with-sponsors, .has-next-up .top-5-only {
  padding: 0 !important;
}

.big-center-label {
  font-size: 1.5rem;
  font-weight: bold;
}

.weighbook-blue-color {
  color: #008afc !important;
}

.smaller-date {
  font-size: 0.9rem !important;
}

html, body {
  font-size: 13px;
  font-family: var(--wb-font) !important;
}

.flexed-btn-contents .btn-label {
  padding-right: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.smaller-team .primary-value {
  font-size: 0.9rem !important;
}

.no-show-team {
  color: gray;
  opacity: 0.6;
  text-decoration: line-through;
}

.no-show-marker {
  color: red;
  padding-left: 10px;
  text-decoration: none;
}

.loading-outer-wrapper {
  top: 10px;
  left: 0;
  width: 100%;
  position: relative;
}
.loading-outer-wrapper .loading-contents {
  margin: 10% auto 10%;
  width: 300px;
  height: 290px;
  border: 1px solid #008afc;
  border-radius: 20px;
  text-align: center;
}
.loading-outer-wrapper .loading-contents .loading-label {
  padding: 20px 0 0;
  position: relative;
  z-index: 99999;
}

.italic {
  font-style: italic;
}

.scale-form .extras {
  padding: 10px;
}
.scale-form .extras .extra {
  font-weight: 500;
  color: #456ff9;
}

.pad-top-10, .pdd-top-5 {
  padding-top: 10px;
}

.pad-bottom-25 {
  padding-bottom: 25px;
}

.pad-sides-5 {
  padding: 0 5px;
}

.pad-left-10 {
  padding-left: 10px;
}

.pad-right-10 {
  padding-right: 10px;
}

.margin-left-10 {
  margin-left: 10px;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

img,
embed,
iframe,
object,
audio,
video {
  max-width: 100%;
}

html {
  box-sizing: border-box;
}

p.normal-p {
  display: block;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1em;
}

body {
  color: #606c76;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.module-type {
  color: red;
  font-weight: 700;
}

.color-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  width: 60px;
  border-radius: 0.42rem;
}

/* Used for cuts */
.new-stacked-table.mat-mdc-table .mat-mdc-row.cut-below-border {
  border-bottom: 2px solid #dc3545 !important;
}

.cut-below-border {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  padding-bottom: 20px;
}

.cut-below-border::after {
  content: "CUT LINE";
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #dc3545;
  font-weight: bold;
  text-align: center;
  color: white;
  padding: 3px 0;
  font-size: 14px;
  display: inline-block;
}

/* END Used for cuts */
.deleted-record-message {
  min-width: 200px;
  margin: 0 auto;
  padding: 25px;
}

.search-footer .action-btns {
  padding-bottom: 10px;
}
.search-footer button {
  margin: 0 5px;
}

.cursor-on-hover {
  cursor: pointer;
}

.field-explanation {
  font-size: 0.9rem;
  color: #333;
}

.ngx-charts text {
  font-family: inherit !important;
}
.ngx-charts .tick text {
  font-size: 0.8rem !important;
  fill: #64748b !important;
}
.ngx-charts .textDataLabel {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  fill: #1e293b !important;
}
.ngx-charts path.domain {
  stroke: #e2e8f0 !important;
}
.ngx-charts .gridline-path {
  stroke: #f1f5f9 !important;
}

.ngx-charts-tooltip-content {
  background: #1e293b !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
  padding: 0 !important;
  font-family: inherit !important;
}
.ngx-charts-tooltip-content .tooltip-caret {
  border-top-color: #1e293b !important;
}

.text-overflow-wrapper {
  padding-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.label-wrapper {
  font-weight: bold;
}
.label-wrapper.completed {
  color: #68e365;
  border-color: rgba(23, 198, 83, 0.2);
}
.label-wrapper.processing {
  border-color: rgba(72, 72, 72, 0.2);
}
.label-wrapper.failed {
  color: #f8285a;
  border-color: rgba(248, 40, 90, 0.2);
}
.label-wrapper.voided {
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.2);
}

.pill-wrapper {
  justify-content: center;
  line-height: 1;
  border-radius: 0.25rem;
  padding: 0.5rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}
.pill-wrapper .pill-label {
  padding: 5px;
}
.pill-wrapper.completed {
  background-color: #eafff1;
  color: #17c653;
  border-color: rgba(23, 198, 83, 0.2);
}
.pill-wrapper.expired {
  background-color: #ff9292;
  color: #fff;
  border-color: #f8285a;
}
.pill-wrapper.processing {
  border-color: rgba(72, 72, 72, 0.2);
}
.pill-wrapper.failed {
  background-color: #ffeef3;
  color: #f8285a;
  border-color: rgba(248, 40, 90, 0.2);
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
}
.breadcrumb-trail .breadcrumb {
  color: #008afc;
  background-color: transparent;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.breadcrumb-trail .breadcrumb:first-of-type {
  padding-left: 0;
}
.breadcrumb-trail .breadcrumb.current {
  color: #838383;
}
.breadcrumb-trail .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb3be;
}
.breadcrumb-trail .arrow .material-symbols-outlined {
  font-size: 20px;
}

.outlet-wrapper {
  background: #fff;
}

.portal-wrapper .portal-container {
  min-height: calc(100vh - 120px) !important;
}

.centered-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
}

.dot {
  border: 4px solid transparent;
  border-radius: 100px;
  margin: 5px 5px 0;
  height: 0;
  width: 0;
  line-height: 0;
  font-size: 0;
}

.dot.green {
  border-color: #9AE14F;
}

.dot.red {
  border-color: #e14f4f;
}

.place-ordinal {
  display: flex;
}
.place-ordinal .ordinal-decor {
  display: inline-block;
  font-size: 0.9rem;
}

.flex-grow {
  flex-grow: 2;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0 !important;
}

.z-1 {
  z-index: -1 !important;
}

.z-9999 {
  z-index: 9999;
}

.opacity-40 {
  opacity: 0.4 !important;
}

.text-gray-200 {
  color: rgb(226, 232, 240) !important;
}

.pac-container {
  z-index: 99999;
}

.creation-wizard-wrapper .landing-address .address-outer-wrapper .address-label {
  background-color: #f9f9fc !important;
  background: #f9f9fc !important;
}

.fake-link {
  cursor: pointer;
  color: #087277 !important;
}
.fake-link:hover {
  text-decoration: underline !important;
  color: #087277 !important;
}

.text-muted {
  color: #B5B5C3;
}

.processing-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5098039216);
}
.processing-wrapper .processing-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.231372549);
  border-radius: 10px;
  padding: 25px;
}
.processing-wrapper .processing-inner-wrapper .processing-message {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.small-value-align-right {
  width: 70px;
  margin: 0 auto;
  text-align: right;
}

.faked-tabs {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  margin: 0;
  flex-wrap: wrap;
}
.faked-tabs .fake-tab {
  display: flex;
  align-items: center;
  color: #64748b;
  font-weight: 500;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  -webkit-user-select: none;
          user-select: none;
}
.faked-tabs .fake-tab .tab-label {
  padding: 0;
  line-height: 1;
}
.faked-tabs .fake-tab:hover:not(.active) {
  color: #334155;
  background: rgba(0, 0, 0, 0.04);
}
.faked-tabs .fake-tab.active {
  color: #008afc;
  background: rgba(0, 138, 252, 0.08);
  box-shadow: 0 1px 3px rgba(0, 138, 252, 0.15);
  font-weight: 600;
  cursor: default;
}
.faked-tabs.no-margin-pullup {
  margin-bottom: 10px;
}
.faked-tabs.active-is-tab {
  justify-content: flex-start;
}
.faked-tabs.active-is-tab .fake-tab {
  flex: none;
  margin: 0;
}
.faked-tabs.active-is-tab .fake-tab .tab-label {
  font-size: 0.9rem;
}

.tab-body {
  margin-top: 0;
}

.type-pill {
  padding: 5px 20px;
  border-radius: 5px;
  width: 125px;
  font-weight: 500;
  text-align: center;
  cursor: default;
}

.table-wrapper {
  position: relative !important;
}

.loading-wrapper {
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #cbcbcb;
}
.loading-wrapper.non-absolute {
  position: relative;
}
.loading-wrapper .loading-with-info {
  width: 375px;
  height: 300px;
  margin: 0 auto;
  background: #fff;
  position: absolute;
  top: 25%;
  border: 1px solid black;
  border-radius: 5px;
}
.loading-wrapper .loading-with-info .loading-label {
  font-size: 1rem;
  font-weight: bold;
}
.loading-wrapper .loading-with-info .current-results {
  padding: 25px 0 0px;
}
.loading-wrapper .loading-with-info .current-results .label {
  padding-bottom: 5px;
}

.loading-shaded-spinner {
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loading-shaded-spinner .loading-label {
  margin: 0 0 30px;
  color: #008afc;
}

.loading-spinner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tournament-pill {
  background: #dff7e9;
  color: #087277;
}

.main-message-content.warning {
  color: #dc3545;
}

.stealth-mode vg-overlay-play .vg-overlay-play .overlay-play-container.vg-icon-play_arrow {
  background: rgba(0, 0, 0, 0.4705882353) !important;
}
.stealth-mode vg-controls {
  background: transparent !important;
}
.stealth-mode vg-controls vg-fullscreen {
  position: absolute;
  top: 0;
  right: 0;
}

.tour-pill {
  background: #e3ecfd;
  color: #417dfb;
}

.division-pill {
  background: #f9e6dd;
  color: #ff6018;
}

.season-pill {
  background: #e4d3ff;
  color: #6400ff;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.auto-height {
  min-height: auto !important;
}

.btn-group.full-width-btn-group {
  padding-top: 25px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  height: 50px;
}

.site-logo img {
  height: 30px;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none !important;
}

.text-align-center {
  text-align: center;
}

.custom-header-color {
  background: #fff !important;
  color: #285689;
}
.custom-header-color .nav-link {
  color: #285689;
}
.custom-header-color .nav-link:hover {
  color: #0b3a70;
}

.overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(66, 64, 64, 0.6);
  z-index: 1;
}

.overlay.darker {
  background: rgba(66, 64, 64, 0.8);
}

.danger-wrapper {
  color: #F64E60;
  background-color: #FFE2E5;
}

.success-wrapper {
  color: #1BC5BD;
  background-color: #C9F7F5;
}

.warning-wrapper {
  color: #FFA800;
  background-color: #FFF4DE;
}

@media (min-width: 900px) {
  .menuicon {
    display: none;
  }
  .row {
    display: flex;
    flex-direction: row;
    flex: 0 1 auto;
    flex-wrap: wrap;
  }
  .column {
    float: left;
    margin-left: 1.6%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .column:first-child {
    margin-left: 0;
  }
  .is-1,
  .is-2,
  .is-3,
  .is-4,
  .is-5,
  .is-6,
  .is-7,
  .is-8,
  .is-9,
  .is-10,
  .is-11,
  .is-12,
  .is-one-third,
  .is-two-third,
  .is-half {
    flex: none;
  }
  .is-1 {
    width: 6.866%;
  }
  .is-2 {
    width: 15.33%;
  }
  .is-3 {
    width: 23.8%;
  }
  .is-4 {
    width: 32.26%;
  }
  .is-5 {
    width: 40.73%;
  }
  .is-6 {
    width: 49.2%;
  }
  .is-7 {
    width: 57.66%;
  }
  .is-8 {
    width: 66.13%;
  }
  .is-9 {
    width: 74.6%;
  }
  .is-10 {
    width: 83.06%;
  }
  .is-11 {
    width: 91.53%;
  }
  .is-12 {
    margin-left: 0;
    width: 100%;
  }
  .is-one-third {
    width: 32.26%;
  }
  .is-two-third {
    width: 66.13%;
  }
  .is-half {
    width: 49.2%;
  }
}
/*Section hero*/
section.hero {
  background-image: linear-gradient(45deg, #0058bd, #0af);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.search-content {
  padding-top: 25px !important;
}

.hero .title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Typography */
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 0;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.2rem;
  line-height: 1.3;
}

/* h4 {
   font-size: 1.8rem;
   line-height: 1.35;
}

h5 {
   font-size: 1.6rem;
   line-height: 1.5;
}

h6 {
   font-size: 1.2rem;
   line-height: 1.6;
} */
/* Links and Others */
a {
  color: #008fea;
  text-decoration: none;
  transition: all 0.4s ease-out;
}

a:hover {
  color: #000;
}

hr {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  height: 0;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.field-wrapper input {
  background: transparent;
}

.error-wrapper {
  margin-top: -10px;
  padding-bottom: 10px;
}

.field-label {
  margin-bottom: -5px;
}
.field-label label {
  font-size: 1.175rem;
  font-weight: 600;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.padding-20-15 {
  padding: 20px 15px;
}

@media (min-width: 680px) {
  .fifty-fifty {
    flex-grow: 1;
  }
  .fifty-fifty button {
    width: 50% !important;
  }
  .flex-row {
    display: flex;
    justify-content: space-between;
  }
  .flex-row .field-wrapper {
    width: 50%;
  }
  .flex-row .field-wrapper:first-child {
    margin-right: 10px;
  }
  .flex-row .field-wrapper:last-child {
    margin-left: 10px;
  }
  .flex-row .field-wrapper.single-row:first-child {
    margin-right: 0;
  }
  .flex-row .field-wrapper.single-row:last-child {
    margin-left: 0;
  }
}
/* Buttons */
button,
input,
select,
textarea {
  margin: 0;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  background-color: transparent;
  border: 1px solid #bbb;
  border-radius: 3px;
  color: #555;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-out;
  white-space: nowrap;
}
.button.no-border,
button.no-border,
input[type=submit].no-border,
input[type=reset].no-border,
input[type=button].no-border {
  border: 0 !important;
  text-transform: unset;
}

.cdk-overlay-container .button,
.cdk-overlay-container button,
.cdk-overlay-container input[type=submit],
.cdk-overlay-container input[type=reset],
.cdk-overlay-container input[type=button] {
  text-transform: unset;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  border-color: #000;
  color: #000;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  background-color: #008fea;
  border-color: #008fea;
  color: #fff;
  transition: all 0.4s ease-out;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.default-flex {
  display: flex;
}

.default-flex-col {
  display: flex;
  flex-direction: column;
}

.flex-centered {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.default-flex.align-center {
  align-items: center;
}

.default-flex.space-around {
  justify-content: space-around;
}

.default-flex.space-between {
  justify-content: space-between;
}

.default-flex.justify-end {
  justify-content: flex-end;
}

.default-flex.flex-wrap {
  flex-wrap: wrap;
}

.flex-auto {
  flex: 1 1 auto !important;
}

button.center-all {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.button {
  line-height: 2.5rem;
}

.is-button-nav {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.8rem;
}

.button.is-inverted {
  border-color: #fff;
  color: #fff;
}

.button.is-inverted:hover {
  background-color: #fff;
  color: #008fea;
}

.public-page-wrapper p {
  margin-bottom: 25px;
}

.no-access {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #008afc;
  font-weight: 600;
  font-size: 1.5rem;
}

/* Utilities */
.full-width {
  width: 100% !important;
  max-width: 100% !important;
}

.flex-grid .full-width {
  width: 98%;
}

.padding-top-20 {
  padding-top: 1.25rem;
}

.padding-top-30 {
  padding-top: 1.875rem;
}

.padding-top-50 {
  padding-top: 3.125rem;
}

.padding-top-80 {
  padding-top: 5rem;
}

.padding-top-100 {
  padding-top: 6.25rem;
}

.padding-bottom-20 {
  padding-bottom: 1.25rem;
}

.padding-bottom-30 {
  padding-bottom: 1.875rem;
}

.padding-bottom-50 {
  padding-bottom: 3.125rem;
}

.padding-bottom-80 {
  padding-bottom: 5rem;
}

.padding-bottom-100 {
  padding-bottom: 6.25rem;
}

.margin-top-20 {
  margin-top: 1.25rem;
}

.margin-top-30 {
  margin-top: 1.875rem;
}

.margin-top-50 {
  margin-top: 3.125rem;
}

.margin-top-80 {
  margin-top: 5rem;
}

.margin-top-100 {
  margin-top: 6.25rem;
}

.margin-bottom-20 {
  margin-bottom: 1.25rem;
}

.margin-bottom-30 {
  margin-bottom: 1.875rem;
}

.margin-bottom-50 {
  margin-bottom: 3.125rem;
}

.margin-bottom-80 {
  margin-bottom: 5rem;
}

.margin-bottom-100 {
  margin-bottom: 6.25rem;
}

.no-padding {
  padding: 0 !important;
}

.is-fullwidth {
  width: 100%;
}

.is-pull-right {
  float: right;
}

.is-pull-left {
  float: left;
}

.is-text-centered {
  text-align: center;
}

.row.is-gapless > .column {
  margin: 0;
  padding: 0;
}

.make-color-green {
  color: #0ba90b !important;
}

.make-color-blue {
  color: #3f51b5 !important;
}

.make-color-red {
  color: #f44336 !important;
}

/* Clearing */
.container:after,
.row:after,
.u-cf {
  clear: both;
  content: "";
}

.opacity-50 {
  opacity: 0.5;
}

/* Flex Utils */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-align-center {
  align-items: center;
}

.flex-justify-center {
  justify-content: center;
}

.btn-group button {
  min-height: 45px;
}

button.btn {
  padding: 10px 20px;
  font-size: 13px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}

button.btn-primary {
  background: #185FA5;
  border: 1px solid #185FA5;
  color: #fff;
}
button.btn-primary:hover {
  background: #124578;
}

@media (min-width: 650px) {
  .loading-shaded-spinner {
    height: 80vh;
  }
  .full-height {
    min-height: calc(100vh - 146px) !important;
  }
  .max-height {
    min-height: 100vh;
  }
}
.loading-wrapper.full-height {
  min-height: 90vh !important;
}

.create-wrapper {
  background: #fff;
}

.flex-center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.flex-grid {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-grid .flex-field {
  flex: 0 0 calc(50% - 0.5em);
  padding: 5px 0;
}

@media (min-width: 650px) {
  .hide-mobile {
    display: inline-flex !important;
  }
  .flex-grid {
    display: flex;
  }
  .flex-grid .flex-field {
    max-width: 50%;
  }
}
/* Utilities */
.margin-right-10 {
  margin-right: 10px !important;
}

.bold {
  font-weight: bold;
}

@media screen and (max-width: 499px) {
  .is-hidden-mobile {
    display: none;
  }
}
.disabled {
  opacity: 0.2;
}

.btn {
  outline: none !important;
  vertical-align: middle;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn i {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover:not(.btn-text), .btn:focus:not(.btn-text), .btn.focus {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover:not(.btn-text) i, .btn:focus:not(.btn-text) i, .btn.focus i {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn.disabled, .btn:disabled {
  color: white !important;
  opacity: 0.2;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn.disabled i, .btn:disabled i {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:not(:disabled):not(.disabled):active:not(.btn-text), .btn:not(:disabled):not(.disabled).active,
.show > .btn.dropdown-toggle {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:not(:disabled):not(.disabled):active:not(.btn-text) i, .btn:not(:disabled):not(.disabled).active i,
.show > .btn.dropdown-toggle i {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus:not(.btn-shadow):not(.btn-shadow-hover) {
  box-shadow: none !important;
}

.btn.btn-square {
  border-radius: 0;
}

.btn.btn-pill {
  border-radius: 2rem;
}

.btn.btn-text {
  cursor: text;
}

.btn:not(.btn-text) {
  cursor: pointer;
}

.btn.btn-borderless {
  border-color: transparent;
}

.btn i {
  font-size: 1.3rem;
  padding-right: 0.35rem;
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
}

.btn .svg-icon {
  margin-right: 0.5rem;
}

.btn .svg-icon svg {
  height: 18px;
  width: 18px;
}

.btn.btn-xs i {
  font-size: 1rem;
  padding-right: 0.3rem;
}

.btn.btn-xs .svg-icon {
  margin-right: 0.3rem;
}

.btn.btn-xs .svg-icon svg {
  height: 16px;
  width: 16px;
}

.btn.btn-sm i, .btn-group-sm > .btn i {
  font-size: 1.3rem;
  padding-right: 0.35rem;
}

.btn.btn-sm .svg-icon, .btn-group-sm > .btn .svg-icon {
  margin-right: 0.35rem;
}

.btn.btn-sm .svg-icon svg, .btn-group-sm > .btn .svg-icon svg {
  height: 16px;
  width: 16px;
}

.btn.btn-lg i, .btn-group-lg > .btn i {
  font-size: 1.5rem;
  padding-right: 0.75rem;
}

.btn.btn-lg .svg-icon, .btn-group-lg > .btn .svg-icon {
  margin-right: 0.75rem;
}

.btn.btn-lg .svg-icon svg, .btn-group-lg > .btn .svg-icon svg {
  height: 20px;
  width: 20px;
}

.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: calc(1.5em + 1.3rem + 2px);
  width: calc(1.5em + 1.3rem + 2px);
}

.btn.btn-icon.btn-xs {
  height: 24px;
  width: 24px;
}

.btn.btn-icon.btn-sm, .btn-group-sm > .btn.btn-icon {
  height: calc(1.35em + 1.1rem + 2px);
  width: calc(1.35em + 1.1rem + 2px);
}

.btn.btn-icon.btn-lg, .btn-group-lg > .btn.btn-icon {
  height: calc(1.5em + 1.65rem + 2px);
  width: calc(1.5em + 1.65rem + 2px);
}

.btn.btn-icon.btn-circle {
  border-radius: 50%;
}

.btn.btn-icon i {
  padding: 0;
  margin: 0;
}

.btn.btn-icon [class^=socicon-]:before,
.btn.btn-icon [class*=" socicon-"]:before {
  line-height: 1;
}

.btn.btn-icon .svg-icon {
  margin: 0;
  padding: 0;
}

.btn.btn-fixed-height {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.btn.btn-fixed-height.btn {
  height: calc(1.5em + 1.3rem + 2px);
}

.btn.btn-fixed-height.btn-sm, .btn-group-sm > .btn.btn-fixed-height {
  height: calc(1.35em + 1.1rem + 2px);
}

.btn.btn-fixed-height.btn-lg, .btn-group-lg > .btn.btn-fixed-height {
  height: calc(1.5em + 1.65rem + 2px);
}

.container {
  margin: 0 auto;
  max-width: 112rem;
  padding: 0 2vw;
  position: relative;
  width: 90vw;
}

.hide-mobile {
  display: none;
}

.row {
  display: block;
}

.column {
  padding: 0.3rem 1rem;
}

.logo a {
  text-transform: uppercase;
}

.spacer {
  display: none;
}

.full-width-btn-group {
  width: 100%;
}

.ngx-material-timepicker {
  padding-top: 50px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.ngx-material-timepicker-heading__title {
  font-weight: 400;
  font-size: 25px;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.ngx-material-timepicker-examples__title {
  font-weight: 400;
  font-size: 22px;
}

.ngx-material-timepicker-examples__container {
  margin-bottom: 30px;
}

.ngx-material-timepicker-example {
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 6px, rgba(0, 0, 0, 0.12) 0 1px 4px;
  overflow: hidden;
}

.ngx-material-timepicker-example__body {
  padding: 15px;
}

.ngx-material-timepicker-example__description {
  margin: 0 0 15px;
}

.ngx-material-timepicker-example__form-group {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.3803921569);
}

.ngx-material-timepicker-example__form-group:not(:last-child) {
  margin-bottom: 20px;
}

.ngx-material-timepicker-example__form-group--toggled {
  display: flex;
  align-items: center;
  height: 48px;
  border-radius: 5px;
  padding: 10px;
  margin: 0.25em 0;
}

.ngx-material-timepicker-example__form-group--disabled {
  border-bottom-style: dashed;
}

.ngx-material-timepicker-example__form-group input {
  width: 100%;
  height: 100%;
  border: 0;
  font-size: 16px;
}

.ngx-material-timepicker-example__form-group input:disabled {
  background-color: transparent;
  cursor: not-allowed;
}

.ngx-material-timepicker-example__form-group input:focus {
  outline: 0;
}

.ngx-material-timepicker-example__form-group input::placeholder {
  font-size: 16px;
  color: #ccc;
}

/* Card Rules */
.card {
  position: relative;
  background-color: #ffffff;
  margin-bottom: 15px;
  border: 1px solid #e6ecf5;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.card.no-margin-bottom {
  margin-bottom: 0 !important;
}

.card-block {
  padding: 30px;
}

.hidden {
  display: none !important;
}

.flex-wrapper.form-field {
  display: flex;
  padding: 0.75rem;
  border-top: 1px solid #e9ecef;
  vertical-align: top;
}

.sections-wrapper .flex-wrapper.form-field {
  font-size: 1.1rem;
}

.no-lined-field-rows .flex-wrapper.form-field {
  border: none;
  padding: 0.15rem 0;
}

.form-field .title {
  font-weight: 700;
  color: #515365;
  width: 45%;
}

.no-lined-field-rows .card .card-heading {
  background: rgba(44, 40, 41, 0.09);
}

.main-leaderboard-wrap {
  display: block !important;
}

html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 13px !important;
  font-weight: 400;
  font-family: var(--wb-font) !important;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1199.98px) {
  html,
  body {
    font-size: 12px !important;
  }
}
@media (max-width: 991.98px) {
  html,
  body {
    font-size: 12px !important;
  }
}
html a:hover,
html a:active,
html a:focus,
body a:hover,
body a:active,
body a:focus {
  text-decoration: none !important;
}

html a,
html button,
body a,
body button {
  outline: none !important;
}

@media (min-width: 970px) {
  .form-field .title {
    width: 45%;
  }
  .full-width-desktop-only {
    width: 100%;
  }
  .text-center-desktop-only {
    text-align: center;
  }
  .main-leaderboard-wrap {
    display: flex !important;
  }
  .leaderboard-outer-wrapper .results {
    flex-grow: 2;
  }
}
@media screen and (max-width: 499px) {
  .is-hidden-mobile, .mobile-hidden {
    display: none !important;
  }
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/mobile.scss?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.ck-content {
  padding: 10px 25px !important;
  font-size: 1.2rem;
}

.ck-content .image-style-side {
  max-width: 50%;
  float: right;
  margin-left: var(--ck-image-style-spacing);
}

.ck-content .image.image_resized {
  max-width: 100%;
}

.ck-content .image.image_resized {
  display: block;
  box-sizing: border-box;
}

.ck-content .image.image_resized img {
  width: 100%;
}

.mc-mode-outer-wrapper .angler-name-row {
  padding: 0 0 10px 0 !important;
}
.mc-mode-outer-wrapper .top-5-with-sponsors {
  padding: 0 !important;
}

.ck-content .image.image_resized > figcaption {
  display: block;
}

.ck-content .table table td, .ck-content .table table th {
  border: 0 !important;
}

.mat-mdc-row:nth-child(even) {
  background-color: rgba(244, 246, 249, 0.6901960784);
}

.mat-mdc-table.dw-mobile-table {
  max-height: unset !important;
}

.dw-mobile-table .mat-mdc-cell {
  color: #7a7676 !important;
  padding: 3px 0 3px 0;
  min-height: 30px;
}

.dw-mobile-table.no-cell-borders .mat-mdc-cell {
  border: 0;
  font-size: 1rem !important;
}

.image-style-align-center {
  margin: 0 auto;
}

.style-form-wrapper {
  padding: 20px;
}

.profile-wrapper {
  display: block;
}
.profile-wrapper .inner-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 15px 35px;
}
.profile-wrapper .inner-profile-header .loc-date {
  font-size: 1.2rem;
}
.profile-wrapper .inner-profile-header .loc-date .date {
  font-weight: bold;
}
.profile-wrapper .inner-profile-header .loc-date .date::after {
  content: "•";
  margin: 0 0.75rem;
}
.profile-wrapper .info-panel {
  padding: 2rem;
  flex: 0 25%;
}
.profile-wrapper .tabbed-sections {
  flex: 0 100%;
  background: #fff;
}
.profile-wrapper .tabbed-sections .tab-wrapper {
  padding: 25px;
}

.portal-drawer-wrapper {
  position: relative;
}

@media (min-width: 680px) {
  .profile-wrapper .tabbed-sections {
    margin-left: 10px;
    flex: 0 74%;
  }
  .flex-field.full-width {
    flex: 100%;
    max-width: 100%;
  }
}
/* Mobile table overrides */
@media only screen and (max-width: 680px) {
  .mobile-sort-tools {
    display: flex;
    justify-content: space-between;
  }
  .header-filter, .dw-mobile-table .hide-on-mobile {
    display: none !important;
  }
  .header-btns .btn.pull-right {
    width: auto !important;
  }
  .dw-mobile-table tr.mat-mdc-footer-row, .dw-mobile-table tr.mat-mdc-row {
    height: auto;
  }
  .dw-mobile-table .mat-mdc-row, .dw-mobile-table .mat-mdc-table .mat-mdc-header-row,
  .dw-mobile-table tr.mat-row, .dw-mobile-table table.mat-table tr.mat-header-row,
  .dw-mobile-table .mat-mdc-row, .dw-mobile-table.mat-mdc-table .mat-mdc-header-row {
    min-width: auto;
  }
  .dw-mobile-table .mat-mdc-header-row {
    display: none;
  }
  .dw-mobile-table mat-footer-row, .dw-mobile-table mat-row,
  .dw-mobile-table tr.mat-mdc-footer-row, .dw-mobile-table tr.mat-mdc-row {
    min-height: 35px;
  }
  .dw-mobile-table .mat-mdc-row {
    display: block;
    padding: 10px;
  }
  .dw-mobile-table .mat-mdc-cell {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    min-height: 15px;
    border: 0;
  }
  .dw-mobile-table.mat-mdc-table, .smart-table-wrapper, .mat-mdc-table-wrapper {
    overflow: hidden !important;
  }
  .dw-mobile-table .mat-mdc-cell[data-th]:before {
    content: attr(data-th);
    color: #7774e7;
    font-size: 14px;
    font-weight: 700;
  }
  .dw-mobile-table mat-footer-row::after, .dw-mobile-table mat-header-row::after, .dw-mobile-table mat-row::after,
  .dw-mobile-table tr.mat-mdc-footer-row::after, .dw-mobile-table tr.mat-mdc-header-row::after, .dw-mobile-table tr.mat-mdc-row::after {
    display: none;
  }
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
  .mobile-sort-tools .mat-form-field-infix {
    width: 75px;
  }
}
.loading-stage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100000;
}

.loading-stage .text {
  color: #fff;
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 155px);
  transform: translateX(-50%) translateY(-50%);
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
}

.loading-stage .text:after, .loading-stage .text:before {
  width: 385px;
  height: 100px;
  position: absolute;
  top: 0;
  content: "";
}

.loading-stage .text:after {
  animation: float 4s linear infinite;
  background: url("/assets/images/pts_logo_white_font.png");
  background-repeat: no-repeat;
  background-size: 300px 75px;
}

.mobile-only {
  display: block;
}

span.mobile-only {
  display: inline-block;
}

.join-btn-wrapper, .desktop-only {
  display: none;
}

@media (min-width: 670px) {
  .join-btn-wrapper {
    display: block;
  }
  .dw-mobile-table .mat-mdc-cell {
    padding: 0;
    min-height: auto;
  }
  .dw-mobile-table mat-cell:first-of-type, .dw-mobile-table mat-footer-cell:first-of-type, .dw-mobile-table mat-header-cell:first-of-type,
  .dw-mobile-table td.mat-mdc-cell:first-of-type, .dw-mobile-table td.mat-mdc-footer-cell:first-of-type, .dw-mobile-table td.mat-mdc-header-cell:first-of-type {
    padding-left: 15px;
  }
  .dw-mobile-table mat-cell:last-of-type, .dw-mobile-table mat-footer-cell:last-of-type, .dw-mobile-table mat-header-cell:last-of-type,
  .dw-mobile-table td.mat-mdc-cell:last-of-type, .dw-mobile-table td.mat-mdc-footer-cell:last-of-type, .dw-mobile-table td.mat-mdc-header-cell:last-of-type {
    padding-right: 15px;
  }
  .mobile-only, span.mobile-only {
    display: none !important;
  }
  .desktop-only {
    display: block;
  }
  .profile-wrapper {
    flex-direction: row;
  }
  .profile-wrapper .inner-profile-header {
    flex-direction: row;
  }
  .loading-stage .text {
    line-height: 80px;
    left: calc(50% - 150px);
  }
}
@media (min-width: 960px) {
  .loading-stage .text:after {
    background-size: 385px 100px;
  }
}
/* Styles for screens up to 767px wide (commonly considered mobile breakpoint) */
/* @media only screen and (max-width: 767px) {
  .tournament-results-grid .mat-mdc-cell[data-th]:before {
    display: none;
  }
} */
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/svg.scss?ngGlobalStyle ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.svg-icon svg {
  height: 1.5rem;
  width: 1.5rem;
}

.svg-icon svg g [fill] {
  transition: fill 0.3s ease;
  fill: #B5B5C3;
}

.svg-icon svg:hover g [fill] {
  transition: fill 0.3s ease;
}

.svg-icon.svg-icon-md svg {
  height: 1.5rem !important;
  width: 1.5rem !important;
}
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/dashboards.scss?ngGlobalStyle ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.dashboard-wrapper, .weigh-in-portal-wrapper, .leaderboard-outer-wrapper {
  background-color: #fff;
  min-height: calc(100vh - 100px);
}
.dashboard-wrapper .dashboard-options-menu button:focus, .weigh-in-portal-wrapper .dashboard-options-menu button:focus, .leaderboard-outer-wrapper .dashboard-options-menu button:focus {
  outline: none !important;
}
.dashboard-wrapper mat-table, .weigh-in-portal-wrapper mat-table, .leaderboard-outer-wrapper mat-table {
  max-height: 325px;
  overflow-y: auto;
}
.dashboard-wrapper mat-table.auto-height, .weigh-in-portal-wrapper mat-table.auto-height, .leaderboard-outer-wrapper mat-table.auto-height {
  max-height: unset;
}
.dashboard-wrapper .dashboard-options, .weigh-in-portal-wrapper .dashboard-options, .leaderboard-outer-wrapper .dashboard-options {
  padding: 25px;
}
.dashboard-wrapper .two-wide .flex-column, .weigh-in-portal-wrapper .two-wide .flex-column, .leaderboard-outer-wrapper .two-wide .flex-column {
  position: unset;
}
.dashboard-wrapper .dash-number-row, .weigh-in-portal-wrapper .dash-number-row, .leaderboard-outer-wrapper .dash-number-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 0 0 49%;
  padding-bottom: 20px;
}
.dashboard-wrapper .dash-number-row .dash-num-container, .weigh-in-portal-wrapper .dash-number-row .dash-num-container, .leaderboard-outer-wrapper .dash-number-row .dash-num-container {
  width: 49%;
  padding-right: 10px;
}
.dashboard-wrapper .dash-number-row.three-wide .dash-num-container, .weigh-in-portal-wrapper .dash-number-row.three-wide .dash-num-container, .leaderboard-outer-wrapper .dash-number-row.three-wide .dash-num-container {
  width: 100%;
}
.dashboard-wrapper .dash-number-row.three-wide .icon-card-wrapper, .weigh-in-portal-wrapper .dash-number-row.three-wide .icon-card-wrapper, .leaderboard-outer-wrapper .dash-number-row.three-wide .icon-card-wrapper {
  justify-content: center;
}
.dashboard-wrapper .container-fluid.with-option-menu, .weigh-in-portal-wrapper .container-fluid.with-option-menu, .leaderboard-outer-wrapper .container-fluid.with-option-menu {
  padding-top: 10px;
}
.dashboard-wrapper .flex-row, .weigh-in-portal-wrapper .flex-row, .leaderboard-outer-wrapper .flex-row {
  display: block;
}
.dashboard-wrapper .flex-row .grow-2, .weigh-in-portal-wrapper .flex-row .grow-2, .leaderboard-outer-wrapper .flex-row .grow-2 {
  flex-grow: 2;
}
.dashboard-wrapper .dash-padded-row, .weigh-in-portal-wrapper .dash-padded-row, .leaderboard-outer-wrapper .dash-padded-row {
  margin-top: 20px;
}
.dashboard-wrapper .chart-table, .weigh-in-portal-wrapper .chart-table, .leaderboard-outer-wrapper .chart-table {
  display: flex;
  overflow-x: hidden;
}
.dashboard-wrapper .chart-table .combo-chart, .weigh-in-portal-wrapper .chart-table .combo-chart, .leaderboard-outer-wrapper .chart-table .combo-chart {
  flex-grow: 1;
}
.dashboard-wrapper .chart-table .pie-chart-one, .weigh-in-portal-wrapper .chart-table .pie-chart-one, .leaderboard-outer-wrapper .chart-table .pie-chart-one {
  margin-left: 20px;
  min-width: 33%;
  min-height: 240px;
}
.dashboard-wrapper .dashboard-options-menu, .weigh-in-portal-wrapper .dashboard-options-menu, .leaderboard-outer-wrapper .dashboard-options-menu {
  position: absolute;
  top: 5px;
  right: 0;
}
.dashboard-wrapper .piechart-content, .weigh-in-portal-wrapper .piechart-content, .leaderboard-outer-wrapper .piechart-content {
  width: 300px;
  height: 200px;
}
.dashboard-wrapper .date-span, .weigh-in-portal-wrapper .date-span, .leaderboard-outer-wrapper .date-span {
  display: flex;
  justify-content: center;
}
.dashboard-wrapper .date-picker-wrapper, .weigh-in-portal-wrapper .date-picker-wrapper, .leaderboard-outer-wrapper .date-picker-wrapper {
  margin-top: -10px;
}
.dashboard-wrapper header, .weigh-in-portal-wrapper header, .leaderboard-outer-wrapper header {
  padding: 10px 0 25px 0;
  background: #fff;
}
.dashboard-wrapper header h3.header-title, .weigh-in-portal-wrapper header h3.header-title, .leaderboard-outer-wrapper header h3.header-title {
  text-align: center;
  padding-top: 20px;
  margin-bottom: 5px;
}
.dashboard-wrapper header .date-span, .weigh-in-portal-wrapper header .date-span, .leaderboard-outer-wrapper header .date-span {
  text-align: center;
  font-size: 16px;
  display: flex;
  margin-bottom: -10px;
}
.dashboard-wrapper .quick-boxes, .weigh-in-portal-wrapper .quick-boxes, .leaderboard-outer-wrapper .quick-boxes {
  margin-bottom: 10px;
}
.dashboard-wrapper .current-account-wrapper, .weigh-in-portal-wrapper .current-account-wrapper, .leaderboard-outer-wrapper .current-account-wrapper {
  display: flex;
  justify-content: space-between;
}
.dashboard-wrapper .current-account-wrapper .current-account-picker, .weigh-in-portal-wrapper .current-account-wrapper .current-account-picker, .leaderboard-outer-wrapper .current-account-wrapper .current-account-picker {
  display: flex;
}
.dashboard-wrapper .current-account-wrapper .current-account-picker .current-account, .weigh-in-portal-wrapper .current-account-wrapper .current-account-picker .current-account, .leaderboard-outer-wrapper .current-account-wrapper .current-account-picker .current-account {
  height: 42px;
  background: rgb(142, 140, 235);
  color: #fff;
  line-height: 25px;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 7px 0 0 0;
}
.dashboard-wrapper .current-account-wrapper .current-account-picker .account-picker, .weigh-in-portal-wrapper .current-account-wrapper .current-account-picker .account-picker, .leaderboard-outer-wrapper .current-account-wrapper .current-account-picker .account-picker {
  margin-left: 1px;
  color: rgb(142, 140, 235);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 7px 0 0;
}

@media (min-width: 670px) {
  .dashboard-wrapper .dash-number-row, .weigh-in-portal-wrapper .dash-number-row, .leaderboard-outer-wrapper .dash-number-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 0 0 25%;
    padding-bottom: 20px;
  }
  .dashboard-wrapper .dash-number-row .dash-num-container, .weigh-in-portal-wrapper .dash-number-row .dash-num-container, .leaderboard-outer-wrapper .dash-number-row .dash-num-container {
    width: 24%;
    padding-right: 10px;
  }
  .dashboard-wrapper .dash-number-row.three-wide, .weigh-in-portal-wrapper .dash-number-row.three-wide, .leaderboard-outer-wrapper .dash-number-row.three-wide {
    flex: 0 0 33%;
  }
  .dashboard-wrapper .dash-number-row.three-wide .dash-num-container, .weigh-in-portal-wrapper .dash-number-row.three-wide .dash-num-container, .leaderboard-outer-wrapper .dash-number-row.three-wide .dash-num-container {
    width: 33%;
  }
  .dashboard-wrapper .dash-number-row.three-wide .icon-card, .weigh-in-portal-wrapper .dash-number-row.three-wide .icon-card, .leaderboard-outer-wrapper .dash-number-row.three-wide .icon-card {
    text-align: left;
  }
}
/* Moved from admin dashboard.css */
.dashboard-wrapper, .weigh-in-portal-wrapper, .leaderboard-outer-wrapper {
  padding: 15px;
}
.dashboard-wrapper .header-stats, .weigh-in-portal-wrapper .header-stats, .leaderboard-outer-wrapper .header-stats {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
}
.dashboard-wrapper .header-stats .welcome-box, .weigh-in-portal-wrapper .header-stats .welcome-box, .leaderboard-outer-wrapper .header-stats .welcome-box {
  flex-grow: 1;
}
.dashboard-wrapper .header-stats .welcome-box .main-label, .weigh-in-portal-wrapper .header-stats .welcome-box .main-label, .leaderboard-outer-wrapper .header-stats .welcome-box .main-label {
  color: #4a5157;
  font-size: 16px;
  font-weight: bold;
}
.dashboard-wrapper .header-stats .welcome-box .secondary-label, .weigh-in-portal-wrapper .header-stats .welcome-box .secondary-label, .leaderboard-outer-wrapper .header-stats .welcome-box .secondary-label {
  color: #878a99;
  padding-bottom: 10px;
}
.dashboard-wrapper .dash-row, .weigh-in-portal-wrapper .dash-row, .leaderboard-outer-wrapper .dash-row {
  display: flex;
  flex-wrap: wrap;
}
.dashboard-wrapper .quick-box, .weigh-in-portal-wrapper .quick-box, .leaderboard-outer-wrapper .quick-box {
  background: #fff;
}
.dashboard-wrapper .tab-wrapper, .weigh-in-portal-wrapper .tab-wrapper, .leaderboard-outer-wrapper .tab-wrapper {
  border: 1px solid #ececec;
  /* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */
}
.dashboard-wrapper .tab-wrapper .mat-tab-label, .weigh-in-portal-wrapper .tab-wrapper .mat-tab-label, .leaderboard-outer-wrapper .tab-wrapper .mat-tab-label {
  background: #fff;
}
.dashboard-wrapper .chart-box, .weigh-in-portal-wrapper .chart-box, .leaderboard-outer-wrapper .chart-box {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  margin-bottom: 20px;
}
.dashboard-wrapper .chart-box .grid-body, .weigh-in-portal-wrapper .chart-box .grid-body, .leaderboard-outer-wrapper .chart-box .grid-body {
  height: 188px;
}
.dashboard-wrapper .flex-row, .weigh-in-portal-wrapper .flex-row, .leaderboard-outer-wrapper .flex-row {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr) 0.25fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #dee2e6;
  padding: 0.75rem;
}
.dashboard-wrapper .flex-row-2-col, .weigh-in-portal-wrapper .flex-row-2-col, .leaderboard-outer-wrapper .flex-row-2-col {
  grid-template-columns: 2fr 1fr;
  padding: 25px;
}
.dashboard-wrapper .full-height, .weigh-in-portal-wrapper .full-height, .leaderboard-outer-wrapper .full-height {
  height: 100%;
}
.dashboard-wrapper .flex-table .flex-item, .weigh-in-portal-wrapper .flex-table .flex-item, .leaderboard-outer-wrapper .flex-table .flex-item {
  display: flex;
  align-items: center;
}
.dashboard-wrapper .flex-table .flex-item:first-child, .weigh-in-portal-wrapper .flex-table .flex-item:first-child, .leaderboard-outer-wrapper .flex-table .flex-item:first-child {
  padding-left: 15px;
}
.dashboard-wrapper .two-cols, .weigh-in-portal-wrapper .two-cols, .leaderboard-outer-wrapper .two-cols {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dashboard-wrapper .two-cols .card, .weigh-in-portal-wrapper .two-cols .card, .leaderboard-outer-wrapper .two-cols .card {
  width: 100%;
}
.dashboard-wrapper .two-cols .recent-tournament-table, .dashboard-wrapper .two-cols .upcoming-tournament-table, .dashboard-wrapper .two-cols .cash-flow-report-wrapper, .weigh-in-portal-wrapper .two-cols .recent-tournament-table, .weigh-in-portal-wrapper .two-cols .upcoming-tournament-table, .weigh-in-portal-wrapper .two-cols .cash-flow-report-wrapper, .leaderboard-outer-wrapper .two-cols .recent-tournament-table, .leaderboard-outer-wrapper .two-cols .upcoming-tournament-table, .leaderboard-outer-wrapper .two-cols .cash-flow-report-wrapper {
  width: 100%;
}
.dashboard-wrapper .two-cols .upcoming-tournament-table, .weigh-in-portal-wrapper .two-cols .upcoming-tournament-table, .leaderboard-outer-wrapper .two-cols .upcoming-tournament-table {
  margin-top: 20px;
}

.weigh-in-queue.dash-row, .queue-results.dash-row {
  display: block;
}

.dash-number-row {
  display: none !important;
}

@media (min-width: 580px) {
  .dash-number-row {
    display: flex !important;
  }
}
@media (min-width: 975px) {
  .dashboard-wrapper .dashboard, .weigh-in-portal-wrapper .dashboard, .leaderboard-outer-wrapper .dashboard {
    padding-right: 0;
  }
  .dashboard-wrapper .header-stats, .weigh-in-portal-wrapper .header-stats, .leaderboard-outer-wrapper .header-stats {
    display: flex;
    flex-direction: row;
  }
  .dashboard-wrapper .header-stats .secondary-label, .weigh-in-portal-wrapper .header-stats .secondary-label, .leaderboard-outer-wrapper .header-stats .secondary-label {
    padding-bottom: 0;
  }
  .dashboard-wrapper .flex-row, .weigh-in-portal-wrapper .flex-row, .leaderboard-outer-wrapper .flex-row {
    display: flex;
  }
  .dashboard-wrapper .flexed-grid .flex-row, .weigh-in-portal-wrapper .flexed-grid .flex-row, .leaderboard-outer-wrapper .flexed-grid .flex-row {
    display: grid;
  }
}
@media (min-width: 1110px) {
  .dashboard-wrapper .two-cols .card.half, .weigh-in-portal-wrapper .two-cols .card.half, .leaderboard-outer-wrapper .two-cols .card.half {
    width: 49%;
  }
  .dashboard-wrapper .two-cols .recent-tournament-table, .dashboard-wrapper .two-cols .upcoming-tournament-table, .dashboard-wrapper .two-cols .cash-flow-report-wrapper, .weigh-in-portal-wrapper .two-cols .recent-tournament-table, .weigh-in-portal-wrapper .two-cols .upcoming-tournament-table, .weigh-in-portal-wrapper .two-cols .cash-flow-report-wrapper, .leaderboard-outer-wrapper .two-cols .recent-tournament-table, .leaderboard-outer-wrapper .two-cols .upcoming-tournament-table, .leaderboard-outer-wrapper .two-cols .cash-flow-report-wrapper {
    width: 49%;
  }
  .dashboard-wrapper .two-cols .upcoming-tournament-table, .weigh-in-portal-wrapper .two-cols .upcoming-tournament-table, .leaderboard-outer-wrapper .two-cols .upcoming-tournament-table {
    margin-top: 0;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/profile.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.new-profile {
  min-height: calc(100vh - 110px);
  overflow-x: hidden;
  padding: 10px 20px;
  background: #fff;
}
.new-profile .flexed-wrapper {
  display: flex;
  flex: 1 2 auto;
}

button.square-icon-btn {
  padding: 0 10px;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.profile-header .profile-title-box {
  color: #494850;
  padding-top: 10px;
}
.profile-header .profile-button-container {
  display: flex;
  align-items: center;
}
.profile-header .profile-button-container .square-icon {
  margin-right: 20px;
}
.profile-header .profile-button-container .toggle-inner {
  padding: 0 10px;
}
.profile-header .profile-button-container .other-action-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 5px;
}

.sidenav {
  display: none;
  opacity: 0;
  width: 350px;
}

.sidenav.active-sidenav, .sidenav.pinned-sidenav {
  display: block;
  opacity: 100;
}

.sub-sidebar {
  /*
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  box-shadow: 0 1px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
  */
  border-radius: 7px;
  min-width: 200px;
  padding: 25px;
  display: none;
}
.sub-sidebar .card-header {
  padding: 20px;
  background-color: #fff;
}
.sub-sidebar .nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #fff;
}

.full-info-wrapper .info-tab-contents {
  display: flex;
  flex-wrap: wrap;
}
.full-info-wrapper .info-tab-contents .field-row {
  flex: 0 50%;
  min-width: 50%;
}

.mobile-picker {
  display: block;
  background: #fff;
  padding: 15px 0 0 15px;
}

.new-profile .sub-sidebar .card, .sub-sidebar .card .card-body {
  margin-bottom: 0;
  padding: 0;
}

.profile-full-info {
  margin-top: 5px;
}

.new-profile .nav .nav-item {
  display: flex;
  align-items: center;
  border-radius: 0.42rem;
  font-size: 0.75rem;
  padding: 3px 1.15rem;
  cursor: pointer;
  margin-bottom: 0.25rem;
  max-height: 35px;
}
.new-profile .nav .nav-item .nav-icon {
  flex: 0 0 2rem;
  max-width: 25px;
  margin-right: 0.5rem;
}
.new-profile .nav .nav-item .nav-icon .material-icons {
  font-size: 20px;
  color: #b5b5c3;
}
.new-profile .nav .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(63, 66, 84, 0.8117647059);
  font-weight: bold;
}

.new-profile .nav-item .nav-link {
  padding: 15px 0;
}

.new-profile .main-content {
  flex: 1 1 auto;
  padding-left: 0;
  margin-top: 0;
}

.new-profile .nav-link {
  cursor: pointer;
}

.new-profile .flexed-wrapper {
  display: block;
}

@media (min-width: 610px) {
  /* Normal layout (non-mobile) */
  .new-profile .colored-header {
    display: flex;
  }
}
@media (min-width: 950px) {
  /* Full screen layout */
  .new-profile .flexed-wrapper {
    display: flex;
  }
  .profile-full-info {
    margin-top: -5px;
  }
  .new-profile .nav {
    flex-direction: column;
  }
  .new-profile .profile-container {
    display: flex;
    padding-top: 10px;
  }
  .new-profile .main-content {
    flex: 1 1 auto;
  }
  .new-profile .mobile-picker {
    display: none;
  }
  .new-profile .sub-sidebar {
    padding: 0;
    display: block;
  }
}
:host, .profile-wrapper {
  width: 100%;
}

.profile-wrapper h2 {
  font-size: 2.25rem;
}
.profile-wrapper header {
  position: relative;
}
.profile-wrapper header .back-to-all {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgb(175, 206, 224);
}
.profile-wrapper header .header-contents {
  justify-content: space-between;
  padding: 60px 20px 60px;
  z-index: 99999;
  background-color: #ebf2f8;
}
.profile-wrapper header .header-contents .header-col .min-height {
  align-items: flex-start;
}
.profile-wrapper header .header-contents .header-col .starts-in-label, .profile-wrapper header .header-contents .header-col .dates-info {
  font-size: 1.35rem;
  font-weight: bold;
}
.profile-wrapper header .header-contents .header-col .dates-info {
  padding: 10px 0 20px;
}
.profile-wrapper header .header-contents .header-col .action-btns button {
  margin: 0 10px;
  height: 50px;
  width: 180px;
  border-radius: 10px;
}
.profile-wrapper header .header-contents .header-col.left-col {
  flex-direction: column;
}
.profile-wrapper header .gradient-bottom {
  width: 100%;
  height: 156px;
  position: absolute;
  bottom: 0;
  opacity: 0.75;
}
.profile-wrapper .small-dollar {
  display: inline-block;
  font-size: 2rem;
}
.profile-wrapper .quick-info {
  background-color: #ebf2f8;
  padding: 10px 0;
}
.profile-wrapper .quick-info .info-boxes {
  padding: 20px 0;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 625px;
}
.profile-wrapper .quick-info .info-boxes .info-box {
  padding: 0.5rem;
  background: #fff;
  flex-direction: column;
  width: 32%;
  height: 32%;
}
.profile-wrapper .quick-info .info-boxes .info-box .info-label {
  font-size: 1.25rem;
}
.profile-wrapper .quick-info .info-boxes .info-box .info-value {
  font-size: 2rem;
}
.profile-wrapper .tabs {
  padding: 0 10px 10px;
  background-color: #ebf2f8;
}
.profile-wrapper .tabs .tabbed-sections {
  margin-left: 0 !important;
}
.profile-wrapper .tabs .tabbed-sections .tab-wrapper {
  padding: 0 !important;
}

.logo {
  padding: 25px 0;
}

@media (min-width: 680px) {
  .left-col, .right-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profile-wrapper h2 {
    font-size: 2.75rem;
  }
  .profile-wrapper .header-contents {
    display: flex;
  }
  .profile-wrapper .header-contents .logo img {
    max-height: 300px;
    max-width: 25vw;
    min-width: 25vw;
  }
  .profile-wrapper .header-contents .pull-up {
    margin-top: -30px;
  }
  .profile-wrapper .header-col .min-height {
    min-height: 100px;
  }
  .profile-wrapper .title {
    padding-bottom: 10px;
  }
  .profile-wrapper .quick-info {
    padding-top: 10px;
  }
  .profile-wrapper .quick-info .info-boxes .info-box {
    border-radius: 10px;
    width: 125px;
    height: 125px;
    padding: 0.5rem;
  }
  .profile-wrapper .quick-info .info-boxes .info-box .info-value {
    font-size: 2.5rem;
  }
  .profile-wrapper .quick-info .info-boxes .info-box.center {
    margin: 0 20px;
  }
}
@media (min-width: 460px) {
  .quick-info {
    padding-top: 10px;
  }
  .quick-info .info-boxes .info-box {
    width: 200px !important;
    height: 184px !important;
    padding: 0.5rem;
  }
  .quick-info .info-boxes .info-box .info-value {
    font-size: 3.5rem;
  }
  .quick-info .info-boxes .info-box.center {
    margin: 0 20px;
  }
  .logo {
    padding: 0;
  }
}
@media (min-width: 960px) {
  .quick-info {
    padding-top: 10px;
  }
  .quick-info .info-boxes .info-box {
    width: 250px !important;
    height: 184px !important;
    padding: 0.5rem;
  }
  .quick-info .info-boxes .info-box .info-value {
    font-size: 4rem;
  }
  .quick-info .info-boxes .info-box.center {
    margin: 0 20px;
  }
  .logo {
    padding: 0;
  }
}
.tournament-name {
  text-align: center;
  padding-top: 25px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.countdown-timer .starts-in {
  font-weight: bold;
  font-size: 1.4rem;
}
.countdown-timer .sections-wrapper {
  display: flex;
  padding: 20px 0;
}
.countdown-timer .sections-wrapper .timer-section {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.2);
}
.countdown-timer .sections-wrapper .timer-section .timer-value {
  font-size: 2.5rem;
  padding-right: 3px;
}
.countdown-timer .sections-wrapper .timer-section .timer-value, .countdown-timer .sections-wrapper .timer-section .timer-label {
  font-weight: bold;
}
.countdown-timer .sections-wrapper .timer-section.center {
  margin: 0 20px;
}

@media (min-width: 980px) {
  .tournament-name {
    padding-top: 0;
  }
  .countdown-timer .sections-wrapper {
    display: flex;
  }
  .countdown-timer .sections-wrapper .timer-section {
    width: 184px;
    height: 184px;
  }
  .countdown-timer .sections-wrapper .timer-section .timer-value {
    font-size: 5rem;
  }
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/profile-new-design.scss?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.container {
  width: 100%;
}

.tour-banner {
  border: 1px solid #e6ecf5;
  border-top: 0;
}

.default-banner {
  border: 1px solid #e6ecf5;
  border-top: 0;
}

.loading-banner {
  position: relative;
  width: 100%;
  padding-bottom: 33%;
  background: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #d3d3d3;
  border-radius: 5px;
}

.inner-portal-wrapper {
  background: #fff;
  width: 100%;
}
.inner-portal-wrapper .ad-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.inner-portal-wrapper .profile-bg {
  width: 100%;
}
.inner-portal-wrapper .profile-bg img {
  width: 100%;
}
.inner-portal-wrapper .faked-tabs .fake-tab {
  letter-spacing: 0.2px;
}
.inner-portal-wrapper .tour-name h3 {
  font-weight: 700;
}

.profile-number-cards {
  flex-grow: 1;
  display: flex;
  gap: 10px;
  padding: 12px 0;
  flex-wrap: nowrap;
}
.profile-number-cards .profile-number-card {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}
.profile-number-cards .profile-number-card .number-card-inner-content {
  border-radius: 10px;
  border: 1px solid #e8f0fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 14px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
}
.profile-number-cards .profile-number-card .number-card-inner-content .label-icon-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8aa4b8;
  margin-bottom: 4px;
}
.profile-number-cards .profile-number-card .number-card-inner-content .card-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.1;
}
.profile-number-cards .profile-number-card .number-card-inner-content.all-stacked .icon-label-wrap {
  padding: 15px 0;
}

@media only screen and (max-width: 767px) {
  .profile-number-cards {
    display: none;
  }
}
.mobile-picker {
  display: block;
  padding: 12px 16px 8px;
}
.mobile-picker mat-form-field {
  width: 100%;
}

.faked-tabs {
  display: none;
}

.new-tour-profile-wrap {
  width: 100%;
}

.public-profile-page {
  display: block !important;
}
.public-profile-page .main-header {
  display: block;
  padding: 0;
}
.public-profile-page .main-header .left {
  flex: 1;
  min-width: 0;
}
.public-profile-page .main-header .right {
  padding-right: 0;
  display: flex;
  flex-wrap: wrap;
}
.public-profile-page .main-header .module-type {
  text-align: center;
  color: #008afc;
  font-weight: 600;
  font-size: 1.2rem;
}
.public-profile-page .main-header .tour-name h3 {
  margin: 0;
}

.action-card-btns {
  padding-top: 0;
}
.action-card-btns .action-btn {
  padding: 0 5px;
}
.action-card-btns .action-btn button {
  min-width: 90px;
}
.action-card-btns .action-btn button .btn-inner-wrap {
  align-items: center;
  gap: 5px;
}
.action-card-btns .action-btn button .btn-inner-wrap .button-label {
  padding-left: 0;
  text-transform: none !important;
  font-size: 1rem;
}
.action-card-btns .action-btn button .btn-inner-wrap .img-wrap {
  padding: 0 10px 0;
}
.action-card-btns .action-btn button .btn-inner-wrap .material-symbols-outlined {
  font-size: 1.3rem;
}
.action-card-btns .action-btn button .btn-inner-wrap .button-label, .action-card-btns .action-btn button .btn-inner-wrap .material-symbols-outlined {
  color: inherit;
}

.mobile-centered {
  text-align: center;
}

.tab-body {
  display: block;
  margin-top: 10px;
}
.tab-body .ad-column {
  padding-left: 10px;
}

@media (min-width: 690px) {
  .mobile-picker {
    display: none;
  }
  .faked-tabs {
    display: flex;
  }
  .mobile-centered {
    text-align: unset;
  }
  .public-profile-page .main-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
  }
  .public-profile-page .main-header .right {
    padding-right: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
  }
  main .main-flex {
    display: flex;
  }
  main .tour-profile-wrap2 {
    flex-grow: 1;
  }
  main .tour-profile-wrap2 .tab-body {
    display: flex;
    margin-top: 16px;
  }
  main .tour-profile-wrap2 .tab-body .section-switch {
    flex-grow: 1;
    padding-right: 25px;
  }
  main .ad-wrap {
    width: 20%;
    max-width: 300px;
  }
  .col-inner-wrap {
    min-width: 300px;
  }
}
.space-holder {
  min-width: 25%;
}

.tour-membership-block {
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

.public-url-copy {
  cursor: pointer;
}

.tour-icon-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100px;
  padding-right: 10px;
}
.tour-icon-wrap img {
  background-size: contain;
  min-height: 50px;
}

@media (min-width: 650px) {
  .tour-membership-block {
    margin: 0;
  }
}
@media (min-width: 960px) {
  .public-profile-page {
    display: flex !important;
  }
  .public-profile-page .section-switch {
    width: 80%;
  }
  .public-profile-page .section-switch.no-ads {
    width: 100%;
  }
  .public-profile-page main .section-switch {
    width: 80%;
    padding-right: 10px;
  }
  .public-profile-page .new-tour-profile-wrap .tab-body {
    display: flex;
  }
  .public-profile-page .main-header {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .public-profile-page .main-header.no-ads {
    width: 100%;
  }
  .public-profile-page .main-header.no-ads .right {
    padding-right: 0;
  }
  .public-profile-page .main-header .module-type {
    text-align: left;
  }
  .profile-number-cards {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}
/* Public details for each type */
.tagline-director-wrap {
  display: flex;
  flex-direction: column;
}
.tagline-director-wrap .director-wrapper {
  align-self: flex-end;
  display: flex;
  align-items: center;
}
.tagline-director-wrap .director-wrapper .director-icon .material-symbols-outlined {
  padding-top: 2px;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.tagline-director-wrap .director-wrapper .director-name {
  font-weight: 600;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/grids.scss?ngGlobalStyle ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:host {
  width: 100%;
}

.search-btn.active-search .mdc-button {
  border: 1px solid rgba(255, 0, 0, 0.3490196078) !important;
  box-shadow: 0px 0px 4px 7px #e3e1e3 !important;
  -webkit-box-shadow: 0px 0px 4px 7px #e3e1e3 !important;
}

.no-records-add-new {
  flex-direction: column;
  padding: 25px 0;
}
.no-records-add-new .no-records-label {
  padding-bottom: 20px;
}

.slim-header {
  padding-left: 3px;
}

.new-stacked-table .tr-icon {
  border-radius: 10px;
}
.new-stacked-table .bgl-danger {
  background: #fee6ea;
  border-color: #fee6ea;
}
.new-stacked-table .bgl-success {
  background: #e7fbe6;
  border-color: #e7fbe6;
}

.white-bg-paginator {
  background: #fff;
}

.dw-sleek-table.mat-mdc-table {
  border: 1px solid #e0e2e7;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.dw-sleek-table.mat-mdc-table .mat-mdc-header-row {
  background-color: #f9f9fc;
}
.dw-sleek-table.mat-mdc-table .mat-mdc-header-row .mat-mdc-header-cell {
  color: #707070;
}
.dw-sleek-table.mat-mdc-table .mat-mdc-header-row, .dw-sleek-table.mat-mdc-table .mat-mdc-header-cell {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.mat-mdc-table .mat-mdc-header-cell.centered {
  text-align: center;
}

.leaderboard-results-grid .mat-mdc-cell {
  min-height: 65px;
  justify-content: center !important;
}

.sleek-grid-design .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
.sleek-grid-design header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0 20px;
  position: relative;
}
.sleek-grid-design header h2 {
  margin-bottom: 0 !important;
}
.sleek-grid-design header .action-btns {
  position: relative;
}
.sleek-grid-design header .tournament-main-title {
  color: #000;
}
.sleek-grid-design header .status-picker {
  padding: 5px 0;
}
.sleek-grid-design header .btns .search-btn {
  margin-right: 15px;
}
.sleek-grid-design header .btns .btn-inner-wrap {
  align-items: center;
}
.sleek-grid-design header .btns .btn-inner-wrap .button-label {
  padding-right: 10px;
  text-transform: none !important;
  font-size: 0.9rem;
}
.sleek-grid-design .search-fields {
  padding-top: 25px;
}
.sleek-grid-design .tournament-link {
  padding: 10px 0;
}
.sleek-grid-design .tournament-link .name-wrap {
  color: #4a4a4a;
  font-weight: 600;
}
.sleek-grid-design .tournament-link .smaller-link {
  font-size: 0.9rem;
  color: #8c94a4 !important;
}
.sleek-grid-design .tour-link .fake-link {
  color: #417dfb !important;
}
.sleek-grid-design .division-link .fake-link {
  color: #ff6018 !important;
}
.sleek-grid-design .action-btns {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.sleek-grid-design .action-btns button {
  width: 50%;
}
.sleek-grid-design .action-btns .search-btn {
  margin-right: 10px;
}
.sleek-grid-design .filter-wrapper {
  display: flex;
}
.sleek-grid-design .filter-wrapper .filter-field {
  padding-right: 25px;
}
.sleek-grid-design .paginator-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sleek-grid-design .tournament-bg-wrapper {
  position: relative;
  background: rgba(0, 0, 0, 0.9019607843);
  height: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.sleek-grid-design .tournament-bg-wrapper .tournament-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.sleek-grid-design .tournament-library {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sleek-grid-design .tournament-library .tournament {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  width: 100%;
  margin: 5px;
}
.sleek-grid-design .tournament-library .tournament .tournament-label {
  color: #000;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
  height: 50px;
}
.sleek-grid-design .tournament-library .tournament .overlay-container {
  position: relative;
  width: 99%;
  height: 160px;
}
.sleek-grid-design .tournament-library .tournament .overlay-container .tournament-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.sleek-grid-design .tournament-library .tournament .overlay-container .tournament-desc .tournament-title {
  padding: 10px 0;
  font-size: 1.1rem;
}
.sleek-grid-design .tournament-library .tournament .overlay-container .tournament-desc .tourney-date {
  border-top: 1px solid rgba(255, 255, 255, 0.5882352941);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5882352941);
  font-size: 1.3rem;
  text-transform: uppercase;
}
.sleek-grid-design .tournament-library .tournament .overlay-container .tournament-desc .desc-row {
  padding: 8px 0;
}
.sleek-grid-design .tournament-library .tournament .quick-stats {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  height: 50px;
}
.sleek-grid-design .tournament-library .tournament .quick-stats .stat-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  background: #000;
  color: #fff;
  width: 33%;
}
.sleek-grid-design .tournament-library .tournament .quick-stats .stat-col .stat-label {
  font-size: 0.7rem;
}
.sleek-grid-design .tournament-library .tournament .quick-stats .stat-col:first-child {
  border-bottom-left-radius: 5px;
}
.sleek-grid-design .tournament-library .tournament .quick-stats .stat-col:last-child {
  border-bottom-right-radius: 5px;
}
.sleek-grid-design .tournament-library .tournament .quick-stats .stat-col.middle-col {
  border-right: 1px solid #545454;
  border-left: 1px solid #545454;
  border-radius: 0;
  width: 34%;
}
.sleek-grid-design .tournament-library .tournament:hover {
  border: 1px solid #000;
}
.sleek-grid-design .tournament-library .tournament.selected {
  box-shadow: 0 0 8px;
  background: rgba(0, 0, 0, 0.0196078431);
}
@media (min-width: 670px) {
  .sleek-grid-design .fifty-fifty {
    flex-grow: 1;
  }
  .sleek-grid-design .fifty-fifty button {
    width: 50% !important;
  }
  .sleek-grid-design .leaderboard-results-grid * {
    font-size: 1.3rem !important;
  }
  .sleek-grid-design header.flexed {
    flex-direction: row;
  }
  .sleek-grid-design header.flexed h3 {
    font-size: calc(1.275rem + 0.3vw);
  }
  .sleek-grid-design header.flexed .status-picker {
    padding: 0;
  }
  .sleek-grid-design header.flexed .action-btns {
    position: absolute;
    top: 20px;
    right: 25px;
  }
  .sleek-grid-design .tournament-library .tournament {
    width: 200px;
  }
}

.table-wrapper .loading-wrapper {
  position: relative;
  background: transparent;
  min-height: unset;
  z-index: auto;
}

.search-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 20px;
  border-bottom: 1px solid #f0f2f5;
  background: #fff;
  flex-shrink: 0;
}

.search-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}
.search-panel-title mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: inherit;
}

.search-close-btn {
  flex-shrink: 0;
}

.search-panel-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.search-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-panel-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
}

.search-action-btn {
  width: 100%;
  height: 44px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.search-reset-btn {
  border-color: #e0e2e7 !important;
  color: #6b7280 !important;
}

.search-loading-wrapper {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
/*!*************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/assets/css/animations.css?ngGlobalStyle ***!
  \*************************************************************************************************************************************************************************************************************************************/
@keyframes expand-in {
  100% { transform: translateX(0%); }
}
  
@keyframes expand-out {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-10%); }
}

/*

Provides the following animations:
- wrench (rotates to the right 2 times with each hover)
- ring (shaking that mimics a phone ringing)
- vertical (bounces up and down)
- horizontal (slides left and right quickly)
- flashing (fades in and out)
- bounce (bounces up and down)
- spin (rotates)
- float (rises up and back down slowly)
- pulse (slow expanding and contracting)
- shake (rotates slightly left and right with rotations getting shorter each time)
- tada (shrinks initially, then jumps out and shakes
- passing (fades in from left to right as though it comes and goes)
- burst (expands as it fades out as though it is exploding)

*/
  
  @keyframes wrench {
    0% {
      transform: rotate(0deg); -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg);
    }
    20% {
      transform: rotate(30deg); -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg);
    }
    100% {
      transform: rotate(0deg); -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg);
    }
  }
  
  .faa-wrench.animated,
  .faa-wrench.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-wrench {
    transform-origin: center;
    animation-duration: .75s;
    animation-timing-function: ease-out;
    animation-iteration-count: 2;
    animation-name: wrench;
  }
  
  /* BELL */
  
  @keyframes ring {
    0% {
      transform: rotate(-15deg);
    }
  
    2% {
      transform: rotate(15deg);
    }
  
    4% {
      transform: rotate(-18deg);
    }
  
    6% {
      transform: rotate(18deg);
    }
  
    8% {
      transform: rotate(-22deg);
    }
  
    10% {
      transform: rotate(22deg);
    }
  
    12% {
      transform: rotate(-18deg);
    }
  
    14% {
      transform: rotate(18deg);
    }
  
    16% {
      transform: rotate(-12deg);
    }
  
    18% {
      transform: rotate(12deg);
    }
  
    20% {
      transform: rotate(0deg);
    }
  }
  
  .faa-ring.animated,
  .faa-ring.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-ring {
    animation: ring 2s ease infinite;
    transform-origin-x: 50%;
    transform-origin-y: 0px;
    transform-origin-z: initial;
  }
  
  /* VERTICAL */
  
  @keyframes vertical {
    0% {
      transform: translate(0,-3px);
    }
  
    4% {
      transform: translate(0,3px);
    }
  
    8% {
      transform: translate(0,-3px);
    }
  
    12% {
      transform: translate(0,3px);
    }
  
    16% {
      transform: translate(0,-3px);
    }
  
    20% {
      transform: translate(0,3px);
    }
  
    22% {
      transform: translate(0,0);
    }
  }
  
  .faa-vertical.animated,
  .faa-vertical.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-vertical {
    animation: vertical 2s ease infinite;
  }
  
  /* HORIZONTAL */
  
  @keyframes horizontal {
    0% {
      transform: translate(0,0);
    }
  
    6% {
      transform: translate(5px,0);
    }
  
    12% {
      transform: translate(0,0);
    }
  
    18% {
      transform: translate(5px,0);
    }
  
    24% {
      transform: translate(0,0);
    }
  
    30% {
      transform: translate(5px,0);
    }
  
    36% {
      transform: translate(0,0);
    }
  }
  
  .faa-horizontal.animated,
  .faa-horizontal.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-horizontal {
    animation: horizontal 2s ease infinite;
  }
  
  /* FLASHING */
  
  @keyframes flash {
    0%, 100%, 50% {
      opacity: 1;
    }
  
    25%, 75% {
      opacity: 0;
    }
  }
  
  .faa-flash.animated,
  .faa-flash.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-flash {
    animation: flash 2s ease infinite;
  }
  
  /* BOUNCE */
  
  @keyframes bounce {
    0%, 10%, 20%, 50%, 80% {
      transform: translateY(0);
    }
  
    40% {
      transform: translateY(-15px);
    }
  
    60% {
      transform: translateY(-15px);
    }
  }
  
  .faa-bounce.animated,
  .faa-bounce.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-bounce {
    animation: bounce 2s ease infinite;
  }
  
  /* SPIN */
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(359deg);
    }
  }
  
  .faa-spin.animated,
  .faa-spin.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-spin {
    animation: spin 1.5s linear infinite;
  }
  
  /* FLOAT */
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-6px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  .faa-float.animated,
  .faa-float.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-float {
    animation: float 2s linear infinite;
  }
  
  /* PULSE */
  
  @keyframes pulse {
    0% {
      transform: scale(1.1);
    }
  
    50% {
      transform: scale(0.9);
    }
  
    100% {
      transform: scale(1.1);
    }
  }
  
  .faa-pulse.animated,
  .faa-pulse.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-pulse {
    animation: pulse 2s linear infinite;
  }
  
  /* SHAKE */
  
  .faa-shake.animated,
  .faa-shake.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-shake {
    animation: wrench 2.5s ease infinite;
  }
  
  /* TADA */
  
  @keyframes tada {
    0% {
      transform: scale(1);
    }
  
    10%, 20% {
      transform: scale(.9) rotate(-8deg);
    }
  
    30%, 50%, 70% {
      transform: scale(1.3) rotate(8deg);
    }
  
    40%, 60% {
      transform: scale(1.3) rotate(-8deg);
    }
  
    80% {
      transform: scale(1) rotate(0);
    }
  }
  
  .faa-tada.animated,
  .faa-tada.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-tada {
    animation: tada 2s linear infinite;
  }
  
  /* PASSING */
  
  @keyframes passing {
    0% {
      transform: translateX(-50%);
      opacity: 0;
    }
  
    50% {
      transform: translateX(0%);
      opacity: 1;
    }
  
    100% {
      transform: translateX(50%);
      opacity: 0;
    }
  }
  
  .faa-passing.animated,
  .faa-passing.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-passing {
    animation: passing 3s linear infinite;
  }
  
  /* Burst */
  
  @keyframes burst {
    0% {
      opacity: .6;
    }
  
    50% {
      transform: scale(1.8);
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  .faa-burst.animated,
  .faa-burst.animated-hover:hover,
  .faa-parent.animated-hover:hover * .faa-burst {
    animation: burst 3s infinite linear;
  }


/* animates box shadow glow effect */
@keyframes glow {
	0%,100% {
		box-shadow: 1px 1px #1D8758, 0 0 20px 5px #8FFFCF, inset 2px 2px #D3FFEC;
	}
	50% {
		box-shadow: 1px 1px #1D8758, 0 0 16px 8px #8FFFCF, inset 2px 2px #D3FFEC;
	}
}
/* animates light across diamond */
@keyframes sheen {
	0%,100% {
		left: 0;
		opacity: 0;
	}
	1% {
		opacity: 1;
	}
	10% {
		left: calc(100% - 4px);
	}
	11%,98% {
		left: 100%;
		opacity: 0;
	}
}

/* glass orb */
.orb {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: 0 5em;
	background: #C0FFE4;
	background-image: radial-gradient(farthest-corner at 34px 14px, #A2E6C9 25%, #1D8758 35%,  #D3FFEC 100%);
	box-shadow: 0 0 20px 5px #C0FFE4;
	animation: orb 1.8s infinite;
}
.orb:before {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 44px;
	top: 2px;
	left: 2px;
	background-image: radial-gradient(farthest-corner at 14px 14px, #fff 15%, #C0FFE4 50%, rgba(192,255,228,0) 100%);
	border-radius: 50%;
}

/* star shaped shine pattern */
.shine {
	position: absolute;
	top: 3px;
	left: 6px;
	width: 1px;
	height: 16px;
	background: #fff;
	box-shadow: 0 0 8px rgba(255,255,255,0.75);
	animation: shine 10s infinite;
}
.shine:before, .shine:after {
	content:'';
	display: block;
	position: absolute;
}
.shine:before {
	top: 2px;
	left: -2px;
	width: 1px;
	height: 16px;
	background: #fff;
	box-shadow: 0 0 8px rgba(255,255,255,0.75);
}
.shine:after {
	top: 6px;
	left: -2px;
	width: 5px;
	height: 5px;
	background: #fff;
	box-shadow: 0 0 8px 5px rgba(255,255,255,0.75);
}

/* reflective line */
.light {
	position: absolute;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	overflow: hidden;
}

.light:before {
	content:'';
	display: block;
	position: absolute;
	width: 2px;
	height: 80px;
	top: -75%;
	left: 0;
	transform: rotate(45deg);
	background: rgba(255,255,255,0.5);
	animation: sheen2 7s infinite;
}

/* animates orb glow */
@keyframes orb {
	0%,100% {
		box-shadow: 0 0 5px 2px #8FFFCF;
	}
	50% {
		box-shadow: 0 0 24px 4px #8FFFCF;
	}
}

/* rotates shine */
@keyframes shine {
	0% {
		opacity: 0;
	}
	34% {
		opacity: 0;
		transform: rotate(15deg);
	}
	40% {
		opacity: 0.6;
		transform: rotate(620deg);
	}
	48%,100% {
		opacity: 0;
		transform: rotate(635deg);
	}
}

/* moves light reflection */
@keyframes sheen2 {
	0%,100% {
		top: -75%;
		left: 15%;
		opacity: 0;
		width: 2px;
	}
	1% {
		opacity: 1;
	}
	10% {
		width: 24px;
	}
	11%,18% {
		top: 75%;
		left: 50%;
		width: 2px;
		opacity: 0;
	}
	20% {
		top: -75%;
		left: 15%;
		opacity: 0;
		width: 1px;
	}
	21% {
		opacity: 0.75;
	}
	30% {
		width: 6px;
	}
	31%,98% {
		top: 75%;
		left: 50%;
		width: 2px;
		opacity: 0;
	}
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/mapbox-custom.scss?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
a.mapboxgl-ctrl-logo {
  display: none !important;
  background-image: none;
}

.mapbox-directions-instructions, .mapboxgl-ctrl-attrib.mapboxgl-compact, .mapboxgl-ctrl-attrib a {
  display: none !important;
}

.mapboxgl-ctrl-bottom-right {
  display: none !important;
}

.directions-control.directions-control-directions {
  background-color: #2c2c2c;
  padding: 20px;
  color: #fff;
  overflow: auto;
}

.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl {
  float: none;
}

.mapboxgl-marker {
  cursor: pointer;
}

.portal-wrapper.public-portal .portal-container mgl-map {
  width: 100vw !important;
  height: 50vh !important;
}

.mapbox-directions-route-summary {
  background-color: #2c2c2c;
  padding: 20px;
  color: #fff;
}
.mapbox-directions-route-summary h1 {
  font-weight: 700 !important;
  color: #fff;
}
.mapbox-directions-route-summary span {
  color: rgb(255, 255, 255) !important;
  font-weight: 700;
}

.person-marker {
  background-image: url("/assets/images/icons/icons8-account-50.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.marker {
  background-image: url("/assets/images/icons/icons8-map-pin-50.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

img.small-img-icon {
  width: 20px;
}

.popup-wrapper {
  background: #f7f7f7;
  padding: 15px;
  min-width: 350px;
  border: 1px solid #969696;
  border-radius: 5px;
}
.popup-wrapper .main-info {
  position: relative;
  padding: 5px 0;
}
.popup-wrapper .main-info .logo-check img {
  border-radius: 5px;
  border: 1px solid #00205f;
}
.popup-wrapper .main-info .tour-name {
  padding: 10px 0;
  color: #00205f;
  font-size: 1.1rem;
  font-weight: bold;
}
.popup-wrapper .main-info .close-icon {
  position: absolute;
  top: -10px;
  right: -5px;
}
.popup-wrapper .main-info .job-title {
  font-weight: 600;
  padding-bottom: 10px;
  color: #000;
}
.popup-wrapper .main-info .dates {
  padding: 10px 0;
}
.popup-wrapper .main-info .center {
  text-align: center;
}
.popup-wrapper .default-flex {
  justify-content: space-around;
}
.popup-wrapper .default-flex .action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 5px;
}
.popup-wrapper .default-flex .action-icon img {
  height: 20px;
  width: 20px;
}
.popup-wrapper .default-flex .action-icon:hover {
  border: 1px solid #969696;
}

@media (min-width: 680px) {
  .portal-wrapper.public-portal .portal-container mgl-map {
    width: calc(100vw - 280px) !important;
  }
  .portal-wrapper.public-portal .portal-container mgl-map, .portal-wrapper.public-portal .portal-container .search-results {
    height: calc(100vh - 185px) !important;
  }
}
/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/assets/css/material-design/material-icons.css?ngGlobalStyle ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/assets/css/material-design/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(/assets/css/material-design/MaterialIcons-Regular.woff2) format('woff2'),
       url(/assets/css/material-design/MaterialIcons-Regular.woff) format('woff'),
       url(/assets/css/material-design/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/assets/css/material-design/material-symbols.css?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
/* Material Symbols Outlined — self-hosted variable font.
 * Bundled so the Service Worker can cache reliably for offline use
 * (boat ramps with no connectivity) and for the Capacitor native shell.
 */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url(/assets/css/material-design/MaterialSymbolsOutlined.woff2?v=19731b03) format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/material-design-overrides.scss?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
#page-wrap-inner .mat-drawer-content.gray-bg > .card {
  background: transparent;
}

.mat-mdc-row, .mdc-data-table__content {
  font-family: var(--wb-font) !important;
}

button.fab-button {
  border: 0 !important;
}

.mat-mdc-simple-snack-bar {
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 25px;
  border: 1px solid black;
  border-radius: 10px;
}
.mat-mdc-simple-snack-bar .mat-mdc-snack-bar-container .mdc-snackbar__label,
.mat-mdc-simple-snack-bar .mdc-snackbar__label {
  background: #fff;
  color: #000 !important;
}

.no-vertical-cell-padding.mat-mdc-table tbody td.mat-mdc-cell {
  padding: 0 0.75rem;
}

.no-horizontal-cell-padding.mat-mdc-table tbody td.mat-mdc-cell {
  padding: 0.75rem 0;
}

.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: #008afd !important;
}

.mat-mdc-tab .mdc-tab-indicator__content--underline {
  border-color: #008afd !important;
}

.mat-mdc-button.mat-unthemed:not(:disabled) {
  color: #008afd;
}

.navbar-wrapper-2 .mat-mdc-button.mat-unthemed:not(:disabled) {
  color: rgba(0, 0, 0, 0.8705882353);
}

.no-min-width.mat-mdc-select-panel {
  width: unset !important;
}

.white-bg-inputs .mdc-text-field {
  background: #fff !important;
}

.table-wrapper.no-padding .mat-mdc-table .mat-mdc-header-cell {
  padding-left: 0;
  padding-right: 0;
}

.no-first-col-left-padding mat-cell:first-of-type {
  padding-left: 0 !important;
}

button .icon-and-label {
  display: flex;
  align-items: center;
  height: 25px;
}
button .icon-and-label .il-icon {
  padding-right: 5px;
  display: flex;
  align-items: center;
  height: 100%;
}

.public-profile-page .bigger-btns .mat-mdc-unelevated-button.mat-mdc-button-base, .tournament-row .bigger-btns .mat-mdc-unelevated-button.mat-mdc-button-base {
  height: 50px;
}
.public-profile-page .mdc-button.mat-accent, .tournament-row .mdc-button.mat-accent {
  background-color: rgb(228, 230, 233) !important;
  color: rgb(4, 4, 4) !important;
}
.public-profile-page .mdc-button.mat-accent:hover, .tournament-row .mdc-button.mat-accent:hover {
  filter: brightness(85%);
}

.square-icon-btn {
  padding: 20px 0px 15px !important;
  min-height: 55px;
}

.no-shadow {
  box-shadow: none !important;
}

.mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-elevation-z0.mat-mdc-fab {
  box-shadow: none;
}

.mat-calendar-body-cell {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  text-align: center;
  outline: none;
  font-family: inherit;
  margin: 0;
}

.mat-calendar-body-cell:before, .mat-calendar-body-cell:after, .mat-calendar-body-cell-preview {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 0;
  box-sizing: border-box;
  display: block;
  height: 90%;
  width: 100%;
}

.non-striped-table.mat-mdc-table .mat-mdc-row:nth-child(even) .mdc-data-table__cell, .non-striped-table.mat-mdc-table tbody tr:nth-of-type(even) .mdc-data-table__cell {
  background: #fff !important;
}

.new-stacked-table.mat-mdc-table {
  border: 1px solid #e6e6e6 !important;
  border-radius: 10px;
  padding: 3px;
}
.new-stacked-table.mat-mdc-table .mat-mdc-row {
  border-bottom: 1px solid #e6e6e6 !important;
}
.new-stacked-table.mat-mdc-table .mat-mdc-cell {
  background: #fff;
}
.new-stacked-table.mat-mdc-table .mdc-data-table__cell {
  padding: 10px;
  border-bottom: 0 !important;
  display: flex;
  justify-content: space-between;
  background: #fff;
  font-size: 1rem;
}
.new-stacked-table.mat-mdc-table .mat-mdc-row:nth-child(even) .mdc-data-table__cell, .new-stacked-table.mat-mdc-table tbody tr:nth-of-type(even) .mdc-data-table__cell {
  background: rgba(244, 246, 249, 0.7);
}
.new-stacked-table.mat-mdc-table mat-cell:first-of-type {
  padding-left: 15px;
}
.new-stacked-table.mat-mdc-table mat-row:last-of-type .mdc-data-table__cell {
  border-bottom: 0 !important;
}
.new-stacked-table.no-border-table {
  border: 0 !important;
}
.new-stacked-table .stacked-row {
  text-align: right;
}
.new-stacked-table .stacked-row .source {
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  font-size: 1rem;
}

.mat-calendar-body-cell-content {
  border-radius: 50% !important;
  border-color: transparent !important;
  width: 80% !important;
}

.ngx-mat-timepicker-tbody td.ngx-mat-timepicker-meridian .mdc-button {
  margin-left: 12px;
}

.mdc-button:disabled {
  opacity: 0.38;
}

.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38) !important;
}

.mat-calendar-body-selected {
  background-color: #008afd;
  color: #fff;
}

.mat-mdc-snack-bar-container .mdc-snackbar__label,
.mdc-snackbar__label {
  background: #fff;
  background: transparent;
  color: #000 !important;
}

.custom-spaced-slider .mat-mdc-slide-toggle .mdc-label {
  padding-left: 15px;
}

.mat-mdc-unelevated-button.mat-primary, .mat-mdc-raised-button.mat-primary, .mat-mdc-fab.mat-primary, .mat-mdc-mini-fab.mat-primary {
  background-color: var(--wb-ink);
  color: #fff;
}

.default-behavior.mat-mdc-mini-fab.mat-primary {
  background-color: #1e88e5;
}

.fake-results-printout.mat-mdc-table .mat-mdc-header-row {
  background-color: #5c98ca;
}
.fake-results-printout.mat-mdc-table .mat-mdc-header-cell {
  color: #fff;
}
.fake-results-printout.mat-mdc-table td.mat-mdc-cell:first-child,
.fake-results-printout.mat-mdc-table td.mat-mdc-footer-cell:first-child,
.fake-results-printout.mat-mdc-table th.mat-mdc-header-cell:first-child {
  padding-left: 20px !important;
}

.greyed-header-table-wrapper .mdc-data-table__cell, .greyed-header-table-wrapper .mdc-data-table__header-cell {
  border: 0 !important;
  border-bottom-style: none;
}
.greyed-header-table-wrapper .mat-mdc-table .mat-mdc-header-row {
  background: #FAFAFA;
}

.hidden-list-end .mdc-list-item__end {
  display: none;
}

.mat-mdc-unelevated-button.mat-primary {
  background-color: var(--wb-ink) !important;
}

.full-width .mat-form-field, .full-width .mat-button, .full-width .mat-flat-button {
  width: 100%;
}

.full-width-flexed-radio-group .mdc-form-field {
  width: 100%;
}
.full-width-flexed-radio-group .mdc-form-field label {
  height: 15px;
  flex-grow: 1;
}

.video-tutorial-btn-wrapper {
  width: 50px;
  position: relative;
}
.video-tutorial-btn-wrapper .video-tutorial-btn {
  position: absolute;
  top: 0;
}

.mat-mdc-dialog-surface {
  overflow-x: hidden;
}

.update-available-panel .mat-mdc-dialog-surface {
  border-radius: 20px;
}

/* Permit reader. The reader paints its own dark ground edge to edge, so the
   surface hands over its padding and color. The color goes through MDC's own
   token rather than a `background` declaration: the theme sets
   `.mat-mdc-dialog-container .mdc-dialog__surface { background-color: ... }`,
   which is the same specificity as a panel-scoped rule and wins on source
   order. The token has to be set ON the container: the reskin declares it there
   too, and a declaration on the element beats one inherited from the panel. */
.permit-viewer-panel .mat-mdc-dialog-container {
  --mdc-dialog-container-color: transparent;
}

.permit-viewer-panel .mat-mdc-dialog-surface {
  padding: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  /* Full-bleed on a phone: every pixel of width is legibility. */
  .permit-viewer-panel {
    max-width: 100vw !important;
    width: 100vw !important;
  }
  .permit-viewer-panel .mat-mdc-dialog-surface {
    border-radius: 0 !important;
  }
}
.mdc-form-field > label {
  margin-bottom: 0;
}

.mdc-linear-progress__buffer {
  background: #fff;
}

.mdc-linear-progress__bar {
  background: #3f51b5;
}

/* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
.mat-mdc-button.mat-button-disabled, .mat-mdc-icon-button.mat-button-disabled, .mat-mdc-outlined-button.mat-button-disabled, .mat-mdc-unelevated-button.mat-button-disabled {
  background-color: #cfcfcf;
  cursor: no-drop !important;
}

.mat-mdc-slide-toggle.mat-primary .mat-mdc-slide-toggle .mdc-switch:enabled .mdc-switch__track::after {
  background-color: #000;
}

.mat-mdc-button.mat-primary, .mat-mdc-icon-button.mat-primary, .mat-mdc-outlined-button.mat-primary {
  --mdc-text-button-label-text-color: #2f80c8;
  --mdc-outlined-button-label-text-color: #2f80c8;
  --mdc-outlined-button-outline-color: #cfe0f2;
  --mdc-icon-button-icon-color: #2f80c8;
  color: #2f80c8;
}

.smaller-header-rows mat-header-row {
  min-height: 40px !important;
}

.mat-toolbar {
  font-size: unset !important;
}

.mat-mdc-row, .mat-mdc-header-row {
  border-color: #d7d7d7;
}

.darker .mat-mdc-row, .darker .mat-mdc-header-row, .darker .mat-mdc-header-cell, .darker .mat-mdc-cell {
  border-color: #565656;
}

.mat-mdc-unelevated-button > .mat-icon, .mat-mdc-raised-button > .mat-icon, .mat-mdc-outlined-button > .mat-icon {
  margin-right: 0 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.3333333333%;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.3333433333%;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-label {
  top: 1.34375em;
}

.mat-mdc-dialog-container, .mat-mdc-menu-panel, .mat-mdc-select-panel {
  background: #fff;
}

.mat-mdc-dialog-container {
  border-radius: 10px;
}

.mat-mdc-snack-bar-container, .mat-mdc-snack-bar-container .mdc-snackbar__surface {
  background: transparent !important;
  box-shadow: none !important;
}

.mat-mdc-select-panel {
  border: 1px solid #bdbdbd;
  border-radius: 10px;
}

mat-drawer-container.portal-container .mat-drawer-content {
  padding: 0;
}

.mat-mdc-form-field-error {
  background: #fff;
  color: red;
  font-weight: bold;
}

/* TODO(mdc-migration): The following rule targets internal classes of checkbox that may no longer apply for the MDC version.*/
.mat-radio-checked .mat-radio-inner-circle,
.mat-checkbox-checked .mat-checkbox-background,
.mat-list-single-selected-option {
  background: #014674;
}

/* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version.*/
.mat-tab-label-active,
.mat-list-single-selected-option {
  color: #fff !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version.*/
.mat-list-option:hover {
  background: #2e72a0;
  color: #fff;
}

/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version.*/
.mat-tab-label-active {
  background-color: #000;
}

.mat-mdc-unelevated-button.mat-accent, .mat-mdc-raised-button.mat-accent, .mat-mdc-flat-button.mat-accent, .mat-mdc-fab.mat-accent, .mat-mdc-mini-fab.mat-accent {
  background-color: #014674;
}

.mat-mdc-unelevated-button:not(:disabled) {
  background-color: #3f51b5;
}

.special-blue.mat-mdc-unelevated-button.mat-accent,
.special-blue.mat-mdc-flat-button.mat-accent,
.special-blue.mat-mdc-raised-button.mat-accent,
.special-blue.mat-mdc-fab.mat-accent,
.special-blue.mat-mdc-mini-fab.mat-accent {
  background-color: #008afc;
  color: #fff;
}
.special-blue.mat-mdc-unelevated-button.mat-accent:hover,
.special-blue.mat-mdc-flat-button.mat-accent:hover,
.special-blue.mat-mdc-raised-button.mat-accent:hover,
.special-blue.mat-mdc-fab.mat-accent:hover,
.special-blue.mat-mdc-mini-fab.mat-accent:hover {
  background-color: #000;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select .mat-form-field-wrapper, .boxed-select-calendar .mat-form-field-wrapper {
  padding-bottom: 0 !important;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select .mat-form-field-underline, .boxed-select .mat-form-field-label-wrapper {
  display: none;
}

.dashboard-wrapper {
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
.dashboard-wrapper .mat-form-field-appearance-outline .mat-form-field-outline {
  background: #fff;
}

.toggle-dark-light .mat-button-toggle {
  background-color: #E4E6EF !important;
}
.toggle-dark-light .mat-button-toggle .mat-button-toggle-button {
  background-color: #E4E6EF !important;
  color: #3F4254 !important;
}
.toggle-dark-light .mat-button-toggle.mat-button-toggle-checked {
  background-color: #014674 !important;
}
.toggle-dark-light .mat-button-toggle.mat-button-toggle-checked .mat-button-toggle-button {
  background-color: #014674 !important;
  color: #fff !important;
}

.search-bg .search-bar {
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
.search-bg .search-bar .mat-form-field-type-mat-input .mat-form-field-outline .mat-form-field-outline-end,
.search-bg .search-bar .mat-form-field-type-mat-input .mat-form-field-outline .mat-form-field-outline-start {
  background: #fff;
}

/* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
/* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
.mat-button-toggle.active {
  /* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
}
.mat-button-toggle.active .mat-button-toggle-button {
  background-color: #E4E6EF;
  border-color: #E4E6EF;
  color: #3F4254;
}

/* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}

.mat-mdc-table .mat-mdc-header-cell:first-of-type {
  padding-left: 15px !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select.boxed-select-calendar .mat-form-field-underline, .boxed-select.boxed-select-calendar .mat-form-field-label-wrapper {
  display: block;
  background-color: transparent !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select-calendar .mat-form-field-ripple {
  background-color: transparent !important;
}

.boxed-select .mat-mdc-form-field, .boxed-select-calendar .mat-form-field {
  width: 100%;
}

/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
.boxed-select .mat-select-value, .boxed-select-calendar .mat-select-value {
  padding-left: 15px !important;
  padding-right: 15px !important;
  color: #888da8 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select .mat-form-field-infix, .boxed-select-calendar .mat-form-field-infix {
  border-top: 0 !important;
  padding: 12px 0 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
.boxed-select .mat-select-arrow-wrapper {
  padding-right: 10px !important;
}

.mat-mdc-select-panel .mat-mdc-option.mat-selected:not(.mat-mdc-option-multiple) {
  background: rgba(194, 112, 200, 0.1) !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-appearance-outline .mat-form-field-wrapper {
  margin: 0;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-appearance-outline .mat-form-field-flex {
  padding: 0 0.75em 0 0.75em;
  margin-top: -0.25em;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0 !important;
  border-top: 0.84375em solid transparent !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-appearance-outline .mat-form-field-prefix, .mat-form-field-appearance-outline .mat-form-field-suffix {
  top: 0.25em;
}

.mat-mdc-form-field-icon-prefix {
  padding-left: 12px !important;
  padding-right: 4px !important;
}
.mat-mdc-form-field-icon-prefix .material-symbols-outlined {
  font-size: 20px;
  color: #90a4ae;
}

.mat-mdc-form-field-icon-suffix {
  padding-right: 12px !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.boxed-select span.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}

/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
.mat-form-field-placeholder, .mat-select-value {
  color: #818181 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-should-float .mat-form-field-placeholder {
  position: absolute;
  top: 20px;
  padding: 0 10px 0 10px;
  width: auto !important;
  font-size: 17px;
  background: #fff;
}

mat-form-field.mat-datepicker {
  position: relative !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of input that may no longer apply for the MDC version.*/
mat-form-field.mat-datepicker .mat-input-underline {
  position: absolute !important;
  bottom: 0 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of checkbox that may no longer apply for the MDC version.*/
.mat-checkbox-layout {
  margin-bottom: 0 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
.boxed-select .mat-select-value {
  padding-left: 0 !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version.*/
.boxed-select-calendar .mat-select-value {
  padding-left: 15px !important;
}

.full-width .mat-mdc-form-field {
  width: 100%;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: #2b5876 !important;
}

.mat-mdc-table .mat-mdc-header-row {
  background-color: #fff;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.white-bg.mat-form-field-appearance-outline .mat-form-field-outline {
  background: #fff;
}

.mat-mdc-table .mat-mdc-header-cell {
  color: #2b5876;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 13px;
}

.mat-mdc-table tbody td.mat-mdc-cell {
  font-size: 1rem;
  margin: 0;
  padding: 0.5em 1em;
  color: #7a7676;
}

.no-cell-padding .mat-mdc-table tbody td.mat-mdc-cell {
  padding: 0 1em;
}

/* TODO(mdc-migration): The following rule targets internal classes of checkbox that may no longer apply for the MDC version.*/
.mat-table .mat-checkbox-inner-container {
  height: 17px;
  width: 17px;
}

.mat-mdc-table .mat-column-select {
  text-align: center;
}

.dw-table td.mat-mdc-cell:first-child, td.mat-mdc-footer-cell:first-child, th.mat-mdc-header-cell:first-child {
  padding-left: 0 !important;
}
.dw-table td.mat-mdc-cell:first-child.auto-padding, td.mat-mdc-footer-cell:first-child.auto-padding, th.mat-mdc-header-cell:first-child.auto-padding {
  padding-left: 15px !important;
}

.dw-table td.mat-mdc-cell:last-child, td.mat-mdc-footer-cell:last-child, th.mat-mdc-header-cell:last-child {
  padding-right: 0 !important;
}

.dw-table .fa-angle-double-right {
  font-size: 25px !important;
  color: #2b5876 !important;
}

.centered .mat-mdc-paginator-container {
  justify-content: center !important;
}

.clear-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
  margin-left: -10px;
}

.centered, .filter-wrapper {
  text-align: center;
  justify-content: center;
}

.mat-drawer-container {
  height: 100%;
  background: transparent;
  background-color: #fff !important;
}

.mat-expansion-panel, .mat-accordion, .mat-expansion-panel-header-title {
  color: #515365;
  font-weight: bold;
}

.mat-expansion-panel-header-description, .mat-expansion-indicator::after {
  color: #515365;
}

.fixed-side-nav .mat-expansion-panel-header, .fixed-side-nav .mat-expansion-panel-body {
  margin-left: -24px;
}

.fixed-side-nav .mat-expansion-indicator {
  margin-top: -10px;
}

.fixed-side-nav .mat-expanded .mat-expansion-indicator {
  margin-top: 0px;
}

.fixed-side-nav .mat-expansion-panel.mat-expanded {
  margin-top: -8px !important;
}

.fixed-side-nav .mat-expansion-panel-body {
  padding: 0 24px 0;
}

.stealth-notification {
  margin-top: -3px;
  background-color: rgb(241, 242, 240) !important;
  border-radius: 5px;
  color: rgb(149, 149, 149);
  padding: 15px;
  border: 1px solid rgb(149, 149, 149) !important;
}

.dw-mobile-table.auto-width .mat-mdc-row, .dw-mobile-table.mat-mdc-table.auto-width .mat-mdc-header-row {
  min-width: auto;
}

.cdk-overlay-pane.schedule-updater .mat-mdc-dialog-container {
  min-width: 1060px;
}

.voiceshot-panel {
  min-width: 500px;
  min-height: 70%;
}

.global-dashboard .mat-expansion-panel-spacing {
  margin: 5px 0;
}

.dashboard-accordion .mat-expansion-panel-header.auto-height {
  height: auto !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mat-mdc-menu-panel.admin-menu-wrapper {
  overflow: visible;
  /* margin-left: -44px; */
  margin-left: -150px;
  margin-top: -10px;
  max-width: 320px;
}

.mat-mdc-menu-content {
  position: relative;
}

.mat-mdc-menu-panel.notifications-menu-wrapper {
  max-width: 320px;
  width: 285px;
}

.mat-mdc-menu-panel.wb-action-menu {
  border-radius: 10px !important;
  box-shadow: 0 10px 28px rgba(20, 17, 15, 0.14), 0 2px 6px rgba(20, 17, 15, 0.08) !important;
  border: 1px solid var(--wb-border, #e5e3db);
  overflow: hidden;
  min-width: 212px;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-content {
  padding: 4px 0 !important;
}
.mat-mdc-menu-panel.wb-action-menu .wb-menu-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -4px 0 4px;
  padding: 9px 14px;
  background: var(--wb-ink, #14110f);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}
.mat-mdc-menu-panel.wb-action-menu .wb-menu-header .material-symbols-outlined {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.mat-mdc-menu-panel.wb-action-menu .wb-menu-divider {
  height: 1px;
  background: var(--wb-canvas-sunk, #f1efe8);
  margin: 4px 10px;
  cursor: default;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item {
  border-radius: 7px;
  margin: 1px 6px;
  padding: 0 10px;
  min-height: 36px;
  transition: background 0.12s ease, color 0.12s ease;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger {
  padding-right: 26px;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger .mat-mdc-menu-submenu-icon {
  right: 10px;
  fill: var(--wb-text-4, #a8a69e);
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item .mat-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item .menu-item-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: var(--wb-text-2, #5f5e5a);
  transition: color 0.12s ease;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item .mat-mdc-menu-item-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--wb-text, #1f2024);
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item:hover:not([disabled]) {
  background: var(--wb-accent-soft, #e7f0f8) !important;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item:hover:not([disabled]) .mat-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item:hover:not([disabled]) .menu-item-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item:hover:not([disabled]) .mat-mdc-menu-item-text {
  color: var(--wb-accent, #185fa5);
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.is-destructive:hover:not([disabled]) {
  background: var(--wb-danger-soft, #fbeae8) !important;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.is-destructive:hover:not([disabled]) .mat-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.is-destructive:hover:not([disabled]) .menu-item-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item.is-destructive:hover:not([disabled]) .mat-mdc-menu-item-text {
  color: var(--wb-danger, #c2382f);
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item[disabled] {
  opacity: 1;
}
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item[disabled] .mat-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item[disabled] .menu-item-icon,
.mat-mdc-menu-panel.wb-action-menu .mat-mdc-menu-item[disabled] .mat-mdc-menu-item-text {
  color: var(--wb-text-4, #a8a69e);
}

.full-width-backdrop {
  max-width: 100vw;
}

.cdk-overlay-backdrop {
  background: rgba(0, 0, 0, 0.32);
}

.large-mat-icon .material-icons {
  font-size: 40px;
}

.dropdown-menu.show {
  z-index: 9999;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.remove-margin.mat-form-field-appearance-outline .mat-form-field-wrapper {
  margin: 0;
  padding-bottom: 0;
}

/* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version.*/
.skills-panels .mat-mdc-list-base .mat-mdc-list-item .mat-list-item-content {
  padding: 0 10px !important;
}

.cover-btn .mat-mdc-raised-button.mat-primary {
  padding: 4px 20px;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 11px;
  border: 1px solid #fff;
}

.cover-btn .mat-mdc-raised-button.mat-primary .inner-btn-text {
  display: none;
}

.mat-drawer-inner-container {
  overflow: scroll;
}

/* TODO(mdc-migration): The following rule targets internal classes of option that may no longer apply for the MDC version.*/
.mat-option-text .flex {
  display: flex;
}

/* TODO(mdc-migration): The following rule targets internal classes of option that may no longer apply for the MDC version.*/
.mat-option-text .flex .icon-wrapper {
  width: 25px;
  display: flex;
  align-self: center;
}

/* TODO(mdc-migration): The following rule targets internal classes of option that may no longer apply for the MDC version.*/
.mat-option-text .flex .label-wrapper {
  padding-left: 5px;
}

.icon-only-mobile .inner-btn-text {
  display: none;
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.notifications-menu,
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.admin-menu {
  opacity: 0;
}

.mobile-sort-tools {
  display: none;
  padding: 0 5px;
}

.mobile-sort-tools .sort-direction {
  display: flex;
  align-self: center;
}

.mobile-sort-tools .sort-direction .mat-mdc-radio-button {
  padding: 0 10px;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.short-input .mat-form-field-infix {
  width: 100px !important;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.no-margin-wrapper.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  margin: 0;
  padding-bottom: 5px;
}

.no-padding.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-subscript .mat-mdc-form-field-subscript-wrapper {
  display: none;
}

.error {
  color: red;
  font-weight: 600;
}

.no-radio .mdc-list-item__end {
  display: none;
}

.no-margin-wrapper label {
  margin-bottom: 0 !important;
}

.mat-mdc-unelevated-button[disabled][disabled] {
  color: #fff;
  background-color: #cdcdcd !important;
}

.hidden-header-row .mat-mdc-header-row {
  display: none;
}

/*
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, 
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch, 
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
    border-color: #e3e3e3;
}

.mat-mdc-text-field-wrapper, .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading, 
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix, 
.mat-mdc-form-field-icon-suffix, .ngx-material-timepicker-example__form-group {
    background: #fff;
}
    */
.mat-mdc-form-field-icon-suffix {
  margin-right: 2px;
}

.mdc-notched-outline__leading {
  width: 16px !important;
}

.mat-mdc-icon-button.mat-mdc-button-base {
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square-25 {
  width: 40px !important;
}
.square-25 .mat-mdc-icon-button {
  width: 25px;
  height: 25px;
}
.square-25 .mat-mdc-button-touch-target {
  width: 35px;
}

.map-filters-wrapper .mdc-notched-outline {
  background-color: white;
  color: black;
}
.map-filters-wrapper .mat-mdc-form-field-infix {
  z-index: 99999;
  min-height: unset;
}
.map-filters-wrapper .mat-mdc-text-field-wrapper {
  height: unset;
}
.map-filters-wrapper .no-margin-wrapper.mat-form-field-appearance-outline .mat-mdc-text-field-wrapper {
  padding-bottom: 0;
}
.map-filters-wrapper .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 12px;
  padding-bottom: unset;
}
.map-filters-wrapper .mat-date-range-input-container {
  font-size: 1rem;
}

.mat-form-field-appearance-outline.right-side-flat .mdc-notched-outline__trailing {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.auto-height .mat-mdc-form-field-infix {
  height: auto !important;
  min-height: auto !important;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
}

.auto-width .mat-mdc-form-field-infix {
  min-width: 125px !important;
  width: auto !important;
}

.auto-height-15 .mat-mdc-form-field-infix {
  padding-top: 16px !important;
}

.no-min-width-input .mat-mdc-form-field-infix {
  min-width: auto !important;
}

.non-floating-label .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 22px !important;
}

.mat-mdc-select.normal-font-size .mat-mdc-select-value,
.normal-font-size .mdc-list-item__primary-text {
  font-size: 1rem !important;
}

.correct-floating-label .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 50% !important;
}
.correct-floating-label .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label.mdc-floating-label--float-above {
  top: 28px !important;
}

.cdk-overlay-container {
  z-index: 2100 !important;
}

.cdk-overlay-container:empty {
  pointer-events: none !important;
}

.custom-chat-wrapper {
  pointer-events: none !important;
}

.custom-chat-wrapper > * {
  pointer-events: auto;
}

.mat-toolbar {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
}

/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version.*/
.mat-tab-label, .mat-mdc-tab-link {
  color: #2b5876;
  font-weight: 600;
  opacity: 1;
}

.filters-right {
  /* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
  /* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
}
.filters-right .mat-button-toggle-button {
  background-color: #fff;
  color: #464646;
}
.filters-right .mat-button-toggle-checked .mat-button-toggle-button {
  background-color: #000 !important;
  color: #fff;
}

.borderless-table.mat-mdc-table th.mat-mdc-header-cell {
  background-color: #F3F6F9;
  color: #504f4f;
  font-weight: 600;
  border: 0;
}
.borderless-table.mat-mdc-table th.mat-mdc-header-cell:first-child {
  padding-left: 25px !important;
}
.borderless-table.mat-mdc-table th.mat-mdc-header-cell:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.borderless-table.mat-mdc-table th.mat-mdc-header-cell:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.borderless-table.mat-mdc-table td.mat-mdc-cell {
  border: 0 !important;
}

.empty-state-action .mdc-button__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mat-mdc-button.square-icon-btn {
  min-width: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
.auto-line-height .mat-mdc-button-base,
.auto-line-height .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: unset;
}

.auto-height .mat-mdc-button-base {
  height: auto !important;
}

.smaller-font-select .mat-mdc-option {
  font-size: 1rem;
  padding: 5px 16px;
}

.no-pad-first-col-td .borderless-table.mat-mdc-table th.mat-mdc-header-cell:first-child {
  padding-left: 15px !important;
}
.no-pad-first-col-td .borderless-table.mat-mdc-table td.mat-mdc-header-cell:first-child,
.no-pad-first-col-td .dw-mobile-table td.mat-mdc-cell:first-of-type:first-child,
.no-pad-first-col-td .dw-mobile-table .mat-mdc-cell:first-of-type:first-child,
.no-pad-first-col-td .dw-mobile-table .mat-mdc-header-cell:first-of-type:first-child {
  padding-left: 5px !important;
}

.mat-mdc-table.header-padding-left-fix th.mat-mdc-header-cell {
  padding-left: 0 !important;
}

.no-pad-first-col .borderless-table.mat-mdc-table th.mat-mdc-header-cell:first-child {
  padding-left: 5px !important;
}

.page-mobile-accordian-content .mat-expansion-indicator::after {
  border-width: 0px 3px 3px 0px !important;
}

mat-table mat-row mat-cell {
  font-size: 13px !important;
  margin: 0;
  padding: 0.5em 1em;
  color: #7a7676 !important;
}

@media (min-width: 481px) {
  .icon-only-mobile .inner-btn-text {
    display: block;
  }
  .cover-btn .mat-mdc-raised-button.mat-primary {
    font-size: 14px;
  }
  .cover-btn .mat-mdc-raised-button.mat-primary .inner-btn-text {
    display: block;
  }
}
.mat-mdc-table.dw-mobile-table {
  max-height: unset !important;
}
.mat-mdc-table.dw-mobile-table td.mat-mdc-cell {
  border-bottom: 1px solid #EBEDF3;
  padding: 0.75rem;
}
.mat-mdc-table.dw-mobile-table th.mat-mdc-cell:first-child, .mat-mdc-table.dw-mobile-table td.mat-cell:first-child {
  padding-left: 15px !important;
}

/* .dw-mobile-table .mat-row:nth-child(even) {background: #f2f4f8}
.dw-mobile-table .mat-row:nth-child(odd), .dw-mobile-table.mat-table tbody tr:nth-of-type(odd) {background: #fff !important;} */
.dw-mobile-table .mat-mdc-cell {
  color: #504f4f;
}

.hover-table.mat-mdc-table .mat-mdc-row:hover, .hover-table.mat-mdc-table .mat-mdc-footer-row:hover {
  cursor: pointer;
  background: #f2f4f8;
}

.leaderboard-card .dw-mobile-table .mat-mdc-cell {
  color: #504f4f !important;
  font-size: 1.2rem !important;
}

.theme-options-menu .mat-mdc-menu-item.flex-align-center .mat-mdc-menu-item-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.theme-options-menu .mat-mdc-menu-item.flex-align-center .mat-mdc-menu-item-text span {
  margin-right: 5px;
}

@media (max-width: 750px) {
  .mat-mdc-button, .mat-mdc-icon-button, .mat-mdc-outlined-button, .mat-mdc-unelevated-button {
    line-height: unset !important;
  }
  .new-stacked-table.mat-mdc-table mat-cell.no-pad-first:first-of-type,
  .new-stacked-table.mat-mdc-table .mat-mdc-header-cell.no-pad-first:first-of-type {
    padding-left: 0 !important;
  }
}
/* Mobile table overrides */
@media only screen and (max-width: 680px) {
  .mat-mdc-table .mat-mdc-row {
    display: table-row;
  }
  .mat-mdc-table.new-stacked-table .mat-mdc-row {
    display: block !important;
  }
  .mat-mdc-table.dw-mobile-table td.mat-mdc-cell {
    width: auto !important;
  }
  .tournament-entries-container header {
    flex-direction: column;
    align-items: center;
  }
  .tournament-entries-container header .header-col {
    margin-bottom: 10px;
  }
  .mobile-sort-tools {
    display: flex;
    justify-content: space-between;
  }
  .header-filter, .dw-mobile-table .hide-on-mobile {
    display: none !important;
  }
  .header-btns .btn.pull-right {
    width: auto !important;
  }
  .dw-mobile-table tr.mat-mdc-footer-row, .dw-mobile-table tr.mat-mdc-row {
    height: auto;
  }
  .dw-mobile-table .mat-mdc-row, .dw-mobile-table .mat-mdc-table .mat-mdc-header-row,
  .dw-mobile-table tr.mat-row, .dw-mobile-table table.mat-table tr.mat-header-row {
    min-width: auto;
  }
  .dw-mobile-table mat-cell:last-of-type, .dw-mobile-table mat-footer-cell:last-of-type, .dw-mobile-table mat-header-cell:last-of-type,
  .dw-mobile-table td.mat-mdc-cell:last-of-type, .dw-mobile-table td.mat-mdc-footer-cell:last-of-type, .dw-mobile-table td.mat-mdc-header-cell:last-of-type {
    padding-right: 15px;
  }
  .dw-mobile-table.no-pad-right mat-cell:last-of-type,
  .dw-mobile-table.no-pad-right mat-footer-cell:last-of-type,
  .dw-mobile-table.no-pad-right mat-header-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-footer-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-header-cell:last-of-type {
    padding-right: 0;
  }
  .dw-mobile-table .mat-mdc-header-row {
    display: none;
  }
  .dw-mobile-table mat-footer-row, .dw-mobile-table mat-row,
  .dw-mobile-table tr.mat-mdc-footer-row, .dw-mobile-table tr.mat-mdc-row {
    min-height: 35px;
  }
  .dw-mobile-table .mat-mdc-row {
    display: block;
    padding: 10px;
  }
  .dw-mobile-table .mat-mdc-cell {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    min-height: 15px;
    border: 0;
  }
  .dw-mobile-table.mat-mdc-table, .smart-table-wrapper, .mat-mdc-table-wrapper {
    overflow: hidden !important;
  }
  .dw-mobile-table .mat-mdc-cell[data-th]:before {
    content: attr(data-th);
    color: #2b5876;
    font-size: 14px;
    font-weight: 700;
  }
  .dw-mobile-table mat-footer-row::after, .dw-mobile-table mat-header-row::after, .dw-mobile-table mat-row::after,
  .dw-mobile-table tr.mat-mdc-footer-row::after, .dw-mobile-table tr.mat-mdc-header-row::after, .dw-mobile-table tr.mat-mdc-row::after {
    display: none;
  }
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
  .mobile-sort-tools .mat-form-field-infix {
    width: 75px;
  }
}
.hide-header-labels-mobile .mat-step-text-label, .hide-header-labels-mobile .mat-step-optional {
  display: none;
}

mat-header-row.mat-mdc-header-row {
  display: none;
}

.mat-mdc-cell[data-th]:before {
  content: attr(data-th) ;
  white-space: pre;
  color: #008afc;
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 50%;
}

/*

.mat-mdc-row, .mat-mdc-table .mat-mdc-header-row {
    min-width: 100%;
}

.mat-mdc-row mat-cell:first-of-type, mat-header-cell:first-of-type, mat-footer-cell:first-of-type {
    padding: 0 16px 0 16px;
}
    */
.leaderboard-results-grid .mat-mdc-cell {
  display: flex;
  justify-content: space-between !important;
}

@media (min-width: 1400px) {
  mat-table.scroll-full-width {
    max-width: 70vw !important;
  }
}
@media (min-width: 680px) {
  mat-table.scroll-full-width {
    max-width: 70vw !important;
    overflow: auto;
  }
  mat-table.scroll-full-width .mat-mdc-table-sticky {
    background: rgba(255, 255, 255, 0.831372549);
  }
  .mat-mdc-cell.centered {
    text-align: center;
  }
  mat-header-row.mat-mdc-header-row {
    display: flex;
  }
  .mat-mdc-cell[data-th]:before {
    display: none;
  }
  .new-stacked-table.mat-mdc-table .mat-mdc-row {
    border-bottom: 0 !important;
  }
  .new-stacked-table.mat-mdc-table .mdc-data-table__cell {
    background: #fff;
    border-bottom: 1px solid #e6e6e6 !important;
    padding: 10px 0;
    justify-content: unset;
  }
  .new-stacked-table .stacked-row {
    text-align: left;
  }
  .leaderboard-results-grid .mat-mdc-cell {
    display: table-cell;
    justify-content: unset !important;
  }
  /*

  mat-header-row.mat-mdc-header-row {
      display: table-row;
  }

  .mat-mdc-row {
      display: unset;
  }

  mat-cell:first-of-type, mat-header-cell:first-of-type, mat-footer-cell:first-of-type {
      padding-left: 24px;
  }
      */
  .hide-header-labels-mobile .mat-step-text-label, .hide-header-labels-mobile .mat-step-optional {
    display: block;
  }
  .auto-input-width .mat-mdc-form-field-infix {
    width: auto !important;
  }
  .dw-mobile-table mat-cell:first-of-type, .dw-mobile-table mat-footer-cell:first-of-type, .dw-mobile-table mat-header-cell:first-of-type,
  .dw-mobile-table td.mat-mdc-cell:first-of-type, .dw-mobile-table td.mat-mdc-footer-cell:first-of-type, .dw-mobile-table td.mat-mdc-header-cell:first-of-type {
    padding-left: 15px;
  }
  .no-pad-first-col.dw-mobile-table td.mat-mdc-cell:first-of-type:first-child {
    padding-left: 5px !important;
  }
}
@media (min-width: 768px) {
  .mat-mdc-row, .mat-mdc-table .mat-mdc-header-row {
    min-width: 725px;
  }
  .auto-width .mat-mdc-row, .auto-width .mat-mdc-table .mat-mdc-header-row {
    min-width: auto !important;
  }
  .dw-mobile-table.no-pad-right mat-cell:last-of-type,
  .dw-mobile-table.no-pad-right mat-footer-cell:last-of-type,
  .dw-mobile-table.no-pad-right mat-header-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-footer-cell:last-of-type,
  .dw-mobile-table.no-pad-right td.mat-mdc-header-cell:last-of-type {
    padding-right: 15px;
  }
}
@media (max-width: 680px) {
  .mat-mdc-menu-panel.admin-menu-wrapper {
    margin-left: auto;
  }
}
.mdc-button__label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.picker-tabs .mat-mdc-tab-header {
  border-bottom: 1px solid #e0e2e7;
}
.picker-tabs .mat-mdc-tab {
  min-width: 0;
  padding: 0 16px;
  opacity: 1;
}
.picker-tabs .mat-mdc-tab .mdc-tab__text-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #90a4ae;
  transition: color 0.15s;
}
.picker-tabs .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: #1565c0;
}
.picker-tabs .mat-mdc-tab .mdc-tab-indicator__content--underline {
  border-color: #1565c0;
  border-width: 3px;
  border-radius: 3px 3px 0 0;
}
.picker-tabs .mat-mdc-tab .mdc-tab__ripple::before {
  background-color: rgba(21, 101, 192, 0.05);
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6 {
  color: inherit;
}

.pill-picker {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: #fff;
  border: 1.5px solid #e0e4e8;
  border-radius: 24px;
  padding: 2px 4px 2px 14px;
  margin-top: 8px;
  margin-bottom: 15px;
  min-width: 170px;
  max-width: 280px;
  height: 50px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.pill-picker:hover {
  border-color: #008afc;
  box-shadow: 0 2px 8px rgba(0, 138, 252, 0.1);
}
.pill-picker.pill-picker-full {
  max-width: none;
  width: 100%;
}

.pill-picker-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #1a237e;
  flex: 1;
  min-width: 0;
  padding: 6px 0;
  cursor: pointer;
}
.pill-picker-input::placeholder {
  color: #90a4ae;
  font-weight: 400;
}

.pill-picker-toggle {
  flex-shrink: 0;
}
.pill-picker-toggle button {
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.pill-picker-toggle svg {
  width: 22px !important;
  height: 22px !important;
}

.pill-picker-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #90a4ae;
  flex-shrink: 0;
  transition: background 0.12s, color 0.12s;
}
.pill-picker-clear:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #d32f2f;
}
.pill-picker-clear .material-symbols-outlined {
  font-size: 18px;
}

.pill-picker-range {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pill-picker-range .pill-picker-input {
  text-align: center;
}
.pill-picker-range .pill-picker-separator {
  color: #90a4ae;
  font-weight: 500;
  flex-shrink: 0;
}

.pill-picker-label {
  position: absolute;
  top: -7px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  padding: 0 6px;
  line-height: 1;
  pointer-events: none;
}

.pill-range-picker mat-date-range-input,
.pill-range-picker .mat-date-range-input {
  flex: 1;
  min-width: 0;
}
.pill-range-picker .mat-date-range-input-container {
  display: flex;
  align-items: center;
}
.pill-range-picker .mat-date-range-input-separator {
  color: #90a4ae;
  margin: 0 4px;
}
.pill-range-picker input.mat-date-range-input-inner {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 13px;
  font-weight: 500;
  color: #1a237e;
  padding: 6px 0;
  cursor: pointer;
}
.pill-range-picker input.mat-date-range-input-inner::placeholder {
  color: #90a4ae;
  font-weight: 400;
}

.boat-number-gen-dialog .mat-mdc-dialog-container .mdc-dialog__surface {
  border-radius: 16px;
}

.boat-number-gen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 28px;
  text-align: center;
}

.boat-gen-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  margin-bottom: 16px;
  transition: background 0.3s ease;
}
.boat-gen-icon-wrap.done {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.boat-gen-icon-wrap .boat-gen-spinner {
  font-size: 32px;
  color: #1976d2;
  animation: spin 1s linear infinite;
}
.boat-gen-icon-wrap .boat-gen-check {
  font-size: 36px;
  color: #2e7d32;
  animation: scaleIn 0.3s ease;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.boat-gen-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: #263238;
}

.boat-gen-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.boat-gen-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #546e7a;
  justify-content: center;
}
.boat-gen-detail-row .material-symbols-outlined {
  font-size: 18px;
  color: #78909c;
}

.sleek-menu-panel.mat-mdc-menu-panel {
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #e8ecf0;
  min-width: 220px;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 6px 0 !important;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-item {
  font-size: 13px !important;
  font-weight: 500;
  color: #37474f;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 16px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  transition: background 0.12s ease;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-item:hover {
  background: #f0f7ff !important;
  color: #0073e6;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-item .mat-mdc-menu-item-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-item .menu-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #90a4ae;
}
.sleek-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-item:hover .menu-icon {
  color: #0073e6;
}
.sleek-menu-panel.mat-mdc-menu-panel .menu-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 4px 12px;
}

.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel {
  min-width: 280px;
  max-width: 320px;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 4px 0 6px !important;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .menu-section-label {
  padding: 8px 16px 2px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #90a4ae;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .menu-section-label:first-child {
  padding-top: 4px;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item {
  height: auto !important;
  min-height: 44px !important;
  padding: 8px 16px !important;
  align-items: center;
  gap: 12px;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item .menu-icon {
  flex-shrink: 0;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item .menu-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  gap: 1px;
  min-width: 0;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item .menu-primary {
  font-size: 13px;
  font-weight: 600;
  color: #1f3a5f;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item .menu-secondary {
  font-size: 11px;
  font-weight: 400;
  color: #78909c;
  white-space: normal;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item:hover {
  background: #f0f7ff !important;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item:hover .menu-primary {
  color: #0073e6;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item:hover .menu-icon {
  color: #0073e6;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn .menu-icon {
  color: #f57c00;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn .menu-primary {
  color: #b45309;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn:hover {
  background: #fff7ed !important;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn:hover .menu-icon,
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn:hover .menu-primary {
  color: #c2410c;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-warn[disabled] {
  opacity: 0.55;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger .menu-icon {
  color: #e05252;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger .menu-primary {
  color: #b42b2b;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger:hover {
  background: #fdf1f1 !important;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger:hover .menu-icon,
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger:hover .menu-primary {
  color: #c62828;
}
.sleek-menu-panel.sleek-menu-grouped.mat-mdc-menu-panel .mat-mdc-menu-item.menu-item-danger[disabled] {
  opacity: 0.55;
}

.grid-sidenav-form {
  width: 340px !important;
  max-width: 90vw !important;
}

.grid-sidenav-form .custom-mat-select .mat-mdc-select-trigger,
.search-panel-body .custom-mat-select .mat-mdc-select-trigger {
  padding: 8px 12px;
  min-height: 40px;
}
.grid-sidenav-form .custom-mat-select .mat-mdc-select-value-text,
.search-panel-body .custom-mat-select .mat-mdc-select-value-text {
  font-size: 0.9rem;
  color: #1a1a2e;
}
.grid-sidenav-form .custom-mat-select .mat-mdc-select-placeholder,
.search-panel-body .custom-mat-select .mat-mdc-select-placeholder {
  color: #9ca3af;
}
.grid-sidenav-form .custom-mat-select .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow,
.search-panel-body .custom-mat-select .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow {
  color: #9ca3af;
}

.mat-mdc-select-panel {
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
  padding: 6px !important;
  margin-top: 4px;
}
.mat-mdc-select-panel .mat-mdc-option {
  border-radius: 6px;
  margin: 1px 0;
  min-height: 40px;
  font-size: 0.9rem;
  color: #1a2a3a;
  padding: 0 12px;
}
.mat-mdc-select-panel .mat-mdc-option:hover:not(.mdc-list-item--disabled) {
  background: #f0f7ff;
}
.mat-mdc-select-panel .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) {
  background: #e8f0fe;
  color: #1a73e8;
}
.mat-mdc-select-panel .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text {
  color: #1a73e8;
}
.mat-mdc-select-panel .mat-mdc-option .mdc-list-item__primary-text {
  font-size: 0.9rem;
}
.mat-mdc-select-panel .mat-pseudo-checkbox {
  border-radius: 4px;
  border-color: #d0d8e4;
}
.mat-mdc-select-panel .mat-pseudo-checkbox.mat-pseudo-checkbox-checked {
  background: #2196f3;
  border-color: #2196f3;
}

.catch-track-dialog-panel .mat-mdc-dialog-container,
.catch-track-dialog-panel .mat-dialog-container {
  padding: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.quick-user-stat-dialog-panel .mat-mdc-dialog-container,
.quick-user-stat-dialog-panel .mat-dialog-container {
  padding: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
}
.quick-user-stat-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface {
  border-radius: 12px !important;
  overflow: hidden;
}
.quick-user-stat-dialog-panel .mat-mdc-dialog-container .mdc-dialog__content {
  padding: 0 !important;
}

.entry-actions-panel.mat-mdc-menu-panel {
  border-radius: 14px !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 50px rgba(10, 26, 47, 0.22), 0 4px 14px rgba(10, 26, 47, 0.1) !important;
  min-width: 200px;
  overflow: visible !important;
}
.entry-actions-panel.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 0 !important;
}

.entry-actions-panel--mega.mat-mdc-menu-panel {
  max-width: min(700px, 100vw - 24px) !important;
}

.entry-actions-menu {
  padding: 0;
}
.entry-actions-menu .eam-header {
  text-align: center;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #e8edf2;
}
.entry-actions-menu .eam-header .eam-header-icon {
  display: none;
}
.entry-actions-menu .eam-header .eam-header-label {
  font-size: 14px;
  font-weight: 700;
  color: #1565c0;
}
.entry-actions-menu.eam--polished {
  min-width: 236px;
}
.entry-actions-menu.eam--polished .eam-actions {
  padding: 8px;
}
.entry-actions-menu.eam--polished .eam-danger {
  padding: 4px 8px 8px;
}
.entry-actions-menu.eam--polished .eam-btn {
  gap: 12px;
  padding: 7px 10px;
  border-radius: 11px;
  font-weight: 600;
  color: #22313f;
  transition: background-color 0.12s ease, transform 0.08s ease;
}
.entry-actions-menu.eam--polished .eam-btn .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 18px;
  flex-shrink: 0;
  background: #eef2f6;
  color: #5a7183;
  transition: none;
}
.entry-actions-menu.eam--polished .eam-btn:hover {
  background: #f2f6fa;
}
.entry-actions-menu.eam--polished .eam-btn:hover .material-symbols-outlined {
  color: inherit;
}
.entry-actions-menu.eam--polished .eam-btn:active {
  transform: scale(0.985);
}
.entry-actions-menu.eam--polished .eam-btn--view .material-symbols-outlined,
.entry-actions-menu.eam--polished .eam-btn--blue .material-symbols-outlined {
  background: #e3edf7;
  color: #1565c0;
}
.entry-actions-menu.eam--polished .eam-btn--edit .material-symbols-outlined,
.entry-actions-menu.eam--polished .eam-btn--purple .material-symbols-outlined {
  background: #ece9f8;
  color: #5e35b1;
}
.entry-actions-menu.eam--polished .eam-btn--checkins .material-symbols-outlined,
.entry-actions-menu.eam--polished .eam-btn--teal .material-symbols-outlined {
  background: #e0f2f1;
  color: #00796b;
}
.entry-actions-menu.eam--polished .eam-btn--questions .material-symbols-outlined,
.entry-actions-menu.eam--polished .eam-btn--amber .material-symbols-outlined {
  background: #fdf3e0;
  color: #b45309;
}
.entry-actions-menu.eam--polished .eam-btn--result .material-symbols-outlined,
.entry-actions-menu.eam--polished .eam-btn--green .material-symbols-outlined {
  background: #e8f5e9;
  color: #2e7d32;
}
.entry-actions-menu.eam--polished .eam-btn--gold .material-symbols-outlined {
  background: #f6ecd4;
  color: #a16207;
}
.entry-actions-menu.eam--polished .eam-btn--view:hover, .entry-actions-menu.eam--polished .eam-btn--blue:hover {
  background: #eaf3fc;
}
.entry-actions-menu.eam--polished .eam-btn--edit:hover, .entry-actions-menu.eam--polished .eam-btn--purple:hover {
  background: #f2effb;
}
.entry-actions-menu.eam--polished .eam-btn--checkins:hover, .entry-actions-menu.eam--polished .eam-btn--teal:hover {
  background: #e9f6f5;
}
.entry-actions-menu.eam--polished .eam-btn--questions:hover, .entry-actions-menu.eam--polished .eam-btn--amber:hover {
  background: #fdf6e9;
}
.entry-actions-menu.eam--polished .eam-btn--result:hover, .entry-actions-menu.eam--polished .eam-btn--green:hover {
  background: #eef8ef;
}
.entry-actions-menu.eam--polished .eam-btn--gold:hover {
  background: #faf4e4;
}
.entry-actions-menu.eam--polished .eam-header:not(.eam-header--rich) {
  background: linear-gradient(180deg, #f7fafd, #fff);
}
.entry-actions-menu.eam--polished .eam-header:not(.eam-header--rich) .eam-header-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a5c6b;
}
.entry-actions-menu.eam--polished .eam-toggle-row {
  margin: 0 8px;
  padding: 7px 10px;
  border-radius: 11px;
}
.entry-actions-menu.eam--polished .eam-toggle-row .eam-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 18px;
  flex-shrink: 0;
  background: #e0f2f1;
  color: #00796b;
}
.entry-actions-menu.eam--polished .eam-toggle-row .eam-toggle-label {
  font-weight: 600;
  color: #22313f;
}
.entry-actions-menu.eam--polished .eam-toggle-row:hover {
  background: #f2f6fa;
}
.entry-actions-menu.eam--polished .eam-btn.danger {
  color: #c62828;
}
.entry-actions-menu.eam--polished .eam-btn.danger .material-symbols-outlined {
  background: #fdecea;
  color: #e53935;
}
.entry-actions-menu.eam--polished .eam-btn.danger:hover {
  background: #fdf0ef;
}
.entry-actions-menu.eam--polished .eam-divider {
  margin: 0 14px;
}
.entry-actions-menu.eam--polished .eam-header--rich .eam-header-avatar {
  background: linear-gradient(135deg, #e3edf7, #cfe1f4);
  box-shadow: inset 0 0 0 1px rgba(21, 101, 192, 0.14);
}
.entry-actions-menu.eam--polished.eam--mega .eam-mega-columns {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 14px 10px;
}
.entry-actions-menu.eam--polished.eam--mega .eam-mega-col {
  flex: 1 1 0;
  min-width: 202px;
  display: flex;
  flex-direction: column;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #64748b;
  padding: 10px 10px 6px;
  white-space: nowrap;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label::before {
  content: "";
  width: 3px;
  height: 11px;
  border-radius: 3px;
  background: #b6c2cf;
  flex-shrink: 0;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e6ebf1, transparent);
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label--blue::before {
  background: #1565c0;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label--gold::before {
  background: #a16207;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label--indigo::before {
  background: #3949ab;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label--slate::before {
  background: #64748b;
}
.entry-actions-menu.eam--polished.eam--mega .eam-group-label--teal::before {
  background: #00796b;
}
.entry-actions-menu.eam--polished.eam--mega .eam-btn {
  margin: 1px 0;
  padding: 5px 8px;
  font-size: 13px;
  white-space: nowrap;
}
.entry-actions-menu.eam--polished.eam--mega .eam-btn .material-symbols-outlined {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 15px;
}
.entry-actions-menu.eam--polished.eam--mega .eam-toggle-row {
  margin: 1px 0;
  padding: 5px 8px;
}
.entry-actions-menu.eam--polished.eam--mega .eam-toggle-row .eam-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 15px;
}
.entry-actions-menu.eam--polished.eam--mega .eam-toggle-row .eam-toggle-label {
  font-size: 13px;
  white-space: nowrap;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 14px 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fdf0ef;
  border: 1px solid #f6d5d2;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #c62828;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #f0b9b3;
  border-radius: 9px;
  background: #fff;
  color: #c62828;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip-btn .material-symbols-outlined {
  font-size: 17px;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip-btn:hover {
  background: #ffebee;
}
.entry-actions-menu.eam--polished.eam--mega .eam-danger-strip-btn:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 640px) {
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-columns {
    flex-direction: column;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-col {
    min-width: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .entry-actions-menu.eam--polished {
    animation: eamPanelIn 0.22s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  }
  .entry-actions-menu.eam--polished .eam-header,
  .entry-actions-menu.eam--polished .eam-btn,
  .entry-actions-menu.eam--polished .eam-toggle-row,
  .entry-actions-menu.eam--polished .eam-divider {
    animation: eamRowIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .entry-actions-menu.eam--polished .eam-header {
    animation-delay: 0.02s;
  }
  .entry-actions-menu.eam--polished .eam-toggle-row {
    animation-delay: 0.22s;
  }
  .entry-actions-menu.eam--polished .eam-actions .eam-btn:nth-child(1) {
    animation-delay: 0.06s;
  }
  .entry-actions-menu.eam--polished .eam-actions .eam-btn:nth-child(2) {
    animation-delay: 0.1s;
  }
  .entry-actions-menu.eam--polished .eam-actions .eam-btn:nth-child(3) {
    animation-delay: 0.14s;
  }
  .entry-actions-menu.eam--polished .eam-actions .eam-btn:nth-child(4) {
    animation-delay: 0.18s;
  }
  .entry-actions-menu.eam--polished .eam-actions .eam-btn:nth-child(5) {
    animation-delay: 0.22s;
  }
  .entry-actions-menu.eam--polished .eam-divider {
    animation-delay: 0.2s;
  }
  .entry-actions-menu.eam--polished .eam-danger .eam-btn {
    animation-delay: 0.24s;
  }
  .entry-actions-menu.eam--polished .eam-btn .material-symbols-outlined {
    animation: eamTileIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: inherit;
  }
  .entry-actions-menu.eam--polished .eam-btn .material-symbols-outlined {
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .entry-actions-menu.eam--polished .eam-btn:hover .material-symbols-outlined {
    transform: scale(1.1) rotate(-3deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .entry-actions-menu.eam--polished.eam--mega .eam-btn,
  .entry-actions-menu.eam--polished.eam--mega .eam-toggle-row,
  .entry-actions-menu.eam--polished.eam--mega .eam-group-label {
    animation: none;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-col {
    animation: eamRowIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-col:nth-child(1) {
    animation-delay: 0.05s;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-col:nth-child(2) {
    animation-delay: 0.1s;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-mega-col:nth-child(3) {
    animation-delay: 0.15s;
  }
  .entry-actions-menu.eam--polished.eam--mega .eam-danger-strip {
    animation: eamRowIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
  }
}
.entry-actions-menu .eam-header--rich {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f7fafd, #fff);
}
.entry-actions-menu .eam-header--rich .eam-header-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #e3edf7;
  color: #1565c0;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.entry-actions-menu .eam-header--rich .eam-header-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.entry-actions-menu .eam-header--rich .eam-header-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a2b3c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.entry-actions-menu .eam-header--rich .eam-header-sub {
  font-size: 12px;
  font-weight: 500;
  color: #6b8a9a;
  margin-top: 1px;
  white-space: nowrap;
}
.entry-actions-menu .eam-actions {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}
.entry-actions-menu .eam-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 18px;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #37474f;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.entry-actions-menu .eam-btn .material-symbols-outlined {
  font-size: 20px;
  color: #78909c;
}
.entry-actions-menu .eam-btn:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.entry-actions-menu .eam-btn:hover {
  background: #f0f6ff;
}
.entry-actions-menu .eam-btn:hover .material-symbols-outlined {
  color: #1565c0;
}
.entry-actions-menu .eam-btn.danger {
  color: #c62828;
}
.entry-actions-menu .eam-btn.danger .material-symbols-outlined {
  color: #e53935;
}
.entry-actions-menu .eam-btn.danger:hover {
  background: #ffebee;
}
.entry-actions-menu .eam-divider {
  height: 1px;
  background: #eceff1;
  margin: 2px 0;
}
.entry-actions-menu .eam-danger {
  padding: 4px 0;
}
.entry-actions-menu .eam-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
}
.entry-actions-menu .eam-toggle-row .eam-toggle-icon {
  font-size: 20px;
  color: #78909c;
}
.entry-actions-menu .eam-toggle-row .eam-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #37474f;
  flex: 1;
}

.tournament-registration-dialog .mat-mdc-dialog-container .mdc-dialog__surface {
  border-radius: 16px !important;
  overflow: hidden;
}
.tournament-registration-dialog .mat-mdc-dialog-container .mdc-dialog__content {
  padding: 0 !important;
}

.lr-standings-menu .mat-mdc-menu-content {
  padding: 6px 0 !important;
}
.lr-standings-menu .mat-mdc-menu-item {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  padding: 10px 20px !important;
  min-height: 44px !important;
}
.lr-standings-menu .mat-mdc-menu-item.active-menu-item {
  background: #e3f2fd !important;
  color: #1565c0 !important;
}

@media (max-width: 769px) {
  .portal-container.full-height {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}
.wide-tooltip {
  max-width: 320px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

ngx-guided-tour .guided-tour-user-input-mask {
  z-index: 9998 !important;
}
ngx-guided-tour .guided-tour-spotlight-overlay {
  z-index: 9999 !important;
}
ngx-guided-tour .tour-step {
  z-index: 10000 !important;
}

ngx-guided-tour .tour-step .tour-block {
  background: #0a3d62 !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(10, 61, 98, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  max-width: 360px;
  font-family: var(--wb-font);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}
ngx-guided-tour .tour-step .tour-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  color: #fff !important;
}
ngx-guided-tour .tour-step .tour-buttons {
  margin-top: 18px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ngx-guided-tour .tour-step .tour-buttons button.skip-button {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  transition: color 0.15s ease;
}
ngx-guided-tour .tour-step .tour-buttons button.skip-button:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
ngx-guided-tour .tour-step .tour-buttons .back-button {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  margin-right: 8px;
}
ngx-guided-tour .tour-step .tour-buttons .back-button:hover {
  color: #fff !important;
}
ngx-guided-tour .tour-step .tour-buttons .next-button {
  background: #fff !important;
  color: #0a3d62 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
ngx-guided-tour .tour-step .tour-buttons .next-button:hover {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px);
}
ngx-guided-tour .tour-step.tour-bottom .tour-arrow::before, ngx-guided-tour .tour-step.tour-bottom-right .tour-arrow::before, ngx-guided-tour .tour-step.tour-bottom-left .tour-arrow::before {
  border-bottom-color: #0a3d62 !important;
}
ngx-guided-tour .tour-step.tour-top .tour-arrow::before, ngx-guided-tour .tour-step.tour-top-right .tour-arrow::before, ngx-guided-tour .tour-step.tour-top-left .tour-arrow::before {
  border-top-color: #0a3d62 !important;
}
ngx-guided-tour .tour-step.tour-left .tour-arrow::before {
  border-left-color: #0a3d62 !important;
}
ngx-guided-tour .tour-step.tour-right .tour-arrow::before {
  border-right-color: #0a3d62 !important;
}

.mat-mdc-menu-panel.weigh-in-menu-panel {
  min-width: 304px !important;
  max-width: 360px !important;
  margin-top: 6px;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 33, 63, 0.18), 0 2px 6px rgba(15, 33, 63, 0.08) !important;
  border: 1px solid #e3e8ef;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-content {
  padding: 0 !important;
}
.mat-mdc-menu-panel.weigh-in-menu-panel mat-divider,
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-divider {
  display: none !important;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .cwm-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .cwm-stack .mat-mdc-menu-item mat-icon {
  margin-right: 15px !important;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item {
  height: auto !important;
  min-height: 0 !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  margin: 0 !important;
  line-height: 1.3;
  transition: background 0.12s ease;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item .mat-mdc-menu-item-text {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item .mat-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 !important;
  border-radius: 9px;
  font-size: 20px;
  text-align: center;
  background: #f1f4f8;
  color: #6b8a9a;
  transition: background 0.12s ease, color 0.12s ease;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item .menu-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item .menu-item-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a2b3c;
  letter-spacing: 0.1px;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item .menu-item-desc {
  font-size: 12px;
  font-weight: 400;
  color: #6b8a9a;
  white-space: normal;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-mdc-menu-item:hover {
  background: #f5f8fc;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-day .mat-icon {
  background: transparent;
  color: #b5c2cc;
  font-size: 22px;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-day.menu-day-active {
  background: rgba(0, 138, 252, 0.08);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-day.menu-day-active .mat-icon {
  color: #008afc;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-day.menu-day-active .menu-item-label {
  color: #006fcc;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize-day .mat-icon {
  background: rgba(0, 138, 252, 0.12);
  color: #008afc;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize-day:hover {
  background: rgba(0, 138, 252, 0.06);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize-day:hover .mat-icon {
  background: rgba(0, 138, 252, 0.18);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize .mat-icon {
  background: rgba(245, 127, 23, 0.14);
  color: #f57f17;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize:hover {
  background: rgba(245, 127, 23, 0.07);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-finalize:hover .mat-icon {
  background: rgba(245, 127, 23, 0.22);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-reset .mat-icon {
  background: rgba(198, 40, 40, 0.12);
  color: #c62828;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-reset:hover {
  background: rgba(198, 40, 40, 0.06);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-reset:hover .mat-icon {
  background: rgba(198, 40, 40, 0.18);
}
.mat-mdc-menu-panel.weigh-in-menu-panel .menu-exit .mat-icon {
  background: #eef1f5;
  color: #6b8a9a;
}
.mat-mdc-menu-panel.weigh-in-menu-panel .mat-divider, .mat-mdc-menu-panel.weigh-in-menu-panel mat-divider {
  margin: 4px 6px !important;
  border-top-color: #eef1f5 !important;
}

.pot-popover-menu .mat-menu-content {
  padding: 0 !important;
}

.pot-popover {
  padding: 12px 14px;
  min-width: 180px;
  max-width: 260px;
}

.pot-popover-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #607d8b;
  margin-bottom: 8px;
}

.pot-popover-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pot-popover-list li {
  font-size: 13px;
  color: #263238;
  line-height: 1.3;
}

.td-roster-menu .mat-menu-content,
.tds-roster-menu .mat-menu-content {
  padding: 0 !important;
}
.td-roster-menu .mat-mdc-menu-content,
.td-roster-menu .mdc-list,
.tds-roster-menu .mat-mdc-menu-content,
.tds-roster-menu .mdc-list {
  padding: 0 !important;
}

.td-roster-popover,
.tds-roster-popover {
  min-width: 220px;
  max-width: 320px;
  border-radius: 10px;
  overflow: hidden;
}

.td-roster-header,
.tds-roster-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 10px 14px;
}

.td-roster-section,
.tds-roster-section {
  padding: 6px 0 8px;
}
.td-roster-section + .td-roster-section, .td-roster-section + .tds-roster-section,
.tds-roster-section + .td-roster-section,
.tds-roster-section + .tds-roster-section {
  border-top: 1px solid #eef2f7;
}

.td-roster-section-label,
.tds-roster-section-label {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 6px 14px 4px;
}

.td-roster-row,
.tds-roster-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 14px;
  font-size: 13px;
  color: #1a2a3a;
  border-left: 2px solid transparent;
  transition: background 0.1s, border-color 0.1s;
}
.td-roster-row.clickable,
.tds-roster-row.clickable {
  cursor: pointer;
}
.td-roster-row.clickable:hover, .td-roster-row.clickable:focus,
.tds-roster-row.clickable:hover,
.tds-roster-row.clickable:focus {
  background: #f3f7ff;
  border-left-color: #2563eb;
}
.td-roster-row .td-roster-name,
.td-roster-row .tds-roster-name,
.tds-roster-row .td-roster-name,
.tds-roster-row .tds-roster-name {
  font-weight: 600;
  color: #1a2a3a;
  white-space: nowrap;
  line-height: 1.3;
}
.td-roster-row .td-roster-club,
.td-roster-row .tds-roster-club,
.tds-roster-row .td-roster-club,
.tds-roster-row .tds-roster-club {
  font-size: 11px;
  color: #0d9488;
  font-weight: 600;
}

@keyframes eamPanelIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes eamRowIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes eamTileIn {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-8deg);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
/* Raffle draw-winner dialog: the template content (.raffle-dialog) carries its own
   background, radius and shadow, so the MDC surface gets out of the way. */
.raffle-draw-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 16px;
}

/* Big Fish finalize / reset confirmations: the template content (.bfc) carries its
   own background, radius and padding, so the MDC surface gets out of the way. */
.bf-confirm-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface {
  padding: 0;
  background: transparent;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/navbar.scss?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.sidenav-toggle {
  padding: 0;
  margin: 8px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-wrapper .mat-toolbar-row, .navbar-wrapper .mat-toolbar-single-row {
  justify-content: space-between;
  padding: 35px 20px;
}

.mat-toolbar-row, .mat-toolbar-single-row {
  padding: 35px 20px !important;
}
.mat-toolbar-row a, .mat-toolbar-single-row a {
  font-size: 1rem;
}
.large-screen-menu {
  display: none;
}

.circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
}

@media (min-width: 770px) {
  .mat-toolbar-row a, .mat-toolbar-single-row a {
    padding-left: 0;
  }
  .sidenav-toggle {
    display: none !important;
  }
  .large-screen-menu {
    display: block;
    justify-self: flex-end;
  }
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/global.scss?ngGlobalStyle ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
html, body {
  height: 100%;
}

.public-footer {
  background: #000;
  height: 56px;
}

@media (min-width: 650px) {
  .full-height {
    min-height: calc(99vh - 85px);
  }
}
@media print {
  body.check-print-mode-voucher .check-page-3up {
    width: 8.5in !important;
    height: 10.95in !important;
    max-height: 10.95in !important;
    position: relative;
    page-break-after: auto !important;
    page-break-inside: avoid !important;
    -moz-column-break-inside: avoid !important;
         break-inside: avoid !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body.check-print-mode-voucher .check-page-3up:not(:last-child) {
    page-break-after: always !important;
  }
  body.check-print-mode-voucher .check-print-area {
    margin: 0 !important;
    padding: 0 !important;
  }
  body.check-print-mode-voucher .check-3up-slot {
    position: relative;
    width: 8.5in;
    height: 3.667in;
    overflow: hidden;
  }
  body.check-print-mode-voucher .check-3up-slot:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0.5pt dashed #c8dcee;
  }
  body.check-print-mode-voucher .check-3up-slot .check-graphics {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  body.check-print-mode-voucher .check-3up-slot .check-fields {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    z-index: 3;
  }
  body.check-print-mode-voucher .check-3up-slot .check-border {
    top: 0.08in !important;
    left: 0.4in !important;
    right: 0.4in !important;
    bottom: 0.08in !important;
    height: auto !important;
    border-radius: 4pt !important;
    border: 1.5pt solid #4a7fb5 !important;
    background: #f0f6fc !important;
    box-shadow: inset 0 0 0 3pt #fff, inset 0 0 0 4pt #c8dcee !important;
    position: absolute;
  }
  body.check-print-mode-voucher .check-3up-slot .check-watermark {
    top: 0.15in !important;
    left: 1.5in !important;
    right: 1.5in !important;
    bottom: 0.15in !important;
    height: auto !important;
    background-size: 2.2in 2.2in !important;
    opacity: 0.18 !important;
  }
  body.check-print-mode-voucher .check-3up-slot .check-number-box {
    top: 0.2in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .bank-info-box {
    top: 0.22in !important;
    left: 0.7in !important;
    width: 3in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .payer-info {
    top: 0.85in !important;
    left: 0.7in !important;
    width: 3in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .pay-to-label {
    top: 1.05in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .pay-to-line {
    top: 1.35in !important;
    left: 4.2in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .amount-box {
    top: 1.55in !important;
    right: 0.7in !important;
    height: 0.36in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .dollars-line {
    top: 2.25in !important;
    left: 0.7in !important;
    right: 1.5in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .dollars-label {
    top: 2.18in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .date-box {
    top: 2.55in !important;
    left: 0.7in !important;
    width: 3in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .signature-line {
    top: 2.7in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .signature-label {
    top: 2.8in !important;
    right: 0.7in !important;
  }
  body.check-print-mode-voucher .check-3up-slot .micr-line {
    top: 3.05in !important;
    left: 0.7in !important;
    right: 0.7in !important;
    font-size: 10pt !important;
    letter-spacing: 1pt !important;
  }
  body.check-print-mode-voucher .check-3up-slot .check-footer-mark {
    display: none !important;
  }
  body.check-print-mode-voucher .check-3up-slot .memo-label, body.check-print-mode-voucher .check-3up-slot .memo-line {
    display: none !important;
  }
  body.check-print-mode-voucher .check-3up-slot .slot-field {
    position: absolute;
    z-index: 5;
    font-family: "Courier New", monospace;
    color: #000;
  }
  body.check-print-mode-voucher .check-3up-slot .slot-date {
    top: 2.55in;
    left: 1.2in;
    font-size: 12pt;
    font-weight: bold;
  }
  body.check-print-mode-voucher .check-3up-slot .slot-payee {
    top: 1.12in;
    left: 4.3in;
    right: 0.85in;
    font-size: 13pt;
    font-weight: bold;
  }
  body.check-print-mode-voucher .check-3up-slot .slot-amount-num {
    top: 1.62in;
    right: 0.85in;
    font-size: 15pt;
    font-weight: bold;
  }
  body.check-print-mode-voucher .check-3up-slot .slot-amount-words {
    top: 1.95in;
    left: 0.85in;
    right: 1.65in;
    font-size: 11pt;
  }
  body.check-print-mode > *:not(.check-print-area) {
    display: none !important;
  }
  body.check-print-mode > .check-print-area {
    display: block !important;
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  body.check-print-mode mat-toolbar,
  body.check-print-mode mat-sidenav,
  body.check-print-mode mat-sidenav-container mat-sidenav,
  body.check-print-mode .mat-drawer,
  body.check-print-mode .cdk-overlay-container,
  body.check-print-mode app-navbar,
  body.check-print-mode .navbar,
  body.check-print-mode .public-footer {
    display: none !important;
  }
}
@media print {
  body.one099-print-mode > *:not(.one099-print-area) {
    display: none !important;
  }
  body.one099-print-mode > .one099-print-area {
    display: block !important;
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  body.one099-print-mode mat-toolbar,
  body.one099-print-mode mat-sidenav,
  body.one099-print-mode mat-sidenav-container mat-sidenav,
  body.one099-print-mode .mat-drawer,
  body.one099-print-mode .cdk-overlay-container,
  body.one099-print-mode app-navbar,
  body.one099-print-mode .navbar,
  body.one099-print-mode .public-footer {
    display: none !important;
  }
  body.one099-print-mode .one099-doc {
    page-break-after: always;
    -moz-column-break-after: page;
         break-after: page;
    width: 8.5in;
    min-height: 11in;
  }
  body.one099-print-mode .one099-doc:last-child {
    page-break-after: auto;
    -moz-column-break-after: auto;
         break-after: auto;
  }
  @page {
    size: letter;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/sidebar.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.sidebar-container {
  margin-top: 65px;
}

.menu-link {
  height: 25px;
}
.menu-link i.material-icons {
  flex: 0 0 40px;
}
.menu-link img.img-icon {
  padding-right: 15px;
  height: 25px;
}

.abbr-wrapper {
  padding: 5px;
  text-align: center;
  flex: 0 0 30px;
  border: 1px solid #b0bec5;
  border-radius: 3px;
}
.abbr-wrapper .abbr-icon {
  margin-top: -2px;
  font-size: 16px;
  color: #efefef;
  line-height: 16px;
}

.fixed-side-nav.on .menu-link-icon.uil {
  margin-right: 16px;
}

.abbr-wrapper:hover {
  border-color: #185FA5;
}
.abbr-wrapper:hover * {
  color: #185FA5;
}

.menu-items-nav ul.menu-nav li.menu-item a.menu-link:hover .abbr-wrapper {
  border-color: #185FA5;
}
.menu-items-nav ul.menu-nav li.menu-item a.menu-link:hover * {
  color: #185FA5;
}

.menu-items-nav ul.menu-nav {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}
.menu-items-nav ul.menu-nav li.menu-item {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
  padding: 0;
}
.menu-items-nav ul.menu-nav li.menu-item .menu-link {
  width: 100%;
  display: flex;
  padding: 15px 0;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  margin: 0;
  align-items: center;
  justify-content: center;
}
.menu-items-nav ul.menu-nav li.menu-item .menu-link i.menu-link-icon {
  flex: 0 0 40px;
}
.menu-items-nav ul.menu-nav li.menu-item .menu-link span.menu-link-text {
  font-weight: 400;
  font-size: 0.8rem;
  flex-grow: 1;
}
.menu-items-nav ul.menu-nav li.menu-item a.menu-link:hover i.menu-link-icon,
.menu-items-nav ul.menu-nav li.menu-item a.menu-link:hover .menu-link-icon,
.menu-items-nav ul.menu-nav li.menu-item a.menu-link:hover span.menu-link-text {
  color: #5d78ff !important;
}
.menu-items-nav ul.menu-nav li.menu-section {
  margin: 20px 0 0 0;
  height: 40px;
  display: flex;
  padding: 0 20px;
}
.menu-items-nav ul.menu-nav li.menu-section h4.menu-section-text {
  color: #577fc0;
  font-size: 0.83rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.main-sidebar {
  min-width: 150px;
  font-size: 13px;
}
.main-sidebar h2.list-header {
  margin-top: 20px;
  margin-bottom: 5px;
  color: #7b7b7b;
  text-transform: uppercase;
  font-size: 15px;
  padding-left: 18px;
}
.main-sidebar .fa {
  font: 20px/1 FontAwesome !important;
}
.main-sidebar .side-nav-logo-wrapper {
  margin-top: 25px;
  margin-bottom: 25px;
}
.main-sidebar .side-nav-logo-wrapper .side-nav-logo {
  height: 45px;
  background-image: url(/assets/images/silk_logo_only.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar-toggle-container {
  display: block;
  position: fixed;
  top: 10px;
}

@media (min-width: 961px) {
  .sidebar-toggle-container {
    display: none;
  }
}
.nav.inner-nav {
  margin-left: -75px;
}

.main-container.full-with-left {
  padding-left: 70px;
  width: calc(100vw - 375px);
}

.sidebar-container {
  z-index: 9999;
}

.pinned-sidebar .nav.inner-nav {
  margin-left: -200px;
}

.side-nav-logo-wrapper {
  width: 100%;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-nav-logo-wrapper .silk-label {
  color: #577fc0;
  font-weight: 500;
  font-size: 1.4rem;
  padding-left: 5px;
}

.side-nav-logo {
  background-image: url("/assets/images/logo-sm.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  width: 25px;
  margin: 0 auto;
}

.fixed-side-nav {
  height: calc(100% - 65px);
  margin-top: 0;
  position: fixed;
}
.fixed-side-nav .simplebar-content {
  margin: 0 0 75px 0 !important;
}
.fixed-side-nav .menu-items-nav {
  height: 100%;
}
.fixed-side-nav .dashboard-link-wrapper .toggle {
  display: none;
}

.fixed-side-nav.pinned {
  overflow-y: auto;
}

.fixed-side-nav.on {
  width: 200px;
  transition: width 0.3s ease-in-out;
}
.fixed-side-nav.on .menu-items-nav ul.menu-nav {
  padding: 15px;
}
.fixed-side-nav.on .menu-items-nav ul.menu-nav li.menu-item {
  align-items: flex-start;
}
.fixed-side-nav.on .abbr-wrapper, .fixed-side-nav.on .menu-link-icon {
  margin-right: 7px;
}
.fixed-side-nav.on .dashboard-link-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
.fixed-side-nav.on .dashboard-link-wrapper .dashboard-link {
  width: 75% !important;
}
.fixed-side-nav.on .dashboard-link-wrapper .toggle {
  display: block;
  width: 25%;
}

.fixed-side-nav.off {
  width: 70px;
  min-width: 70px;
  transition: width 0.3s ease-in-out;
}

.fixed-side-nav.on .side-nav-logo,
.fixed-side-nav.pinned .side-nav-logo {
  background-image: url("/assets/images/silk_logo_only.png");
}

.fixed-side-nav.off .menu-link-text {
  display: none;
}

.fixed-side-nav .sidebar-toggler {
  padding-left: 5px;
}

.fixed-side-nav.pinned .sidebar-toggler {
  display: flex;
}

.fixed-side-nav.pinned {
  position: fixed;
  width: 200px;
}

.fixed-side-nav.pinned .menu-link-text {
  display: inline-block;
}

.sidebar-toggle-container {
  display: none;
  position: fixed;
  top: 60px;
  left: -2px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
  border-radius: 5px;
  width: 50px;
  transition-duration: 0.3s;
}

#sidebar .sidebar-toggle-container span.icon-holder {
  padding: 5px 0 0 10px;
}

#sidebar .sidebar-toggle-container span.icon-holder .material-icons {
  background: #fff;
}

#sidebar .fixed-side-nav.off #bd-docs-nav {
  display: block;
}

.list-group-item.active {
  background-color: #dedfe0;
}

.bd-sidebar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  order: 0;
}

.bd-links {
  width: 100%;
  min-width: 200px;
  overflow: hidden;
}

.bd-links .list-group-item {
  padding: 9px 15px;
}

.list-group-item-action {
  color: #888da8;
}

.left-nav-icon {
  cursor: pointer;
  padding: 15px;
  position: relative;
  left: 6px;
  top: 8px;
}

.list-group {
  font-size: 14px;
}

.list-group-item {
  display: block;
  position: relative;
}

.menu-toggler {
  cursor: pointer;
}

.menu-link-text {
  font-size: 14px;
}

.sidebar-toggle-container {
  cursor: pointer;
}

span.icon-holder {
  display: inline-block;
  height: 30px;
  width: 25px;
  cursor: pointer;
  line-height: 25px;
  text-align: center;
  position: relative;
  left: 0;
  margin-right: 14px;
  font-size: 17px;
  border-radius: 6px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

span.subnav-icon {
  display: inline-block;
  position: relative;
  top: 7px;
  left: -3px;
}

.submenu-list a.list-group-item {
  /* padding-left: 65px; */
}

span.icon-holder .material-icons {
  font-size: 30px;
}

.closed {
  width: 35px;
  display: block;
}

#bd-docs-nav .list-group-item {
  border: 0 !important;
}

.side-nav-logo-wrapper {
  padding: 15px;
}

a.list-group-item.is-active {
  background-color: #9997e4;
  color: #fff;
}

.pinned-sidebar .nav.inner-nav {
  margin-left: 0;
}

.menu-link.home-link img.img-icon {
  padding-left: 10px;
}

@media (max-height: 830px) {
  .fixed-side-nav .bd-links {
    min-height: 800px;
  }
}
@media (max-width: 680px) {
  .cdk-overlay-pane {
    width: 100% !important;
    justify-content: flex-end !important;
  }
  .fixed-side-nav {
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .fixed-side-nav .menu-items-nav {
    margin-top: 20px;
  }
  .pinned-sidebar .nav.inner-nav {
    margin-left: 0;
  }
  .main-container.full-with-left {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
  .sidebar-toggle-container {
    display: block;
    cursor: pointer;
  }
  .sidebar-toggler {
    display: none;
  }
  .fixed-side-nav.off {
    width: 0;
    min-width: 0;
    height: 30px;
    overflow: hidden;
  }
  .menu-link-text {
    font-size: 14px;
    padding-top: 0;
  }
  .bd-links .list-group-item {
    padding: 5px 15px;
  }
}
@media only screen and (max-device-width: 640px) {
  .bd-links .list-group-item {
    padding: 3px 15px;
  }
}
@media (max-width: 768px) {
  .cdk-overlay-pane {
    width: 100% !important;
    justify-content: flex-end !important;
    min-width: 80vw;
  }
}
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/public-claude-header.scss?ngGlobalStyle ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.info-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #2a2a2a 100%);
  color: white;
  padding: 18px 16px 22px;
}

.header-inner {
  max-width: 860px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
}
.logo span {
  color: #008afc;
}

.tagline-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-headline {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #fff;
}

.header-sub {
  font-size: 12.5px;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.45;
  max-width: 580px;
  color: #fff;
}

.info-header {
  width: 100%;
}

.header-inner {
  padding: 0;
  text-align: center;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-headline {
  text-align: center;
  margin: 0 0 8px;
}

.header-sub {
  text-align: center;
  margin: 0;
}

@media (min-width: 690px) {
  .info-header {
    padding: 36px 48px 48px;
  }
  .header-inner {
    text-align: left;
  }
  .header-top {
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .logo {
    font-size: 36px;
  }
  .header-headline {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .header-sub {
    font-size: 15px;
  }
  .header-headline, .header-sub {
    text-align: left;
  }
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/profile-info.scss?ngGlobalStyle ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.info-wrapper {
  position: relative;
}
.info-wrapper .header {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
}
.info-wrapper .flex-wrapper.form-field {
  border-top: 0;
}
.info-wrapper .columns-wrapper {
  display: block;
  padding: 25px 0;
  font-size: 1.1rem;
}
.info-wrapper .columns-wrapper .event-details {
  flex: 0 50%;
}
.info-wrapper .card-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.info-wrapper .card-heading h3, .info-wrapper .card-heading h4, .info-wrapper .card-heading h5 {
  color: #2c2c2c;
}
.info-wrapper .card-heading .tour-name {
  padding-bottom: 25px;
}
.info-wrapper .card-heading .record-name {
  flex-direction: column;
  padding-bottom: 25px;
}
.info-wrapper .tour-name {
  cursor: pointer;
}
.info-wrapper .tour-name:hover h5 {
  color: #5050f7 !important;
}
.info-wrapper .director-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-wrapper .admin-actions {
  padding: 0 20px 0 0;
}
.info-wrapper .info-wrapper {
  color: #2c2c2c;
}
.info-wrapper .director-btn button {
  width: 115px;
}
.info-wrapper .white-border-btn {
  border: 2px solid #2c2c2c;
}
.info-wrapper .white-border-btn:hover {
  color: #2c2c2c;
  font-weight: 600;
}
.info-wrapper .tour-name h5, .info-wrapper .label-title, .info-wrapper .field-label {
  color: #2c2c2c;
}
.info-wrapper .join-tourney {
  padding: 20px 0 10px 0;
}
.info-wrapper .quick-stats {
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.info-wrapper .quick-stats .quick-stat {
  flex-direction: column;
}
.info-wrapper .quick-stats .quick-stat .stat-value {
  font-size: 1.35rem;
}
.info-wrapper .quick-stats .quick-stat .stat-label {
  color: #2c2c2c;
}
.info-wrapper .tournament-details .other-notes {
  padding-top: 20px;
  color: #2c2c2c;
}
.info-wrapper .tournament-details .profile-fields {
  padding: 20px 0 0 0;
}
.info-wrapper .tournament-details .profile-fields .profile-field {
  display: flex;
  justify-content: space-between;
  padding: 5px 0 10px 0px;
}
.info-wrapper .tournament-details .profile-fields .profile-field .field-label, .info-wrapper .tournament-details .profile-fields .profile-field .field-value {
  width: 50%;
}
.info-wrapper .tournament-details .newest-entries {
  padding: 10px 0 0 0;
}
.info-wrapper .tournament-details .newest-entries h5 {
  color: #2c2c2c;
  padding-bottom: 10px;
}
.info-wrapper .tournament-details .newest-entries .entry {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.info-wrapper .tournament-details .newest-entries .entry .entry-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-wrapper .tournament-details .newest-entries .entry .entry-icon .icon-initials img.user-profile-thumb {
  height: 44px;
  width: 44px;
  border: 3px solid #2c2c2c;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.info-wrapper .tournament-details .newest-entries .entry .entry-icon .initials-wrapper {
  height: 44px;
  width: 44px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
}
.info-wrapper .tournament-details .newest-entries .entry .entrant-info {
  padding-left: 15px;
}
.info-wrapper .divider {
  background: #eeeff8;
  height: 1px;
  overflow: hidden;
  opacity: 0.2;
  margin: 1.5rem 0;
}
@media (min-width: 680px) {
  .info-wrapper .columns-wrapper {
    display: flex;
  }
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/tournaments.scss?ngGlobalStyle ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.info-card-wrapper {
  padding: 15px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-card-wrapper header {
  padding: 0 0 15px;
  flex-direction: column;
}
.info-card-wrapper header .division-name {
  font-size: 1.25rem;
  font-weight: bold;
}
.info-card-wrapper header .title {
  font-size: 1.3rem;
  text-align: center;
}

.tourney-list {
  width: 100%;
  padding: 1rem;
}
.tourney-list .tournament-item {
  width: 100%;
  margin: 10px 0 20px 0px;
  cursor: pointer;
  border-top: 1px solid #6c6c6c;
}
.tourney-list .tournament-item .inner-list-item {
  justify-content: space-between;
  align-items: center;
  color: #6c6c6c;
}
.tourney-list .tournament-item .inner-list-item .title {
  font-weight: bold;
  font-size: 1.3rem;
  color: #464646;
}
.tourney-list .tournament-item .inner-list-item .loc-region-block {
  display: flex;
  padding: 0.2rem 0;
}
.tourney-list .tournament-item .inner-list-item .signup-btn {
  margin-top: 15px;
}
.tourney-list .tournament-item .inner-list-item .signup-btn .mat-mdc-unelevated-button {
  line-height: 33px;
  color: #fff;
}
.tourney-list .tournament-item:first-of-type {
  margin-top: -15px;
  border-top: 0;
}
.tourney-list.smaller .inner-list-item {
  display: block !important;
}
.tourney-list.smaller .inner-list-item .title {
  font-size: 1rem !important;
  padding: 0 0 5px;
}
.tourney-list.smaller .inner-list-item .loc-region-block {
  padding: 0.2rem 0 0.3rem;
}
.tourney-list.smaller .inner-list-item .date {
  padding: 0 0 5px;
}
.tourney-list.smaller .inner-list-item .right, .tourney-list.smaller .inner-list-item .right button {
  width: 100%;
}
.tourney-list.smaller .inner-list-item .right {
  padding: 5px 0 0;
}

.text-separator {
  width: 1px;
  height: 1.2rem;
  margin: 0.2rem 1rem;
  background-color: #464646;
}

@media (min-width: 680px) {
  .info-card-wrapper {
    padding: 15px 0 0;
  }
  .tourney-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .tourney-list .tournament-item {
    width: 300px;
  }
  .tourney-list .tournament-item:first-of-type {
    margin: 10px 0;
    cursor: pointer;
    border-top: 1px solid #6c6c6c;
  }
  .tourney-list.smaller .title {
    font-size: 1rem !important;
    padding: 0 0 5px;
  }
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/leaderboard-overrides.scss?ngGlobalStyle ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Large .larger-label {
  font-size: 1.3rem !important;
}
.Large .main-team, .Large .angler-name, .Large .co-angler, .Large .flex-both .main-team .boat-captain-name, .Large .large-data-point, .Large .alias-row {
  font-size: 15px !important;
}
.Large .place-box {
  height: 60px !important;
  width: 60px !important;
  font-size: 1.2rem !important;
}

.Small .next-up-bar .bar-item .bar-label, .Small .next-up-bar .bar-item .bar-contents .weight {
  font-size: 1.3rem !important;
}
.Small .larger-label {
  font-size: 1rem !important;
}
.Small .main-team, .Small .angler-name, .Small .co-angler, .Small .flex-both .main-team .boat-captain-name, .Small .club-name, .Small .large-data-point, .Small .alias-row {
  font-size: 13px !important;
}
.Small .place-box {
  height: 25px !important;
  width: 25px !important;
  font-size: 1.3rem !important;
}

.Green .main-team, .Green .angler-name, .Green .co-angler, .Green .alias-row, .Green .flex-both .main-team .boat-captain-name, .Green .club-name, .Green .blue {
  color: green !important;
}

.Blue .main-team, .Blue .angler-name, .Blue .co-angler, .Blue .alias-row, .Blue .flex-both .main-team .boat-captain-name, .Blue .club-name, .Blue .blue {
  color: #127dd5 !important;
}

.Black .main-team, .Black .angler-name, .Black .co-angler, .Black .alias-row, .Black .flex-both .main-team .boat-captain-name, .Black .club-name, .Black .blue {
  color: #2b2b2b !important;
  font-weight: 700 !important;
}

@media (min-width: 770px) {
  .Large .larger-label {
    font-size: 1.7rem !important;
  }
  .Large .main-team, .Large .angler-name, .Large .co-angler, .Large .flex-both .main-team .boat-captain-name, .Large .large-data-point, .Large .alias-row {
    font-size: 20px !important;
  }
  .Large .place-box {
    height: 60px !important;
    width: 60px !important;
    font-size: 1.4rem !important;
  }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/shared-portal.scss?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:host {
  width: 100%;
}

.portal-wrapper {
  --wb-navbar-h: 64px;
  --wb-navbar-gap: 0px;
  --wb-navbar-bar: calc(var(--wb-navbar-h) + env(safe-area-inset-top, 0px));
  --wb-navbar-total: calc(var(--wb-navbar-bar) + var(--wb-navbar-gap));
  --wb-pro-inner: 1720px;
  --wb-angler-col: var(--wb-page-max, 1560px);
  --wb-safe-top: 0px;
}
.portal-wrapper.is-pro {
  --wb-angler-col: var(--wb-pro-inner);
}
.portal-wrapper .sidebar-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2002;
}
.portal-wrapper .portal-content-wrapper {
  margin-left: 56px;
  min-height: calc(100vh - var(--wb-navbar-total));
  transition: margin-left 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portal-wrapper .portal-content-wrapper.pinned-sidebar {
  margin-left: 248px;
}
.portal-wrapper .portal-content-wrapper .navbar-wrapper {
  background: #fff;
  position: fixed;
  top: 0;
  left: 56px;
  right: 0;
  z-index: 2001;
  height: var(--wb-navbar-bar);
  padding-top: env(safe-area-inset-top, 0px);
  transition: left 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portal-wrapper .portal-content-wrapper.pinned-sidebar .navbar-wrapper {
  left: 248px;
}
.portal-wrapper .portal-content-wrapper .bottom-nav {
  left: 56px;
  transition: left 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.portal-wrapper .portal-content-wrapper.pinned-sidebar .bottom-nav {
  left: 248px;
}
.portal-wrapper .portal-content-wrapper .mat-drawer-content:has(process-payment) {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper:has(site-guide) .mat-drawer-container.portal-container,
.portal-wrapper .portal-content-wrapper:has(site-guide) .mat-drawer-content {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper:has(director-calendar) .mat-drawer-container.portal-container,
.portal-wrapper .portal-content-wrapper:has(director-calendar) .mat-drawer-content {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper:has(angler-calendar) .mat-drawer-container.portal-container,
.portal-wrapper .portal-content-wrapper:has(angler-calendar) .mat-drawer-content {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper:has(message-board-page) .mat-drawer-container.portal-container,
.portal-wrapper .portal-content-wrapper:has(message-board-page) .mat-drawer-content {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper:has(tour-memberships-grid) .mat-drawer-container.portal-container,
.portal-wrapper .portal-content-wrapper:has(tour-memberships-grid) .mat-drawer-content {
  overflow: visible;
}
.portal-wrapper .portal-content-wrapper .portal-container {
  margin-top: var(--wb-navbar-total);
  position: relative;
}
.portal-wrapper .portal-content-wrapper .portal-container .custom-chat-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
}
.portal-wrapper .portal-content-wrapper.fix-top-issue {
  margin-top: var(--wb-navbar-total);
  margin-left: 70px;
  min-height: auto !important;
}
@media (min-width: 770px) {
  body.wb-impersonating .portal-wrapper {
    --wb-navbar-h: 112px;
    --wb-navbar-gap: 12px;
  }
}
@media (max-width: 769px) {
  .portal-wrapper {
    --wb-navbar-h: 56px;
    --wb-navbar-gap: 8px;
  }
  .portal-wrapper .sidebar-wrapper {
    pointer-events: none;
    width: 0;
    overflow: hidden;
  }
  .portal-wrapper .portal-content-wrapper {
    margin-left: 0 !important;
  }
  .portal-wrapper .portal-content-wrapper .navbar-wrapper {
    left: 0 !important;
    height: auto;
    min-height: var(--wb-navbar-bar);
  }
}
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/assets/css/wb-theme.scss?ngGlobalStyle ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --wb-canvas: #FAFAF7;
  --wb-canvas-sunk: #F1EFE8;
  --wb-surface: #FFFFFF;
  --wb-surface-hover: #F7F6F2;
  --wb-border: #E5E3DB;
  --wb-border-strong: #B4B2A9;
  --wb-ink: #14110F;
  --wb-text: #1F2024;
  --wb-text-2: #5F5E5A;
  --wb-text-3: #6b6862;
  --wb-text-4: #A8A69E;
  --wb-brand-blue: #008AFC;
  --wb-accent: #185FA5;
  --wb-on-accent: #FFFFFF;
  --wb-accent-hover: #1F70BD;
  --wb-accent-press: #12497E;
  --wb-accent-soft: #E7F0F8;
  --wb-focus: 0 0 0 3px rgba(24, 95, 165, 0.28);
  --wb-focus-danger: 0 0 0 3px rgba(194, 56, 47, 0.24);
  --wb-success: #2E7D32;
  --wb-on-success: #FFFFFF;
  --wb-success-soft: #E6F2E7;
  --wb-success-bg: var(--wb-success-soft);
  --wb-warning: #8A5A00;
  --wb-warning-soft: #FFF4DE;
  --wb-warning-mark: #FFA800;
  --wb-danger: #C2382F;
  --wb-danger-soft: #FBEAE8;
  --wb-neutral: #5F5E5A;
  --wb-neutral-soft: #F1EFE8;
  --wb-attention-fg: var(--wb-text-2);
  --wb-attention-bg: var(--wb-neutral-soft);
  --wb-gold: #E0B44C;
  --wb-gold-ink: #14110F;
  --wb-gold-soft: #FAF0DA;
  --wb-podium-1: #C8A24A;
  --wb-podium-2: #A9B2BC;
  --wb-podium-3: #B07A4C;
  --wb-podium-ink: #241A05;
  --wb-podium-1-soft: rgba(200, 162, 74, 0.16);
  --wb-podium-2-soft: rgba(169, 178, 188, 0.16);
  --wb-podium-3-soft: rgba(176, 122, 76, 0.16);
  --wb-status-live-fg: var(--wb-danger);
  --wb-status-live-bg: var(--wb-danger-soft);
  --wb-status-live-glow: rgba(194, 56, 47, 0.30);
  --wb-status-open-fg: var(--wb-success);
  --wb-status-open-bg: var(--wb-success-soft);
  --wb-status-active-fg: var(--wb-success);
  --wb-status-active-bg: var(--wb-success-soft);
  --wb-status-scheduled-fg: var(--wb-accent);
  --wb-status-scheduled-bg: var(--wb-accent-soft);
  --wb-status-upcoming-fg: var(--wb-accent);
  --wb-status-upcoming-bg: var(--wb-accent-soft);
  --wb-status-closed-fg: var(--wb-neutral);
  --wb-status-closed-bg: var(--wb-neutral-soft);
  --wb-status-empty-fg: var(--wb-neutral);
  --wb-status-empty-bg: var(--wb-neutral-soft);
  --wb-status-draft-fg: var(--wb-neutral);
  --wb-status-draft-bg: var(--wb-neutral-soft);
  --wb-status-inactive-fg: var(--wb-neutral);
  --wb-status-inactive-bg: var(--wb-neutral-soft);
  --wb-status-archived-fg: var(--wb-text-3);
  --wb-status-archived-bg: var(--wb-neutral-soft);
  --wb-status-completed-fg: var(--wb-text);
  --wb-status-completed-bg: var(--wb-neutral-soft);
  --wb-tour-1: #185FA5;
  --wb-tour-2: #0D8577;
  --wb-tour-3: #A96A00;
  --wb-tour-4: #2E7D32;
  --wb-tour-5: #6E4BC4;
  --wb-tour-6: #B03060;
  --wb-tour-7: #4A6B85;
  --wb-tour-8: #C05621;
  --wb-tg-status-live-fg: var(--wb-status-live-fg);
  --wb-tg-status-live-bg: var(--wb-status-live-bg);
  --wb-tg-status-live-glow: var(--wb-status-live-glow);
  --wb-tg-status-open-fg: var(--wb-status-open-fg);
  --wb-tg-status-open-bg: var(--wb-status-open-bg);
  --wb-tg-status-active-fg: var(--wb-status-active-fg);
  --wb-tg-status-active-bg: var(--wb-status-active-bg);
  --wb-tg-status-scheduled-fg: var(--wb-status-scheduled-fg);
  --wb-tg-status-scheduled-bg: var(--wb-status-scheduled-bg);
  --wb-tg-status-upcoming-fg: var(--wb-status-upcoming-fg);
  --wb-tg-status-upcoming-bg: var(--wb-status-upcoming-bg);
  --wb-tg-status-closed-fg: var(--wb-status-closed-fg);
  --wb-tg-status-closed-bg: var(--wb-status-closed-bg);
  --wb-tg-status-empty-fg: var(--wb-status-empty-fg);
  --wb-tg-status-empty-bg: var(--wb-status-empty-bg);
  --wb-tg-status-draft-fg: var(--wb-status-draft-fg);
  --wb-tg-status-draft-bg: var(--wb-status-draft-bg);
  --wb-tg-status-inactive-fg: var(--wb-status-inactive-fg);
  --wb-tg-status-inactive-bg: var(--wb-status-inactive-bg);
  --wb-tg-status-archived-fg: var(--wb-status-archived-fg);
  --wb-tg-status-archived-bg: var(--wb-status-archived-bg);
  --wb-tg-status-completed-fg: var(--wb-status-completed-fg);
  --wb-tg-status-completed-bg: var(--wb-status-completed-bg);
  --wb-pt-entry-fg: var(--wb-accent);
  --wb-pt-entry-bg: var(--wb-accent-soft);
  --wb-pt-pot-fg: var(--wb-warning);
  --wb-pt-pot-bg: var(--wb-warning-soft);
  --wb-pt-membership-fg: var(--wb-teal-600);
  --wb-pt-membership-bg: var(--wb-teal-soft);
  --wb-pt-payout-fg: var(--wb-success);
  --wb-pt-payout-bg: var(--wb-success-soft);
  --wb-pt-fee-fg: var(--wb-neutral);
  --wb-pt-fee-bg: var(--wb-neutral-soft);
  --wb-tg-bg-canvas: var(--wb-canvas);
  --wb-tg-bg-surface: var(--wb-surface);
  --wb-tg-bg-surface-elevated: var(--wb-surface);
  --wb-tg-bg-elevated: var(--wb-surface);
  --wb-tg-bg-surface-glow: var(--wb-warning-soft);
  --wb-tg-shadow: var(--wb-e1);
  --wb-tg-border-hairline: #F1EFE8;
  --wb-tg-border: var(--wb-border);
  --wb-tg-border-soft: rgba(31, 32, 36, 0.10);
  --wb-tg-border-emphasis: rgba(31, 32, 36, 0.18);
  --wb-tg-text: var(--wb-text);
  --wb-tg-text-primary: var(--wb-text);
  --wb-tg-text-secondary: var(--wb-text-2);
  --wb-tg-text-tertiary: var(--wb-text-3);
  --wb-tg-text-quaternary: var(--wb-text-4);
  --wb-tg-text-muted: var(--wb-text-3);
  --wb-tg-accent: var(--wb-accent);
  --wb-tg-accent-blue: var(--wb-accent);
  --wb-tg-accent-blue-glow: rgba(24, 95, 165, 0.15);
  --wb-grid-inner: #F1EFE8;
  --wb-flagship-band: linear-gradient(120deg, #14110F 0%, #26211B 100%);
  --color-presenter-dark-band: var(--wb-flagship-band);
  --wb-t-commit: 90ms;
  --wb-t-fast: 120ms;
  --wb-t-chip: 180ms;
  --wb-t-exit: 200ms;
  --wb-t-enter: 300ms;
  --wb-t-draw: 360ms;
  --wb-t-ring-s: 400ms;
  --wb-t-ring-l: 520ms;
  --wb-t-sweep: 700ms;
  --wb-ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --wb-ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --wb-ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --wb-success-border: rgba(46, 125, 50, 0.28);
  --wb-success-ink: #1F5C22;
  --wb-success-ring: rgba(46, 125, 50, 0.38);
  --wb-success-sweep: rgba(46, 125, 50, 0.16);
  --wb-warning-border: #E8C879;
  --tour-brand: var(--wb-accent);
  --tour-brand-ink: #FFFFFF;
  --tour-brand-safe: var(--wb-accent);
  --wb-r-control: 8px;
  --wb-r-card: 10px;
  --wb-r-sheet: 16px;
  --wb-r-pill: 999px;
  --wb-e1: 0 1px 2px rgba(31, 32, 36, 0.06);
  --wb-e2: 0 6px 16px rgba(31, 32, 36, 0.10);
  --wb-e3: 0 20px 48px rgba(31, 32, 36, 0.18);
  --wb-scrim: rgba(20, 17, 15, 0.44);
  --wb-font: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wb-font-display: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wb-font-mono: ui-monospace, "SF Mono", "Menlo", "Roboto Mono", monospace;
  --wb-font-serif: var(--wb-font-display);
  --wb-numeric: "tnum" 1, "lnum" 1;
  --wb-fs-label: 11px;
  --wb-fs-meta: 12px;
  --wb-fs-h3: 15px;
  --wb-fs-h2: 19px;
  --wb-fs-h1: 24px;
  --wb-fs-display: 32px;
  --wb-ease: 0.12s ease-out;
  --wb-safe-top: env(safe-area-inset-top, 0px);
  --wb-safe-bottom: env(safe-area-inset-bottom, 0px);
  --wb-z-sticky: 100;
  --wb-z-overlay: 1000;
  --wb-z-dialog: 1100;
  --wb-z-toast: 1200;
  --wb-z-loading: 99999;
  --wb-ctl-h: 34px;
  --wb-row-h: 40px;
  --wb-tap: 44px;
  --wb-fs-body: 14px;
  --wb-pad-x: 14px;
  --wb-pad-y: 10px;
  --wb-gap: 8px;
  --wb-gutter: 16px;
  --wb-n-25: #faf8f5;
  --wb-n-50: #f4f1ec;
  --wb-n-100: #e9e5de;
  --wb-n-200: #d8d3ca;
  --wb-n-300: #bdb7ac;
  --wb-n-400: #9c968b;
  --wb-n-500: #7c766c;
  --wb-n-600: #615c54;
  --wb-n-700: #4a453f;
  --wb-n-800: #33302b;
  --wb-n-950: #14110f;
  --wb-blue-300: #5cb6ff;
  --wb-blue-500: #008afc;
  --wb-blue-600: #0070d1;
  --wb-blue-700: #0059a8;
  --wb-teal-500: #0d9488;
  --wb-teal-600: #0b7268;
  --wb-teal-soft: #e3f4f2;
  --wb-text-2xs: 12px;
  --wb-text-xs: 13px;
  --wb-text-sm: 14px;
  --wb-text-base: 16px;
  --wb-text-md: 18px;
  --wb-text-lg: 20px;
  --wb-text-xl: 24px;
  --wb-text-2xl: 30px;
  --wb-weight-medium: 500;
  --wb-weight-semibold: 600;
  --wb-weight-bold: 700;
  --wb-weight-black: 800;
  --wb-leading-snug: 1.25;
  --wb-leading-normal: 1.5;
  --wb-leading-relaxed: 1.65;
  --wb-tracking-tight: -0.02em;
  --wb-tracking-snug: -0.01em;
  --wb-tracking-wide: 0.04em;
  --wb-tracking-caps: 0.08em;
  --wb-space-2: 4px;
  --wb-space-4: 8px;
  --wb-space-5: 12px;
  --wb-space-6: 16px;
  --wb-space-7: 20px;
  --wb-space-8: 24px;
  --wb-space-11: 48px;
  --wb-radius-xs: 4px;
  --wb-radius-sm: 6px;
  --wb-radius-md: 8px;
  --wb-radius-lg: 10px;
  --wb-radius-pill: 999px;
  --wb-shadow-xs: 0 1px 2px rgba(20,17,15,.06);
  --wb-shadow-sm: 0 1px 3px rgba(20,17,15,.08), 0 1px 2px rgba(20,17,15,.04);
  --wb-control-h: 44px;
  --wb-control-h-sm: 36px;
  --wb-card-p: 24px;
  --wb-n-1000: #0b0908;
  --wb-space-9: 32px;
  --wb-weight-regular: 400;
  --wb-green-100: #d9f2e2;
  --wb-green-600: #0d7f3f;
  --wb-shadow-lg: 0 12px 32px rgba(20,17,15,.12), 0 2px 6px rgba(20,17,15,.06);
  --wb-blue-50: #e6f4ff;
  --wb-blue-200: #99d1ff;
  --wb-info: var(--wb-blue-500);
  --wb-info-bg: var(--wb-blue-50);
  --wb-text-link: var(--wb-blue-600);
  --wb-green-500: #12a150;
  --wb-amber-500: #c98a00;
  --wb-blue-800: #044178;
  --wb-navy: #0C447C;
  --wb-bg-dark: #0B1620;
  --wb-hero-scrim: linear-gradient(180deg, rgba(8, 14, 20, 0) 0%, rgba(8, 14, 20, 0.35) 42%, rgba(8, 14, 20, 0.82) 100%);
  --wb-blue-light: #5DA9FF;
  --wb-green: #3B6D11;
  --wb-green-hover: #4A8615;
  --wb-green-press: #2F560D;
  --wb-green-accent: #97C459;
  --wb-n-0: #ffffff;
  --wb-n-900: #22201d;
  --wb-blue-100: #cce8ff;
  --wb-blue-400: #2b9dfd;
  --wb-amber-100: #faeecd;
  --wb-amber-600: #a06d00;
  --wb-radius-xl: 14px;
}

[data-density=compact] {
  --wb-ctl-h: 34px;
  --wb-row-h: 40px;
  --wb-tap: 34px;
  --wb-fs-body: 13px;
  --wb-pad-x: 14px;
  --wb-pad-y: 10px;
  --wb-gap: 8px;
  --wb-gutter: 16px;
}

[data-density=field] {
  --wb-ctl-h: 52px;
  --wb-row-h: 64px;
  --wb-tap: 56px;
  --wb-fs-body: 16px;
  --wb-pad-x: 22px;
  --wb-pad-y: 16px;
  --wb-gap: 12px;
  --wb-gutter: 20px;
}

:root {
  --wb-bluegrey-50: #ECEFF1;
  --wb-bluegrey-100: #CFD8DC;
  --wb-bluegrey-200: #B0BEC5;
  --wb-bluegrey-300: #90A4AE;
  --wb-bluegrey-400: #78909C;
  --wb-bluegrey-600: #546E7A;
  --wb-bluegrey-800: #37474F;
  --wb-bluegrey-900: #263238;
  --wb-error-strong: #B3261E;
  --wb-md-blue-800: #1565C0;
  --wb-md-blue-500: #2F80C8;
}

[data-theme=dark] {
  --wb-canvas: #14110F;
  --wb-canvas-sunk: #0C0A08;
  --wb-surface: #1E1A16;
  --wb-surface-hover: #2A251F;
  --wb-border: #332D25;
  --wb-border-strong: #4A4239;
  --wb-text: #F7F5F1;
  --wb-text-2: #ADA79E;
  --wb-text-3: #9A9289;
  --wb-text-4: #5F5A52;
  --wb-accent: #6BA8E0;
  --wb-on-accent: #14110F;
  --wb-accent-hover: #8CBEEA;
  --wb-accent-press: #4A90DC;
  --wb-accent-soft: rgba(107, 168, 224, 0.14);
  --wb-focus: 0 0 0 3px rgba(107, 168, 224, 0.34);
  --wb-success: #6FD48A;
  --wb-on-success: #14110F;
  --wb-success-soft: rgba(111, 212, 138, 0.14);
  --wb-warning: #FFA800;
  --wb-warning-soft: rgba(255, 168, 0, 0.16);
  --wb-danger: #F08A85;
  --wb-danger-soft: rgba(240, 138, 133, 0.14);
  --wb-neutral: #ADA79E;
  --wb-neutral-soft: rgba(255, 255, 255, 0.07);
  --wb-tg-border-hairline: #241F1A;
  --wb-grid-inner: #241F1A;
  --wb-green-500: #6FD48A;
  --wb-teal-600: #5FC9BD;
  --wb-teal-soft: rgba(95, 201, 189, 0.14);
  --wb-e1: none;
  --wb-e2: 0 6px 16px rgba(0, 0, 0, 0.40);
  --wb-e3: 0 20px 48px rgba(0, 0, 0, 0.55);
  --wb-scrim: rgba(0, 0, 0, 0.62);
}

@media print {
  :root,
  [data-theme=dark] {
    --wb-canvas: #FFFFFF;
    --wb-canvas-sunk: #FFFFFF;
    --wb-surface: #FFFFFF;
    --wb-surface-hover: #FFFFFF;
    --wb-border: #000000;
    --wb-border-strong: #000000;
    --wb-tg-border-hairline: #000000;
    --wb-text: #000000;
    --wb-text-2: #000000;
    --wb-text-3: #333333;
    --wb-text-4: #333333;
    --wb-accent: #000000;
    --wb-accent-soft: transparent;
    --wb-success: #000000;
    --wb-success-soft: transparent;
    --wb-warning: #000000;
    --wb-warning-soft: transparent;
    --wb-danger: #000000;
    --wb-danger-soft: transparent;
    --wb-neutral: #000000;
    --wb-neutral-soft: transparent;
    --wb-flagship-band: none;
    --wb-e1: none;
    --wb-e2: none;
    --wb-e3: none;
    --wb-focus: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --wb-ease: 0s;
  }
}
[data-attention=act] {
  --wb-attention-fg: var(--wb-warning);
  --wb-attention-bg: var(--wb-warning-soft);
}

[data-attention=resting] {
  --wb-attention-fg: var(--wb-text-2);
  --wb-attention-bg: var(--wb-neutral-soft);
}

.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}

.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}

.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}

.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}

.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}

.cdk-overlay-backdrop-noop-animation {
  transition: none;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

textarea.cdk-textarea-autosize {
  resize: none;
}

textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}

textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}

@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}

.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}

.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}

.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}

html {
  --mat-option-selected-state-label-text-color: #185fa5;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}

.mat-accent {
  --mat-option-selected-state-label-text-color: #185fa5;
}

.mat-warn {
  --mat-option-selected-state-label-text-color: #c2382f;
}

html {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}

.mat-pseudo-checkbox-full {
  color: rgba(0, 0, 0, 0.54);
}
.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}

.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}

.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}

.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #c2382f;
}
.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #c2382f;
}
.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #fafafa;
}

.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #b0b0b0;
}
.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #b0b0b0;
}

.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z1, .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z2, .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z3, .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z4, .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z5, .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z6, .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z7, .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z8, .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z9, .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z10, .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z11, .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z12, .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z13, .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z14, .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z15, .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z16, .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z17, .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z18, .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z19, .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z20, .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z21, .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z22, .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z23, .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z24, .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mat-theme-loaded-marker {
  display: none;
}

html {
  --mat-option-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}

html {
  --mat-optgroup-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}

.mat-mdc-card {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}

.mat-mdc-card {
  --mat-card-title-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}

.mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #185fa5;
  --mdc-linear-progress-track-color: rgba(24, 95, 165, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
@media (forced-colors: active) {
  .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 95, 165, 0.25)'/%3E%3C/svg%3E");
  }
}
.mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #185fa5;
  --mdc-linear-progress-track-color: rgba(24, 95, 165, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
@media (forced-colors: active) {
  .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 95, 165, 0.25)'/%3E%3C/svg%3E");
  }
}
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #c2382f;
  --mdc-linear-progress-track-color: rgba(194, 56, 47, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
  background-color: rgba(194, 56, 47, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(194, 56, 47, 0.25));
}
@media (forced-colors: active) {
  .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(194, 56, 47, 0.25)'/%3E%3C/svg%3E");
  }
}
.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
  background-color: rgba(194, 56, 47, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(194, 56, 47, 0.25));
}
.mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}

.mat-mdc-tooltip {
  --mdc-plain-tooltip-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}

html {
  --mdc-filled-text-field-caret-color: #185fa5;
  --mdc-filled-text-field-focus-active-indicator-color: #185fa5;
  --mdc-filled-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-focus-label-text-color: #c2382f;
  --mdc-filled-text-field-error-label-text-color: #c2382f;
  --mdc-filled-text-field-error-caret-color: #c2382f;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #c2382f;
  --mdc-filled-text-field-error-focus-active-indicator-color: #c2382f;
  --mdc-filled-text-field-error-hover-active-indicator-color: #c2382f;
  --mdc-outlined-text-field-caret-color: #185fa5;
  --mdc-outlined-text-field-focus-outline-color: #185fa5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #c2382f;
  --mdc-outlined-text-field-error-focus-label-text-color: #c2382f;
  --mdc-outlined-text-field-error-label-text-color: #c2382f;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #c2382f;
  --mdc-outlined-text-field-error-hover-outline-color: #c2382f;
  --mdc-outlined-text-field-error-outline-color: #c2382f;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-form-field-error {
  color: var(--mdc-theme-error, #c2382f);
}

.mat-mdc-form-field-subscript-wrapper,
.mat-mdc-form-field-bottom-align::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mat-form-field-subscript-text-font);
  line-height: var(--mat-form-field-subscript-text-line-height);
  font-size: var(--mat-form-field-subscript-text-size);
  letter-spacing: var(--mat-form-field-subscript-text-tracking);
  font-weight: var(--mat-form-field-subscript-text-weight);
}

.mat-mdc-form-field-focus-overlay {
  background-color: rgba(0, 0, 0, 0.87);
}

.mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
  opacity: 0.04;
}

.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
  opacity: 0.12;
}

.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
  color: rgba(24, 95, 165, 0.87);
}
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
  color: rgba(24, 95, 165, 0.87);
}
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
  color: rgba(194, 56, 47, 0.87);
}
.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #185fa5;
  --mdc-filled-text-field-focus-active-indicator-color: #185fa5;
  --mdc-filled-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-outlined-text-field-caret-color: #185fa5;
  --mdc-outlined-text-field-focus-outline-color: #185fa5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
}

.mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #c2382f;
  --mdc-filled-text-field-focus-active-indicator-color: #c2382f;
  --mdc-filled-text-field-focus-label-text-color: rgba(194, 56, 47, 0.87);
  --mdc-outlined-text-field-caret-color: #c2382f;
  --mdc-outlined-text-field-focus-outline-color: #c2382f;
  --mdc-outlined-text-field-focus-label-text-color: rgba(194, 56, 47, 0.87);
}

.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: 1px solid transparent;
}

[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: none;
  border-right: 1px solid transparent;
}

.mat-mdc-form-field-infix {
  min-height: 56px;
}

.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 28px;
}

.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -34.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}

.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}

.mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 24px;
  padding-bottom: 8px;
}

.mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 16px;
}

html {
  --mdc-filled-text-field-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-tracking: 0.03125em;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-outlined-text-field-label-text-size: 16px;
  --mdc-outlined-text-field-label-text-tracking: 0.03125em;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
}

html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(24, 95, 165, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}
html .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(24, 95, 165, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(194, 56, 47, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}

html {
  --mat-select-trigger-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}

html {
  --mat-autocomplete-background-color: white;
}

.mat-mdc-dialog-container {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
}

.mat-mdc-dialog-container {
  --mdc-dialog-subhead-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: 0.0125em;
  --mdc-dialog-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-dialog-supporting-text-line-height: 24px;
  --mdc-dialog-supporting-text-size: 16px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.03125em;
}

.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e0e0e0;
  --mdc-chip-elevated-disabled-container-color: #e0e0e0;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #185fa5;
  --mdc-chip-elevated-disabled-container-color: #185fa5;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #185fa5;
  --mdc-chip-elevated-disabled-container-color: #185fa5;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #c2382f;
  --mdc-chip-elevated-disabled-container-color: #c2382f;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}

.mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}

.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-chip-label-text-line-height: 20px;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.0178571429em;
  --mdc-chip-label-text-weight: 400;
}

.mat-mdc-slide-toggle {
  --mdc-switch-selected-focus-state-layer-color: #155491;
  --mdc-switch-selected-handle-color: #155491;
  --mdc-switch-selected-hover-state-layer-color: #155491;
  --mdc-switch-selected-pressed-state-layer-color: #155491;
  --mdc-switch-selected-focus-handle-color: #0c2e4f;
  --mdc-switch-selected-hover-handle-color: #0c2e4f;
  --mdc-switch-selected-pressed-handle-color: #0c2e4f;
  --mdc-switch-selected-focus-track-color: #7ea5cd;
  --mdc-switch-selected-hover-track-color: #7ea5cd;
  --mdc-switch-selected-pressed-track-color: #7ea5cd;
  --mdc-switch-selected-track-color: #7ea5cd;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-handle-shadow-color: black;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
}
.mat-mdc-slide-toggle .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.mat-mdc-slide-toggle .mdc-switch--disabled + label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #155491;
  --mdc-switch-selected-handle-color: #155491;
  --mdc-switch-selected-hover-state-layer-color: #155491;
  --mdc-switch-selected-pressed-state-layer-color: #155491;
  --mdc-switch-selected-focus-handle-color: #0c2e4f;
  --mdc-switch-selected-hover-handle-color: #0c2e4f;
  --mdc-switch-selected-pressed-handle-color: #0c2e4f;
  --mdc-switch-selected-focus-track-color: #7ea5cd;
  --mdc-switch-selected-hover-track-color: #7ea5cd;
  --mdc-switch-selected-pressed-track-color: #7ea5cd;
  --mdc-switch-selected-track-color: #7ea5cd;
}
.mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #ab3129;
  --mdc-switch-selected-handle-color: #ab3129;
  --mdc-switch-selected-hover-state-layer-color: #ab3129;
  --mdc-switch-selected-pressed-state-layer-color: #ab3129;
  --mdc-switch-selected-focus-handle-color: #5d1b17;
  --mdc-switch-selected-hover-handle-color: #5d1b17;
  --mdc-switch-selected-pressed-handle-color: #5d1b17;
  --mdc-switch-selected-focus-track-color: #dd908b;
  --mdc-switch-selected-hover-track-color: #dd908b;
  --mdc-switch-selected-pressed-track-color: #dd908b;
  --mdc-switch-selected-track-color: #dd908b;
}

.mat-mdc-slide-toggle {
  --mdc-switch-state-layer-size: 48px;
}

.mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-weight: 400;
}
.mat-mdc-slide-toggle .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
  font-size: 0.875rem;
  /* @alternate */
  font-size: var(--mdc-typography-body2-font-size, 0.875rem);
  line-height: 1.25rem;
  /* @alternate */
  line-height: var(--mdc-typography-body2-line-height, 1.25rem);
  font-weight: 400;
  /* @alternate */
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: 0.0178571429em;
  /* @alternate */
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  text-decoration: inherit;
  /* @alternate */
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: inherit;
  /* @alternate */
  text-transform: var(--mdc-typography-body2-text-transform, inherit);
}

.mat-mdc-radio-button .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}

.mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #185fa5;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #185fa5;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c2382f;
  --mdc-radio-selected-hover-icon-color: #c2382f;
  --mdc-radio-selected-icon-color: #c2382f;
  --mdc-radio-selected-pressed-icon-color: #c2382f;
  --mat-radio-ripple-color: #000;
  --mat-radio-checked-ripple-color: #c2382f;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-radio-button .mdc-radio {
  --mdc-radio-state-layer-size: 40px;
}

.mat-mdc-radio-button .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}

.mat-mdc-slider {
  --mdc-slider-label-container-color: black;
  --mdc-slider-label-label-text-color: white;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mat-mdc-slider-value-indicator-opacity: 0.6;
}
.mat-mdc-slider.mat-primary {
  --mdc-slider-handle-color: #185fa5;
  --mdc-slider-focus-handle-color: #185fa5;
  --mdc-slider-hover-handle-color: #185fa5;
  --mdc-slider-active-track-color: #185fa5;
  --mdc-slider-inactive-track-color: #185fa5;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #185fa5;
  --mat-mdc-slider-ripple-color: #185fa5;
  --mat-mdc-slider-hover-ripple-color: rgba(24, 95, 165, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(24, 95, 165, 0.2);
}
.mat-mdc-slider.mat-accent {
  --mdc-slider-handle-color: #185fa5;
  --mdc-slider-focus-handle-color: #185fa5;
  --mdc-slider-hover-handle-color: #185fa5;
  --mdc-slider-active-track-color: #185fa5;
  --mdc-slider-inactive-track-color: #185fa5;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #185fa5;
  --mat-mdc-slider-ripple-color: #185fa5;
  --mat-mdc-slider-hover-ripple-color: rgba(24, 95, 165, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(24, 95, 165, 0.2);
}
.mat-mdc-slider.mat-warn {
  --mdc-slider-handle-color: #c2382f;
  --mdc-slider-focus-handle-color: #c2382f;
  --mdc-slider-hover-handle-color: #c2382f;
  --mdc-slider-active-track-color: #c2382f;
  --mdc-slider-inactive-track-color: #c2382f;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #c2382f;
  --mat-mdc-slider-ripple-color: #c2382f;
  --mat-mdc-slider-hover-ripple-color: rgba(194, 56, 47, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(194, 56, 47, 0.2);
}

.mat-mdc-slider {
  --mdc-slider-label-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: 0.0071428571em;
  --mdc-slider-label-label-text-weight: 500;
}

html {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
}

html {
  --mat-menu-item-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}

.mat-mdc-list-base {
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}

.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
}

.mat-accent .mdc-list-item__start,
.mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
}

.mat-warn .mdc-list-item__start,
.mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #000;
  --mdc-radio-disabled-unselected-icon-color: #000;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #c2382f;
  --mdc-radio-selected-hover-icon-color: #c2382f;
  --mdc-radio-selected-icon-color: #c2382f;
  --mdc-radio-selected-pressed-icon-color: #c2382f;
}

.mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #c2382f;
  --mdc-checkbox-selected-hover-icon-color: #c2382f;
  --mdc-checkbox-selected-icon-color: #c2382f;
  --mdc-checkbox-selected-pressed-icon-color: #c2382f;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c2382f;
  --mdc-checkbox-selected-hover-state-layer-color: #c2382f;
  --mdc-checkbox-selected-pressed-state-layer-color: #c2382f;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #185fa5;
}
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #185fa5;
}

.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}

.mat-mdc-list-base {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
}

.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}

.mat-mdc-list-base {
  --mdc-list-list-item-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-list-list-item-label-text-line-height: 24px;
  --mdc-list-list-item-label-text-size: 16px;
  --mdc-list-list-item-label-text-tracking: 0.03125em;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 20px;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}

.mdc-list-group__subheader {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 0.009375em;
}

html {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
}

html {
  --mat-paginator-container-size: 56px;
}

.mat-mdc-paginator .mat-mdc-form-field-infix {
  min-height: 40px;
}
.mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: 20px;
}
.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
  --mat-mdc-form-field-label-transform: translateY(
          -26.75px)
          scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
  transform: var(--mat-mdc-form-field-label-transform);
}
.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
  display: none;
}

html {
  --mat-paginator-container-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}

.mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #185fa5;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #185fa5;
  --mat-tab-header-active-ripple-color: #185fa5;
  --mat-tab-header-inactive-ripple-color: #185fa5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #185fa5;
  --mat-tab-header-active-hover-label-text-color: #185fa5;
  --mat-tab-header-active-focus-indicator-color: #185fa5;
  --mat-tab-header-active-hover-indicator-color: #185fa5;
}
.mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #185fa5;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #185fa5;
  --mat-tab-header-active-ripple-color: #185fa5;
  --mat-tab-header-inactive-ripple-color: #185fa5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #185fa5;
  --mat-tab-header-active-hover-label-text-color: #185fa5;
  --mat-tab-header-active-focus-indicator-color: #185fa5;
  --mat-tab-header-active-hover-indicator-color: #185fa5;
}
.mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #c2382f;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: #000;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #c2382f;
  --mat-tab-header-active-ripple-color: #c2382f;
  --mat-tab-header-inactive-ripple-color: #c2382f;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #c2382f;
  --mat-tab-header-active-hover-label-text-color: #c2382f;
  --mat-tab-header-active-focus-indicator-color: #c2382f;
  --mat-tab-header-active-hover-indicator-color: #c2382f;
}
.mat-mdc-tab-group.mat-background-primary, .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #185fa5;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-accent, .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #185fa5;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-warn, .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #c2382f;
  --mat-tab-header-with-background-foreground-color: white;
}

.mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}

.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.0892857143em;
  --mat-tab-header-label-text-line-height: 36px;
  --mat-tab-header-label-text-weight: 500;
}

html {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #c2382f;
  --mdc-checkbox-selected-hover-icon-color: #c2382f;
  --mdc-checkbox-selected-icon-color: #c2382f;
  --mdc-checkbox-selected-pressed-icon-color: #c2382f;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c2382f;
  --mdc-checkbox-selected-hover-state-layer-color: #c2382f;
  --mdc-checkbox-selected-pressed-state-layer-color: #c2382f;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-checkbox .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
  color: rgba(0, 0, 0, 0.38);
}

html {
  --mdc-checkbox-state-layer-size: 40px;
}

.mat-mdc-checkbox .mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif));
  font-size: var(--mdc-typography-body2-font-size, 14px);
  line-height: var(--mdc-typography-body2-line-height, 20px);
  font-weight: var(--mdc-typography-body2-font-weight, 400);
  letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
  -webkit-text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
          text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
  text-transform: var(--mdc-typography-body2-text-transform, none);
}

.mat-mdc-button.mat-unthemed {
  --mdc-text-button-label-text-color: #000;
}
.mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #185fa5;
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #185fa5;
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #c2382f;
}
.mat-mdc-button[disabled][disabled] {
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-text-button-label-text-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-unelevated-button.mat-unthemed {
  --mdc-filled-button-container-color: #fff;
  --mdc-filled-button-label-text-color: #000;
}
.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #185fa5;
  --mdc-filled-button-label-text-color: #fff;
}
.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #185fa5;
  --mdc-filled-button-label-text-color: #fff;
}
.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #c2382f;
  --mdc-filled-button-label-text-color: #fff;
}
.mat-mdc-unelevated-button[disabled][disabled] {
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-button-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-label-text-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-raised-button.mat-unthemed {
  --mdc-protected-button-container-color: #fff;
  --mdc-protected-button-label-text-color: #000;
}
.mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #185fa5;
  --mdc-protected-button-label-text-color: #fff;
}
.mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #185fa5;
  --mdc-protected-button-label-text-color: #fff;
}
.mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #c2382f;
  --mdc-protected-button-label-text-color: #fff;
}
.mat-mdc-raised-button[disabled][disabled] {
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-protected-button-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-protected-button-container-elevation: 0;
}

.mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
}
.mat-mdc-outlined-button.mat-unthemed {
  --mdc-outlined-button-label-text-color: #000;
}
.mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #185fa5;
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #185fa5;
}
.mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #c2382f;
}
.mat-mdc-outlined-button[disabled][disabled] {
  --mdc-outlined-button-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
}

.mat-mdc-button, .mat-mdc-outlined-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-button.mat-primary, .mat-mdc-outlined-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
.mat-mdc-button.mat-accent, .mat-mdc-outlined-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
.mat-mdc-button.mat-warn, .mat-mdc-outlined-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #c2382f;
  --mat-mdc-button-ripple-color: rgba(194, 56, 47, 0.1);
}

.mat-mdc-raised-button, .mat-mdc-unelevated-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-raised-button.mat-primary, .mat-mdc-unelevated-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-accent, .mat-mdc-unelevated-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-warn, .mat-mdc-unelevated-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}

.mat-mdc-button.mat-mdc-button-base,
.mat-mdc-raised-button.mat-mdc-button-base,
.mat-mdc-unelevated-button.mat-mdc-button-base,
.mat-mdc-outlined-button.mat-mdc-button-base {
  height: 36px;
}

.mdc-button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}

.mat-mdc-icon-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mdc-icon-button-icon-color: inherit;
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-icon-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #6200ee;
  --mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
}
.mat-mdc-icon-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #018786;
  --mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
}
.mat-mdc-icon-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #b00020;
  --mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
}
.mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #185fa5;
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
.mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #185fa5;
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
.mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #c2382f;
  --mat-mdc-button-persistent-ripple-color: #c2382f;
  --mat-mdc-button-ripple-color: rgba(194, 56, 47, 0.1);
}
.mat-mdc-icon-button[disabled][disabled] {
  --mdc-icon-button-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}

.mat-mdc-fab,
.mat-mdc-mini-fab {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,
.mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.04;
}
.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,
.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.12;
}
.mat-mdc-fab.mat-primary,
.mat-mdc-mini-fab.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-fab.mat-accent,
.mat-mdc-mini-fab.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-fab.mat-warn,
.mat-mdc-mini-fab.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-fab[disabled][disabled],
.mat-mdc-mini-fab[disabled][disabled] {
  --mdc-fab-container-color: rgba(0, 0, 0, 0.12);
  --mdc-fab-icon-color: rgba(0, 0, 0, 0.38);
  --mat-mdc-fab-color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-fab.mat-unthemed,
.mat-mdc-mini-fab.mat-unthemed {
  --mdc-fab-container-color: white;
  --mdc-fab-icon-color: black;
  --mat-mdc-fab-color: #000;
}
.mat-mdc-fab.mat-primary,
.mat-mdc-mini-fab.mat-primary {
  --mdc-fab-container-color: #185fa5;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.mat-mdc-fab.mat-accent,
.mat-mdc-mini-fab.mat-accent {
  --mdc-fab-container-color: #185fa5;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
.mat-mdc-fab.mat-warn,
.mat-mdc-mini-fab.mat-warn {
  --mdc-fab-container-color: #c2382f;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}

.mdc-fab--extended {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif));
  font-size: var(--mdc-typography-button-font-size, 14px);
  line-height: var(--mdc-typography-button-line-height, 36px);
  font-weight: var(--mdc-typography-button-font-weight, 500);
  letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
  -webkit-text-decoration: var(--mdc-typography-button-text-decoration, none);
          text-decoration: var(--mdc-typography-button-text-decoration, none);
  text-transform: var(--mdc-typography-button-text-transform, none);
}
.mat-mdc-extended-fab {
  --mdc-extended-fab-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}

.mat-mdc-snack-bar-container {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #185fa5;
}

.mat-mdc-snack-bar-container {
  --mdc-snackbar-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}

html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}

html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}

html {
  --mat-table-header-headline-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}

.mat-mdc-progress-spinner {
  --mdc-circular-progress-active-indicator-color: #185fa5;
}
.mat-mdc-progress-spinner.mat-accent {
  --mdc-circular-progress-active-indicator-color: #185fa5;
}
.mat-mdc-progress-spinner.mat-warn {
  --mdc-circular-progress-active-indicator-color: #c2382f;
}

.mat-badge {
  position: relative;
}
.mat-badge.mat-badge {
  overflow: visible;
}

.mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  background-color: var(--mat-badge-background-color);
  color: var(--mat-badge-text-color);
  font-family: Roboto, sans-serif;
  /* @alternate */
  font-family: var(--mat-badge-text-font, Roboto, sans-serif);
  font-size: 12px;
  /* @alternate */
  font-size: var(--mat-badge-text-size, 12px);
  font-weight: 600;
  /* @alternate */
  font-weight: var(--mat-badge-text-weight, 600);
}
.cdk-high-contrast-active .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}

.mat-badge-disabled .mat-badge-content {
  background-color: var(--mat-badge-disabled-state-background-color);
  color: var(--mat-badge-disabled-state-text-color);
}

.mat-badge-hidden .mat-badge-content {
  display: none;
}

.ng-animate-disabled .mat-badge-content,
.mat-badge-content._mat-animation-noopable {
  transition: none;
}

.mat-badge-content.mat-badge-active {
  transform: none;
}

.mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 9px;
  /* @alternate */
  font-size: var(--mat-badge-small-size-text-size, 9px);
}
.mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}

.mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}

.mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 24px;
  /* @alternate */
  font-size: var(--mat-badge-large-size-text-size, 24px);
}
.mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}

html {
  --mat-badge-background-color: #185fa5;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}

.mat-badge-accent {
  --mat-badge-background-color: #185fa5;
  --mat-badge-text-color: white;
}

.mat-badge-warn {
  --mat-badge-background-color: #c2382f;
  --mat-badge-text-color: white;
}

html {
  --mat-badge-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-large-size-text-size: 24px;
}

html {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}

html {
  --mat-bottom-sheet-container-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}

html {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #e0e0e0;
}

html {
  --mat-standard-button-toggle-height: 48px;
}

html {
  --mat-legacy-button-toggle-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-standard-button-toggle-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #185fa5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 95, 165, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #185fa5;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 95, 165, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}

.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #185fa5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 95, 165, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 95, 165, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #c2382f;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(194, 56, 47, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(194, 56, 47, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(194, 56, 47, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(194, 56, 47, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}

.mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #185fa5;
}
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #c2382f;
}

.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
  display: none;
}

html {
  --mat-datepicker-calendar-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}

html {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}

html {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}

html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}

html {
  --mat-expansion-header-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}

html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}

html {
  --mat-icon-color: inherit;
}

.mat-icon.mat-primary {
  --mat-icon-color: #185fa5;
}
.mat-icon.mat-accent {
  --mat-icon-color: #185fa5;
}
.mat-icon.mat-warn {
  --mat-icon-color: #c2382f;
}

html {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}

html {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #185fa5;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #185fa5;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #185fa5;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #c2382f;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #c2382f;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #185fa5;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #185fa5;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #185fa5;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #c2382f;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #c2382f;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #c2382f;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}

html {
  --mat-stepper-header-height: 72px;
}

html {
  --mat-stepper-container-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-stepper-header-label-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}

.mat-sort-header-arrow {
  color: #757575;
}

html {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}

.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #185fa5;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #185fa5;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #c2382f;
  --mat-toolbar-container-text-color: white;
}

html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}

html {
  --mat-toolbar-title-text-font: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}

.mat-tree {
  background: white;
}

.mat-tree-node,
.mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}

.mat-tree-node {
  min-height: 48px;
}

.mat-tree {
  font-family: 'Archivo', 'Archivo Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.mat-tree-node,
.mat-nested-tree-node {
  font-weight: 400;
  font-size: 14px;
}

html {
  --mat-focus-indicator-border-color: black;
  --mat-focus-indicator-display: block;
}

html {
  --mat-mdc-focus-indicator-border-color: black;
  --mat-mdc-focus-indicator-display: block;
}

html {
  --mat-focus-indicator-display: none;
  --mat-mdc-focus-indicator-display: none;
}

.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
  --mat-mdc-focus-indicator-display: block;
}

[data-theme=dark] {
  --mat-table-background-color: #424242;
  --mat-table-header-headline-color: white;
  --mat-table-row-item-label-text-color: white;
  --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
}
[data-theme=dark] .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] {
  --mat-option-selected-state-label-text-color: #185fa5;
  --mat-option-label-text-color: white;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}

[data-theme=dark] .mat-accent {
  --mat-option-selected-state-label-text-color: #185fa5;
}
[data-theme=dark] .mat-warn {
  --mat-option-selected-state-label-text-color: #c2382f;
}
[data-theme=dark] {
  --mat-optgroup-label-text-color: white;
}

[data-theme=dark] .mat-pseudo-checkbox-full {
  color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled {
  color: #686868;
}
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
[data-theme=dark] .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
[data-theme=dark] .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
[data-theme=dark] .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
[data-theme=dark] .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
[data-theme=dark] .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
[data-theme=dark] .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
[data-theme=dark] .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #185fa5;
}
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #185fa5;
}
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
[data-theme=dark] .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #c2382f;
}
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #c2382f;
}
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
[data-theme=dark] .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
  color: #303030;
}
[data-theme=dark] .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
[data-theme=dark] .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: #686868;
}
[data-theme=dark] .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
[data-theme=dark] .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
  background: #686868;
}
[data-theme=dark] .mat-app-background, [data-theme=dark].mat-app-background {
  background-color: #303030;
  color: white;
}
[data-theme=dark] .mat-elevation-z0, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z1, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z2, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z3, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z4, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z5, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z6, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z7, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z8, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z9, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z10, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z11, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z12, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z13, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z14, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z15, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z16, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z17, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z18, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z19, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z20, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z21, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z22, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z23, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .mat-elevation-z24, [data-theme=dark] .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}

[data-theme=dark] .mat-mdc-card {
  --mdc-elevated-card-container-color: #424242;
  --mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: #424242;
  --mdc-outlined-card-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
}
[data-theme=dark] .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #185fa5;
  --mdc-linear-progress-track-color: rgba(24, 95, 165, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
[data-theme=dark] .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
@media (forced-colors: active) {
  [data-theme=dark] .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  [data-theme=dark] .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 95, 165, 0.25)'/%3E%3C/svg%3E");
  }
}
[data-theme=dark] .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
[data-theme=dark] .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #185fa5;
  --mdc-linear-progress-track-color: rgba(24, 95, 165, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
[data-theme=dark] .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
@media (forced-colors: active) {
  [data-theme=dark] .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  [data-theme=dark] .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 95, 165, 0.25)'/%3E%3C/svg%3E");
  }
}
[data-theme=dark] .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
  background-color: rgba(24, 95, 165, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(24, 95, 165, 0.25));
}
[data-theme=dark] .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #c2382f;
  --mdc-linear-progress-track-color: rgba(194, 56, 47, 0.25);
}
@keyframes mdc-linear-progress-buffering {
  from {
    /* @noflip */ /*rtl:ignore*/
  }
}
[data-theme=dark] .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
  background-color: rgba(194, 56, 47, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(194, 56, 47, 0.25));
}
@media (forced-colors: active) {
  [data-theme=dark] .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: ButtonBorder;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  [data-theme=dark] .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(194, 56, 47, 0.25)'/%3E%3C/svg%3E");
  }
}
[data-theme=dark] .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
  background-color: rgba(194, 56, 47, 0.25);
  /* @alternate */
  background-color: var(--mdc-linear-progress-track-color, rgba(194, 56, 47, 0.25));
}
[data-theme=dark] .mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
[data-theme=dark] {
  --mdc-filled-text-field-caret-color: #185fa5;
  --mdc-filled-text-field-focus-active-indicator-color: #185fa5;
  --mdc-filled-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-filled-text-field-container-color: #4a4a4a;
  --mdc-filled-text-field-disabled-container-color: #464646;
  --mdc-filled-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-filled-text-field-error-focus-label-text-color: #c2382f;
  --mdc-filled-text-field-error-label-text-color: #c2382f;
  --mdc-filled-text-field-error-caret-color: #c2382f;
  --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #c2382f;
  --mdc-filled-text-field-error-focus-active-indicator-color: #c2382f;
  --mdc-filled-text-field-error-hover-active-indicator-color: #c2382f;
  --mdc-outlined-text-field-caret-color: #185fa5;
  --mdc-outlined-text-field-focus-outline-color: #185fa5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-error-caret-color: #c2382f;
  --mdc-outlined-text-field-error-focus-label-text-color: #c2382f;
  --mdc-outlined-text-field-error-label-text-color: #c2382f;
  --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #c2382f;
  --mdc-outlined-text-field-error-hover-outline-color: #c2382f;
  --mdc-outlined-text-field-error-outline-color: #c2382f;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
}

[data-theme=dark] .mat-mdc-form-field-error {
  color: var(--mdc-theme-error, #c2382f);
}
[data-theme=dark] .mat-mdc-form-field-subscript-wrapper,
[data-theme=dark] .mat-mdc-form-field-bottom-align::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: var(--mat-form-field-subscript-text-font);
  line-height: var(--mat-form-field-subscript-text-line-height);
  font-size: var(--mat-form-field-subscript-text-size);
  letter-spacing: var(--mat-form-field-subscript-text-tracking);
  font-weight: var(--mat-form-field-subscript-text-weight);
}
[data-theme=dark] .mat-mdc-form-field-focus-overlay {
  background-color: rgba(255, 255, 255, 0.87);
}
[data-theme=dark] .mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
  opacity: 0.08;
}
[data-theme=dark] .mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
  opacity: 0.24;
}
[data-theme=dark] select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option {
  color: rgba(0, 0, 0, 0.87);
}
[data-theme=dark] select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
[data-theme=dark] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
  color: rgba(255, 255, 255, 0.54);
}
[data-theme=dark] .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
  color: rgba(24, 95, 165, 0.87);
}
[data-theme=dark] .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
  color: rgba(24, 95, 165, 0.87);
}
[data-theme=dark] .mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
  color: rgba(194, 56, 47, 0.87);
}
[data-theme=dark] .mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
  color: rgba(255, 255, 255, 0.38);
}
[data-theme=dark] .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #185fa5;
  --mdc-filled-text-field-focus-active-indicator-color: #185fa5;
  --mdc-filled-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
  --mdc-outlined-text-field-caret-color: #185fa5;
  --mdc-outlined-text-field-focus-outline-color: #185fa5;
  --mdc-outlined-text-field-focus-label-text-color: rgba(24, 95, 165, 0.87);
}
[data-theme=dark] .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #c2382f;
  --mdc-filled-text-field-focus-active-indicator-color: #c2382f;
  --mdc-filled-text-field-focus-label-text-color: rgba(194, 56, 47, 0.87);
  --mdc-outlined-text-field-caret-color: #c2382f;
  --mdc-outlined-text-field-focus-outline-color: #c2382f;
  --mdc-outlined-text-field-focus-label-text-color: rgba(194, 56, 47, 0.87);
}
[data-theme=dark] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: 1px solid transparent;
}
[data-theme=dark] [dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch {
  border-left: none;
  border-right: 1px solid transparent;
}
[data-theme=dark] {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(24, 95, 165, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}
[data-theme=dark] .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(24, 95, 165, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}
[data-theme=dark] .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #424242;
  --mat-select-enabled-trigger-text-color: rgba(255, 255, 255, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(255, 255, 255, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(255, 255, 255, 0.38);
  --mat-select-focused-arrow-color: rgba(194, 56, 47, 0.87);
  --mat-select-invalid-arrow-color: rgba(194, 56, 47, 0.87);
}

[data-theme=dark] {
  --mat-autocomplete-background-color: #424242;
}

[data-theme=dark] .mat-mdc-dialog-container {
  --mdc-dialog-container-color: #424242;
  --mdc-dialog-subhead-color: rgba(255, 255, 255, 0.87);
  --mdc-dialog-supporting-text-color: rgba(255, 255, 255, 0.6);
}
[data-theme=dark] .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #595959;
  --mdc-chip-elevated-disabled-container-color: #595959;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #fafafa;
  --mdc-chip-with-icon-icon-color: #fafafa;
  --mdc-chip-with-icon-disabled-icon-color: #fafafa;
  --mdc-chip-with-icon-selected-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
}
[data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, [data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #185fa5;
  --mdc-chip-elevated-disabled-container-color: #185fa5;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
[data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, [data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #185fa5;
  --mdc-chip-elevated-disabled-container-color: #185fa5;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
[data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, [data-theme=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #c2382f;
  --mdc-chip-elevated-disabled-container-color: #c2382f;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
}
[data-theme=dark] .mat-mdc-slide-toggle {
  --mdc-switch-selected-focus-state-layer-color: #7ea5cd;
  --mdc-switch-selected-handle-color: #7ea5cd;
  --mdc-switch-selected-hover-state-layer-color: #7ea5cd;
  --mdc-switch-selected-pressed-state-layer-color: #7ea5cd;
  --mdc-switch-selected-focus-handle-color: #a3bfdb;
  --mdc-switch-selected-hover-handle-color: #a3bfdb;
  --mdc-switch-selected-pressed-handle-color: #a3bfdb;
  --mdc-switch-selected-focus-track-color: #155491;
  --mdc-switch-selected-hover-track-color: #155491;
  --mdc-switch-selected-pressed-track-color: #155491;
  --mdc-switch-selected-track-color: #155491;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-handle-shadow-color: black;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
}
[data-theme=dark] .mat-mdc-slide-toggle .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
[data-theme=dark] .mat-mdc-slide-toggle .mdc-switch--disabled + label {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #7ea5cd;
  --mdc-switch-selected-handle-color: #7ea5cd;
  --mdc-switch-selected-hover-state-layer-color: #7ea5cd;
  --mdc-switch-selected-pressed-state-layer-color: #7ea5cd;
  --mdc-switch-selected-focus-handle-color: #a3bfdb;
  --mdc-switch-selected-hover-handle-color: #a3bfdb;
  --mdc-switch-selected-pressed-handle-color: #a3bfdb;
  --mdc-switch-selected-focus-track-color: #155491;
  --mdc-switch-selected-hover-track-color: #155491;
  --mdc-switch-selected-pressed-track-color: #155491;
  --mdc-switch-selected-track-color: #155491;
}
[data-theme=dark] .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #dd908b;
  --mdc-switch-selected-handle-color: #dd908b;
  --mdc-switch-selected-hover-state-layer-color: #dd908b;
  --mdc-switch-selected-pressed-state-layer-color: #dd908b;
  --mdc-switch-selected-focus-handle-color: #e7afac;
  --mdc-switch-selected-hover-handle-color: #e7afac;
  --mdc-switch-selected-pressed-handle-color: #e7afac;
  --mdc-switch-selected-focus-track-color: #ab3129;
  --mdc-switch-selected-hover-track-color: #ab3129;
  --mdc-switch-selected-pressed-track-color: #ab3129;
  --mdc-switch-selected-track-color: #ab3129;
}
[data-theme=dark] .mat-mdc-radio-button .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
[data-theme=dark] .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #185fa5;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #185fa5;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #c2382f;
  --mdc-radio-selected-hover-icon-color: #c2382f;
  --mdc-radio-selected-icon-color: #c2382f;
  --mdc-radio-selected-pressed-icon-color: #c2382f;
  --mat-radio-ripple-color: #fff;
  --mat-radio-checked-ripple-color: #c2382f;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-slider {
  --mdc-slider-label-container-color: white;
  --mdc-slider-label-label-text-color: black;
  --mdc-slider-disabled-handle-color: #fff;
  --mdc-slider-disabled-active-track-color: #fff;
  --mdc-slider-disabled-inactive-track-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #fff;
  --mat-mdc-slider-value-indicator-opacity: 0.9;
}
[data-theme=dark] .mat-mdc-slider.mat-primary {
  --mdc-slider-handle-color: #185fa5;
  --mdc-slider-focus-handle-color: #185fa5;
  --mdc-slider-hover-handle-color: #185fa5;
  --mdc-slider-active-track-color: #185fa5;
  --mdc-slider-inactive-track-color: #185fa5;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #185fa5;
  --mat-mdc-slider-ripple-color: #185fa5;
  --mat-mdc-slider-hover-ripple-color: rgba(24, 95, 165, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(24, 95, 165, 0.2);
}
[data-theme=dark] .mat-mdc-slider.mat-accent {
  --mdc-slider-handle-color: #185fa5;
  --mdc-slider-focus-handle-color: #185fa5;
  --mdc-slider-hover-handle-color: #185fa5;
  --mdc-slider-active-track-color: #185fa5;
  --mdc-slider-inactive-track-color: #185fa5;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #185fa5;
  --mat-mdc-slider-ripple-color: #185fa5;
  --mat-mdc-slider-hover-ripple-color: rgba(24, 95, 165, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(24, 95, 165, 0.2);
}
[data-theme=dark] .mat-mdc-slider.mat-warn {
  --mdc-slider-handle-color: #c2382f;
  --mdc-slider-focus-handle-color: #c2382f;
  --mdc-slider-hover-handle-color: #c2382f;
  --mdc-slider-active-track-color: #c2382f;
  --mdc-slider-inactive-track-color: #c2382f;
  --mdc-slider-with-tick-marks-active-container-color: #fff;
  --mdc-slider-with-tick-marks-inactive-container-color: #c2382f;
  --mat-mdc-slider-ripple-color: #c2382f;
  --mat-mdc-slider-hover-ripple-color: rgba(194, 56, 47, 0.05);
  --mat-mdc-slider-focus-ripple-color: rgba(194, 56, 47, 0.2);
}
[data-theme=dark] {
  --mat-menu-item-label-text-color: white;
  --mat-menu-item-icon-color: white;
  --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-container-color: #424242;
}

[data-theme=dark] .mat-mdc-list-base {
  --mdc-list-list-item-label-text-color: white;
  --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
  --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-disabled-label-text-color: white;
  --mdc-list-list-item-disabled-leading-icon-color: white;
  --mdc-list-list-item-disabled-trailing-icon-color: white;
  --mdc-list-list-item-hover-label-text-color: white;
  --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-focus-label-text-color: white;
  --mdc-list-list-item-hover-state-layer-color: white;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: white;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
}
[data-theme=dark] .mdc-list-item__start,
[data-theme=dark] .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
}
[data-theme=dark] .mat-accent .mdc-list-item__start,
[data-theme=dark] .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #185fa5;
  --mdc-radio-selected-hover-icon-color: #185fa5;
  --mdc-radio-selected-icon-color: #185fa5;
  --mdc-radio-selected-pressed-icon-color: #185fa5;
}
[data-theme=dark] .mat-warn .mdc-list-item__start,
[data-theme=dark] .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #fff;
  --mdc-radio-disabled-unselected-icon-color: #fff;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #c2382f;
  --mdc-radio-selected-hover-icon-color: #c2382f;
  --mdc-radio-selected-icon-color: #c2382f;
  --mdc-radio-selected-pressed-icon-color: #c2382f;
}
[data-theme=dark] .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[data-theme=dark] .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[data-theme=dark] .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #c2382f;
  --mdc-checkbox-selected-hover-icon-color: #c2382f;
  --mdc-checkbox-selected-icon-color: #c2382f;
  --mdc-checkbox-selected-pressed-icon-color: #c2382f;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c2382f;
  --mdc-checkbox-selected-hover-state-layer-color: #c2382f;
  --mdc-checkbox-selected-pressed-state-layer-color: #c2382f;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[data-theme=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
[data-theme=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #185fa5;
}
[data-theme=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
[data-theme=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #185fa5;
}
[data-theme=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
[data-theme=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
[data-theme=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
[data-theme=dark] {
  --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
  --mat-paginator-container-background-color: #424242;
  --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
  --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
}

[data-theme=dark] .mat-mdc-tab-group, [data-theme=dark] .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #185fa5;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #185fa5;
  --mat-tab-header-active-ripple-color: #185fa5;
  --mat-tab-header-inactive-ripple-color: #185fa5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #185fa5;
  --mat-tab-header-active-hover-label-text-color: #185fa5;
  --mat-tab-header-active-focus-indicator-color: #185fa5;
  --mat-tab-header-active-hover-indicator-color: #185fa5;
}
[data-theme=dark] .mat-mdc-tab-group.mat-accent, [data-theme=dark] .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #185fa5;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #185fa5;
  --mat-tab-header-active-ripple-color: #185fa5;
  --mat-tab-header-inactive-ripple-color: #185fa5;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #185fa5;
  --mat-tab-header-active-hover-label-text-color: #185fa5;
  --mat-tab-header-active-focus-indicator-color: #185fa5;
  --mat-tab-header-active-hover-indicator-color: #185fa5;
}
[data-theme=dark] .mat-mdc-tab-group.mat-warn, [data-theme=dark] .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #c2382f;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: #fff;
  --mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-label-text-color: #c2382f;
  --mat-tab-header-active-ripple-color: #c2382f;
  --mat-tab-header-inactive-ripple-color: #c2382f;
  --mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, 0.6);
  --mat-tab-header-active-focus-label-text-color: #c2382f;
  --mat-tab-header-active-hover-label-text-color: #c2382f;
  --mat-tab-header-active-focus-indicator-color: #c2382f;
  --mat-tab-header-active-hover-indicator-color: #c2382f;
}
[data-theme=dark] .mat-mdc-tab-group.mat-background-primary, [data-theme=dark] .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #185fa5;
  --mat-tab-header-with-background-foreground-color: white;
}
[data-theme=dark] .mat-mdc-tab-group.mat-background-accent, [data-theme=dark] .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #185fa5;
  --mat-tab-header-with-background-foreground-color: white;
}
[data-theme=dark] .mat-mdc-tab-group.mat-background-warn, [data-theme=dark] .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #c2382f;
  --mat-tab-header-with-background-foreground-color: white;
}
[data-theme=dark] {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}

[data-theme=dark] .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #185fa5;
  --mdc-checkbox-selected-hover-icon-color: #185fa5;
  --mdc-checkbox-selected-icon-color: #185fa5;
  --mdc-checkbox-selected-pressed-icon-color: #185fa5;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #185fa5;
  --mdc-checkbox-selected-hover-state-layer-color: #185fa5;
  --mdc-checkbox-selected-pressed-state-layer-color: #185fa5;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[data-theme=dark] .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-icon-color: #c2382f;
  --mdc-checkbox-selected-hover-icon-color: #c2382f;
  --mdc-checkbox-selected-icon-color: #c2382f;
  --mdc-checkbox-selected-pressed-icon-color: #c2382f;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #c2382f;
  --mdc-checkbox-selected-hover-state-layer-color: #c2382f;
  --mdc-checkbox-selected-pressed-state-layer-color: #c2382f;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[data-theme=dark] .mat-mdc-checkbox .mdc-form-field {
  color: var(--mdc-theme-text-primary-on-background, white);
}
[data-theme=dark] .mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-button.mat-unthemed {
  --mdc-text-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #185fa5;
}
[data-theme=dark] .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #185fa5;
}
[data-theme=dark] .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #c2382f;
}
[data-theme=dark] .mat-mdc-button[disabled][disabled] {
  --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-text-button-label-text-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-unelevated-button.mat-unthemed {
  --mdc-filled-button-container-color: #424242;
  --mdc-filled-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #185fa5;
  --mdc-filled-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #185fa5;
  --mdc-filled-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #c2382f;
  --mdc-filled-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-unelevated-button[disabled][disabled] {
  --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-filled-button-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-label-text-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-raised-button.mat-unthemed {
  --mdc-protected-button-container-color: #424242;
  --mdc-protected-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #185fa5;
  --mdc-protected-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #185fa5;
  --mdc-protected-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #c2382f;
  --mdc-protected-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-raised-button[disabled][disabled] {
  --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-protected-button-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-protected-button-container-elevation: 0;
}
[data-theme=dark] .mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
}
[data-theme=dark] .mat-mdc-outlined-button.mat-unthemed {
  --mdc-outlined-button-label-text-color: #fff;
}
[data-theme=dark] .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #185fa5;
}
[data-theme=dark] .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #185fa5;
}
[data-theme=dark] .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #c2382f;
}
[data-theme=dark] .mat-mdc-outlined-button[disabled][disabled] {
  --mdc-outlined-button-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, 0.12);
}
[data-theme=dark] .mat-mdc-button, [data-theme=dark] .mat-mdc-outlined-button {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
[data-theme=dark] .mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-button.mat-primary, [data-theme=dark] .mat-mdc-outlined-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
[data-theme=dark] .mat-mdc-button.mat-accent, [data-theme=dark] .mat-mdc-outlined-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
[data-theme=dark] .mat-mdc-button.mat-warn, [data-theme=dark] .mat-mdc-outlined-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #c2382f;
  --mat-mdc-button-ripple-color: rgba(194, 56, 47, 0.1);
}
[data-theme=dark] .mat-mdc-raised-button, [data-theme=dark] .mat-mdc-unelevated-button {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
[data-theme=dark] .mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-raised-button.mat-primary, [data-theme=dark] .mat-mdc-unelevated-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-raised-button.mat-accent, [data-theme=dark] .mat-mdc-unelevated-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-raised-button.mat-warn, [data-theme=dark] .mat-mdc-unelevated-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button {
  --mat-mdc-button-persistent-ripple-color: #000;
  --mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mdc-icon-button-icon-color: inherit;
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
[data-theme=dark] .mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-icon-button.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #6200ee;
  --mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #018786;
  --mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #b00020;
  --mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #185fa5;
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #185fa5;
  --mat-mdc-button-persistent-ripple-color: #185fa5;
  --mat-mdc-button-ripple-color: rgba(24, 95, 165, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #c2382f;
  --mat-mdc-button-persistent-ripple-color: #c2382f;
  --mat-mdc-button-ripple-color: rgba(194, 56, 47, 0.1);
}
[data-theme=dark] .mat-mdc-icon-button[disabled][disabled] {
  --mdc-icon-button-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-fab,
[data-theme=dark] .mat-mdc-mini-fab {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,
[data-theme=dark] .mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0.08;
}
[data-theme=dark] .mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, [data-theme=dark] .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
[data-theme=dark] .mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
[data-theme=dark] .mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,
[data-theme=dark] .mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before {
  opacity: 0.24;
}
[data-theme=dark] .mat-mdc-fab.mat-primary,
[data-theme=dark] .mat-mdc-mini-fab.mat-primary {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-fab.mat-accent,
[data-theme=dark] .mat-mdc-mini-fab.mat-accent {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-fab.mat-warn,
[data-theme=dark] .mat-mdc-mini-fab.mat-warn {
  --mat-mdc-button-persistent-ripple-color: #fff;
  --mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
}
[data-theme=dark] .mat-mdc-fab[disabled][disabled],
[data-theme=dark] .mat-mdc-mini-fab[disabled][disabled] {
  --mdc-fab-container-color: rgba(255, 255, 255, 0.12);
  --mdc-fab-icon-color: rgba(255, 255, 255, 0.5);
  --mat-mdc-fab-color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .mat-mdc-fab.mat-unthemed,
[data-theme=dark] .mat-mdc-mini-fab.mat-unthemed {
  --mdc-fab-container-color: #424242;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
[data-theme=dark] .mat-mdc-fab.mat-primary,
[data-theme=dark] .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-container-color: #185fa5;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
[data-theme=dark] .mat-mdc-fab.mat-accent,
[data-theme=dark] .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-container-color: #185fa5;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
[data-theme=dark] .mat-mdc-fab.mat-warn,
[data-theme=dark] .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-container-color: #c2382f;
  --mdc-fab-icon-color: white;
  --mat-mdc-fab-color: #fff;
}
[data-theme=dark] .mat-mdc-snack-bar-container {
  --mdc-snackbar-container-color: #d9d9d9;
  --mdc-snackbar-supporting-text-color: rgba(66, 66, 66, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
}
[data-theme=dark] .mat-mdc-progress-spinner {
  --mdc-circular-progress-active-indicator-color: #185fa5;
}
[data-theme=dark] .mat-mdc-progress-spinner.mat-accent {
  --mdc-circular-progress-active-indicator-color: #185fa5;
}
[data-theme=dark] .mat-mdc-progress-spinner.mat-warn {
  --mdc-circular-progress-active-indicator-color: #c2382f;
}
[data-theme=dark] {
  --mat-badge-background-color: #185fa5;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #6e6e6e;
  --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
}

[data-theme=dark] .mat-badge-accent {
  --mat-badge-background-color: #185fa5;
  --mat-badge-text-color: white;
}
[data-theme=dark] .mat-badge-warn {
  --mat-badge-background-color: #c2382f;
  --mat-badge-text-color: white;
}
[data-theme=dark] {
  --mat-bottom-sheet-container-text-color: white;
  --mat-bottom-sheet-container-background-color: #424242;
}

[data-theme=dark] {
  --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
  --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
  --mat-legacy-button-toggle-selected-state-background-color: #212121;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-legacy-button-toggle-disabled-state-background-color: black;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-text-color: white;
  --mat-standard-button-toggle-background-color: #424242;
  --mat-standard-button-toggle-state-layer-color: white;
  --mat-standard-button-toggle-selected-state-background-color: #212121;
  --mat-standard-button-toggle-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-standard-button-toggle-disabled-state-background-color: #424242;
  --mat-standard-button-toggle-disabled-selected-state-text-color: white;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #424242;
  --mat-standard-button-toggle-divider-color: #595959;
}

[data-theme=dark] {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #185fa5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 95, 165, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #185fa5;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 95, 165, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: white;
  --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-period-button-icon-color: white;
  --mat-datepicker-calendar-navigation-button-icon-color: white;
  --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
  --mat-datepicker-calendar-date-text-color: white;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
  --mat-datepicker-range-input-separator-color: white;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-container-background-color: #424242;
  --mat-datepicker-calendar-container-text-color: white;
}

[data-theme=dark] .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #185fa5;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 95, 165, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 95, 165, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 95, 165, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
[data-theme=dark] .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #c2382f;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(194, 56, 47, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(194, 56, 47, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(194, 56, 47, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(194, 56, 47, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
[data-theme=dark] .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #185fa5;
}
[data-theme=dark] .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #c2382f;
}
[data-theme=dark] {
  --mat-divider-color: rgba(255, 255, 255, 0.12);
}

[data-theme=dark] {
  --mat-expansion-container-background-color: #424242;
  --mat-expansion-container-text-color: white;
  --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-expansion-header-text-color: white;
  --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
  --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
}

[data-theme=dark] {
  --mat-icon-color: inherit;
}

[data-theme=dark] .mat-icon.mat-primary {
  --mat-icon-color: #185fa5;
}
[data-theme=dark] .mat-icon.mat-accent {
  --mat-icon-color: #185fa5;
}
[data-theme=dark] .mat-icon.mat-warn {
  --mat-icon-color: #c2382f;
}
[data-theme=dark] {
  --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
  --mat-sidenav-container-background-color: #424242;
  --mat-sidenav-container-text-color: white;
  --mat-sidenav-content-background-color: #303030;
  --mat-sidenav-content-text-color: white;
  --mat-sidenav-scrim-color: rgba(189, 189, 189, 0.6);
}

[data-theme=dark] {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #185fa5;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #185fa5;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #185fa5;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: #424242;
  --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-selected-state-label-text-color: white;
  --mat-stepper-header-error-state-label-text-color: #c2382f;
  --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-error-state-icon-foreground-color: #c2382f;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
[data-theme=dark] .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #185fa5;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #185fa5;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #185fa5;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
[data-theme=dark] .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #c2382f;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #c2382f;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #c2382f;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}

[data-theme=dark] .mat-sort-header-arrow {
  color: #c6c6c6;
}
[data-theme=dark] {
  --mat-toolbar-container-background-color: #212121;
  --mat-toolbar-container-text-color: white;
}

[data-theme=dark] .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #185fa5;
  --mat-toolbar-container-text-color: white;
}
[data-theme=dark] .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #185fa5;
  --mat-toolbar-container-text-color: white;
}
[data-theme=dark] .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #c2382f;
  --mat-toolbar-container-text-color: white;
}
[data-theme=dark] .mat-tree {
  background: #424242;
}
[data-theme=dark] .mat-tree-node,
[data-theme=dark] .mat-nested-tree-node {
  color: white;
}

:root {
  --wb-blue: var(--wb-accent);
  --wb-blue-hover: var(--wb-accent-hover);
  --wb-bg-warm: var(--wb-canvas);
  --wb-bg-warm-2: var(--wb-canvas-sunk);
  --wb-bg-blue-soft: var(--wb-accent-soft);
  --wb-text-primary: var(--wb-text);
  --wb-text-secondary: var(--wb-text-2);
  --wb-text-muted: var(--wb-text-3);
  --wb-text-tertiary: var(--wb-text-4);
  --wb-border-hover: var(--wb-border-strong);
  --wb-success-dark: var(--wb-success);
  --wb-pill-tournament-bg: var(--wb-success-soft);
  --wb-pill-tournament-fg: var(--wb-success);
  --wb-pill-tour-bg: var(--wb-accent-soft);
  --wb-pill-tour-fg: var(--wb-accent);
  --wb-warning-bg: var(--wb-warning-soft);
  --fc-bg: var(--wb-canvas);
  --fc-brand: var(--wb-accent);
  --fc-action: var(--wb-accent);
  --fc-action-hover: var(--wb-accent-hover);
  --fc-text: var(--wb-text);
  --fc-muted: var(--wb-text-3);
  --fc-divider: var(--wb-border);
  --fc-card: var(--wb-surface);
  --fc-card-shadow: var(--wb-e1);
  --fc-display-font: var(--wb-font-serif);
  --fc-brand-override: var(--tour-brand);
  --fc-action-override: var(--tour-brand);
}

[data-theme=dark] {
  --fc-bg: var(--wb-canvas);
  --fc-card: var(--wb-surface);
  --fc-divider: var(--wb-border);
  --fc-text: var(--wb-text);
  --fc-muted: var(--wb-text-3);
  --wb-text-primary: var(--wb-text);
  --wb-text-secondary: var(--wb-text-2);
  --wb-text-muted: var(--wb-text-3);
  --wb-text-tertiary: var(--wb-text-4);
}

:root {
  --mdc-theme-primary: var(--wb-accent);
  --mdc-theme-on-primary: #FFFFFF;
  --mdc-theme-secondary: var(--wb-accent);
  --mdc-theme-error: var(--wb-danger);
  --mdc-theme-surface: var(--wb-surface);
  --mdc-theme-on-surface: var(--wb-text);
  --mdc-theme-background: var(--wb-canvas);
  --mdc-theme-text-primary-on-background: var(--wb-text);
  --mdc-theme-text-secondary-on-background: var(--wb-text-2);
  --mdc-shape-small: var(--wb-r-control);
  --mdc-shape-medium: var(--wb-r-card);
  --mdc-shape-large: var(--wb-r-card);
  --mdc-typography-font-family: var(--wb-font);
  --mat-option-label-text-font: var(--wb-font);
  --mat-optgroup-label-text-font: var(--wb-font);
  --mdc-filled-text-field-label-text-font: var(--wb-font);
  --mdc-outlined-text-field-label-text-font: var(--wb-font);
  --mat-form-field-container-text-font: var(--wb-font);
  --mat-form-field-subscript-text-font: var(--wb-font);
  --mat-select-trigger-text-font: var(--wb-font);
  --mat-menu-item-label-text-font: var(--wb-font);
  --mat-paginator-container-text-font: var(--wb-font);
  --mat-table-header-headline-font: var(--wb-font);
  --mat-table-row-item-label-text-font: var(--wb-font);
  --mat-table-footer-supporting-text-font: var(--wb-font);
  --mat-badge-text-font: var(--wb-font);
  --mat-bottom-sheet-container-text-font: var(--wb-font);
  --mat-legacy-button-toggle-text-font: var(--wb-font);
  --mat-standard-button-toggle-text-font: var(--wb-font);
  --mat-datepicker-calendar-text-font: var(--wb-font);
  --mat-expansion-header-text-font: var(--wb-font);
  --mat-expansion-container-text-font: var(--wb-font);
  --mat-stepper-container-text-font: var(--wb-font);
  --mat-stepper-header-label-text-font: var(--wb-font);
  --mat-toolbar-title-text-font: var(--wb-font);
}

.mat-ripple,
.mat-mdc-button-ripple,
.mat-mdc-button-persistent-ripple {
  display: none !important;
}

.mat-mdc-focus-indicator::before,
.mat-focus-indicator::before {
  display: none !important;
}

.cdk-high-contrast-active .mat-mdc-focus-indicator::before,
.cdk-high-contrast-active .mat-focus-indicator::before {
  display: block !important;
}

.mat-mdc-button,
.mat-mdc-raised-button,
.mat-mdc-outlined-button,
.mat-mdc-unelevated-button,
.mat-mdc-menu-item,
.mat-mdc-tab {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--wb-font) !important;
}

.mat-mdc-dialog-container {
  --mdc-dialog-container-color: var(--wb-surface);
  --mdc-dialog-container-shape: var(--wb-r-card);
  --mdc-dialog-subhead-color: var(--wb-text);
  --mdc-dialog-supporting-text-color: var(--wb-text-2);
  --mdc-dialog-subhead-font: var(--wb-font);
  --mdc-dialog-supporting-text-font: var(--wb-font);
  --mdc-dialog-subhead-size: 17px;
  --mdc-dialog-subhead-weight: 700;
  --mdc-dialog-supporting-text-size: 13px;
}
.mat-mdc-dialog-container .mat-mdc-dialog-surface {
  box-shadow: var(--wb-e3) !important;
  border-radius: var(--wb-r-card) !important;
}

.cdk-overlay-dark-backdrop {
  background: var(--wb-scrim) !important;
}

.mat-mdc-dialog-title {
  letter-spacing: -0.015em !important;
}
.mat-mdc-dialog-title::before {
  display: none !important;
}

.mat-mdc-dialog-actions {
  padding: var(--wb-pad-y) var(--wb-pad-x) !important;
  gap: var(--wb-gap);
  border-top: 1px solid var(--wb-tg-border-hairline);
  min-height: auto !important;
}

@media (max-width: 767px) {
  .mat-mdc-dialog-container .mat-mdc-dialog-surface {
    border-radius: var(--wb-r-sheet) var(--wb-r-sheet) 0 0 !important;
    padding-bottom: var(--wb-safe-bottom);
  }
}
.mat-mdc-snack-bar-container {
  --mdc-snackbar-container-color: #14110F;
  --mdc-snackbar-supporting-text-color: #F7F5F1;
  --mdc-snackbar-supporting-text-font: var(--wb-font);
  --mdc-snackbar-supporting-text-size: 13px;
  --mdc-snackbar-container-shape: var(--wb-r-card);
  margin-bottom: calc(64px + var(--wb-safe-bottom)) !important;
}
.mat-mdc-snack-bar-container .mdc-snackbar__surface {
  box-shadow: var(--wb-e2) !important;
  min-width: 0 !important;
}

.mat-mdc-snack-bar-action {
  --mat-snack-bar-button-color: var(--wb-accent-hover);
  font-weight: 600 !important;
}

.mat-mdc-menu-panel {
  --mat-menu-container-color: var(--wb-surface);
  --mat-menu-container-shape: var(--wb-r-card);
  --mat-menu-item-label-text-font: var(--wb-font);
  --mat-menu-item-label-text-size: var(--wb-fs-body);
  --mat-menu-item-label-text-color: var(--wb-text);
  border: 1px solid var(--wb-border);
  box-shadow: var(--wb-e2) !important;
  padding: 6px !important;
}
.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 0 !important;
}

.mat-mdc-menu-item {
  min-height: var(--wb-ctl-h) !important;
  border-radius: var(--wb-r-control);
  padding: 0 12px !important;
}
.mat-mdc-menu-item:hover:not([disabled]) {
  background: var(--wb-surface-hover) !important;
}
.mat-mdc-menu-item.is-selected, .mat-mdc-menu-item[aria-selected=true] {
  background: var(--wb-accent-soft) !important;
  color: var(--wb-accent) !important;
  font-weight: 600;
}
.mat-mdc-menu-item.is-danger {
  color: var(--wb-danger) !important;
}
.mat-mdc-menu-item.is-danger:hover {
  background: var(--wb-danger-soft) !important;
}
.mat-mdc-menu-item .mat-icon, .mat-mdc-menu-item .material-symbols-outlined {
  color: var(--wb-text-3);
  margin-right: 10px !important;
}

.mat-mdc-menu-item[disabled] {
  opacity: 0.42 !important;
}

.mat-divider {
  border-top-color: var(--wb-tg-border-hairline) !important;
}

.mat-mdc-form-field {
  --mat-form-field-container-height: var(--wb-ctl-h);
  --mat-form-field-container-vertical-padding: 0;
  --mdc-outlined-text-field-outline-color: var(--wb-border);
  --mdc-outlined-text-field-hover-outline-color: var(--wb-border-strong);
  --mdc-outlined-text-field-focus-outline-color: var(--wb-accent);
  --mdc-outlined-text-field-error-outline-color: var(--wb-danger);
  --mdc-outlined-text-field-container-shape: var(--wb-r-control);
  --mdc-outlined-text-field-label-text-color: var(--wb-text-2);
  --mdc-outlined-text-field-input-text-color: var(--wb-text);
  --mdc-outlined-text-field-input-text-placeholder-color: var(--wb-text-3);
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 1px;
  font-family: var(--wb-font);
  font-size: var(--wb-fs-body);
}
.mat-mdc-form-field .mat-mdc-form-field-subscript-wrapper {
  height: 0;
  min-height: 0;
  overflow: hidden;
  transition: height var(--wb-ease);
}
.mat-mdc-form-field:has(.mat-mdc-form-field-hint) .mat-mdc-form-field-subscript-wrapper, .mat-mdc-form-field.mat-form-field-invalid .mat-mdc-form-field-subscript-wrapper {
  height: auto;
  min-height: 18px;
  padding-top: 5px;
}
.mat-mdc-form-field .mat-mdc-form-field-focus-overlay {
  display: none;
}
.mat-mdc-form-field.mat-focused .mdc-notched-outline {
  box-shadow: var(--wb-focus);
  border-radius: var(--wb-r-control);
}
.mat-mdc-form-field.mat-form-field-invalid.mat-focused .mdc-notched-outline {
  box-shadow: var(--wb-focus-danger);
}

.mat-mdc-form-field-error {
  color: var(--wb-danger) !important;
  font-size: var(--wb-fs-meta) !important;
  font-weight: 500 !important;
}

.mat-mdc-form-field-hint {
  color: var(--wb-text-3) !important;
  font-size: var(--wb-fs-meta) !important;
  font-weight: 500 !important;
}

.mat-mdc-form-field.has-hint .mat-mdc-form-field-subscript-wrapper {
  height: auto;
  min-height: 18px;
  padding-top: 5px;
}

.mat-mdc-form-field.mat-form-field-disabled {
  opacity: 0.5;
}
.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper {
  background: var(--wb-canvas-sunk);
}

.mat-mdc-select-panel {
  background: var(--wb-surface) !important;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-r-card) !important;
  box-shadow: var(--wb-e2) !important;
  padding: 6px !important;
}

.mat-mdc-option {
  min-height: var(--wb-ctl-h) !important;
  border-radius: var(--wb-r-control);
  font-family: var(--wb-font) !important;
  font-size: var(--wb-fs-body) !important;
}
.mat-mdc-option:hover:not(.mdc-list-item--disabled) {
  background: var(--wb-surface-hover) !important;
}
.mat-mdc-option.mdc-list-item--selected {
  background: var(--wb-accent-soft) !important;
}
.mat-mdc-option.mdc-list-item--selected .mdc-list-item__primary-text {
  color: var(--wb-accent) !important;
  font-weight: 600;
}
.mat-mdc-option .mat-pseudo-checkbox {
  display: none;
}

.mat-mdc-checkbox, .mat-mdc-radio-button {
  --mdc-checkbox-selected-icon-color: var(--wb-accent);
  --mdc-checkbox-selected-hover-icon-color: var(--wb-accent-hover);
  --mdc-checkbox-unselected-icon-color: var(--wb-border-strong);
  --mdc-radio-selected-icon-color: var(--wb-accent);
  --mdc-checkbox-state-layer-size: 28px;
}

.mat-mdc-slide-toggle {
  --mdc-switch-selected-track-color: var(--wb-accent);
  --mdc-switch-selected-handle-color: #FFFFFF;
  --mdc-switch-selected-hover-track-color: var(--wb-accent-hover);
  --mdc-switch-unselected-track-color: var(--wb-border);
}

.mat-mdc-button,
.mat-mdc-raised-button,
.mat-mdc-outlined-button,
.mat-mdc-unelevated-button {
  --mdc-typography-button-font-size: var(--wb-fs-body);
  --mdc-typography-button-font-weight: 600;
  height: var(--wb-ctl-h) !important;
  min-height: var(--wb-ctl-h) !important;
  padding: 0 var(--wb-pad-x) !important;
  border-radius: var(--wb-r-control) !important;
  box-shadow: none !important;
  transition: background var(--wb-ease), border-color var(--wb-ease);
}
.mat-mdc-button:focus-visible,
.mat-mdc-raised-button:focus-visible,
.mat-mdc-outlined-button:focus-visible,
.mat-mdc-unelevated-button:focus-visible {
  box-shadow: var(--wb-focus) !important;
  outline: none;
}
.mat-mdc-button[disabled],
.mat-mdc-raised-button[disabled],
.mat-mdc-outlined-button[disabled],
.mat-mdc-unelevated-button[disabled] {
  opacity: 0.42 !important;
}

.mat-mdc-raised-button.mat-primary,
.mat-mdc-unelevated-button.mat-primary {
  background: var(--wb-accent) !important;
  color: #FFFFFF !important;
}
.mat-mdc-raised-button.mat-primary:hover:not([disabled]),
.mat-mdc-unelevated-button.mat-primary:hover:not([disabled]) {
  background: var(--wb-accent-hover) !important;
}
.mat-mdc-raised-button.mat-primary:active:not([disabled]),
.mat-mdc-unelevated-button.mat-primary:active:not([disabled]) {
  background: var(--wb-accent-press) !important;
}

.mat-mdc-outlined-button:not(.mat-warn) {
  background: var(--wb-surface) !important;
  color: var(--wb-text) !important;
  border-color: var(--wb-border) !important;
}
.mat-mdc-outlined-button:not(.mat-warn):hover:not([disabled]) {
  background: var(--wb-surface-hover) !important;
  border-color: var(--wb-border-strong) !important;
}

.mat-mdc-button:not(.mat-primary):not(.mat-warn) {
  color: var(--wb-text-2) !important;
}
.mat-mdc-button:not(.mat-primary):not(.mat-warn):hover:not([disabled]) {
  background: var(--wb-canvas-sunk) !important;
  color: var(--wb-text) !important;
}

.mat-warn.mat-mdc-outlined-button {
  color: var(--wb-danger) !important;
  border-color: var(--wb-danger) !important;
  background: var(--wb-surface) !important;
}
.mat-warn.mat-mdc-outlined-button:hover:not([disabled]) {
  background: var(--wb-danger-soft) !important;
}
.mat-warn.mat-mdc-raised-button, .mat-warn.mat-mdc-unelevated-button {
  background: var(--wb-danger) !important;
  color: #FFFFFF !important;
}
.mat-warn.mat-mdc-button {
  color: var(--wb-danger) !important;
}
.mat-warn:focus-visible {
  box-shadow: var(--wb-focus-danger) !important;
}

.mat-mdc-icon-button {
  --mdc-icon-button-state-layer-size: var(--wb-tap);
  width: var(--wb-tap) !important;
  height: var(--wb-tap) !important;
  padding: 0 !important;
  border-radius: var(--wb-r-control) !important;
  color: var(--wb-text-2) !important;
}
.mat-mdc-icon-button:hover {
  background: var(--wb-surface-hover) !important;
}

.mat-mdc-table {
  background: var(--wb-surface);
  font-family: var(--wb-font);
}
.mat-mdc-table .mat-mdc-header-cell {
  background: var(--wb-canvas);
  color: var(--wb-text-3);
  font-size: var(--wb-fs-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom-color: var(--wb-border);
}
.mat-mdc-table .mat-mdc-cell {
  color: var(--wb-text);
  font-size: var(--wb-fs-body);
  border-bottom-color: var(--wb-tg-border-hairline);
}
.mat-mdc-table .mat-mdc-row {
  height: var(--wb-row-h);
}
.mat-mdc-table .mat-mdc-row:hover {
  background: var(--wb-surface-hover);
}
.mat-mdc-table .mat-mdc-cell.is-numeric,
.mat-mdc-table .mat-mdc-cell[data-numeric] {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.mat-mdc-paginator {
  background: var(--wb-canvas);
  border-top: 1px solid var(--wb-border);
  font-family: var(--wb-font);
  color: var(--wb-text-3);
  font-size: var(--wb-fs-meta);
}

.mat-mdc-tab-group {
  --mdc-tab-indicator-active-indicator-color: var(--wb-accent);
  --mat-tab-header-active-label-text-color: var(--wb-text);
  --mat-tab-header-inactive-label-text-color: var(--wb-text-3);
  --mat-tab-header-label-text-size: var(--wb-fs-body);
  --mat-tab-header-label-text-weight: 600;
  --mat-tab-header-divider-color: var(--wb-border);
}

.mat-mdc-tooltip .mdc-tooltip__surface {
  background: #14110F !important;
  color: #F7F5F1 !important;
  font-family: var(--wb-font) !important;
  font-size: var(--wb-fs-meta) !important;
  font-weight: 500 !important;
  border-radius: var(--wb-r-control) !important;
  padding: 7px 10px !important;
}

.mat-datepicker-content {
  background: var(--wb-surface) !important;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-r-card) !important;
  box-shadow: var(--wb-e2) !important;
  --mat-datepicker-calendar-date-selected-state-background-color: var(--wb-accent);
  --mat-datepicker-calendar-date-today-outline-color: var(--wb-accent);
  --mat-datepicker-calendar-body-label-text-color: var(--wb-text-3);
}

.mat-mdc-progress-spinner, .mat-mdc-progress-bar {
  --mdc-circular-progress-active-indicator-color: var(--wb-accent);
  --mdc-linear-progress-active-indicator-color: var(--wb-accent);
  --mdc-linear-progress-track-color: var(--wb-canvas-sunk);
}

@media print {
  .mat-mdc-dialog-container,
  .mat-mdc-snack-bar-container,
  .mat-mdc-menu-panel,
  .mat-mdc-tooltip,
  .cdk-overlay-container {
    display: none !important;
  }
  .mat-mdc-table,
  .mat-mdc-table .mat-mdc-header-cell,
  .mat-mdc-table .mat-mdc-cell {
    background: #FFFFFF !important;
    color: #000000 !important;
    border-color: #000000 !important;
  }
}
html,
body {
  font-family: var(--wb-font) !important;
}

body {
  color: var(--wb-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
select,
textarea,
button,
optgroup {
  font-family: inherit;
}

.wb-tnum,
.wb-money,
.wb-weight {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1;
}

:is(.mat-mdc-cell, .mat-mdc-footer-cell, .admin-grid-cell, .ag-cell) {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1;
}

:is(public-board,
tournament-leaderboard,
multi-session-leaderboard,
multi-day-multi-session-leaderboard,
leaderboard-paged-results,
grouped-scrolling-tournament-results,
single-weigh-in-default,
top-5-only,
big-fish-mode-leaderboard,
claude-public-leaderboard,
next-up-bar,
wb-weigh-in-celebration,
full-standings-display,
season-standings-grid,
claude-season-standings-grid,
season-standing-details,
team-series-season-standings,
tour-standings-grid) {
  font-variant-numeric: tabular-nums lining-nums;
}

:is(payouts-admin-grid,
claim-payout,
group-payouts,
percentage-payouts,
settings-payout-settings,
settings-payout-percentages,
settings-payout-big-fish-mode,
tournament-payout-percentages,
tour-payout-percentages,
payout-edit-dialog,
custom-payout,
custom-payout-dialog,
bonus-money-payout,
account-payout-history) {
  font-variant-numeric: tabular-nums lining-nums;
}

.wb-amount {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1;
  color: var(--wb-text);
}
.wb-amount.is-debit {
  color: var(--wb-danger);
}
.wb-amount.is-credit {
  color: var(--wb-success);
}
.wb-amount.is-voided {
  color: var(--wb-text-3);
  text-decoration: line-through;
}
.wb-amount.is-balance {
  color: var(--wb-text);
}

.wb-display {
  font-family: var(--wb-font-serif);
  font-weight: 400;
  letter-spacing: 0;
  font-synthesis: none;
}
.wb-display em,
.wb-display i,
.wb-display .is-em {
  font-style: normal;
  font-weight: 600;
}
.wb-display strong,
.wb-display b {
  font-weight: 400;
}

.wb-meta {
  font-size: var(--wb-fs-meta);
  font-weight: 500;
  color: var(--wb-text-2);
}

.wb-label {
  font-size: var(--wb-fs-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wb-text-3);
}

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