#leagueBody,
#leagueDirectoryPage {
    --hero-size: 24pt;
    --hero-opacity: 0.7;

    min-height: 100vh;
    /*
    background: var(--c-overlay-dark);
    background-color: dodgerblue;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 25%, transparent 10%, transparent 50%);
    -webkit-background-size: 10px 10px;
    */
}

/* Shared dashboard and league directory page hero. */
.pageHero {
    --page-hero-a-color: var(--c-league-theme, var(--c1));
    background-color: var(--c2);

    min-height: 116px;
    height: var(--db-hero-height);
    width: 100%;

    text-align: center;
    direction: ltr;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 28px;
}

#leagueDirectoryPage .pageHero {
    --page-hero-a-color: var(--c1);
}

#leagueDashboardMain {
    --db-sidebar-elbow-border-width: 4px;
    --db-sidebar-elbow-border-color: var(--c-league-theme, var(--c1));

    position: fixed;
    top: var(--db-edge-gap);
    right: var(--db-edge-gap);
    bottom: var(--db-edge-gap);
    left: calc(
        var(--db-edge-gap) + var(--sb-width) +
            var(--db-sidebar-gap)
    );
    overflow: auto;
    background: var(--db-sidebar-elbow-color);
    border-top-left-radius: var(--r-frame);
    border-bottom-left-radius: var(--r-frame);
}

#leagueDashboardMain > .wrapper,
#leagueDashboardMain > .leagueDirectoryPageBody,
#leagueDashboardMain > .nflHubPageBody,
#leagueDashboardMain > #profileShell {
    min-height: calc(100dvh - (var(--db-edge-gap) * 2) - var(--db-hero-height));
    background: var(--c-page-background);
    border-top-left-radius: var(--db-sidebar-elbow-radius);
    border-bottom-left-radius: var(--db-sidebar-elbow-radius);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

#leagueDashboardMain > .wrapper::before,
#leagueDashboardMain > .leagueDirectoryPageBody::before,
#leagueDashboardMain > .nflHubPageBody::before,
#leagueDashboardMain > #profileShell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: var(--db-sidebar-elbow-border-width) solid var(--db-sidebar-elbow-border-color);
    border-bottom-left-radius: var(--db-sidebar-elbow-radius);
    border-left: var(--db-sidebar-elbow-border-width) solid var(--db-sidebar-elbow-border-color);
    border-top: var(--db-sidebar-elbow-border-width) solid var(--db-sidebar-elbow-border-color);
    border-top-left-radius: var(--db-sidebar-elbow-radius);
    box-sizing: border-box;
    pointer-events: none;
    z-index: 2;
}

#leagueDashboardMain > .wrapper {
    display: flow-root;
}

.pageHeroLeagueIdentity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 28px;
}

.circleLogo.pageHeroLeagueLogo {
    --size: 7rem;
    --color: var(--c-league-theme, var(--c1));
    position: relative;
    flex: 0 0 var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    border: 5px solid var(--c-league-theme, var(--c1));
    border-radius: 50%;
    color: var(--color) !important;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
}

.circleLogo.pageHeroLeagueLogo--hasImage {
    background: var(--c-league-theme, var(--c1));
}

.pageHeroLeagueLogo #leagueLogoImage,
.pageHeroLeagueLogo #leagueLogoIcon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
    transform-origin: center center;
}

.pageHeroLeagueLogo #leagueLogoImage {
    object-fit: contain;
}

.pageHeroLeagueLogo #leagueLogoIcon {
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    line-height: 1;
}

.logoThemeModalBackdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    font-family: var(--ff1);
}

.logoThemeModalBackdrop.is-visible,
.logoThemeModalBackdrop.is-modal-closing {
    display: flex;
}

