@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
body:not(.unframed):not(.embedded) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--headerHeight);
}
body.unframed {
  background: transparent !important;
}
body.scoreboard-control {
  height: 100%;
}
* {
  font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}
.print-only {
  display: none;
}
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  @page {
    padding-top: var(--spacing-md);
  }
  @page :first {
    padding-top: 0;
  }
  .print-only {
    display: inline-block !important;
  }
  .not-printable {
    display: none !important;
  }
  /* .scheduleWrapper {
      display: none;
  } */
  body {
    padding-top: 0 !important;
  }
}
@media (max-width: 960px) {
  .desktop-only {
    display: none !important;
  }
}
@media (min-width: 961px) {
  .mobile-only {
    display: none !important;
  }
}
button:not(:disabled),
input[type=checkbox]:not(:disabled),
input[type=radio]:not(:disabled) {
  cursor: pointer;
}
ul {
  padding: 0;
  margin: 0;
}
button:focus {
  outline: none;
}
.scrolling-locked,
.scrolling-locked #root {
  overflow: hidden;
}
body:not(.unframed),
html,
#root {
  height: 100%;
  min-width: 360px;
  color: var(--main);
}
body.unframed,
body.map {
  overscroll-behavior: none;
}
body:not(.unframed) * {
  line-height: 1.2;
}
:root {
  --info: #dee1e3;
  --infoTile: #f1f5f7;
  --infoHover: #999999;
  --infoTileHover: #e2e4e6;
  --gray: #fffdf9;
  /* --darker: #2a6ca2;
  --main: #3c97e2; */
  --darkerHover: #a04d3c;
  --punchColor: #fedd03;
  --darker: #c5624e;
  --mainHover: #494949;
  --main: #252525;
  --border: #ececec;
  --darkGray: #252525;
  --headerZIndex: 1201;
  --spacing-0: 4px;
  --spacing-1: 8px;
  --spacing-2: 16px;
  --spacing-3: 24px;
  --spacing-8: 64px;
  --tournamentBuilderWidth: 625px;
  --subHeaderHeight: 44px;
  --sidebarWidth: 500px;
  --sectionSidebarWidth: 250px;
  --onboardingChecklistWidth: 300px;
  --bottomNavHeight: 59px;
  --spacing-xs: 2px;
  --spacing-sm: 4px;
  --spacing-md: 8px;
  --spacing-lg: 16px;
  --spacing-xl: 32px;
  --bg: #f1f2f3;
  --secondaryText: #999999;
  --mainText: #252525;
  --white: #fff;
  --bgLight: #f7f7f9;
  --headerHeight: 60px;
}
body.scrolled {
  --headerHeight: 50px;
}
.leaflet-container {
  width: 100%;
  height: 100%;
}
.MuiTypography-body2 {
  color: var(--main) !important;
  text-decoration-color: var(--main) !important;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.MuiTypography-body2:hover {
  color: var(--darker) !important;
  text-decoration-color: var(--darker) !important;
}
.MuiButton-containedPrimary {
  background-color: var(--darker) !important;
}
.MuiButton-containedPrimary:hover {
  background-color: var(--darkerHover) !important;
}
.MuiButton-containedPrimary:disabled {
  color: var(--gray) !important;
}
.MuiButton-containedInfo {
  background-color: var(--info) !important;
}
.MuiButton-containedInfo:hover {
  background-color: var(--infoHover) !important;
}
/* Base styles for the element that has a tooltip */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}
/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  pointer-events: none;
}
[data-tooltip]:before {
  transform: translate3d(0, 0, 0);
}
[data-tooltip]:after {
  transform: translate3d(-50%, 0, 0);
}
[data-tooltip].tooltip-bottom-left:after {
  transform: translate3d(-80%, 0, 0);
}
[data-tooltip].tooltip-top-right:after {
  transform: translate3d(-21px, 0, 0);
}
[data-tooltip].tooltip-top-left:after {
  transform: translate3d(-90%, 0, 0);
}
[data-tooltip].tooltip-left:after,
[data-tooltip].tooltip-right:after {
  transform: translate3d(0, 0, 0);
}
/* Base styles for the tooltip's directional arrow */
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
/* Base styles for the tooltip's content area */
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: 4px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}
/* Directions */
/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}
[data-tooltip]:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}
/* Horizontally align top/bottom tooltips */
[data-tooltip].tooltip-top:hover:after {
  transform: translate(-50%, -7px) !important;
}
[data-tooltip].tooltip-bottom:hover:after {
  transform: translate(-50%, 7px) !important;
}
[data-tooltip].tooltip-bottom.tooltip-bottom-left:hover:after {
  transform: translate(-80%, 7px) !important;
}
[data-tooltip].tooltip-top.tooltip-top-right:hover:after {
  transform: translate(80%, -7px) !important;
}
[data-tooltip].tooltip-top.tooltip-top-left:hover:after {
  transform: translate(-90%, -7px) !important;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after {
  -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  transform: translateY(-7px);
}
/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 48%;
  left: auto;
}
.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-left:hover:before,
.tooltip-left:hover:after {
  -webkit-transform: translateX(-7px);
  -moz-transform: translateX(-7px);
  transform: translateX(-7px);
}
/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}
.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after {
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  transform: translateY(7px);
}
/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 48%;
  left: 100%;
}
.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}
.tooltip-right:hover:before,
.tooltip-right:hover:after {
  -webkit-transform: translateX(7px);
  -moz-transform: translateX(7px);
  transform: translateX(7px);
}
/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  bottom: calc(48% - 5px);
}
/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}
/**
 * Main wrapper
 */
