@import "https://fonts.cdnfonts.com/css/atten-new";

/* src/styles.scss */
:root {
  --predictor-background-gradient:
    linear-gradient(
      180deg,
      #111111 0%,
      #222222 100%);
  --predictor-background-dark: #111111;
  --predictor-background-darker: #222222;
  --predictor-background-section: rgba(255, 255, 255, 0.08);
  --predictor-background-button: rgba(255, 255, 255, 0.16);
  --predictor-background-button-hover: rgba(255, 255, 255, 0.2);
  --predictor-background-panel: #2f2f2f;
  --predictor-background-result-indicator: rgba(255, 255, 255, 0.24);
  --predictor-background-edit-picks-button: white;
  --predictor-border-light: rgba(255, 255, 255, 0.24);
  --predictor-border-button: rgba(255, 255, 255, 0.16);
  --predictor-primary-cta: #c6f91f;
  --predictor-primary-cta-hover: #a8d41a;
  --predictor-primary-cta-selected: rgba(198, 249, 31, 0.24);
  --predictor-success-gradient:
    linear-gradient(
      270deg,
      #00ff21 0%,
      #006c0e 100%);
  --predictor-success-light: #00ff21;
  --predictor-success-dark: #006c0e;
  --predictor-error-gradient:
    linear-gradient(
      270deg,
      #ff0000 0%,
      #c70000 100%);
  --predictor-error-light: #ff0000;
  --predictor-error-dark: #c70000;
  --predictor-text-primary: white;
  --predictor-text-secondary: rgba(255, 255, 255, 0.8);
  --predictor-text-disabled: rgba(255, 255, 255, 0.4);
  --predictor-text-dark: #333333;
  --predictor-font-primary: "Inter", sans-serif;
  --predictor-font-display: "Mudhead-bold", sans-serif;
  --predictor-slider-handle: #333333;
  --predictor-slider-handle-border: #bddc2a;
  --background-color: var(--predictor-background-gradient);
  --primary-color: var(--predictor-primary-cta);
  --success-color: var(--predictor-success-light);
  --error-color: var(--predictor-error-light);
  --predictor-points-success-gradient: #00ff21;
  --predictor-points-total-gradient: #e39c1e;
  --predictor-points-win-gradient: #7dd3fc;
}
.predictor-btn,
.predictor-btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  z-index: 10000;
  width: 100%;
  height: 48px;
  padding: 16px;
  background: var(--predictor-background-button);
  border: 1px solid var(--predictor-border-button);
  border-radius: 16px;
  gap: 8px;
  color: var(--predictor-text-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}
.predictor-btn:disabled,
.predictor-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.predictor-btn:hover:not([disabled]):not(.selected),
.predictor-btn-primary:hover:not([disabled]):not(.selected) {
  background: var(--predictor-background-button-hover);
  border-color: var(--predictor-background-button-hover);
}
.predictor-btn.selected,
.selected.predictor-btn-primary {
  background: var(--predictor-primary-cta-selected);
  border-color: var(--predictor-primary-cta);
  color: var(--predictor-primary-cta);
}
.predictor-btn-compact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  z-index: 10000;
  height: 32px;
  padding: 8px 16px;
  background: white;
  border-radius: 48px;
  color: #111111;
  font-size: 14px;
  font-family: "Mudhead-bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.56px;
}
.predictor-btn-compact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.predictor-btn-compact:hover:not([disabled]) {
  background: rgba(255, 255, 255, 0.9);
}
.predictor-btn-compact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.predictor-btn-primary {
  background: var(--predictor-primary-cta);
  border-color: var(--predictor-primary-cta);
  color: var(--predictor-text-dark);
  font-family: "Mudhead-bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.64px;
}
.predictor-btn-primary:hover:not([disabled]) {
  background: var(--predictor-primary-cta-hover);
  border-color: var(--predictor-primary-cta-hover);
}
.predictor-btn-primary:disabled {
  background: var(--predictor-background-button);
  border-color: var(--predictor-background-button);
  color: var(--predictor-text-disabled);
}
.predictor-btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  z-index: 10000;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  background: var(--predictor-primary-cta);
  border-radius: 16px;
  gap: 8px;
  color: var(--predictor-text-dark);
  font-size: 16px;
  font-family: "Mudhead-bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  transition: background 0.2s;
}
.predictor-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.predictor-btn-submit:hover:not([disabled]) {
  background: var(--predictor-primary-cta-hover);
}
.predictor-btn-submit[disabled] {
  background: var(--predictor-background-button);
  color: var(--predictor-text-disabled);
}
.predictor-question-container {
  width: 100%;
  padding: 32px 16px;
  background: var(--predictor-background-section);
  border-radius: 16px;
  outline: 1px var(--predictor-border-light) solid;
  outline-offset: -1px;
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.predictor-question-container.desktop {
  padding: 32px;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}
.predictor-question-container.desktop .desktop-left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.predictor-question-container.desktop .desktop-right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.predictor-question-container.desktop .desktop-right-section.multiple-event {
  width: 400px;
  flex: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.predictor-question-container .header-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.predictor-question-container .header-section .question-number {
  align-self: stretch;
  color: var(--predictor-text-primary);
  font-size: 12px;
  font-family: var(--predictor-font-primary, Inter, sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: 0.96px;
  word-wrap: break-word;
}
.predictor-question-container .header-section .question-text {
  align-self: stretch;
  display: flex;
  color: var(--predictor-text-primary);
  font-size: 24px;
  font-family: var(--predictor-font-primary, Inter, sans-serif);
  font-weight: 600;
  line-height: 36px;
  word-wrap: break-word;
  text-align: left;
}
.predictor-question-container .header-section .game-event-info {
  display: flex;
  align-self: stretch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 18px;
  word-wrap: break-word;
  text-align: center;
}
.predictor-question-container.desktop .header-section {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
}
.predictor-question-container.desktop .header-section .question-text {
  text-align: left;
}
.predictor-question-container.desktop .header-section .game-event-info {
  text-align: left;
}
.predictor-question-container .options-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.predictor-question-container .options-section .option {
  height: 48px;
  padding: 8px 16px;
  background: var(--predictor-background-button);
  border-radius: 16px;
  outline: 1px var(--predictor-border-button) solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  cursor: pointer;
  transition: all 0.2s ease;
}
.predictor-question-container .options-section .option .option-text {
  flex: 1 1 0;
  text-align: center;
  color: var(--predictor-text-primary);
  font-size: 14px;
  font-family: var(--predictor-font-primary, Inter, sans-serif);
  font-weight: 600;
  line-height: 14px;
  word-wrap: break-word;
}
.predictor-question-container .options-section .option.selected {
  background: var(--predictor-primary-cta-selected);
  outline-color: var(--predictor-primary-cta);
}
.predictor-question-container .options-section .option.selected .option-text {
  color: var(--predictor-primary-cta);
}
.predictor-question-container .options-section .option.not-selected {
  opacity: 0.6;
}
.predictor-question-container .options-section .option[disabled=true] {
  cursor: not-allowed;
  opacity: 0.5;
}
.predictor-question-container .options-section .view-more-btn {
  align-self: center;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--predictor-border-button);
  border-radius: 12px;
  color: var(--predictor-text-primary);
  font-size: 14px;
  font-family: var(--predictor-font-primary, Inter, sans-serif);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.predictor-question-container .options-section .view-more-btn:hover {
  background: var(--predictor-background-button);
}
.predictor-question-container .options-section .view-more-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.predictor-question-container .statistics-section {
  align-self: stretch;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}
.predictor-question-container .statistics-section .stat-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.predictor-question-container .statistics-section .stat-icon mat-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.predictor-question-container .statistics-section .stat-bar {
  width: 16px;
  height: 8px;
  background: white;
}
.predictor-question-container .statistics-section .stat-text {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-family: Inter, sans-serif;
  line-height: 18px;
  word-wrap: break-word;
}
.predictor-question-container .statistics-section .stat-text .percentage {
  font-weight: 700;
}
.predictor-question-container .statistics-section .stat-text .description {
  font-weight: 400;
}
.predictor-question-container.desktop .statistics-section {
  align-self: stretch;
  justify-content: flex-start;
}
.predictor-question-container.desktop .desktop-right-section.multiple-event .statistics-section {
  justify-content: center;
}
.predictor-text-disabled {
  color: var(--predictor-text-disabled);
}
.success-points-border-color {
  border-color: var(--predictor-success-gradient);
}
.total-points-border-color {
  border-color: var(--predictor-primary-cta);
}
html {
  --mat-sys-background: #faf9fd;
  --mat-sys-error: #ba1a1a;
  --mat-sys-error-container: #ffdad6;
  --mat-sys-inverse-on-surface: #f2f0f4;
  --mat-sys-inverse-primary: #abc7ff;
  --mat-sys-inverse-surface: #2f3033;
  --mat-sys-on-background: #1a1b1f;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #93000a;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #00458f;
  --mat-sys-on-primary-fixed: #001b3f;
  --mat-sys-on-primary-fixed-variant: #00458f;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #3e4759;
  --mat-sys-on-secondary-fixed: #131c2b;
  --mat-sys-on-secondary-fixed-variant: #3e4759;
  --mat-sys-on-surface: #1a1b1f;
  --mat-sys-on-surface-variant: #44474e;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #0000ef;
  --mat-sys-on-tertiary-fixed: #00006e;
  --mat-sys-on-tertiary-fixed-variant: #0000ef;
  --mat-sys-outline: #74777f;
  --mat-sys-outline-variant: #c4c6d0;
  --mat-sys-primary: #005cbb;
  --mat-sys-primary-container: #d7e3ff;
  --mat-sys-primary-fixed: #d7e3ff;
  --mat-sys-primary-fixed-dim: #abc7ff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #565e71;
  --mat-sys-secondary-container: #dae2f9;
  --mat-sys-secondary-fixed: #dae2f9;
  --mat-sys-secondary-fixed-dim: #bec6dc;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #faf9fd;
  --mat-sys-surface-bright: #faf9fd;
  --mat-sys-surface-container: #efedf0;
  --mat-sys-surface-container-high: #e9e7eb;
  --mat-sys-surface-container-highest: #e3e2e6;
  --mat-sys-surface-container-low: #f4f3f6;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #dbd9dd;
  --mat-sys-surface-tint: #005cbb;
  --mat-sys-surface-variant: #e0e2ec;
  --mat-sys-tertiary: #343dff;
  --mat-sys-tertiary-container: #e0e0ff;
  --mat-sys-tertiary-fixed: #e0e0ff;
  --mat-sys-tertiary-fixed-dim: #bec2ff;
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
}
html {
  --mat-sys-level0:
    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);
}
html {
  --mat-sys-level1:
    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);
}
html {
  --mat-sys-level2:
    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);
}
html {
  --mat-sys-level3:
    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);
}
html {
  --mat-sys-level4:
    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);
}
html {
  --mat-sys-level5:
    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);
}
html {
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
}
html {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
html {
  --mdc-circular-progress-active-indicator-color: #ffffff;
}
body {
  height: 100vh;
  margin: unset;
}
body * {
  box-sizing: border-box;
}
@font-face {
  font-family: "Tungsten";
  src: url("./media/Tungsten-Bold.ttf") format("trueType");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-Regular.woff2") format("woff2"), url("./media/AktivGroteskCorp-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-Italic.woff2") format("woff2"), url("./media/AktivGroteskCorp-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-Bold.woff2") format("woff2"), url("./media/AktivGroteskCorp-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-BoldItalic.woff2") format("woff2"), url("./media/AktivGroteskCorp-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-Light.woff2") format("woff2"), url("./media/AktivGroteskCorp-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-LightItalic.woff2") format("woff2"), url("./media/AktivGroteskCorp-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-Medium.woff2") format("woff2"), url("./media/AktivGroteskCorp-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk Corp";
  src: url("./media/AktivGroteskCorp-MediumItalic.woff2") format("woff2"), url("./media/AktivGroteskCorp-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mudhead-regular";
  src: url("./media/Mudhead.woff2") format("woff2"), url("./media/Mudhead.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mudhead-bold";
  src: url("./media/MudheadBold.eot");
  src:
    url("./media/MudheadBold.eot?#iefix") format("embedded-opentype"),
    url("./media/MudheadBold.woff2") format("woff2"),
    url("./media/MudheadBold.woff") format("woff"),
    url("./media/MudheadBold.ttf") format("truetype"),
    url("./media/MudheadBold.svg#MudheadBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-ExtraBoldItalic";
  src: url("./media/Roboto-ExtraBoldItalic.eot");
  src:
    url("./media/Roboto-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"),
    url("./media/Roboto-ExtraBoldItalic.woff2") format("woff2"),
    url("./media/Roboto-ExtraBoldItalic.woff") format("woff"),
    url("./media/Roboto-ExtraBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
:root {
  --background-color: #002e3a;
  --background-color-secondary: #111111;
  --block-background: #171717;
  --text-color: #ffffff;
  --border-radius: 16px;
  --aktiv-grotesk-font-family: "Aktiv Grotesk Corp", sans-serif;
  --max-width: 960px;
  --background-button: #c7f91e;
  --swiper-pagination-color: #c7f91e;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-border-radius: 8px;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.16);
  --mat-sys-corner-extra-large: var(--border-radius);
  --swiper-pagination-bullet-inactive-opacity: 0.8;
}
* {
  box-sizing: border-box;
}
body {
  height: 100vh;
  margin: unset;
  background-color: var(--background-color-secondary);
  font-family: var(--aktiv-grotesk-font-family);
}
html,
body {
  height: 100%;
  overscroll-behavior: none;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
.dialog-container-shape-none .mat-mdc-dialog-surface {
  --mdc-dialog-container-shape: 0px;
}
.quiz-dialog-panel .mat-mdc-dialog-surface {
  background:
    linear-gradient(
      180deg,
      #111 0%,
      #222 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.custom-arrow-prev,
.custom-arrow-next {
  all: initial;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 46%;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}
.custom-arrow-prev[disabled],
.custom-arrow-next[disabled] {
  opacity: 0.4;
}
.custom-arrow-prev mat-icon,
.custom-arrow-next mat-icon {
  width: 16px;
  height: 16px;
}
.custom-arrow-prev {
  left: 0;
  transform: translate(0, -46%);
}
.custom-arrow-next {
  right: 0;
  transform: translate(0, -46%);
}
swiper-slide {
  width: 320px !important;
  height: 480px !important;
}
@media (min-width: 768px) {
  swiper-slide {
    width: 620px !important;
    height: 480px !important;
  }
}
.edit-profile-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.edit-profile-dialog .mat-mdc-dialog-container {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  transform: none !important;
  margin: 0 !important;
  max-height: 90vh !important;
  height: auto !important;
  border-radius: 16px 16px 0 0 !important;
}
.mat-icon[svgIcon=upload].white svg g path {
  fill: white !important;
}
.notification-banner-container .mdc-snackbar__surface {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: unset !important;
}
.notification-banner-container .mdc-snackbar__label {
  padding: 0 !important;
  display: flex;
  justify-content: center;
}
.notification-banner-container.mat-mdc-snack-bar-container {
  margin: 8px !important;
}

/* node_modules/ngx-toastr/toastr.css */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