.logoThemeModalContent {
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: 12px;
    background: var(--sc1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    padding: 1.75rem;
    color: #222;
    font-weight: 400;
}

.logoThemeModalHeader,
.logoThemeModalActions,
.logoImageFileRow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logoThemeModalHeader,
.logoThemeModalActions {
    justify-content: space-between;
}

.logoThemeModalHeader {
    margin-bottom: 1.25rem;
}

.logoThemeModalTitle {
    margin: 0;
    font-family: var(--ff1);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.2;
}

.logoThemeModalClose {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0;
}

.logoPreviewWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.logoImagePreviewControls {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logoImagePreviewTopRow {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 7rem;
    position: relative;
    width: 100%;
}

.logoPreviewColumn {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logoPreviewFrame {
    position: relative;
    width: 14rem;
    height: 14rem;
    border: 10px solid var(--c-league-theme, var(--c1));
    border-radius: 50%;
    background: var(--c-league-theme, var(--c1));
    box-sizing: border-box;
    overflow: hidden;
}

.logoPreviewImage,
.logoPreviewIcon {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: contain;
    transform-origin: center center;
}

.logoPreviewIcon {
    align-items: center;
    justify-content: center;
    font-size: 7rem;
}

.logoCropArea {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.logoCropControls {
    align-items: center;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.logoCropControls--disabled {
    opacity: 0.45;
}

.logoCropCircle {    
    background: #f5f5f5;
    border: 10px solid var(--c-league-theme, var(--c1));
    border-radius: 50%;
    box-sizing: border-box;
    cursor: grab;
    height: 14rem;
    width: 14rem;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.logoCropCircle--disabled {
    cursor: default;
}

.logoCropImage {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: none;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform;
}

.logoCropZoomRow,
.logoCropResetRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

.logoCropResetRow {
    margin-top: -0.35rem;
}

.logoThemeControlsRow {
    display: block;
    margin: 0;
}

.logoThemeColorSection {
    margin-bottom: 1.25rem;
}

.logoModalSectionLabel {
    margin-bottom: 0.6rem;
    color: #666;
    font-family: var(--ff1);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logoSwatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 512px;
    max-width: 100%;
    margin: 0 auto;
}

.logo-swatch {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: var(--logo-swatch-color);
    box-sizing: border-box;
    color: var(--logo-swatch-icon-color);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.logo-swatch > i {
    font-size: 30px;
    line-height: 1;
    transform: rotate(-26deg);
}

.logo-swatch:hover,
.logo-swatch:focus-visible,
.logo-swatch--selected {
    border-color: var(--c2);
    box-shadow: 0 0 0 2px rgba(23, 33, 54, 0.14);
    outline: 0;
}

.logoColorSliders,
.logoTextColorSection {
    display: grid;
    gap: 8px;
}

.logoTextColorSection--hidden,
.logoColorSliders--hidden {
    display: none;
}

.logoImageSection {
    flex: 0 0 auto;
    margin-bottom: 0;
    position: absolute;
    left: calc(50% + 3.5rem + 18px);
    right: auto;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.logoColorSlider,
.logoCropZoomSlider {
    width: 100%;
}

.logoFileInput {
    display: none;
}

.logoImageFileRow {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.logoImageIconRow {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: center;
    min-height: 0;
}

.logoThemeModalButton,
.logoCropZoomButton {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #f5f5f5;
    color: #222;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    padding: 10px 16px;
}

.logoCropZoomButton {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-color: #b8b8b8;
    border-radius: 50%;
    color: #444;
    font-size: 1.1rem;
    padding: 0;
}

.logoCropResetButton {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 0.78rem;
    padding: 0;
    text-decoration: underline;
}

.logoThemeModalButton--primary {
    border-color: #0b3760;
    background: var(--c1);
    color: #fff;
}

.logoImageIconButton {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 4px;
}

.logoThemeModalError {
    display: none;
    margin-bottom: 0.75rem;
    color: #b00020;
    font-family: var(--ff1);
    font-size: 0.82rem;
    font-weight: 400;
}

#profileBody .pageHeroLeagueLogo {
    background: var(--c2);
}

#profileBody .pageHeroLeagueLogo--hasImage {
    background: var(--c-league-theme, var(--c1));
}

#profileBody .pageHeroLeagueLogo #leagueLogoImage {
    object-fit: cover;
}

#profileBody .pageHeroLeagueLogo #leagueLogoIcon {
    font-family: var(--ff1);
    font-size: 4rem;
    font-weight: 800;
    transform: translate(2px, 1px);
}

.pageHeroLogoEditOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 33, 54, 0.68);
    color: #fff;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transition:
        opacity 150ms ease,
        background-color 150ms ease;
    z-index: 2;
}

.pageHeroLeagueLogo:hover .pageHeroLogoEditOverlay,
.pageHeroLeagueLogo:focus-within .pageHeroLogoEditOverlay,
.pageHeroLogoEditOverlay:focus-visible {
    opacity: 1;
}

.pageHeroLogoEditOverlay:hover,
.pageHeroLogoEditOverlay:focus-visible {
    background: rgba(23, 33, 54, 0.78);
    outline: none;
}

.pageHeroLogoEditOverlay > span {
    display: block;
    line-height: 1;
}

.pageHeroLeft {
    align-items: center;
    display: flex;
    justify-content: center;
    left: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.btn-hero {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    box-sizing: border-box;
    /*color: rgba(,.4);*/
    color: #1B8700;
    cursor: pointer;
    flex-direction: column;
    display: inline-flex;
    gap: 8px;
    height: 80px;
    width: 80px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: transform 120ms ease-in;
}

.btn-hero.is-unread {
    color: var(--c-red);
}

.btn-hero:disabled,
.btn-hero:disabled:hover,
.btn-hero:disabled:focus-visible {
    cursor: default;
    opacity: 0.4;
}

.btn-hero:hover,
.btn-hero:focus-visible {
    /*color: var(--sb-quick-action-hover-border, rgba(255, 255, 255, .72));*/
    filter: none;
}

.btn-hero[data-has-note="1"]:not(.is-unread),
.btn-hero[data-has-note="1"]:not(.is-unread):hover,
.btn-hero[data-has-note="1"]:not(.is-unread):focus-visible {
    color: #9c8005;
}

.btn-hero.is-unread:hover,
.btn-hero.is-unread:focus-visible {
    color: var(--c-red);
}

.btn-hero i {
    display: inline-block;
    pointer-events: none;
    font-size: 32pt;
    line-height: 1;
    transition: transform 120ms ease-in;
    transform-origin: 50% 50%;
}

.btn-hero:hover i,
.btn-hero:focus-visible i {
    transform: translateY(-2px);
}

.btn-hero:disabled:hover i,
.btn-hero:disabled:focus-visible i {
    transform: none;
}

.btn-hero.is-unread i {
    position: relative;
    isolation: isolate;
}

.btn-hero.is-unread i:after {
    content: "\f0e0";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    font: var(--fa-font-solid);
    line-height: 1;
    color: rgba(255, 42, 42, 0.56);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: messageBoardIconPulse 1.25s ease-out infinite;
}

.pageHeroLeagueNoteLabel {
    display: block;
    font-family: var(--ff1);
    font-size: 9pt;
    font-weight: 400;
    color: var(--sb-quick-action-hover-border, rgba(255, 255, 255, 0.72));
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 120ms ease-in;
}

.btn-hero:hover .pageHeroLeagueNoteLabel,
.btn-hero:focus-visible .pageHeroLeagueNoteLabel {
    color: #fff;
}

#leagueDashboardMain
    .pageHero.pageHeroLeague--identityLeftAligned
    .pageHeroLeagueIdentity {
    justify-content: flex-start;
    padding-left: var(--league-hero-identity-left, 28px);
}

#leagueDashboardMain .pageHero {
    overflow-x: hidden;
    overflow-x: clip;
}

#leagueDashboardMain
    .pageHero.pageHeroLeague--identityLeftAligned
    .pageHeroLeagueName {
    text-align: left;
}

.pageHeroLeagueName {
    display: block;
    min-width: 0;
    margin: 0;
    color: var(--c-league-title-text, #fff);
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    padding: 4px 0 2px;
    text-align: center;
    -webkit-text-stroke: 0.03em var(--page-hero-a-color);
    /*
    --shadow-color: var(--page-hero-a-color);
    text-shadow:
      0.25px 0.25px 0 var(--shadow-color),
      0.5px 0.5px 0 var(--shadow-color),
      0.75px 0.75px 0 var(--shadow-color),
      1px 1px 0 var(--shadow-color),
      1.25px 1.25px 0 var(--shadow-color),
      1.5px 1.5px 0 var(--shadow-color),
      1.75px 1.75px 0 var(--shadow-color),
      2px 2px 0 var(--shadow-color),
      2.25px 2.25px 0 var(--shadow-color),
      2.5px 2.5px 0 var(--shadow-color),
      2.75px 2.75px 0 var(--shadow-color),
      3px 3px 0 var(--shadow-color),
      3.25px 3.25px 0 var(--shadow-color),
      3.5px 3.5px 0 var(--shadow-color),
      3.75px 3.75px 0 var(--shadow-color),
      4px 4px 0 var(--shadow-color),
      4.25px 4.25px 0 var(--shadow-color),
      4.5px 4.5px 0 var(--shadow-color),
      4.75px 4.75px 0 var(--shadow-color),
      5px 5px 0 var(--shadow-color);
      */
    white-space: nowrap;
    overflow: visible;
    clip-path: inset(0 -0.2em -0.35em 0);
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.tickerWrapper {
    display: none;
    background-color: var(--c2);
    width: 100%;
    text-align: center;
    line-height: 2rem;
    font-family: var(--ff1);
    font-size: var(--fs-sidebar);
    font-weight: bolder;
    color: white;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    height: 2rem;
}

#leagueBody .tickerWrapper,
#leagueDirectoryPage .tickerWrapper,
#profileBody .tickerWrapper {
    left: calc(
        var(--db-edge-gap) + var(--sb-width) +
            var(--db-sidebar-gap)
    );
    right: var(--db-edge-gap);
    border-bottom-left-radius: calc(
        var(--db-sidebar-elbow-radius) +
            var(--db-sidebar-elbow-border-width, 4px)
    );
    z-index: 1;
    width: auto;
}

#tickerQ {
    display: inline-block;
    text-align: center;
    font-weight: normal;
    font-size: var(--fs-small);
}

.ticker {
    display: none;
    height: 4rem;
    white-space: nowrap; /* display items in a line */
    padding-left: 100%;
    padding-right: 100%; /* offset items to begin */

    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}
.tickerItem {
    display: inline-block;
    padding: 0 2rem;
    color: white;
}

#tickerYes,
#tickerNo {
    cursor: pointer;
}

#scoreTickerContainer {
    position: relative;
}

#twExit {
    background-color: var(--c2);
    color: white;
    height: 12px;
    width: 12px;
    text-align: center;
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 7pt;
    font-family: var(--ff1);
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 25%;
}