.select-search-container {
  --select-search-background: #fff;
  --select-search-border: #dce0e8;
  --select-search-selected: var(--border);
  --select-search-text: #000;
  --select-search-subtle-text: #6c6f85;
  --select-search-inverted-text: var(--select-search-background);
  --select-search-highlight: #eff1f5;
  --select-search-font: "Inter", sans-serif;
  width: 300px;
  position: relative;
  font-family: var(--select-search-font);
  color: var(--select-search-text);
  box-sizing: border-box;
}
.select-search-container:hover:after,
.select-search-container.select-search-has-focus:after {
  border-top-color: var(--border);
}
.select-search-container.select-search-has-focus .select-search-select {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select-search-container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--select-search-border);
  top: 50%;
  transform: translate(0, -50%);
  right: 8px;
  z-index: 1;
  transition: border 0.3s;
}
@supports (font-variation-settings: normal) {
  .select-search-container {
    --select-search-font: "Inter var", sans-serif;
  }
}
@media (prefers-color-scheme: dark) {
  .select-search-container {
    --select-search-background: #000;
    --select-search-border: #313244;
    --select-search-selected: #89b4fa;
    --select-search-text: #fff;
    --select-search-subtle-text: #a6adc8;
    --select-search-highlight: #1e1e2e;
  }
}
body.is-dark-mode .select-search-container {
  --select-search-background: #000;
  --select-search-border: #313244;
  --select-search-selected: #89b4fa;
  --select-search-text: #fff;
  --select-search-subtle-text: #a6adc8;
  --select-search-highlight: #1e1e2e;
}
body.is-light-mode .select-search-container {
  --select-search-background: #fff;
  --select-search-border: #dce0e8;
  --select-search-selected: #1e66f5;
  --select-search-text: #000;
  --select-search-subtle-text: #6c6f85;
  --select-search-highlight: #eff1f5;
}
.select-search-container *,
.select-search-container *::after,
.select-search-container *::before {
  box-sizing: inherit;
}
.select-search-input {
  position: relative;
  z-index: 1;
  display: block;
  height: 48px;
  width: 100%;
  padding: 0 40px 0 16px;
  background: var(--select-search-background);
  border: 2px solid var(--select-search-border);
  color: var(--select-search-text);
  border-radius: 3px;
  outline: none;
  font-family: var(--select-search-font);
  font-size: 16px;
  text-align: left;
  text-overflow: ellipsis;
  line-height: 48px;
  letter-spacing: 0.01rem;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
}
.select-search-is-multiple .select-search-input {
  margin-bottom: -2px;
}
.select-search-is-multiple .select-search-input {
  border-radius: 3px 3px 0 0;
}
.select-search-input::-webkit-search-decoration,
.select-search-input::-webkit-search-cancel-button,
.select-search-input::-webkit-search-results-button,
.select-search-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.select-search-input[readonly] {
  cursor: pointer;
}
.select-search-is-disabled .select-search-input {
  cursor: not-allowed;
}
.select-search-container:not(.select-search-is-disabled).select-search-has-focus .select-search-input,
.select-search-container:not(.select-search-is-disabled) .select-search-input:hover {
  border-color: var(--select-search-selected);
}
.select-search-select {
  background: var(--select-search-background);
  box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.15);
  border: 2px solid var(--select-search-border);
  overflow: auto;
  max-height: 360px;
}
.select-search-container:not(.select-search-is-multiple) .select-search-select {
  position: absolute;
  z-index: 2;
  top: calc(100% - 2px);
  right: 0;
  left: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  display: none;
}
.select-search-container:not(.select-search-is-multiple).select-search-has-focus .select-search-select {
  display: block;
}
.select-search-has-focus .select-search-select {
  border-color: var(--select-search-selected);
}
.select-search-options {
  list-style: none;
}
.select-search-option,
.select-search-not-found {
  display: block;
  height: 42px;
  width: 100%;
  padding: 0 16px;
  background: var(--select-search-background);
  border: none;
  outline: none;
  font-family: var(--select-search-font);
  color: var(--select-search-text);
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.01rem;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
}
.select-search-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent !important;
}
.select-search-is-highlighted,
.select-search-option:not(.select-search-is-selected):hover {
  background: var(--select-search-highlight);
}
.select-search-is-selected {
  font-weight: bold;
  color: var(--select-search-selected);
}
.select-search-group-header {
  font-size: 12px;
  text-transform: uppercase;
  background: var(--select-search-border);
  color: var(--select-search-subtle-text);
  letter-spacing: 0.1rem;
  padding: 10px 16px;
}
.select-search-row:not(:first-child) .select-search-group-header {
  margin-top: 10px;
}
.select-search-row:not(:last-child) .select-search-group-header {
  margin-bottom: 10px;
}
.rbc-addons-dnd-resizable {
  padding: 10px !important;
}
.rbc-month-row {
  overflow: visible !important;
}
@media (max-width: 900px) {
  .rbc-overlay {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
  }
}
.rbc-month-view {
  border: none !important;
  border-top: 1px solid #ededed !important;
}
.rbc-calendar * {
  font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
  border-color: #ededed !important;
}
.rbc-calendar {
  color: var(--main) !important;
}
.rbc-day-bg.rbc-off-range-bg {
  background: #f6f6f6 !important;
}
.rbc-event {
  background: none !important;
  padding: 0 !important;
}
.rbc-event:focus {
  outline: none !important;
}
.rbc-event.rbc-selected .event-wrapper {
  background: var(--main) !important;
}
.rbc-event.rbc-selected .event-wrapper {
  color: var(--bg) !important;
}
.rbc-row.rbc-month-header {
  margin-bottom: -33px !important;
  padding-top: var(--spacing-md) !important;
}
.rbc-row.rbc-month-header .rbc-header {
  text-align: right !important;
  z-index: 1 !important;
  border-color: transparent !important;
  border-width: 0 !important;
  color: var(--border) !important;
  padding: 0 var(--spacing-md) var(--spacing-md) !important;
}
@media (max-width: 900px) {
  .rbc-row.rbc-month-header .rbc-header {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .rbc-row.rbc-month-header .rbc-header .rbc-header {
    padding-top: var(--spacing-md) !important;
    text-align: left !important;
    border-width: 1px !important;
    border-color: #ededed !important;
  }
}
.rbc-date-cell {
  text-align: left !important;
}
.rbc-date-cell button {
  font-weight: 500 !important;
  padding: var(--spacing-md) !important;
}
@media (max-width: 960px) {
  .rbc-date-cell button {
    font-size: 12px !important;
    padding: var(--spacing-sm);
  }
}
.rbc-month-view {
  border: none !important;
}
.rbc-month-view .rbc-event {
  padding-left: 2px !important;
  border-radius: 3px !important;
}
.rbc-month-view .rbc-selected-cell {
  background-color: #fff !important;
}
.rbc-month-view .rbc-today.rbc-selected-cell {
  background-color: #eaf6ff !important;
}
.rbc-month-view .rbc-off-range-bg.rbc-selected-cell {
  background: #e6e6e6 !important;
}
.rbc-month-view .rbc-month-row {
  cursor: pointer !important;
}
.w-md-editor-text-pre,
.w-md-editor-text-input,
.w-md-editor-text > .w-md-editor-text-pre {
  --md-editor-font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
}
.w-md-editor-text {
  line-height: unset !important;
}
body .w-md-editor-text-input {
  line-height: 18px !important;
}
.w-md-editor {
  font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
  white-space: pre-wrap;
  color: var(--main);
}
.markdown-viewer {
  color: var(--main);
}
.markdown-viewer h1,
.markdown-viewer h2,
.markdown-viewer h3,
.markdown-viewer h4,
.markdown-viewer h5,
.markdown-viewer h6 {
  margin-top: 0;
}
.markdown-viewer h1 {
  margin-bottom: var(--spacing-lg);
}
.markdown-viewer h2 {
  margin-bottom: var(--spacing-lg);
}
.markdown-viewer h3 {
  margin-bottom: var(--spacing-md);
}
.markdown-viewer h4 {
  margin-bottom: var(--spacing-md);
}
.markdown-viewer h5 {
  margin-bottom: var(--spacing-md);
}
.markdown-viewer h6 {
  margin-bottom: var(--spacing-md);
}
.markdown-viewer a {
  color: var(--darker);
}
.markdown-viewer hr {
  border-bottom: 2px solid var(--border);
  background: none;
  border-radius: 2px;
  height: auto;
  margin: var(--spacing-md);
}
.markdown-viewer p {
  margin: 0 0 var(--spacing-md);
}
.markdown-viewer ul {
  padding: 0 0 0 20px;
}
