@charset "UTF-8";
/**
 * Contains variables that may be used across SCSS files for Draft Sharks
 */
/**
 * Export position colors for use in JS
 * This does not work, as text/css mime types are not supported.
 * But would be great if we could easily import these color values.
 */
:export {
  totalColor: #3d74c7;
  qbColor: #333333;
  rbColor: #a41c1f;
  wrColor: #043173;
  teColor: #86a2cb;
  pickColor: #687087;
  benchColor: #687087;
  irColor: #687087;
  defColor: #888;
  idpColor: #888;
  kickerColor: #c87779;
  tqbColor: #333333;
  hcColor: #582325;
  tkColor: #888;
  lbColor: #888;
  dlColor: #888;
  dbColor: #888;
  qrwtColor: #ffff00;
  rwtColor: #f78439;
  rwColor: #00ff00;
  wtColor: #800080;
  dldColor: #663399;
}

/**
 * Everything below here is strictly based on the new stuff in figma. Most
 * stuff above here will probably be removed or cleaned up and should probably
 * be done before we go live with the DWR redesign if possible
 */
/**
 * These are all of the font sizes based on the Figma setup
 */
/**
 * Applies responsive sizes to elements based on our breakpoints
 * and the components map that was set up in figma. You pass in
 * the component name (top-level key in $components-map) and it will
 * generate the CSS and all media queries for the breakpoints.
 */
/*
* colors that don't have variables but are used widely across the site:
* 053376 ("ds-blue-2"? "ds-deep-blue"?)
* e9f1ff (grayish blue)
* 86a2cb -> te color, but used elsewhere ("ds-light-blue-2"?)
* e3e3e7 (another grayish blue, platinum-y looking color)
* b2b2b2 ("ds-silver")
* f0ad4e -> used in rankings-standard.scss and rankings-table.scss for .floor.yellow class (mid floor color?)
* should border radii be a mixin too? We have 9 instances of border-radius: 8px 8px 0 0, and surely many more that are the same.
*/
/**
 * Contains styles for flash messages as implemented in the draft board 
 * redesign in 2025
 */
.flash-message-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.flash-message-list .v-move,
.flash-message-list .v-enter-active,
.flash-message-list .v-leave-active {
  transition: all 0.5s ease;
}
.flash-message-list .v-enter-from,
.flash-message-list .v-leave-to {
  opacity: 0;
  transform: translateX(30px);
}
.flash-message-list .v-leave-active:not(:only-child) {
  position: absolute;
}