.menuButtons {
    height: 120px;
    width: 120px;

    color: white;

    font-family: var(--ff1);
    font-size: var(--fs-sidebar);
    text-align: center;

    line-height: 120px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.menuButtons:hover {
    color: white;
    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;
    background-color: var(--c1);
}

#siteBrandLink {
    font-size: 600%;
    -webkit-text-stroke: 2px var(--c1);
    color: white;
    font-family: var(--ff1);
    font-weight: 900;
    text-shadow:
        5px 5px 0 var(--c1),
        1px 1px 0 var(--c1),
        2px 2px 0 var(--c1),
        3px 3px 0 var(--c1),
        4px 4px 0 var(--c1);
    cursor: pointer;
    padding: 10px 0 10px 0;

    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;*/
}

#picksSet {
    cursor: default;
    line-height: 28px;
}

#messageBoardIndicatorBox {
    font-family: var(--ff1);
    font-size: 8pt;
    font-weight: bold;
    color: white;
    opacity: 0.6;
    position: absolute;
    top: 6px;
    right: 12px;
    text-align: center;
    line-height: 13px;
}

.seenPost {
    display: none;
}

.newPost {
    display: block;
    animation: textAlert2 1.5s ease-in-out infinite;
}

#messageBoardTab {
    position: relative;
}

#leagueTabNavRow {
    width: 100%;
}

#infoBox2 {
    height: 78px;
    width: 250px;
    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    background-size: 6px 6px;

    background-color: var(--c2);
    border: 1px solid var(--c-border-dark);
    border-top: 1px solid var(--c-border-light);
    border-radius: var(--r1);
    display: block;

    overflow: hidden;
    color: white;
    font-family: var(--ff1);
    font-size: var(--fs-small);
}

#infoBox1 {
    height: 78px;
    width: 250px;
    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    background-size: 6px 6px;

    border: 1px solid var(--c-border-dark);
    border-top: 1px solid var(--c-border-light);
    border-radius: var(--r1);
    display: block;

    overflow: hidden;
    color: white;
    font-family: var(--ff1);
    font-size: var(--fs-small);
}

.infoBoxLeftHolder1 {
    float: left;
    height: 52px;
    width: 67px;
    padding-top: 3px;

    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;
    background-color: var(--c1);
}

.infoBoxLeftHolder2 {
    float: right;
    height: 52px;
    width: 182px;
    padding-top: 3px;
    overflow: hidden;

    background: rgba(15, 72, 128, 0.8);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;

    border-left: 1px solid var(--c-border-dark);
}

.infoBoxRightHolder1 {
    float: left;
    height: 78px;
    width: 159px;
    padding-top: 5px;
    text-align: center;

    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;
    background-color: var(--c2);
}

.infoBoxRightHolder2 {
    height: 78px;
    width: 90px;
    float: right;
    overflow: hidden;
    border-left: 1px solid var(--c-border-dark);
    padding-top: 4px;

    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;
    background-color: var(--c1);
}

.infoBoxRow1 {
    line-height: 24px;
    text-align: center;
    clear: left;
}

.infoBoxRow2 {
    line-height: 26px;
    text-align: center;
}

.infoBoxRow4 {
    line-height: 25px;
    text-align: center;
}

.infoBoxRow5 {
    height: 22px;
    width: 250px;
    background: rgba(255, 255, 255, 0.8);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;

    color: black;

    border-top: 1px solid var(--c-border-dark);

    line-height: 24px;
    text-align: justify;

    cursor: default;
    font-size: var(--fs-small);
    display: flex;
    justify-content: space-around;
}

.infoBoxRow6 {
    line-height: 25px;
    text-align: center;
}

.cent {
    position: relative;
}

#leagueTabNav {
    width: 80%;
    margin: 0 auto;
    position: relative;
    white-space: nowrap;
    /*    display: block;*/
    margin-top: 0px;
    margin-bottom: 20px;
    z-index: 2;
}

.leagueTabList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

#leagueButton {
    font-family: var(--ff1);
    text-align: center;
    color: white;
    padding: 8px;
    cursor: pointer;
    overflow: hidden;
    height: 36px;
    border: 1px solid var(--c-border-dark);
    border-top: 1px solid var(--c-border-light);
    border-radius: var(--r1);
    background: var(--c-overlay-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 10%,
        transparent 50%
    );
    -webkit-background-size: 6px 6px;

    width: 100%;
    background-color: var(--c1);
    position: relative;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

#leagueButton:hover {
    background-color: #4d0013;
}

#leagueButtonGhost {
    width: 95.5%;
    height: 34px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

#currentLeague {
    position: absolute;
    top: 1px;
    right: 30px;
    white-space: nowrap;
    font-size: var(--fs-sidebar);
}

.leagueChange {
    position: absolute;
    top: 8px;
    left: 55px;
    color: white;
    opacity: 0.5;
    font-size: var(--fs-sidebar);
    font-family: var(--ff1);
    line-height: 22px;
    white-space: nowrap;
    display: none;
}

.prevLeagueArrow {
    width: 50%;
    height: 35px;
    line-height: 29px;
    margin: 0 auto;
    opacity: 0.5;
    font-family: var(--ff1);
    font-size: 14pt;
}

.nextLeagueArrow {
    width: 50%;
    height: 35px;
    line-height: 32px;
    margin: 0 auto;
    opacity: 0.5;
    font-family: var(--ff1);
    transform: rotate(180deg);
    font-size: 14pt;
}

.prevLeagueNav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 35px;
    /*border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;*/
}

.nextLeagueNav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 35px;
    /*border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;*/
}

.header.selected .prevLeagueNav {
    display: inline-block;
}

.header.selected .nextLeagueNav {
    display: inline-block;
}

.header.selected .prevLeagueNav.prevLeagueArrow {
}

.header.selected .nextLeagueNav.nextLeagueArrow {
    opacity: 0.5;
}

.header.selected .prevLeagueNav:hover .prevLeagueArrow {
    opacity: 0.9;
    text-shadow: 0px 0px 10px white;
}

.header.selected .nextLeagueNav:hover .nextLeagueArrow {
    opacity: 0.9;
    text-shadow: 0px 0px 10px white;
}

#leagueBox {
    flex: 3;
    border: 3px solid black;
    background-color: var(--c1);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    transition: all 120ms linear;
}

#leagueBox::before,
#leagueBoxDisplay {
    transition: filter 120ms linear;
}

#leagueBox:hover::before,
#leagueBox:hover #leagueBoxDisplay{
    filter: brightness(.9);
}

#leagueSwitcherCaret {
    position: static;
    color: inherit;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 12px;
    font-size: 10px;
    line-height: 0.72;
    transform: none;
}

#leagueSwitcherCaret i {
    display: block;
    line-height: 0.72;
}

#leagueSettingsGear {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

.settingsGearSpinRev {
    animation: delaySpinRev 1000ms ease-out;
}

.settingsGearSpin {
    animation: delaySpin 1000ms ease-out;
}

.visCLass {
    display: block;
}

.hidClass {
    display: none;
}

.uber {
    width: 23.3%;
    display: flex;
    justify-content: center;
}

#leagueStatusBar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    height: 40px;
    width: 100%;
    font-family: var(--ff1);
    text-transform: uppercase;
    font-size: 18pt;
    /*background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.03) 25%, transparent 10%, transparent 50%);
    -webkit-background-size: 10px 10px;*/
    /*    background-position: 1.87%;*/
    background-color: var(--c1);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    /*    box-sizing: border-box;*/
    text-align: center;
    position: relative;
}

#currentWeekPanel {
    flex: 2;
    text-align: right;
    padding-right: 2rem;
    align-items: center;
}

.class {
}

.statusBarLabel {
    color: white;
}

#leagueStatsPanel {
    position: absolute;
    left: 300px;
}

.subBlock {
    margin-right: 10px;
}

#userStatusPanel {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-family: var(--ff1);
    font-size: 20pt;
    line-height: 20px;
    color: rgb(200, 200, 200);
    z-index: 5;
    display: flex;
    align-items: center;
    direction: ltr;
}

.inlineLogoutForm {
    display: inline;
    margin-left: 10px;
}

.logoutLinkButton {
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
    appearance: none;
    -webkit-appearance: none;
    color: white;
    cursor: pointer;
}

.grab {
    color: white;
}

#currentEntryPanel {
    position: absolute;
    right: 300px;
    white-space: nowrap;
}

#background.entrySettingsBackdrop {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

#background.entrySettingsBackdrop.is-visible {
    opacity: 0.5;
    z-index: 98;
    pointer-events: auto;
}

#entrySettingsModalWindow.entrySettingsModalWindow {
    /*    background: var(--c-overlay-dark);*/
    /*    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 25%, transparent 10%, transparent 50%);*/
    /*    -webkit-background-size: 6px 6px;*/
    background-color: gray;
    border: 1px solid black;
    border-top: 1px solid var(--c-border-light);
    border-radius: 14px;
    box-sizing: border-box;
    color: white;
    height: auto;
    width: 300px;
    max-height: 510px;
    opacity: 0;
    overflow-y: auto;
    padding: 1rem;
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
}

#entrySettingsModalWindow.entrySettingsModalWindow.is-visible {
    opacity: 1;
    pointer-events: auto;
    z-index: 99;
}

#leagueSettingsModalContent {
    height: 100%;
}

.settingsModalTabBar {
    display: flex;
    align-items: stretch;
    padding: 0;
    background: #1a3d5c;
}

.settingsModalHeaderTitle {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-family: var(--ff2);
    font-size: 16pt;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    padding: 20px 24px;
}

.settingsModalTabList {
    display: flex;
    align-items: flex-end;
}

.settingsModalTab {
    background: var(--c2);
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    flex: 0 1 auto;
    font-family: var(--ff1);
    font-size: 16pt;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    padding: 20px 24px;
    border-radius: var(--r3) var(--r3) 0 0;
}

.settingsModalTab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.settingsModalTab.is-active {
    background: var(--c2);
    color: #fff;
}

.settingsModalTab:not(.is-active) {
    background: #1a3d5c;
}

.settingsModalTab:focus {
    outline: none;
}

.settingsModalTab:focus-visible {
    box-shadow: inset 0 -3px 0 #9fd0ff;
}

.settingsModalHeaderActions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding: 0 16px 0 12px;
}

.settingsModalAlertFlash {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--ff1);
    font-size: 9pt;
    font-weight: 700;
    letter-spacing: 0.08em;
    max-width: 180px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    transform: translateX(8px);
    transition:
        opacity 120ms ease,
        transform 120ms ease;
    white-space: nowrap;
}

.settingsModalAlertFlash.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.settingsModalAlertFlash.is-error {
    color: #ffd1d1;
}

.settingsModalAlertButton {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-radius: var(--r-pill);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    height: 44px;
    justify-content: center;
    transition:
        color 80ms ease,
        background-color 80ms ease,
        opacity 80ms ease,
        transform 80ms ease;
    width: 44px;
}

.settingsModalAlertButton[data-alert-setting="all"] {
    color: red;
}

.settingsModalAlertButton[data-alert-setting="deadlines"] {
    color: gold;
}

.settingsModalAlertButton:hover {
    transform: scale(1.1);
}

.settingsModalAlertButton:active:not(:disabled) {
    transform: scale(0.97);
}

.settingsModalAlertButton:focus {
    outline: none;
}

.settingsModalAlertButton:focus-visible {
    box-shadow: 0 0 0 2px rgba(159, 208, 255, 0.8);
}

.settingsModalAlertButton.is-saving,
.settingsModalAlertButton:disabled {
    cursor: wait;
    opacity: 0.65;
}

.settingsModalClose {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 22pt;
    line-height: 1;
    padding: 0 16px;
    margin-left: auto;
}

.settingsModalClose:hover {
    color: #fff;
}