.flash-message {
  border-radius: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-width: 1px;
  border-style: solid;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
}
.flash-message .icon-container svg {
  width: 1.25em;
  height: 1.25em;
}
@media (min-width: 768px) {
  .flash-message {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .flash-message .icon-container svg {
    width: 1.625em;
    height: 1.625em;
  }
}
@media (min-width: 1024px) {
  .flash-message {
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .flash-message .icon-container svg {
    width: 2em;
    height: 2em;
  }
}
.flash-message .message-container {
  flex-grow: 1;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .flash-message .message-container {
    font-size: 0.9375rem;
  }
}
@media (min-width: 768px) {
  .flash-message .message-container {
    font-size: 1rem;
  }
}
.flash-message .buttons-container {
  display: grid;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .flash-message .buttons-container {
    gap: 0.5rem;
  }
}
.flash-message .buttons-container .btn-auto {
  white-space: nowrap;
  font-weight: bold;
}
.flash-message.success {
  border-color: #77b743;
  background-color: rgba(119, 183, 67, 0.1);
}
.flash-message.success .btn-auto {
  background-color: #77b743;
  color: #fff;
}
.flash-message.success .icon-container,
.flash-message.success .close-btn {
  color: #77b743;
}
.flash-message.info {
  border-color: #f78439;
  background-color: rgba(247, 132, 57, 0.1);
}
.flash-message.info .btn-auto {
  background-color: #f78439;
  color: #fff;
}
.flash-message.info .icon-container,
.flash-message.info .close-btn {
  color: #f78439;
}
.flash-message.danger {
  border-color: #a41c1f;
  background-color: rgba(164, 28, 31, 0.1);
}
.flash-message.danger .btn-auto {
  background-color: #a41c1f;
  color: #fff;
}
.flash-message.danger .icon-container svg path {
  fill: url("#red-linear-gradient");
}
.flash-message.danger .close-btn {
  color: #a41c1f;
}

html.showing-settings-modal {
  overflow: hidden;
  position: relative;
}
html.showing-settings-modal:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1057;
  pointer-events: none;
}
html.showing-settings-modal settings-modal {
  opacity: 1;
  pointer-events: all;
}

.manual-mode-only {
  display: none;
}

html.manual-mode .manual-mode-only {
  display: block;
}

/* ds-alerts are routed to the more discreet settings-notification while settings modal is open */
html.showing-settings-modal .ds-alert {
  display: none;
}

.mobile-only {
  display: none;
}

@media (max-width: 575px) {
  .mobile-only {
    display: block;
  }
}
settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 94vw;
  height: 63.6vh;
  background: #fff;
  z-index: 1057;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
settings-modal menu.sidebar {
  width: 220px;
  border-right: 1px solid #c8c8c8;
  padding: 1rem;
  margin: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 10px 0 0 10px;
  z-index: 2;
}
settings-modal menu.sidebar label {
  color: #555;
  display: block;
  font-size: 14px;
  cursor: pointer;
  padding: 0.18em;
}
settings-modal menu.sidebar label input {
  display: none;
}
settings-modal menu.sidebar label span {
  padding: 0.65em 1em;
  border-radius: 2em;
  display: block;
  width: 100%;
  font-weight: normal;
}
settings-modal menu.sidebar label input:checked + span {
  background: #f1f1f1;
  color: #000;
  font-weight: bold;
  font-size: 15px;
}
settings-modal menu.sidebar label:active {
  transform: scale(0.98);
}
settings-modal menu.sidebar button.resync-league {
  margin-top: auto;
  background: #fff;
  border: 1px solid #043173;
  color: #043173;
  padding: 0.5rem;
  width: 100%;
  border-radius: 2em;
  transform-origin: center center;
  padding: 1rem;
  line-height: 1em;
  white-space: nowrap;
}
settings-modal menu.sidebar button.resync-league:active, settings-modal menu.sidebar button.resync-league.syncing {
  background: #043173;
  color: #fff;
  transform: scale(0.98);
}
settings-modal menu.sidebar button.resync-league.syncing {
  cursor: progress;
}
settings-modal menu.sidebar button.resync-league .fa-rotate {
  margin: 0 0 0 0.25em;
  vertical-align: top;
}
settings-modal main {
  padding: 0 1rem 0 2rem;
  margin: 0;
  flex-grow: 1;
  overflow: scroll;
  position: relative;
}
settings-modal settings-notification {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  position: fixed;
  align-items: center;
  bottom: -4em;
  left: 50%;
  transform: translate3d(-50%, 0, 0) scale(0.5);
  will-change: transform;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  color: #000000;
  border-radius: 10px;
  padding: 0.75em 1.25em;
  font-size: 16px;
  border: 1px solid #c8c8c8;
  z-index: 1057;
  line-height: 1em;
  pointer-events: none;
  transition: 300ms transform cubic-bezier(0.64, 0.57, 0.67, 1.1);
}
settings-modal settings-notification.show {
  transform: translate3d(-50%, -6em, 0) scale(1);
}
settings-modal settings-notification:before {
  content: "";
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  display: block;
  margin: 0;
  border-radius: 100%;
  background-color: #c8c8c8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}
settings-modal settings-notification.ok:before {
  background-color: #77b743;
  background-image: url("/img/icons/checkbox-green-circle.svg");
}
settings-modal settings-notification.fail:before {
  background-color: #a41c1f;
  background-image: url("/img/icons/x-red-circle.svg");
}

settings-modal header,
league-setup header {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  position: sticky;
  top: 0;
  padding: 1.2rem 3rem 0.6rem 0;
  border-bottom: 1px solid #c8c8c8;
  background: #ffffff;
  z-index: 10;
}
settings-modal header .headings,
league-setup header .headings {
  padding: 0;
}
settings-modal header .headings h1,
league-setup header .headings h1 {
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2em;
}
settings-modal header .headings .subheading,
league-setup header .headings .subheading {
  color: #666;
  font-size: 20px;
  margin: 0;
}
settings-modal header [data-action=close],
league-setup header [data-action=close] {
  padding: 1em 0;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
}
settings-modal header [data-action=close]:active,
league-setup header [data-action=close]:active {
  transform: scale(0.9);
}
settings-modal header [data-action=close] svg,
league-setup header [data-action=close] svg {
  display: block;
}
settings-modal .settings,
league-setup .settings {
  margin-top: 1rem;
}
settings-modal .settings .toggles,
league-setup .settings .toggles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 0.3rem;
  padding: 0.35em 0;
}

.tags {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tags span {
  background: #f1f1f1;
  padding: 0.25em 1em;
  border-radius: 2em;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.tags .edit {
  background: white;
  border: 1px solid #043173;
  color: #043173;
  font-weight: 600;
  font-size: 16px;
  border-radius: 2em;
  padding: 0.5rem 1rem;
  transform-origin: center center;
  line-height: 1em;
  cursor: pointer;
  white-space: nowrap;
}
.tags .edit i {
  vertical-align: baseline;
  margin: 0 0 0 0.5em;
}
.tags .edit:active {
  transform: scale(0.98);
  background: #043173;
  color: #fff;
}
.tags .edit.active {
  background: #043173;
  color: #fff;
}

@media (max-width: 575px) {
  settings-modal {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform: none;
    border: none;
    flex-direction: column-reverse;
  }
  settings-modal menu.sidebar {
    width: 100%;
    background: #f9f9f9;
    border-top: 1px solid #c8c8c8;
    border-radius: 0;
    /* Have the mini notifications peek out from under the bottom ”Re-sync League“ button */
    z-index: 1058;
  }
  settings-modal menu.sidebar label {
    display: none;
  }
  settings-modal menu.sidebar button.resync-league {
    font-weight: 600;
  }
  settings-modal main {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  settings-modal settings-notification {
    transform: translate3d(-50%, -5em, 0) scale(0.5);
  }
  settings-modal settings-notification.show {
    transform: translate3d(-50%, -11em, 0) scale(1);
  }
  settings-modal header,
  league-setup header {
    background: #f9f9f9;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem 0;
  }
  settings-modal header [data-action=close],
  league-setup header [data-action=close] {
    position: fixed;
    top: 0;
    right: 1rem;
  }
  settings-modal header select,
  league-setup header select {
    margin: 0 0 1.25rem;
  }
  settings-modal .tags .edit,
  league-setup .tags .edit {
    display: none;
  }
  settings-modal .settings,
  league-setup .settings {
    padding: 0 2rem;
    flex: 1;
  }
  settings-modal .settings .toggles,
  league-setup .settings .toggles {
    flex-direction: column;
    gap: 1rem;
  }
  settings-modal .settings .toggles .switch,
  league-setup .settings .toggles .switch {
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
    border-bottom: 1px solid #c8c8c8;
    padding-bottom: 1rem;
  }
}
settings-modal:has(input[name=settings-page][value=Scoring]:checked) main:after, settings-modal:has(input[name=settings-page][value=Roster]:checked) main:after, settings-modal:has(button[data-action="edit league"].active) main:after {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  pointer-events: none;
}

settings-modal,
league-setup {
  /* Mobile */
  /* Mobile */
}
settings-modal radio-buttons,
league-setup radio-buttons {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #c8c8c8;
  margin: 1rem 0 1rem;
}
settings-modal radio-buttons label,
league-setup radio-buttons label {
  cursor: pointer;
  font-size: 20px;
}
settings-modal radio-buttons label span,
league-setup radio-buttons label span {
  padding: 0.5em 0.8em;
  display: block;
  line-height: 1.2em;
  font-weight: 100;
  color: #000000;
  white-space: nowrap;
}
settings-modal radio-buttons label input,
league-setup radio-buttons label input {
  display: none;
}
settings-modal radio-buttons label input:checked + span,
league-setup radio-buttons label input:checked + span {
  color: #3d74c7;
  font-weight: 600;
}
settings-modal radio-buttons label:nth-child(1) span,
league-setup radio-buttons label:nth-child(1) span {
  padding-left: 0;
}
@media (max-width: 575px) {
  settings-modal radio-buttons,
  league-setup radio-buttons {
    width: 100vw;
    margin-left: -2rem;
    overflow: scroll;
    border-bottom: none;
    margin-bottom: 0;
  }
  settings-modal radio-buttons label:first-child,
  league-setup radio-buttons label:first-child {
    padding-left: 2rem;
  }
  settings-modal radio-buttons label:last-child,
  league-setup radio-buttons label:last-child {
    padding-right: 2rem;
  }
}
settings-modal sortable-list ul,
league-setup sortable-list ul {
  font-weight: 600;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: line;
  columns: 2;
  column-gap: 2em;
  column-fill: auto;
  height: 45vh;
}
settings-modal sortable-list ul li,
league-setup sortable-list ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  line-height: 1em;
  margin: 0 0 0 -1em;
  padding: 0 1em 0 0;
  break-inside: avoid;
  transition: background-color 600ms ease-out;
  background: #ffffff;
}
settings-modal sortable-list ul li .drag,
league-setup sortable-list ul li .drag {
  background: url("/img/icons/drag-handle.svg") center center no-repeat;
  background-size: 16px;
  width: 2.4em;
  height: 2.4em;
  cursor: grab;
}
settings-modal sortable-list ul li .drag:active,
league-setup sortable-list ul li .drag:active {
  cursor: grabbing;
}
settings-modal sortable-list ul li label,
league-setup sortable-list ul li label {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  font-size: 15px;
}
settings-modal sortable-list ul li label:before,
league-setup sortable-list ul li label:before {
  counter-increment: line;
  content: counter(line) ". ";
  min-width: 1.75em;
  display: inline-block;
  order: 1;
}
settings-modal sortable-list ul li label input:not([type=checkbox]),
league-setup sortable-list ul li label input:not([type=checkbox]) {
  border: none;
  border-radius: 2px;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  color: inherit;
  background: none;
  line-height: 1em;
  order: 2;
}
settings-modal sortable-list ul li label button,
league-setup sortable-list ul li label button {
  margin: 0 0 0 0.75em;
  width: 2.55em;
  height: 2.55em;
  border: none;
  background-color: #c8c8c8;
  mask-size: 16px;
  order: 3;
}
settings-modal sortable-list ul li label button:active,
league-setup sortable-list ul li label button:active {
  transform: scale(0.9);
  filter: brightness(80%);
}
settings-modal sortable-list ul li label.editing input,
league-setup sortable-list ul li label.editing input {
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #c8c8c8;
  padding: 6px 8px;
  color: #000;
}
settings-modal sortable-list ul li label.editing button,
league-setup sortable-list ul li label.editing button {
  background-color: #3d74c9;
}
settings-modal sortable-list ul li.dragging,
league-setup sortable-list ul li.dragging {
  background: #f1f1f1;
}
settings-modal sortable-list ul li.dragging:active,
league-setup sortable-list ul li.dragging:active {
  opacity: 0.98;
  background: #eaeaea;
  cursor: grabbing;
}
settings-modal sortable-list ul li.user-owned,
league-setup sortable-list ul li.user-owned {
  color: #3d74c7;
}
settings-modal sortable-list ul li.user-owned label,
league-setup sortable-list ul li.user-owned label {
  color: inherit;
}
settings-modal sortable-list ul li.user-owned label:after,
league-setup sortable-list ul li.user-owned label:after {
  content: "";
  min-width: 16px;
  min-height: 16px;
  vertical-align: middle;
  margin: 0 0.3em 0 0;
  display: inline-block;
  mask-image: url(/img/icons/circle-star.svg);
  background-color: #3d74c7;
  background-position: center center;
  background-repeat: no-repeat;
  order: 1;
}
settings-modal sortable-list ul li.dropped,
league-setup sortable-list ul li.dropped {
  background-color: #ffffff;
}
@media (max-width: 575px) {
  settings-modal sortable-list ul,
  league-setup sortable-list ul {
    columns: 1;
    height: auto;
  }
  settings-modal sortable-list ul li,
  league-setup sortable-list ul li {
    padding: 0 0.5em 0 0;
  }
}
settings-modal .switch,
league-setup .switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #687087;
  font-weight: 100;
  font-size: 18px;
  line-height: 1em;
  white-space: nowrap;
  gap: 0.75em;
}
settings-modal .switch input,
league-setup .switch input {
  display: none;
}
settings-modal .switch input:checked + span,
league-setup .switch input:checked + span {
  background: #043173;
}
settings-modal .switch input:checked + span::before,
league-setup .switch input:checked + span::before {
  transform: translate3d(1.4em, -50%, 0);
}
settings-modal .switch span,
league-setup .switch span {
  min-width: 3em;
  height: 1.75em;
  background: #999999;
  border-radius: 1.75em;
  position: relative;
  transition: background 0.15s;
  will-change: transform;
}
settings-modal .switch span:before,
league-setup .switch span:before {
  content: "";
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  top: 50%;
  left: 0;
  background: #fff;
  border-radius: 100%;
  transition: transform 0.15s;
  will-change: transform;
  transform: translate3d(0.2em, -50%, 0);
}
settings-modal .switch:has(:disabled),
league-setup .switch:has(:disabled) {
  cursor: not-allowed;
  color: #c8c8c8;
}
settings-modal .switch:has(:disabled) span,
league-setup .switch:has(:disabled) span {
  background-color: #f9f9f9;
  outline: 1px solid #c8c8c8;
}
settings-modal .switch:has(:disabled) span:before,
league-setup .switch:has(:disabled) span:before {
  outline: 1px solid #c8c8c8;
}
settings-modal .flashing,
league-setup .flashing {
  animation: flashing 200ms linear 2;
}
@keyframes flashing {
  50% {
    opacity: 0.25;
  }
}
settings-modal spinner,
league-setup spinner {
  display: inline-flex;
  flex-direction: row;
  background: #f1f1f1;
  border-radius: 2em;
}
settings-modal spinner button,
league-setup spinner button {
  padding: 0.5556em;
  border: none;
  background: transparent;
}
settings-modal spinner button:after,
league-setup spinner button:after {
  content: "";
  border-radius: 100%;
  width: 1.1115em;
  height: 1.1115em;
  text-align: center;
  background: #fff;
  border: 1px solid #c8c8c8;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
}
settings-modal spinner button[data-action=decrease]:after,
league-setup spinner button[data-action=decrease]:after {
  background: #fff url('data:image/svg+xml,%3Csvg viewBox="0 0 8 8" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="m8 4c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1s.4-1 1-1h6c.6 0 1 .4 1 1z" fill="%23c8c8c8"/%3E%3C/svg%3E') center center no-repeat;
  background-size: 8px;
}
settings-modal spinner button[data-action=increase]:after,
league-setup spinner button[data-action=increase]:after {
  background: #fff url('data:image/svg+xml,%3Csvg viewBox="0 0 8 8" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23c8c8c8"%3E%3Cpath d="m4 8c-.6 0-1-.4-1-1v-6c0-.6.4-1 1-1s1 .4 1 1v6c0 .6-.4 1-1 1z"/%3E%3Cpath d="m0 4c0-.6.4-1 1-1h6c.6 0 1 .4 1 1s-.4 1-1 1h-6c-.6 0-1-.4-1-1z"/%3E%3C/g%3E%3C/svg%3E') center center no-repeat;
  background-size: 8px;
}
settings-modal spinner button:active:after,
league-setup spinner button:active:after {
  background-color: #efefef;
  transform: scale(0.95);
  transform-origin: center center;
}
settings-modal spinner input[type=number],
league-setup spinner input[type=number] {
  pointer-events: none;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  width: 20px;
  font-size: 16px;
}
settings-modal spinner input[type=number]::-webkit-inner-spin-button,
settings-modal spinner input[type=number]::-webkit-outer-spin-button,
league-setup spinner input[type=number]::-webkit-inner-spin-button,
league-setup spinner input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

settings-page {
  display: none;
  padding: 0 0 4rem;
  min-height: 400px;
}
settings-page.active {
  display: block;
}
settings-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0.7em 0 0;
}

[data-settings-page=Edit] .inside {
  max-width: 1000px;
}
[data-settings-page=Edit] .flash-message-list {
  margin: 0 0 1.25em;
}
html.manual-mode [data-settings-page=Edit] .flash-message-list {
  display: none !important;
}

[data-settings-page=Edit] .flash-message-list .btn-auto:active {
  transform: scale(0.98);
}
[data-settings-page=Edit] .manual-mode-warning {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 1.25em;
}
[data-settings-page=Edit] form {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
[data-settings-page=Edit] form h3 {
  margin: 0 0 0.7em;
}
[data-settings-page=Edit] form .toggles {
  margin: 0 0 1.25rem;
}
[data-settings-page=Edit] form .grouped {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
}
[data-settings-page=Edit] form .grouped > * {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 100;
  color: #687087;
}
[data-settings-page=Edit] form .grouped > * i {
  color: #043173;
}
[data-settings-page=Edit] form .grouped > * input,
[data-settings-page=Edit] form .grouped > * select.ds-select {
  margin: 0.5em 0 0 0;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  color: #000000;
  font-size: 16px;
  background-color: #ffffff;
}
[data-settings-page=Edit] form .grouped > * input:disabled,
[data-settings-page=Edit] form .grouped > * select.ds-select:disabled {
  color: #c8c8c8;
  background-color: #f9f9f9;
  cursor: not-allowed;
}
[data-settings-page=Edit] form .grouped > *:only-child {
  flex: 0 0 calc(50% - 1.25rem);
}
[data-settings-page=Edit] form .grouped individual-budgets {
  display: flex;
  flex-direction: column;
}
[data-settings-page=Edit] form .grouped individual-budgets label {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #c8c8c8;
  border-bottom: none;
  padding: 0;
}
[data-settings-page=Edit] form .grouped individual-budgets label span {
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[data-settings-page=Edit] form .grouped individual-budgets label input {
  margin: 0;
  width: 90px;
  min-width: 90px;
  border-bottom: 0;
  border-radius: 0;
  padding-right: 0;
}
[data-settings-page=Edit] form .grouped individual-budgets label:first-child {
  padding-top: 0.5rem;
}
[data-settings-page=Edit] form .grouped individual-budgets label:first-child input {
  border-radius: 2px 2px 0 0;
}
[data-settings-page=Edit] form .grouped individual-budgets label:last-child input {
  border-bottom: 1px solid #c8c8c8;
  border-radius: 0 0 2px 2px;
}
[data-settings-page=Edit] form .grouped individual-budgets label:has(input:focus) span {
  color: #999;
  font-weight: 600;
}
[data-settings-page=Edit] form .grouped [data-toggleable] .grouped {
  margin: 0 0 2.25rem;
}
@media (max-width: 575px) {
  [data-settings-page=Edit] .flash-message-list .icon-container {
    display: none;
  }
  [data-settings-page=Edit] .flash-message-list .flash-message {
    flex-direction: column;
  }
  [data-settings-page=Edit] form {
    gap: 1.25em;
  }
  [data-settings-page=Edit] form .grouped {
    gap: 1.25em;
    flex-direction: column;
  }
  [data-settings-page=Edit] form .grouped label {
    width: 100%;
  }
}

[data-settings-page=Roster] {
  /* Advanced positions and position limits are disabled by default */
  /* Mobile */
}
[data-settings-page=Roster] .inside {
  max-width: 840px;
}
[data-settings-page=Roster] .toggles [data-action="add keepers"] {
  background: #ffffff;
  border: 1px solid #1c3b6f;
  color: #1c3b6f;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.25rem 1rem;
  transform-origin: center center;
  padding: 0.5rem 1rem;
  line-height: 1em;
}
[data-settings-page=Roster] .toggles [data-action="add keepers"]:active {
  transform: scale(0.98);
  background: #1c3b6f;
  color: #ffffff;
}
[data-settings-page=Roster] .positions {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 0;
  margin: 0;
  display: block;
  columns: 2;
  column-gap: 0;
}
[data-settings-page=Roster] .positions .position {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 18px;
  break-inside: avoid;
  width: 100%;
  padding: 0.525rem 0;
  color: #687087;
}
[data-settings-page=Roster] .positions .position .pill {
  display: inline-block;
  width: 48px;
  min-width: 48px;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  border-radius: 2em;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[data-settings-page=Roster] .positions .position .flex-qwrt,
[data-settings-page=Roster] .positions .position .flex-rwt,
[data-settings-page=Roster] .positions .position .flex-rw,
[data-settings-page=Roster] .positions .position .flex-wt {
  padding: 0;
}
[data-settings-page=Roster] .positions .position .flex-qwrt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
[data-settings-page=Roster] .positions .position .flex-qwrt span {
  width: 50%;
  height: 14px;
  line-height: 14px;
}
[data-settings-page=Roster] .positions .position .flex-qwrt span:nth-child(1) {
  line-height: 16px;
  text-indent: 3px;
}
[data-settings-page=Roster] .positions .position .flex-qwrt span:nth-child(2) {
  line-height: 16px;
  text-indent: -3px;
}
[data-settings-page=Roster] .positions .position .flex-qwrt span:nth-child(3) {
  text-indent: 3px;
}
[data-settings-page=Roster] .positions .position .flex-qwrt span:nth-child(4) {
  text-indent: -3px;
}
[data-settings-page=Roster] .positions .position .flex-rwt {
  display: flex;
  flex-direction: row;
}
[data-settings-page=Roster] .positions .position .flex-rwt span {
  width: 100%;
}
[data-settings-page=Roster] .positions .position .flex-rwt span:nth-child(1) {
  text-indent: 2px;
}
[data-settings-page=Roster] .positions .position .flex-rwt span:nth-child(3) {
  text-indent: -2px;
}
[data-settings-page=Roster] .positions .position .flex-rw {
  display: flex;
  flex-direction: row;
}
[data-settings-page=Roster] .positions .position .flex-rw span {
  width: 100%;
}
[data-settings-page=Roster] .positions .position .flex-rw span:nth-child(1) {
  text-indent: 3px;
}
[data-settings-page=Roster] .positions .position .flex-rw span:nth-child(2) {
  text-indent: -3px;
}
[data-settings-page=Roster] .positions .position .flex-wt {
  display: flex;
  flex-direction: row;
}
[data-settings-page=Roster] .positions .position .flex-wt span {
  width: 100%;
}
[data-settings-page=Roster] .positions .position .flex-wt span:nth-child(1) {
  text-indent: 3px;
}
[data-settings-page=Roster] .positions .position .flex-wt span:nth-child(2) {
  text-indent: -3px;
}
[data-settings-page=Roster] [data-roster-toggles="Advanced Positions"],
[data-settings-page=Roster] [data-roster-toggles="Position Limits"] {
  display: none;
}
@media (max-width: 575px) {
  [data-settings-page=Roster] .positions {
    columns: 1;
  }
  [data-settings-page=Roster] .positions .position {
    flex-direction: row-reverse;
    border-bottom: 1px solid #c8c8c8;
  }
  [data-settings-page=Roster] .positions .position .pill {
    order: 1;
  }
  [data-settings-page=Roster] .positions .position spinner {
    margin: 0 0 0 auto;
  }
}

[data-settings-page=DraftOrder] .inside {
  max-width: 840px;
}

[data-settings-page=Grid] p {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  max-width: 1000px;
  transform: translate3d(-50%, -50%, 0);
  font-weight: 600;
  font-size: 20px;
  color: #c8c8c8;
}

[data-settings-page=Scoring] {
  /* Mobile */
}
[data-settings-page=Scoring] .inside {
  max-width: 1000px;
}
[data-settings-page=Scoring] .toggles [data-action="add keepers"] {
  background: #ffffff;
  border: 1px solid #1c3b6f;
  color: #1c3b6f;
  font-weight: 600;
  border-radius: 2em;
  padding: 0.25rem 1rem;
  transform-origin: center center;
  padding: 0.5rem 1rem;
  line-height: 1em;
  visibility: hidden;
}
[data-settings-page=Scoring] .toggles [data-action="add keepers"]:active {
  transform: scale(0.98);
  background: #1c3b6f;
  color: #ffffff;
}
[data-settings-page=Scoring] scoring-page {
  max-width: 840px;
  display: none;
  columns: 2;
  column-gap: 2.5em;
  column-fill: auto;
  height: 35vh;
}
[data-settings-page=Scoring] scoring-page.active {
  display: block;
}
[data-settings-page=Scoring] scoring-page label {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  break-inside: avoid;
  padding: 0.375em 0;
  align-items: center;
  font-size: 18px;
  color: #687087;
  max-width: 400px;
  /* Advanced scoring is disabled by default */
}
[data-settings-page=Scoring] scoring-page label[data-scoring-toggles="Advanced Scoring"] {
  display: none;
}
[data-settings-page=Scoring] scoring-page label div {
  position: relative;
  width: 100px;
  /* Most rules should default to Points */
  /* Override yardage rules with data-addon="yds" */
  /* Remove native number stepper from scoring fields */
}
[data-settings-page=Scoring] scoring-page label div:after {
  content: "pts";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 2.1em;
  pointer-events: none;
  color: #999;
  font-weight: 400;
  font-size: 16px;
}
[data-settings-page=Scoring] scoring-page label div[data-addon]:after {
  content: attr(data-addon);
}
[data-settings-page=Scoring] scoring-page label div input {
  padding: 5px 2.1em 5px 12px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  font-size: 16px;
}
[data-settings-page=Scoring] scoring-page label div input::-webkit-outer-spin-button, [data-settings-page=Scoring] scoring-page label div input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
[data-settings-page=Scoring] scoring-page label div input[type=number] {
  -moz-appearance: textfield;
}
[data-settings-page=Scoring]:has(input[name="scoring-toggles[]"][value="Advanced Scoring"]:checked) scoring-page {
  height: auto;
  column-fill: balance;
}
@media (max-width: 575px) {
  [data-settings-page=Scoring] .toggles [data-action="add keepers"] {
    display: none;
  }
  [data-settings-page=Scoring] scoring-page {
    columns: 1;
    height: auto;
    border-top: 1px solid #c8c8c8;
    padding-top: 1rem;
  }
  [data-settings-page=Scoring] scoring-page label {
    max-width: 100%;
  }
}

settings-modal [data-toggleable],
league-setup [data-toggleable] {
  display: none;
}
settings-modal:has(input[name="roster-toggles[]"][value="Advanced Positions"]:checked) [data-settings-page=Roster] [data-roster-toggles="Advanced Positions"],
league-setup:has(input[name="roster-toggles[]"][value="Advanced Positions"]:checked) [data-settings-page=Roster] [data-roster-toggles="Advanced Positions"] {
  display: block;
}
settings-modal:has(input[name="roster-toggles[]"][value="Position Limits"]:checked) [data-settings-page=Roster] [data-roster-toggles="Position Limits"],
league-setup:has(input[name="roster-toggles[]"][value="Position Limits"]:checked) [data-settings-page=Roster] [data-roster-toggles="Position Limits"] {
  display: block;
}
settings-modal:has(select[name=draft_type_id] option[value="3"]:checked) [data-toggleable="Auction Settings"],
league-setup:has(select[name=draft_type_id] option[value="3"]:checked) [data-toggleable="Auction Settings"] {
  display: block;
}
settings-modal:has(select[name=league_type] option[value=keeper]:checked) [data-toggleable="Keeper Settings"],
league-setup:has(select[name=league_type] option[value=keeper]:checked) [data-toggleable="Keeper Settings"] {
  display: block;
}
settings-modal [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped > label:first-of-type,
league-setup [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped > label:first-of-type {
  display: block;
}
settings-modal [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped individual-budgets,
league-setup [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped individual-budgets {
  display: none;
}
settings-modal:has(input[name="edit-toggles[]"][value="Individual Team Budgets"]:checked) [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped individual-budgets,
league-setup:has(input[name="edit-toggles[]"][value="Individual Team Budgets"]:checked) [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped individual-budgets {
  display: flex;
}
settings-modal:has(input[name="edit-toggles[]"][value="Individual Team Budgets"]:checked) [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped > label:first-of-type,
league-setup:has(input[name="edit-toggles[]"][value="Individual Team Budgets"]:checked) [data-settings-page=Edit] [data-toggleable="Auction Settings"] .grouped > label:first-of-type {
  display: none;
}

league-setup {
  max-width: 1440px;
  margin: 2.5rem auto;
  display: flex;
  flex-direction: row;
}
league-setup header {
  margin: 1rem 0 0;
}

aside.sidebar {
  max-width: 400px;
  min-width: 0;
  flex: 1;
  border-right: 1px solid #c8c8c8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2.4rem 2rem 0 1rem;
}
aside.sidebar .welcome h1 {
  font-size: 40px;
  letter-spacing: -0.5px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.2em;
  color: #043173;
}
aside.sidebar .welcome p {
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.45em;
  color: #043173;
}
aside.sidebar footer {
  padding: 2.25rem 0;
  position: sticky;
  bottom: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
aside.sidebar footer h6 {
  font-weight: 600;
  margin: 0;
}
aside.sidebar footer p {
  font-size: 14px;
  max-width: 340px;
  margin: 0 0 1em;
}
aside.sidebar footer button {
  background: #f78439;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  flex-direction: row;
  gap: 0.4em;
  align-items: center;
}

main {
  flex: 1;
  min-height: 100vh;
  padding: 2rem;
  padding: 2.4rem 1rem 0 4rem;
}
main setup-page {
  max-width: 820px;
  display: none;
}
main setup-page.active {
  display: block;
}
main setup-page h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.2em;
  color: #043173;
}
main setup-page h2 img {
  margin: 0 0.1em 0 0;
}
main setup-page h3 {
  font-size: 20px;
  letter-spacing: -0.3px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.2em;
  color: #043173;
}
main setup-page p {
  font-size: 20px;
  letter-spacing: -0.15px;
}
main setup-page .stacked-choices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin: 2rem 0 0;
}
main setup-page .stacked-choices a, main setup-page .stacked-choices label {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  border: 1px solid #c8c8c8;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  color: inherit;
  cursor: pointer;
}
main setup-page .stacked-choices a input, main setup-page .stacked-choices label input {
  display: none;
}
main setup-page .stacked-choices a div, main setup-page .stacked-choices label div {
  padding: 0.75rem 0;
}
main setup-page .stacked-choices a em, main setup-page .stacked-choices label em {
  font-weight: 600;
  color: #ffffff;
  background: #3d74c7;
  border-radius: 4px;
  font-size: 12px;
  font-style: normal;
  padding: 0.25em 0.725em;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 0.5em;
}
main setup-page .stacked-choices a em img, main setup-page .stacked-choices label em img {
  display: block;
}
main setup-page .stacked-choices a h3, main setup-page .stacked-choices label h3 {
  font-size: 24px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.3px;
  margin: 0 0 0.1em;
}
main setup-page .stacked-choices a p:last-of-type, main setup-page .stacked-choices label p:last-of-type {
  font-size: 16px;
  margin: 0;
}
main setup-page .stacked-choices a .disclosure, main setup-page .stacked-choices label .disclosure {
  margin: 0 0 0 auto;
}
main setup-page .stacked-choices a:active, main setup-page .stacked-choices label:active {
  filter: brightness(90%);
}
main setup-page .stacked-choices a:has(input:checked), main setup-page .stacked-choices label:has(input:checked) {
  background: #043173;
  color: #ffffff;
  border-color: #043173;
}
main setup-page .stacked-choices a:has(input:checked) img, main setup-page .stacked-choices label:has(input:checked) img {
  filter: brightness(0) invert(1);
}
main setup-page .stacked-choices a:has(input:checked) h3, main setup-page .stacked-choices label:has(input:checked) h3 {
  color: #FFFFFF;
}
main setup-page .stacked-choices a:has(input:checked) em, main setup-page .stacked-choices label:has(input:checked) em {
  background: #5d78a0;
}
main setup-page .commissioner-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
  max-width: 930px;
}
main setup-page .commissioner-grid label {
  flex: 1;
  min-width: calc(25% - 1rem);
  border: 1px solid #c8c8c8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 2rem 0 1rem;
  font-size: 14px;
  cursor: pointer;
  background: #ffffff;
}
main setup-page .commissioner-grid label:active {
  filter: brightness(90%);
}
main setup-page .commissioner-grid label:has(input:checked) {
  background: #043173;
  color: #ffffff;
  border-color: #043173;
}
main setup-page .commissioner-grid label:has(input:checked) img {
  filter: brightness(0) invert(1);
}
main setup-page .commissioner-grid label input {
  display: none;
}
main setup-page .commissioner-grid label img {
  margin: 0 0 1rem;
}
main setup-page .commissioner-grid label:last-of-type {
  padding: 0;
  font-size: 24px;
  font-weight: 600;
}
main setup-page controls {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 1rem;
  border-top: 1px solid #c8c8c8;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
}
main setup-page controls button.btn {
  font-size: 16px;
  font-weight: 600;
  padding: 0.9em 1.5em;
}
main setup-page controls button.btn[data-action=continue] {
  background: #043173;
  color: #ffffff;
}
main setup-page controls button.btn.link {
  background: transparent;
  color: #043173;
  padding: 0.9em 0;
}
main setup-page controls button.btn:active {
  transform: scale(0.98);
}

.flash-message-list {
  margin: 0 0 1.25em;
}
html.manual-mode .flash-message-list {
  display: none !important;
}

.flash-message-list .btn-auto:active {
  transform: scale(0.98);
}

.manual-mode-warning {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 1.25em;
}

form {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin: 2rem 0 0;
}
form h3 {
  margin: 0 0 0.7em;
}
form .toggles {
  margin: 0 0 1.25rem;
}
form .grouped {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
}
form .grouped > * {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 100;
  color: #687087;
}
form .grouped > * i {
  color: #043173;
}
form .grouped > * input,
form .grouped > * select.ds-select {
  margin: 0.5em 0 0 0;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  color: #000000;
  font-size: 16px;
  background-color: #ffffff;
}
form .grouped > * input:disabled,
form .grouped > * select.ds-select:disabled {
  color: #c8c8c8;
  background-color: #f9f9f9;
  cursor: not-allowed;
}
form .grouped > *:only-child {
  flex: 0 0 calc(50% - 1.25rem);
}
form .grouped individual-budgets {
  display: flex;
  flex-direction: column;
}
form .grouped individual-budgets label {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #c8c8c8;
  border-bottom: none;
  padding: 0;
}
form .grouped individual-budgets label span {
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
form .grouped individual-budgets label input {
  margin: 0;
  width: 90px;
  min-width: 90px;
  border-bottom: 0;
  border-radius: 0;
  padding-right: 0;
}
form .grouped individual-budgets label:first-child {
  padding-top: 0.5rem;
}
form .grouped individual-budgets label:first-child input {
  border-radius: 2px 2px 0 0;
}
form .grouped individual-budgets label:last-child input {
  border-bottom: 1px solid #c8c8c8;
  border-radius: 0 0 2px 2px;
}
form .grouped individual-budgets label:has(input:focus) span {
  color: #999;
  font-weight: 600;
}
form .grouped [data-toggleable] .grouped {
  margin: 0 0 2.25rem;
}

@media (max-width: 575px) {
  .flash-message-list .icon-container {
    display: none;
  }
  .flash-message-list .flash-message {
    flex-direction: column;
  }
  form {
    gap: 1.25em;
  }
  form .grouped {
    gap: 1.25em;
    flex-direction: column;
  }
  form .grouped label {
    width: 100%;
  }
}
progress-dots {
  font-size: 20px;
  margin: 2.4rem 0 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  max-width: 960px;
}
progress-dots .percentage {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0 auto;
  display: block;
}

progress-bar {
  height: 16px;
  width: 100%;
  background: #D9D9D9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 960px;
  margin: 2.4rem 0 0;
}
progress-bar .animated-gradient {
  background: repeating-linear-gradient(to right, #043173 0%, #4163AE 50%, #043173 100%);
  height: 16px;
  width: 0%;
  background-size: 200% auto;
  background-position: 0 100%;
  animation: gradient 1s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  border-radius: 10px;
  transform: translate3d(0, 0, 0);
  transition: 500ms width ease-in-out;
}

@keyframes gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.dots {
  display: block;
  position: relative;
  width: 64.5px;
  height: 16px;
  margin: 0;
}

.dots div {
  position: absolute;
  top: 0; /* (80 – 16)/2 */
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #A41C1F;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  will-change: transform;
}

.dots div:nth-child(1) {
  left: 0;
  animation: grow 0.6s infinite;
}

.dots div:nth-child(2) {
  left: 0;
  animation: shift 0.6s infinite;
}

.dots div:nth-child(3) {
  left: 24px;
  animation: shift 0.6s infinite;
}

.dots div:nth-child(4) {
  left: 48px;
  animation: shrink 0.6s infinite;
}

@keyframes grow {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes shrink {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
progress-tips {
  max-width: 960px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #c8c8c8;
  margin: 2.25rem 0 0;
  padding: 1.1rem 0 0;
}
progress-tips strong {
  font-size: 22px;
  font-weight: 600;
}
progress-tips span {
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

leagues {
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 960px;
}
leagues label {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  border-radius: 10px;
  border: 1px solid #C8C8C8;
  background: #F9F9F9;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}
leagues label:active {
  filter: brightness(90%);
}
leagues label:has(input:checked) {
  background: #043173;
  color: #ffffff;
  border-color: #043173;
}
leagues label:has(input:checked) img {
  filter: brightness(0) invert(1);
}
leagues label input {
  display: none;
}
leagues label div strong {
  margin: 0 0 0.15em;
  line-height: 1.1em;
  font-size: 20px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.1px;
}
leagues label div span {
  font-size: 16px;
  display: block;
  margin: 0 0 0.15em;
}
leagues label .tags {
  margin: 0 0 0 auto;
  gap: 1rem;
}
leagues label:has(input:checked) .tags span {
  background: rgba(241, 241, 241, 0.2509803922);
}

league-setup .tags {
  gap: 1.15rem;
}
league-setup [data-settings-page=Roster] .positions .position {
  padding: 0.35rem 0;
}
league-setup .welcome {
  display: block;
}
league-setup menu {
  display: none;
}
league-setup menu label:active {
  transform: scale(0.98);
  transform-origin: left;
}

league-setup:has(input[name=sync-or-manual][value=Sync]:checked) menu label:not([data-sync]) {
  display: none;
}

league-setup:has(input[name=sync-or-manual][value=Manual]:checked) menu label:not([data-manual]) {
  display: none;
}

league-setup:has(input[name=sync-or-manual][value=Sync]:checked) menu [data-sync]:before {
  content: counter(sync);
}

league-setup:has(input[name=sync-or-manual][value=Manual]:checked) menu [data-manual]:before {
  content: counter(manual);
}

league-setup menu label.nested:before {
  content: "";
  font-size: 0;
}

league-setup:not(:has(input[name=settings-page][value="Sync or Manual?"]:checked)) .welcome {
  display: none;
}
league-setup:not(:has(input[name=settings-page][value="Sync or Manual?"]:checked)) menu {
  display: flex;
}

league-setup a.btn {
  cursor: pointer;
  background: #043173;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 0.9em 1.5em;
  border-radius: 50rem;
  border: 0;
}
league-setup a.btn:hover {
  color: #FFFFFF;
}
league-setup a.btn:active {
  transform: scale(0.98);
}

menu label:has(input[name=settings-page][value="Check Your League Settings"]:checked) + label {
  color: #043173;
  font-weight: bold;
}

menu:has(input[name=settings-page][value=Roster]:checked) .parent,
menu:has(input[name=settings-page][value=Scoring]:checked) .parent,
menu:has(input[name=settings-page][value=DraftOrder]:checked) .parent {
  color: #043173;
  font-weight: bold;
}
menu:has(input[name=settings-page][value=Roster]:checked) .parent:before,
menu:has(input[name=settings-page][value=Scoring]:checked) .parent:before,
menu:has(input[name=settings-page][value=DraftOrder]:checked) .parent:before {
  border-color: #043173;
  color: #043173;
}

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