.settingsModalPanels {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.settingsModalPanel {
    display: none;
    flex: 1;
    min-height: 0;
}

.settingsModalPanel.is-active {
    display: block;
}

.settingsModalPanel.settingsModalPanel--entry {
    overflow: auto;
    padding: 28px;
}

.settingsModalPanel.settingsModalPanel--entry.is-active {
    display: flex;
    flex-direction: column;
}

.settingsModalPanel--entry .entrySettingsModalFormShell {
    max-width: 740px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.settingsModalPanel--league {
    overflow: hidden;
}

.settingsModalPanel--league.is-active {
    display: flex;
}

.leagueSettingsFrame {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    flex: 1;
}

.entrySettingsModalError {
    background-color: #fef2f2;
    border: 1px solid #e0a0a0;
    border-radius: var(--r3);
    color: #991b1b;
    font-size: var(--fs-small);
    margin-bottom: 16px;
    padding: 10px 12px;
}

.entrySettingsModalForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.entrySettingsModalField {
    display: grid;
    gap: 6px;
}

.entrySettingsModalLabel {
    color: #555;
    font-family: var(--ff1);
    font-size: var(--fs-small);
    font-weight: bold;
    text-transform: uppercase;
}

.entrySettingsModalInput,
.entrySettingsModalSelect {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: var(--r3);
    box-sizing: border-box;
    color: #333;
    font-family: var(--ff1);
    font-size: var(--fs-sidebar);
    padding: 10px 12px;
    width: 100%;
}

.entrySettingsModalRadioRow {
    display: flex;
    gap: 18px;
}

.entrySettingsModalRadioOption {
    align-items: center;
    color: #666;
    display: inline-flex;
    font-size: var(--fs-small);
    gap: 8px;
}

.entrySettingsModalRadioOption.is-active {
    color: #333;
}

.entrySettingsModalRadioRow .entrySettingsModalRadio[type="radio"] {
    -webkit-appearance: radio;
    appearance: auto;
    display: inline-block;
    height: auto;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    position: static;
    width: auto;
    accent-color: #1e90ff;
}

.entrySettingsModalRadioIndicator {
    display: none;
}

.entrySettingsModalRadioText {
    display: inline-block;
    font-family: var(--ff1);
}

.entrySettingsModalDivider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 16px 0 4px;
}

.entrySettingsModalNote {
    font-family: var(--ff1);
    font-size: 9pt;
    color: rgba(0, 0, 0, 0.55);
    margin: 0 0 12px;
}

.entrySettingsModalActions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: auto;
}

.entrySettingsModalButton {
    background-color: var(--c1);
    border: none;
    border-radius: var(--r3);
    color: #fff;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: var(--fs-small);
    font-weight: bold;
    padding: 10px 24px;
    text-transform: uppercase;
}

.entrySettingsModalButton:hover {
    background-color: #7a0020;
}

.entrySettingsModalButton:active {
    transform: scale(0.98);
}

.entrySettingsModalButton--secondary {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #555;
}

.entrySettingsModalButton--secondary:hover {
    background-color: #f5f5f5;
}

.block2 {
    position: relative;
    margin-left: 70px;
}

@keyframes delaySpin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    20% {
        transform: translateY(-50%) rotate(-45deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes delaySpinRev {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    20% {
        transform: translateY(-50%) rotate(45deg);
    }
    100% {
        transform: translateY(-50%) rotate(-360deg);
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: grey;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 160ms;
    transition: 160ms;
}

input:checked + .slider {
    background-color: var(--c-league-theme);
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.scoreTickerToggleGroup .slider {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.scoreTickerToggleGroup .slider:before {
    border-radius: 999px;
    box-sizing: border-box;
    box-shadow:
        inset 0 1px 0 #ffffff,
        inset 0 -1px 0 #8f979f,
        inset 0 2px 1px rgba(255, 255, 255, 0.72),
        inset 0 -2px 1px rgba(120, 128, 138, 0.18),
        0 1px 2px rgba(0, 0, 0, 0.35);
}

.scoreTickerToggleGroup input:checked + .slider {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.scoreTickerToggleGroup input:checked + .slider:before {
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.55),
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.scoreTickerToggleGroup .slider.round:before {
    bottom: 2px;
    border-radius: 50%;
    height: 13px;
    width: 13px;
}

.scoreTickerToggleGroup input:checked + .slider.round:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.scoreTickerToggleGroup {
    position: absolute;
    bottom: 8px;
    right: 20px;
    font-family: var(--ff1);
    font-size: var(--fs-small);
    color: white;
}

.scoreTickerToggleControl {
    display: inline;
    float: right;
    margin-left: 10px;
}

#leagueBody .landingModal,
#leagueBody #entrySettingsModalWindow.entrySettingsModalWindow {
    left: calc(var(--sb-width) + 30px);
    right: 10px;
    margin-right: auto;
    margin-left: auto;
    transform: translateY(-50%);
}

#leagueBody #landingPageOverlay {
    top: var(--db-edge-gap);
    right: var(--db-edge-gap);
    bottom: var(--db-edge-gap);
    left: calc(var(--sb-width) + var(--db-sidebar-gap));
    width: auto;
    height: auto;
    border-radius: 0;
    z-index: 98;
}

#leagueBody .sidebarSignInModal,
#leagueDirectoryPage .sidebarSignInModal {
    top: var(--db-edge-gap);
    right: var(--db-edge-gap);
    bottom: var(--db-edge-gap);
    left: calc(var(--sb-width) + var(--db-sidebar-gap));
    border-radius: 0;
    overflow: hidden;
}

#leagueBody .dashboardActionModal {
    z-index: 99;
}

.dashboardActionModalClose {
    background: transparent;
    border: 0;
    color: var(--c2);
    cursor: pointer;
    font-size: 18pt;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
}

.dashboardActionModalClose:hover {
    color: #d7e8f8;
}

#leagueBody #createLeagueModal.dashboardActionModal,
#leagueBody #leagueSettingsModalWindow.leagueSettingsModalWindow,
#leagueDirectoryPage #createLeagueModal.dashboardActionModal {
    background: var(--sc1);
    box-sizing: border-box;
    height: auto;
    max-height: calc(100vh - 100px);
    width: min(1240px, calc(100vw - var(--sb-width) - 88px));
    max-width: none;
    z-index: 99;
}

#leagueBody #createLeagueModal.dashboardActionModal .landingModalContent,
#leagueBody
    #leagueSettingsModalWindow.leagueSettingsModalWindow
    .landingModalContent,
#leagueDirectoryPage
    #createLeagueModal.dashboardActionModal
    .landingModalContent {
    background: var(--sc1);
    height: auto;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

#leagueBody #alertSettingsModalWindow.alertSettingsModalWindow {
    background: var(--c2);
    box-sizing: border-box;
    color: #1c2d3f;
    height: auto;
    max-height: calc(100vh - 100px);
    max-width: calc(
        100vw - var(--sb-width) - var(--db-sidebar-gap) -
            var(--db-edge-gap) - 32px
    );
    width: fit-content;
    z-index: 99;
}

.alertSettingsModalContent {
    border-radius: var(--r3);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px);
    max-width: 100%;
    overflow: hidden;
    width: max-content;
}

.alertSettingsModalHeader {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.alertSettingsForm {
    background: var(--sc1);
    display: flex;
    flex-direction: column;
    margin: 0;
    max-width: 100%;
    min-height: 0;
    overflow-y: auto;
    padding: 12px 24px 0;
    width: max-content;
}

.alertSettingsSection {
    border-top: 1px solid rgba(23, 33, 54, 0.16);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
}

.alertSettingsSection--headed {
    border-top: 1px solid rgba(23, 33, 54, 0.16);
    padding-top: 14px;
}

.alertSettingsSection:first-child {
    border-top: 0;
    padding-top: 4px;
}

.alertSettingsSectionGroup {
    border-top: 0;
    display: flex;
    flex-direction: column;
    padding: 4px 0 0;
}

.alertSettingsSectionGroup .alertSettingsSection {
    padding: 10px 0 14px;
}

.alertSettingsSectionGroup .alertSettingsSection:first-of-type {
    border-top: 0;
    padding-top: 8px;
}

.alertSettingsGroupHeader {
    color: #1c2d3f;
    font-family: var(--ff1);
    font-size: 11pt;
    font-weight: 900;
    line-height: 1;
}

.alertSettingsSectionHeader {
    color: #1c2d3f;
    font-family: var(--ff1);
    font-size: 11pt;
    font-weight: 900;
    line-height: 1;
}

.alertSettingsSectionLabel {
    color: #617184;
    font-family: var(--ff1);
    font-size: 8.5pt;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.alertSettingsSectionGroup .alertSettingsSectionLabel {
    margin-left: 0;
}

.alertSettingsOptionCluster {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.alertSettingsOptionMainRow {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: max-content max-content;
}

.alertSettingsSelectRow {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 18px max-content max-content;
}

.alertSettingsOption {
    align-items: center;
    color: #1c2d3f;
    cursor: pointer;
    display: grid;
    font-family: var(--ff1);
    font-size: 10.5pt;
    font-weight: 700;
    gap: 10px;
    grid-template-columns: 18px max-content;
    line-height: 1.2;
    min-height: 28px;
}

.alertSettingsOption input {
    accent-color: var(--c-league-theme, var(--c1));
    cursor: pointer;
    height: 16px;
    margin: 0;
    width: 16px;
}

.alertSettingsSectionCheckbox {
    accent-color: var(--c-league-theme, var(--c1));
    cursor: pointer;
    height: 16px;
    margin: 0;
    width: 16px;
}

.alertSettingsOption span {
    min-width: 0;
}

.alertSettingsMainSelect,
.alertSettingsScopeSelect,
.alertSettingsTimingSelect {
    background: transparent;
    border: 1px solid rgba(23, 33, 54, 0.28);
    border-radius: var(--r1);
    box-sizing: border-box;
    color: #1c2d3f;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 9.5pt;
    font-weight: 700;
    height: 28px;
    line-height: 1;
    min-width: 0;
    padding: 0 24px 0 8px;
    width: auto;
}

.alertSettingsModalFooter {
    display: flex;
    justify-content: flex-end;
    margin: 2px -24px 0;
    padding: 14px 24px 16px;
}

.alertSettingsDoneButton {
    appearance: none;
    -webkit-appearance: none;
    background: var(--c2);
    border: 1px solid var(--c2);
    border-radius: var(--r1);
    color: #fff;
    cursor: pointer;
    font-family: var(--ff1);
    font-size: 10pt;
    font-weight: 800;
    line-height: 1;
    min-height: 34px;
    padding: 0 18px;
}

.alertSettingsDoneButton:hover {
    background: #244761;
}

.alertSettingsDoneButton:focus {
    outline: none;
}

.alertSettingsDoneButton:focus-visible {
    box-shadow: 0 0 0 2px rgba(159, 208, 255, 0.85);
}

#leagueBody #background.entrySettingsBackdrop {
    top: var(--db-edge-gap);
    right: var(--db-edge-gap);
    bottom: var(--db-edge-gap);
    left: calc(var(--sb-width) + var(--db-sidebar-gap));
    width: auto;
    height: auto;
    border-radius: 0;
}

#leagueBody #leagueNotePanel.leagueNotePanel {
    --c-a1: #f1f3f9;
    --c-a2: #e6ebf4;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 0;
    box-sizing: border-box;
    display: none;
    font-family: var(--ff1);
    justify-content: center;
    margin: 0;
    padding: 24px;
    position: fixed;
    top: var(--db-edge-gap);
    right: var(--db-edge-gap);
    bottom: var(--db-edge-gap);
    left: calc(var(--sb-width, 0px) + var(--db-sidebar-gap));
    width: auto;
    z-index: 120;
}

#leagueBody #leagueNotePanel.leagueNotePanel.is-open {
    display: flex;
}

#leagueNotePanel .leagueNoteFeedback.is-visible {
    display: block !important;
}

#leagueNotePanel.is-history-detail-open .leagueNoteModal {
    display: none;
}

#leagueNotePanel .leagueNoteModal {
    display: flex;
    flex-direction: column;
    height: 480px;
    min-height: 480px;
    max-height: 480px;
    overflow: hidden;
}

#leagueNotePanel .leagueNoteModal > .mb-new-topic-modal-header,
#leagueNotePanel .leagueNoteHistoryDetailModal > .mb-new-topic-modal-header {
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteHistoryDetailModal {
    display: none;
    flex-direction: column;
    max-height: min(720px, calc(100vh - 68px));
    overflow: hidden;
    width: min(920px, 100%);
}

#leagueNotePanel.is-history-detail-open .leagueNoteHistoryDetailModal {
    display: flex;
}

#leagueNotePanel .leagueNoteEditorShell {
    align-items: stretch;
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: 0 minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
    transition: grid-template-columns 0.18s ease;
}

#leagueNotePanel .leagueNoteEditorMain {
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

#leagueNotePanel #leagueNoteForm {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

#leagueNotePanel #leagueNoteForm > .leagueNoteFeedback,
#leagueNotePanel #leagueNoteForm > .mb-form-group:not(.leagueNoteBodyField) {
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteBodyField {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

#leagueNotePanel .leagueNoteBodyField .pcf-lexical-editor {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

#leagueNotePanel .leagueNoteBodyField .pcf-lexical-toolbar {
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteBodyField .pcf-lexical-surface-wrap {
    display: flex;
    min-height: 0;
}

#leagueNotePanel .leagueNoteBodyField .pcf-lexical-surface {
    flex: 1 1 auto;
    min-height: 0;
     overflow-y: auto;
}

#leagueNotePanel .leagueNoteBodyField #leagueNoteBodyError,
#leagueNotePanel .leagueNoteModal .mb-compose-actions,
#leagueNotePanel .leagueNoteHistoryDetailActions {
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteHistorySidebar {
    border-right: 0 solid transparent;
    box-sizing: border-box;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    scrollbar-width: thin;
    transition:
        opacity 0.16s ease,
        padding-right 0.16s ease,
        margin-right 0.16s ease,
        border-color 0.16s ease;
}

#leagueNotePanel .leagueNoteEditorShell.is-history-open {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
}

#leagueNotePanel
    .leagueNoteEditorShell.is-history-open
    .leagueNoteHistorySidebar {
    opacity: 1;
    padding-right: 6px;
    pointer-events: auto;

}

#leagueNotePanel .leagueNoteHistoryHeader {
    color: var(--c2);
    font-family: var(--ff2);
    font-size: 12pt;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
}

#leagueNotePanel .leagueNoteHistoryList {
    max-height: min(330px, calc(100vh - 250px));
    overflow-y: auto;
    padding-right: 6px;
}

#leagueNotePanel .leagueNoteHistoryItem {
    background: transparent;
    border-bottom: 1px solid var(--c-a2);
    border-left: 0;
    border-right: 0;
    border-top: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-family: var(--ff1);
    margin: 0;
    padding: 12px;
    text-align: left;
    width: 100%;
}

#leagueNotePanel .leagueNoteHistoryItem:hover,
#leagueNotePanel .leagueNoteHistoryItem:focus-visible {
    background: var(--c-a1);
    border-radius: var(--r1);
    outline: none;
}

#leagueNotePanel .leagueNoteHistoryItem:first-child {
    padding-top: 0;
}

#leagueNotePanel .leagueNoteHistoryItemTitle {
    color: #1a1a1a;
    font-size: 10.5pt;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

#leagueNotePanel .leagueNoteHistoryItemMeta {
    color: #6a6f78;
    font-size: 8.5pt;
    line-height: 1.35;
    margin-bottom: 6px;
}

#leagueNotePanel .leagueNoteHistoryItemExcerpt {
    color: #333;
    display: -webkit-box;
    font-size: 9.5pt;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    overflow-wrap: anywhere;
}

#leagueNotePanel .leagueNoteHistoryEmpty {
    align-items: center;
    border: 1px dashed var(--c-a2);
    border-radius: var(--r2);
    color: #6a6f78;
    display: flex;
    font-size: 9.5pt;
    justify-content: center;
    min-height: 130px;
    padding: 12px;
    text-align: center;
}

#leagueNotePanel .leagueNoteHistoryButton[aria-expanded="true"] {
    background: var(--c-a2);
    color: var(--c2);
}

#leagueNotePanel .leagueNoteHistoryDetailContent {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

#leagueNotePanel .leagueNoteHistoryDetailTitle {
    color: #1a1a1a;
    font-family: var(--ff1);
    font-size: 17pt;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 8px;
    overflow-wrap: anywhere;
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteHistoryDetailMeta {
    color: #6a6f78;
    font-family: var(--ff1);
    font-size: 9.5pt;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteHistoryDetailBody {
    background: var(--sc1);
    border: 1px solid var(--c-a2);
    border-radius: var(--r2);
    box-sizing: border-box;
    color: #333;
    font-family: var(--ff1);
    font-size: var(--fs-body);
    line-height: 1.65;
    flex: 1 1 auto;
    max-height: min(540px, calc(100vh - 250px));
    min-height: 0;
    overflow: auto;
    overflow-wrap: anywhere;
    padding: 18px 20px;
    text-align: left;
    width: 100%;
}

#leagueNotePanel .leagueNoteHistoryDetailBody > :first-child {
    margin-top: 0;
}

#leagueNotePanel .leagueNoteHistoryDetailBody > :last-child {
    margin-bottom: 0;
}

#leagueNotePanel .leagueNoteHistoryDetailBody p {
    margin: 0 0 0.75em;
}

#leagueNotePanel .leagueNoteHistoryDetailBody p:last-child {
    margin-bottom: 0;
}

#leagueNotePanel .leagueNoteHistoryDetailBody img {
    border-radius: var(--r2);
    display: block;
    height: auto;
    margin: 8px 0;
    max-width: 100%;
}

#leagueNotePanel .leagueNoteHistoryDetailActions {
    margin-top: 16px;
}

#leagueNotePanel .leagueNoteDisplay {
    background: var(--sc1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--r2);
    box-sizing: border-box;
    color: #222;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    font-family: var(--ff1);
    max-height: min(420px, calc(100vh - 210px));
    min-height: 200px;
    overflow: hidden;
    padding: 18px 20px;
    overflow-wrap: anywhere;
    text-align: left;
    width: 100%;
}

#leagueNotePanel .leagueNoteDisplay > :first-child {
    margin-top: 0;
}

#leagueNotePanel .leagueNoteDisplay > :last-child {
    margin-bottom: 0;
}

#leagueNotePanel .leagueNoteDisplayTitle {
    color: #1a1a1a;
    font-family: var(--ff1);
    font-size: 17pt;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 12px;
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteDisplayMeta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 14px;
    min-height: 24px;
    flex: 0 0 auto;
}

#leagueNotePanel .leagueNoteDisplayBody {
    color: #333;
    flex: 1 1 auto;
    font-size: var(--fs-body);
    line-height: 1.65;
    min-height: 0;
    overflow: auto;
    padding-right: 6px;
}

#leagueNotePanel .leagueNoteDisplayBody p {
    margin: 0 0 0.75em;
}

#leagueNotePanel .leagueNoteDisplayBody p:last-child {
    margin-bottom: 0;
}

#leagueNotePanel .leagueNoteDisplayBody img {
    border-radius: var(--r2);
    display: block;
    height: auto;
    margin: 8px 0;
    max-width: 100%;
}

#leagueNotePanel .leagueNoteDisplayEmpty {
    align-items: center;
    color: #555;
    display: flex;
    font-size: var(--fs-body);
    justify-content: center;
    min-height: 160px;
    text-align: center;
}

#leagueNotePanel .leagueNoteClearButton {
    margin-right: auto;
}

@media (max-width: 760px) {
    :root {
        --db-hero-height: 96px;
    }

    .pageHero {
        min-height: 96px;
        height: 96px;
    }

    .pageHeroLeagueIdentity {
        gap: 12px;
        padding: 0 12px;
    }

    .pageHeroLeagueLogo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-width: 2px;
    }

    .pageHeroLeagueName {
        font-size: 20pt;
    }

    .pageHeroLeagueControls {
        left: 12px;
        gap: 2px;
    }

    .pageHeroLeagueSettingsControl,
    .pageHeroLeagueAlertSettings {
        width: 72px;
        flex-basis: 72px;
    }

    .pageHeroLeagueSettingsControl #leagueSettingsGear {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .pageHeroLeagueAlertButton {
        width: 30px;
        height: 30px;
    }

    .pageHeroLeagueAlertButton .fa-bell {
        font-size: 14px;
    }

    .pageHeroLeagueSettingsLabel {
        width: 72px;
        font-size: 7.5pt;
    }

    .pageHeroLeagueAlertLabel {
        width: 72px;
        font-size: 7.5pt;
    }
}

.logoThemeModalBackdrop {
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 500;
}

#leagueBody #logo-modal {
    left: calc(var(--sb-width) + 20px) !important;
    right: 10px !important;
    top: 10px !important;
    bottom: 10px !important;
    border-radius: var(--r3);
}

.logoThemeModalContent {
    background: var(--sc1);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    column-gap: 36px;
    display: grid;
    grid-template-columns: max-content max-content;
    font-family: var(--ff1);
    font-weight: 400;
    margin: 1rem;
    max-width: calc(100vw - var(--sb-width) - 72px);
    padding: 30px;
    row-gap: 0;
    width: fit-content;
}

.logoThemeModalHeader {
    align-items: center;
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.logoThemeModalTitle {
    font-family: var(--ff2);
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
}

.logoThemeModalClose {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding: 0;
}

.logoPreviewWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.logoImagePreviewTopRow {
    align-items: center;
    column-gap: 36px;
    display: grid;
    grid-template-areas:
        "actions preview"
        ". slider";
    grid-template-columns: max-content max-content;
    grid-template-rows: auto auto;
    justify-content: center;
    row-gap: 0.75rem;
}

.logoPreviewColumn {
    align-self: center;
    grid-area: preview;
    justify-self: center;
    width: max-content;
}

.logoPreviewFrame {
    background: var(--sc1);
    height: 14rem;
    overflow: hidden;
    width: 14rem;
}

.logoPreviewImage {
    box-sizing: border-box;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    width: 100%;
}

.logoPreviewIcon {
    align-items: center;
    box-sizing: border-box;
    font-size: 7rem;
    height: 100%;
    justify-content: center;
    line-height: 1;
    transform-origin: center center;
    width: 100%;
}

.logoCropArea {
    display: none;
    margin-bottom: 0;
}

.logoCropImage {
    left: 50%;
    max-width: none;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform-origin: center center;
    will-change: transform;
}

.logoCropZoomRow {
    align-items: center;
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.logoCropControls .logoCropZoomRow {
    margin-top: 0;
}

.logoCropControls {
    grid-area: slider;
    justify-self: center;
    width: 100%;
}

.logoCropZoomButton {
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    background: #f5f5f5;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    color: #444;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    font-size: 1.1rem;
    height: 26px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 26px;
}

.logoCropZoomSlider {
    cursor: pointer;
    flex: 1;
}

.logoCropControls--disabled .logoCropZoomButton,
.logoCropControls--disabled .logoCropZoomSlider,
.logoCropControls--disabled .logoCropResetButton {
    cursor: default;
}

.logoCropResetRow {
    margin-top: 0.4rem;
    text-align: center;
}

.logoCropControls .logoCropResetRow {
    margin-top: 0;
}

.logoCropResetButton {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.78rem;
    padding: 0;
    text-decoration: underline;
}

.logoColorSliders {
    box-sizing: border-box;
    display: grid;
    gap: 14px;
    margin: 0 auto;
    width: 240px;
}

.logoThemeControlsRow {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 18px;
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 1.25rem;
    width: 100%;
}

.logoThemeColorSection {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
}

.logoTextColorSection {
    flex: 0 0 auto;
    margin-left: 0;
    width: 100%;
}

.logoTextColorSliderFrame {
    background: linear-gradient(90deg, #fff 0%, var(--c2) 100%);
    margin: 0 auto;
    width: 240px;
}

.logoModalSectionLabel {
    color: #666;
    font-family: var(--ff1);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.logoColorSliderFrame {
    border: 3px solid black;
    border-radius: var(--r-pill);
    box-sizing: border-box;
    display: block;
    height: 33px;
    position: relative;
}

.logoColorSliderFrame--hue {
    background: linear-gradient(
        90deg,
        #f00 0%,
        #ff0 16.66%,
        #0f0 33.33%,
        #0ff 50%,
        #00f 66.66%,
        #f0f 83.33%,
        #f00 100%
    );
}

.logoColorSliderFrame--saturation {
    background: linear-gradient(
        90deg,
        #fff,
        var(--logo-slider-full-color, hsl(var(--logo-slider-hue), 100%, 50%))
    );
}

.logoColorSliderFrame--lightness {
    background: linear-gradient(
        90deg,
        #000,
        var(
            --logo-slider-saturation-color,
            hsl(var(--logo-slider-hue), var(--logo-slider-saturation), 50%)
        )
    );
}

.logoColorSlider {
    --slider-track-height: 33px;
    height: 33px;
    width: calc(100% - 16px);
    left: 8px;
    top: -3px;
    
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    display: block;
    margin: 0;
    position: absolute;
}

.logoColorSlider::-webkit-slider-runnable-track {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    height: var(--slider-track-height);
}

.logoColorSlider::-moz-range-track {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    height: var(--slider-track-height);
}

.logoColorSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px black;
    height: 17px;
    margin-top: 8px;
    width: 17px;
}

.logoColorSlider::-moz-range-thumb {
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px black;
    height: 22px;
    width: 22px;
}

.logoImageSection {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-self: center;
    grid-area: actions;
    justify-self: center;
    margin-bottom: 0;
    position: static;
    text-align: left;
    transform: none;
    width: max-content;
}

.logoFileInput {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
}

.logoImageActionStack {
    align-items: stretch;
    display: grid;
    gap: 6px;
    width: max-content;
}

.logoImageActionHeader {
    color: #666;
    font-family: var(--ff1);
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

.logoImageActionHeader--spaced {
    margin-top: 12px;
}

.logoImageActionStack > .btn-sm {
    align-items: center;
    box-sizing: border-box;
    display: inline-flex;
    gap: 0.5rem;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

.logoImageActionStack > .btn-sm > i {
    flex: 0 0 1.1em;
    text-align: center;
}

.logoThemeModalError {
    color: #b00020;
    display: none;
    font-family: var(--ff1);
    font-size: 0.82rem;
    font-weight: 400;
    grid-column: 1 / -1;
    margin-bottom: 0.75rem;
}

.logoThemeModalActions {
    display: flex;
    gap: 0.75rem;
    grid-column: 1 / -1;
    justify-content: flex-end;
}

.logoThemeModalButton {
    border-radius: var(--r1);
    cursor: pointer;
    font-family: var(--ff1);
    font-weight: 400;
    padding: 10px 16px;
}

.logoThemeModalButton--secondary {
    background: #f5f5f5;
    border: 1px solid #bbb;
    color: #222;
}

.logoThemeModalButton--primary {
    background: var(--c2);
    border: 1px solid #0b3760;
    color: white;
}

@media (max-width: 1060px) {
    .logoThemeModalContent {
        grid-template-columns: 1fr;
        max-width: calc(100vw - 32px);
        width: fit-content;
    }

    .logoThemeControlsRow {
        grid-column: 1;
        grid-row: auto;
    }

    .logoImagePreviewTopRow {
        grid-template-areas:
            "actions"
            "preview"
            "slider";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .logoImageSection,
    .logoPreviewColumn,
    .logoCropControls {
        justify-self: center;
    }

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

    .logoCropControls {
        width: min(180px, 100%);
    }
}

.dashboardPanel {
    width: 100%;
    min-height: 530px;
    display: block;
    max-width: none;
    box-sizing: border-box;
    margin: calc(var(--db-hero-height) * .33) 0 100px;
    padding: 0 18px;
}

#dashboardNFLHub {
    width: 100%;
}

.dashboardNflHubContent {
    width: 90%;
    min-height: 530px;
    margin: 0 auto;
}

.dashboardNflHubPanel {
    display: none;
}

.dashboardNflHubPanel--active {
    display: block;
}

.dashboardNflHubEmpty {
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff1);
    font-size: var(--fs-sidebar);
    color: #444;
    background-color: var(--sc2);
    border: 1px solid black;
}

@media (max-width: 900px) {
    .dashboardPanel {
        width: 100%;
    }

    .dashboardNflHubContent {
        width: 100%;
    }
}
