/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

@import url("//fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&subset=latin,latin-ext");

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

.dg-tournament {
    margin-bottom: 3px;
}

.dg-tournament-head {
    background-color: var(--dg-primary);
    color: var(--dg-text-primary);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
}

.dg-tournament-head A {
    color: #fff;
    text-decoration: none;
}

.dg-tournament-head A:hover {
    color: var(--dg-secondary);
    text-decoration: none;
}

.dg-tournament-body.hidden {
    display: none;
}

/* .dg-tournament-row {
    display: grid;
    grid-template-columns: 15% 25% 10% 25% 5% 10%;
    grid-column-gap: 10px;
    align-items: center;
    font-size: 0.8rem;
    border-top: 1px solid #1234564f;
    font-weight: bold;
    padding: 10px 5px;
    justify-content: space-between;
    transition: all 0.5s ease;
} */

.dg-tournament-row {
    display: grid;
    grid-template-columns: 5% 70% 10%;
    grid-column-gap: 10px;
    align-items: center;
    font-size: 0.8rem;
    border-top: 1px solid #1234564f;
    font-weight: bold;
    padding: 10px 5px;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.dg-tournament-row-inner {
    /*     display: grid;
    grid-template-rows: auto auto;
    grid-column-gap: 10px;
    justify-content: space-between; */
    transition: all 0.5s ease;
}

.dg-tournament-row-inner .dg-tournament-home-row,
.dg-tournament-row-inner .dg-tournament-away-row {
    display: grid;
    grid-template-columns: 60% 10% 10% 10%;
    grid-column-gap: 10px;
}

/* .dg-tournament-row-inner .dg-tournament-home-row {
    margin-bottom: 5px;
} */

.dg-tournament-row:first-child {
    border-bottom: none;
}

.dg-tournament-home {
    text-align: right;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between;
}

.dg-tournament-score {
    text-align: center;
}

.dg-tournament-away {
    text-align: left;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: space-between;
}

.dg-tournament-options {
    text-align: right;
}

/* .dg-match-score {
    display: inline-block;
    background-color: var(--dg-primary);
    padding: 0.25em 0.4em;
    white-space: nowrap;
    border-radius: 0.25rem;
    color: var(--dg-text-primary);
    min-width: 45px;
    font-size: 11px;
    vertical-align: baseline;
    text-align: center;
} */
.dg-match-score {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}

/* .dg-match-score.dg-match-live {
    background-color: var(--dg-secondary);
} */

.dg-match-score.dg-match-live {
    background-color: var(--dg-secondary);
    color: #fff;
    padding: 0px 8px;
    border-radius: 5px;
    margin: 3px 0;
}

.dg-match-blink {
    animation: blinker .75s linear infinite;
    color: #dc3545 !important;
    font-weight: bold;
}


.dg-favourites-toggle.active I {
    color: orange;
    font-weight: bold;
}

.dg-tournament-collapse {
    width: 80px;
    text-align: right;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.dg-match-time,
.dg-tournament-options-items {
    white-space: nowrap;
}

.dg-widget {
    margin-bottom: 15px;
    min-height: 300px;
}

.dg-widget h2 {
    font-size: 1.3rem;
    font-weight: bold;
    border-left: 10px solid var(--dg-primary);
    padding-left: 10px;
}

.dg-breadcrumb {
    margin-bottom: 10px;
}

.dg-breadcrumb ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

.dg-breadcrumb ul li {
    padding: 0 10px 0 0;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.dg-breadcrumb ul li a {
    text-decoration: none;
    color: var(--dg-primary);
    transition: color 0.3s ease;
    font-weight: bold;
}

.dg-breadcrumb ul li a:hover {
    color: var(--dg-secondary);
    text-decoration: underline;
}


.dg-breadcrumb ul li:not(:last-child)::after {
    content: ">";
    font-weight: bold;
    color: #999;
    margin-left: 10px;
}

@media (max-width: 600px) {
    .dg-text-truncate {
        width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.8rem !important;
    }

    .dg-tabs UL LI {
        padding: 5px 5px !important;
        font-size: 0.75rem !important;
    }
}

.dg-match-pause {
    font-size: 0.7rem;
    color: #666;
}

.dg-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;

}

.dg-tabs UL {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dg-tabs UL LI {
    flex: 1 1 auto;
    padding: 5px 30px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.5s ease;
    margin-right: 10px;
}

.dg-tabs UL LI.active,
.dg-tabs UL LI.nav-link-matches-clicked,
.dg-tabs UL LI:hover {
    background-color: var(--dg-secondary);
    color: #fff;
}

.dg-tabs UL LI.active A,
.dg-tabs UL LI:hover A {
    color: var(--dg-text-primary);
    text-decoration: none;
}

.dg-time {
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}


.dg-flag IMG {
    height: 12px !important;
    padding-right: 10px;
}

.dg-table {
    width: 100%;
    border: 0;
    margin-bottom: 3px;
}

.dg-table TD {
    font-size: 0.8rem;
    border: none;
    border-bottom: 1px solid #1234564f;
    font-weight: bold;
}

.dg-table tr:last-child TD {
    border-bottom: none;
}

THEAD TH {
    background-color: var(--dg-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    padding: 10px;
}

THEAD TH::after {
    content: "\f106";
    /* Caret down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

THEAD TH.rotated::after {
    transform: rotate(180deg);
}

tbody {
    transition: all 0.3s ease;
}

tbody.hidden {
    display: none;
}

.dg-partial-score {
    font-size: 0.75rem;
    color: #777;
}

.dg-clickable {
    cursor: pointer;
}

.dg-cards-yellow,
.dg-cards-red {
    display: inline-block;
    margin-right: 5px;
    font-size: .55rem;
    border-radius: 3px;
    text-align: center;
    padding: 1px 3px;
    transform: rotate(5deg);
}

.dg-cards-yellow {
    background-color: #ffe455;
    border: 1px solid #c8aa06;
}

.dg-cards-red {
    background-color: #e42f2f;
    border: 1px solid #9d0e1c;
    color: #fff;
}

.dg-tabs-pills {
    display: flex;
    align-items: center;
    column-gap: 28px;
    margin: 20px 0;
}

.dg-tabs-pills .dg-pill {
    background-color: #E2E2E2;
    font-size: 0.90rem;
    padding: 5px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.dg-tabs-pills .dg-pill.nav-link-matches-clicked,
.dg-tabs-pills .dg-pill:hover {
    color: #fff;
    background-color: var(--dg-primary);
}

.dg-stats-toggle.active {
    color: var(--dg-secondary);
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--dg-primary);
    box-shadow: 0 0 0 0 #12345640;
    animation: l2 1.5s infinite linear;
    position: relative;
    text-align: center;
    margin: 50px auto;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 #12345640;
    animation: inherit;
    animation-delay: -0.5s;
}

.loader:after {
    animation-delay: -1s;
}

@keyframes l2 {
    100% {
        box-shadow: 0 0 0 40px #0000
    }
}


/* .match-stats .sr-wwrap {
    background-color: rgba(0, 0, 0, 0.52);
    padding: 10px;
}

.match-stats .sr-wwrap .sr-bb {
    padding: 10px;
}
 */
.sr-bb {
    font-family: "Roboto", "Noto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-align: left;
    background: #FFFFFF;
}

.sr-bb.sr-rtl {
    text-align: right;
}

.sr-bb .sr-bb {
    background: none;
}

.sr-bb .srt-base-1 {
    background-color: transparent;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-win {
    background-color: transparent;
    color: #00003c;
    border-color: #00003c;
}

.sr-bb .srt-base-1-draw {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 0, 0, 0.4);
}

.sr-bb .srt-base-1-lose {
    background-color: transparent;
    color: #ff0000;
    border-color: #ff0000;
}

.sr-bb .srt-base-1-is-active {
    background-color: rgba(106, 30, 30, 0.12);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-is-active-2 {
    background-color: #e6e6e6;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-is-hoverable:hover {
    background-color: rgba(106, 30, 30, 0.12);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-primary {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-home-1 {
    background-color: transparent;
    color: #00003c;
    border-color: #00003c;
}

.sr-bb .srt-base-1-away-1 {
    background-color: transparent;
    color: #ff0000;
    border-color: #ff0000;
}

.sr-bb .srt-base-1-home-2 {
    background-color: transparent;
    color: #00003c;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-away-2 {
    background-color: transparent;
    color: #ff0000;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-home-3 {
    background-color: transparent;
    color: #00003c;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-away-3 {
    background-color: transparent;
    color: #ff0000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-home-4 {
    background-color: transparent;
    color: #4d4d77;
    border-color: #4d4d77;
}

.sr-bb .srt-base-1-away-4 {
    background-color: transparent;
    color: #ff4d4d;
    border-color: #ff4d4d;
}

.sr-bb .srt-base-1-home-5 {
    background-color: transparent;
    color: #000027;
    border-color: #000027;
}

.sr-bb .srt-base-1-away-5 {
    background-color: transparent;
    color: #a60000;
    border-color: #a60000;
}

.sr-bb .srt-base-1-background {
    background-color: white;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-2 {
    background-color: white;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-2-is-active {
    background-color: #ede4e4;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-2-is-hoverable:hover {
    background-color: #ede4e4;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-3 {
    background-color: #ede4e4;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-3-is-active {
    background-color: #e6d9d9;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-3-is-hoverable:hover {
    background-color: #e6d9d9;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-3-background {
    background-color: white;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-4 {
    background-color: #f8f4f4;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-5-is-active {
    background-color: #d8c5c5;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-5-is-hoverable:hover {
    background-color: #d8c5c5;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-6 {
    background-color: transparent;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
}

.sr-bb .srt-primary-1 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-1-is-active {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-1-is-hoverable:hover {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-1-is-disabled {
    background-color: #884b4b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-2 {
    background-color: #4a1515;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-3 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-4 {
    background-color: #a67878;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-5 {
    background-color: #a67878;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-5-is-hoverable:hover {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-6 {
    background-color: #3d1111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-7 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-8 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-8-is-active-1 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-8-is-active-2 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: #FFFFFF;
}

.sr-bb .srt-primary-9 {
    background-color: #d2bcbc;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-primary-10 {
    background-color: #884b4b;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-11 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-primary-12 {
    background-color: var(--dg-primary);
    color: #ffffff;
    border-color: #ffffff;
}

.sr-bb .srt-primary-13 {
    background-color: #f8f4f4;
    color: #ffffff;
    border-color: rgba(106, 30, 30, 0.3);
}

.sr-bb .srt-base-1-primary-1 {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-primary-2 {
    background-color: transparent;
    color: #4a1515;
    border-color: #4a1515;
}

.sr-bb .srt-base-1-primary-3 {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-primary-4 {
    background-color: transparent;
    color: #a67878;
    border-color: #a67878;
}

.sr-bb .srt-base-1-primary-5 {
    background-color: transparent;
    color: #a67878;
    border-color: #a67878;
}

.sr-bb .srt-base-1-primary-6 {
    background-color: transparent;
    color: #3d1111;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-primary-7 {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-primary-8 {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-primary-9 {
    background-color: transparent;
    color: #d2bcbc;
    border-color: #d2bcbc;
}

.sr-bb .srt-base-1-primary-10 {
    background-color: transparent;
    color: #884b4b;
    border-color: #884b4b;
}

.sr-bb .srt-base-1-primary-11 {
    background-color: transparent;
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-primary-13 {
    background-color: #FFFFFF;
    color: #f8f4f4;
    border-color: rgba(106, 30, 30, 0.3);
}

.sr-bb .srt-base-1-neutral-1 {
    background-color: transparent;
    color: #dedede;
    border-color: #dedede;
}

.sr-bb .srt-base-1-neutral-2 {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.sr-bb .srt-base-1-neutral-3 {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-neutral-4 {
    background-color: transparent;
    color: #595959;
    border-color: #595959;
}

.sr-bb .srt-base-1-neutral-5 {
    background-color: transparent;
    color: #404040;
    border-color: #404040;
}

.sr-bb .srt-base-1-neutral-6 {
    background-color: transparent;
    color: #c2c2c2;
    border-color: #c2c2c2;
}

.sr-bb .srt-base-1-neutral-7 {
    background-color: transparent;
    color: #595959;
    border-color: #595959;
}

.sr-bb .srt-base-1-neutral-8 {
    background-color: transparent;
    color: #dedede;
    border-color: #dedede;
}

.sr-bb .srt-base-1-neutral-9 {
    background-color: transparent;
    color: #f0f0f0;
    border-color: #f0f0f0;
}

.sr-bb .srt-base-1-neutral-10 {
    background-color: transparent;
    color: #e0e0e0;
    border-color: #e0e0e0;
}

.sr-bb .srt-base-1-neutral-11 {
    background-color: transparent;
    color: #999999;
    border-color: #999999;
}

.sr-bb .srt-base-1-neutral-12 {
    background-color: transparent;
    color: #4d4d4d;
    border-color: #4d4d4d;
}

.sr-bb .srt-base-1-neutral-13 {
    background-color: transparent;
    color: #e6e6e6;
    border-color: #e6e6e6;
}

.sr-bb .srt-base-1-is-active-primary {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-home-1 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #00003c;
    border-color: #00003c;
}

.sr-bb .srt-base-1-is-active-away-1 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #ff0000;
    border-color: #ff0000;
}

.sr-bb .srt-base-1-is-active-home-2 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #00003c;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-is-active-away-2 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #ff0000;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-is-active-home-3 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #00003c;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-is-active-away-3 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #ff0000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-is-active-home-4 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #4d4d77;
    border-color: #4d4d77;
}

.sr-bb .srt-base-1-is-active-away-4 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #ff4d4d;
    border-color: #ff4d4d;
}

.sr-bb .srt-base-1-is-active-home-5 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #000027;
    border-color: #000027;
}

.sr-bb .srt-base-1-is-active-away-5 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #a60000;
    border-color: #a60000;
}

.sr-bb .srt-base-1-is-active-primary-1 {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-primary-2 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #4a1515;
    border-color: #4a1515;
}

.sr-bb .srt-base-1-is-active-primary-3 {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-primary-4 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #a67878;
    border-color: #a67878;
}

.sr-bb .srt-base-1-is-active-primary-5 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #a67878;
    border-color: #a67878;
}

.sr-bb .srt-base-1-is-active-primary-6 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #3d1111;
    border-color: #3d1111;
}

.sr-bb .srt-base-1-is-active-primary-7 {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-primary-8 {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-primary-9 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #d2bcbc;
    border-color: #d2bcbc;
}

.sr-bb .srt-base-1-is-active-primary-10 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #884b4b;
    border-color: #884b4b;
}

.sr-bb .srt-base-1-is-active-primary-11 {
    background-color: rgba(106, 30, 30, 0.12);
    color: var(--dg-primary);
    border-color: var(--dg-primary);
}

.sr-bb .srt-base-1-is-active-neutral-1 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #dedede;
    border-color: #dedede;
}

.sr-bb .srt-base-1-is-active-neutral-2 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.sr-bb .srt-base-1-is-active-neutral-3 {
    background-color: rgba(106, 30, 30, 0.12);
    color: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-base-1-is-active-neutral-4 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #595959;
    border-color: #595959;
}

.sr-bb .srt-base-1-is-active-neutral-5 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #404040;
    border-color: #404040;
}

.sr-bb .srt-base-1-is-active-neutral-6 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #c2c2c2;
    border-color: #c2c2c2;
}

.sr-bb .srt-base-1-is-active-neutral-7 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #595959;
    border-color: #595959;
}

.sr-bb .srt-base-1-is-active-neutral-8 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #dedede;
    border-color: #dedede;
}

.sr-bb .srt-base-1-is-active-neutral-9 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #f0f0f0;
    border-color: #f0f0f0;
}

.sr-bb .srt-base-1-is-active-neutral-10 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #e0e0e0;
    border-color: #e0e0e0;
}

.sr-bb .srt-base-1-is-active-neutral-11 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #999999;
    border-color: #999999;
}

.sr-bb .srt-base-1-is-active-neutral-12 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #4d4d4d;
    border-color: #4d4d4d;
}

.sr-bb .srt-base-1-is-active-neutral-13 {
    background-color: rgba(106, 30, 30, 0.12);
    color: #e6e6e6;
    border-color: #e6e6e6;
}

.sr-bb .srt-home-1 {
    background-color: #00003c;
    color: #ffffff;
    border-color: #00003c;
}

.sr-bb .srt-away-1 {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.sr-bb .srt-home-2 {
    background-color: #00003c;
    color: #ffffff;
    border-color: #3d1111;
}

.sr-bb .srt-away-2 {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #3d1111;
}

.sr-bb .srt-home-3 {
    background-color: #00003c;
    color: #ffffff;
    border-color: #FFFFFF;
}

.sr-bb .srt-away-3 {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #FFFFFF;
}

.sr-bb .srt-home-4 {
    background-color: #4d4d77;
    color: #ffffff;
    border-color: #4d4d77;
}

.sr-bb .srt-away-4 {
    background-color: #ff4d4d;
    color: #ffffff;
    border-color: #ff4d4d;
}

.sr-bb .srt-home-5 {
    background-color: #000027;
    color: #ffffff;
    border-color: #000027;
}

.sr-bb .srt-away-5 {
    background-color: #a60000;
    color: #ffffff;
    border-color: #a60000;
}

.sr-bb .srt-neutral-1 {
    background-color: #dedede;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-2 {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-neutral-3 {
    background-color: rgba(0, 0, 0, 0.12);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-4 {
    background-color: #595959;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-neutral-5 {
    background-color: #404040;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-neutral-6 {
    background-color: #c2c2c2;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-7 {
    background-color: #595959;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-neutral-8 {
    background-color: #dedede;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-9 {
    background-color: #f0f0f0;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-10 {
    background-color: #e0e0e0;
    color: rgba(0, 0, 0, 0.82);
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-11 {
    background-color: #999999;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-neutral-12 {
    background-color: #4d4d4d;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-neutral-13 {
    background-color: #e6e6e6;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-win {
    background-color: #00003c;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-draw {
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-lose {
    background-color: #ff0000;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-text-secondary {
    opacity: 0.7;
    -webkit-font-smoothing: antialiased;
}

.sr-bb .srt-text-disabled {
    opacity: 0.35;
}

.sr-bb .srt-text-tertiary {
    opacity: 0.54;
}

.sr-bb .srt-primary-1 .srt-text-secondary,
.sr-bb .srt-primary-1.srt-text-secondary,
.sr-bb .srt-primary-1-is-active .srt-text-secondary,
.sr-bb .srt-primary-1-is-active.srt-text-secondary,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-secondary,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-secondary,
.sr-bb .srt-primary-1-is-disabled .srt-text-secondary,
.sr-bb .srt-primary-1-is-disabled.srt-text-secondary,
.sr-bb .srt-primary-2 .srt-text-secondary,
.sr-bb .srt-primary-2.srt-text-secondary,
.sr-bb .srt-primary-3 .srt-text-secondary,
.sr-bb .srt-primary-3.srt-text-secondary,
.sr-bb .srt-primary-4 .srt-text-secondary,
.sr-bb .srt-primary-4.srt-text-secondary,
.sr-bb .srt-primary-5 .srt-text-secondary,
.sr-bb .srt-primary-5.srt-text-secondary,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-secondary,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-secondary,
.sr-bb .srt-primary-6 .srt-text-secondary,
.sr-bb .srt-primary-6.srt-text-secondary,
.sr-bb .srt-primary-7 .srt-text-secondary,
.sr-bb .srt-primary-7.srt-text-secondary,
.sr-bb .srt-primary-8 .srt-text-secondary,
.sr-bb .srt-primary-8.srt-text-secondary,
.sr-bb .srt-primary-8-is-active-1 .srt-text-secondary,
.sr-bb .srt-primary-8-is-active-1.srt-text-secondary,
.sr-bb .srt-primary-8-is-active-2 .srt-text-secondary,
.sr-bb .srt-primary-8-is-active-2.srt-text-secondary,
.sr-bb .srt-primary-9 .srt-text-secondary,
.sr-bb .srt-primary-9.srt-text-secondary,
.sr-bb .srt-primary-10 .srt-text-secondary,
.sr-bb .srt-primary-10.srt-text-secondary,
.sr-bb .srt-primary-11 .srt-text-secondary,
.sr-bb .srt-primary-11.srt-text-secondary,
.sr-bb .srt-primary-12 .srt-text-secondary,
.sr-bb .srt-primary-12.srt-text-secondary,
.sr-bb .srt-primary-13 .srt-text-secondary,
.sr-bb .srt-primary-13.srt-text-secondary {
    opacity: 0.8;
    -webkit-font-smoothing: antialiased;
}

.sr-bb .srt-primary-1 .srt-text-disabled,
.sr-bb .srt-primary-1.srt-text-disabled,
.sr-bb .srt-primary-1-is-active .srt-text-disabled,
.sr-bb .srt-primary-1-is-active.srt-text-disabled,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-disabled,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-disabled,
.sr-bb .srt-primary-1-is-disabled .srt-text-disabled,
.sr-bb .srt-primary-1-is-disabled.srt-text-disabled,
.sr-bb .srt-primary-2 .srt-text-disabled,
.sr-bb .srt-primary-2.srt-text-disabled,
.sr-bb .srt-primary-3 .srt-text-disabled,
.sr-bb .srt-primary-3.srt-text-disabled,
.sr-bb .srt-primary-4 .srt-text-disabled,
.sr-bb .srt-primary-4.srt-text-disabled,
.sr-bb .srt-primary-5 .srt-text-disabled,
.sr-bb .srt-primary-5.srt-text-disabled,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-disabled,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-disabled,
.sr-bb .srt-primary-6 .srt-text-disabled,
.sr-bb .srt-primary-6.srt-text-disabled,
.sr-bb .srt-primary-7 .srt-text-disabled,
.sr-bb .srt-primary-7.srt-text-disabled,
.sr-bb .srt-primary-8 .srt-text-disabled,
.sr-bb .srt-primary-8.srt-text-disabled,
.sr-bb .srt-primary-8-is-active-1 .srt-text-disabled,
.sr-bb .srt-primary-8-is-active-1.srt-text-disabled,
.sr-bb .srt-primary-8-is-active-2 .srt-text-disabled,
.sr-bb .srt-primary-8-is-active-2.srt-text-disabled,
.sr-bb .srt-primary-9 .srt-text-disabled,
.sr-bb .srt-primary-9.srt-text-disabled,
.sr-bb .srt-primary-10 .srt-text-disabled,
.sr-bb .srt-primary-10.srt-text-disabled,
.sr-bb .srt-primary-11 .srt-text-disabled,
.sr-bb .srt-primary-11.srt-text-disabled,
.sr-bb .srt-primary-12 .srt-text-disabled,
.sr-bb .srt-primary-12.srt-text-disabled,
.sr-bb .srt-primary-13 .srt-text-disabled,
.sr-bb .srt-primary-13.srt-text-disabled {
    opacity: 0.6;
}

.sr-bb .srt-primary-1 .srt-text-tertiary,
.sr-bb .srt-primary-1.srt-text-tertiary,
.sr-bb .srt-primary-1-is-active .srt-text-tertiary,
.sr-bb .srt-primary-1-is-active.srt-text-tertiary,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-tertiary,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-tertiary,
.sr-bb .srt-primary-1-is-disabled .srt-text-tertiary,
.sr-bb .srt-primary-1-is-disabled.srt-text-tertiary,
.sr-bb .srt-primary-2 .srt-text-tertiary,
.sr-bb .srt-primary-2.srt-text-tertiary,
.sr-bb .srt-primary-3 .srt-text-tertiary,
.sr-bb .srt-primary-3.srt-text-tertiary,
.sr-bb .srt-primary-4 .srt-text-tertiary,
.sr-bb .srt-primary-4.srt-text-tertiary,
.sr-bb .srt-primary-5 .srt-text-tertiary,
.sr-bb .srt-primary-5.srt-text-tertiary,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-tertiary,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-tertiary,
.sr-bb .srt-primary-6 .srt-text-tertiary,
.sr-bb .srt-primary-6.srt-text-tertiary,
.sr-bb .srt-primary-7 .srt-text-tertiary,
.sr-bb .srt-primary-7.srt-text-tertiary,
.sr-bb .srt-primary-8 .srt-text-tertiary,
.sr-bb .srt-primary-8.srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-1 .srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-1.srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-2 .srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-2.srt-text-tertiary,
.sr-bb .srt-primary-9 .srt-text-tertiary,
.sr-bb .srt-primary-9.srt-text-tertiary,
.sr-bb .srt-primary-10 .srt-text-tertiary,
.sr-bb .srt-primary-10.srt-text-tertiary,
.sr-bb .srt-primary-11 .srt-text-tertiary,
.sr-bb .srt-primary-11.srt-text-tertiary,
.sr-bb .srt-primary-12 .srt-text-tertiary,
.sr-bb .srt-primary-12.srt-text-tertiary,
.sr-bb .srt-primary-13 .srt-text-tertiary,
.sr-bb .srt-primary-13.srt-text-tertiary {
    opacity: 0.7;
}

.sr-bb .srt-icon {
    opacity: 0.33;
}

.sr-bb .srt-icon-secondary {
    opacity: 0.7;
}

.sr-bb .srt-elevation-1 {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.sr-bb .srt-elevation-2 {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.23), 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.sr-bb .srt-elevation-3 {
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.26), 0px 10px 20px 0px rgba(0, 0, 0, 0.19);
}

.sr-bb .srt-elevation-center-2 {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.23), 0 1px 5px rgba(0, 0, 0, 0.16);
}

.sr-bb .srt-inset-top-1 {
    box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-inset-bottom-1 {
    box-shadow: inset 0 -1px 2px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-inset-top-2 {
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-inset-bottom-2 {
    box-shadow: inset 0 -3px 6px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-inset-top-3 {
    box-shadow: inset 0 6px 6px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-inset-bottom-3 {
    box-shadow: inset 0 -6px 6px 0 rgba(0, 0, 0, 0.23);
}

.sr-bb .srt-fill-blue-card {
    fill: #2579ad;
}

.sr-bb .srt-stroke-blue-card {
    stroke: #2579ad;
}

.sr-bb .srt-fill-soccer-yellow-card {
    fill: #ffbf00;
}

.sr-bb .srt-stroke-soccer-yellow-card {
    stroke: #ffbf00;
}

.sr-bb .srt-fill-soccer-red-card {
    fill: #e43b3b;
}

.sr-bb .srt-stroke-soccer-red-card {
    stroke: #e43b3b;
}

.sr-bb .srt-stroke-soccer-substitution-in {
    stroke: #4fbe30;
    fill: transparent;
}

.sr-bb .srt-fill-soccer-substitution-in {
    fill: #4fbe30;
}

.sr-bb .srt-stroke-soccer-substitution-out {
    stroke: #e43b3b;
    fill: transparent;
}

.sr-bb .srt-fill-soccer-substitution-out {
    fill: #e43b3b;
}

.sr-bb .srt-stroke-soccer-own-goal {
    stroke: #e43b3b;
    fill: transparent;
}

.sr-bb .srt-fill-soccer-own-goal {
    fill: #e43b3b;
}

.sr-bb .srt-fill-soccer-relegation-1 {
    fill: #fdd835;
}

.sr-bb .srt-stroke-soccer-relegation-1 {
    stroke: #fdd835;
}

.sr-bb .srt-fill-soccer-relegation-2 {
    fill: #ffb848;
}

.sr-bb .srt-stroke-soccer-relegation-2 {
    stroke: #ffb848;
}

.sr-bb .srt-fill-soccer-relegation-3 {
    fill: #ef6c00;
}

.sr-bb .srt-stroke-soccer-relegation-3 {
    stroke: #ef6c00;
}

.sr-bb .srt-fill-soccer-relegation-4 {
    fill: #e93a34;
}

.sr-bb .srt-stroke-soccer-relegation-4 {
    stroke: #e93a34;
}

.sr-bb .srt-fill-soccer-relegation-5 {
    fill: #941d1d;
}

.sr-bb .srt-stroke-soccer-relegation-5 {
    stroke: #941d1d;
}

.sr-bb .srt-fill-soccer-promotion-1 {
    fill: #51d151;
}

.sr-bb .srt-stroke-soccer-promotion-1 {
    stroke: #51d151;
}

.sr-bb .srt-fill-soccer-promotion-2 {
    fill: #1b911b;
}

.sr-bb .srt-stroke-soccer-promotion-2 {
    stroke: #1b911b;
}

.sr-bb .srt-fill-soccer-promotion-3 {
    fill: #0e8094;
}

.sr-bb .srt-stroke-soccer-promotion-3 {
    stroke: #0e8094;
}

.sr-bb .srt-fill-soccer-promotion-4 {
    fill: #0a6cce;
}

.sr-bb .srt-stroke-soccer-promotion-4 {
    stroke: #0a6cce;
}

.sr-bb .srt-fill-soccer-promotion-5 {
    fill: #4a9fe4;
}

.sr-bb .srt-stroke-soccer-promotion-5 {
    stroke: #4a9fe4;
}

.sr-bb .srt-nfl-timeout-1 {
    background-color: #f5a623;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-nfl-timeout-2 {
    background-color: rgba(245, 166, 35, 0.3);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.sr-bb .srt-nfl-penalty {
    background-color: #f4a621;
    color: #ffffff;
    border-color: #f4a621;
}

.sr-bb .srt-nfl-negative-yards-1 {
    background-color: #ac182e;
    color: #ffffff;
    border-color: #ac182e;
}

.sr-bb .srt-nfl-negative-yards-2 {
    background-color: #ac182e;
    color: #ffffff;
    border-color: #ac182e;
}

.sr-bb .srt-nfl-first-line {
    background-color: #4b90de;
    color: #ffffff;
    border-color: #4b90de;
}

.sr-bb .srt-nfl-ten-line {
    background-color: #f5a623;
    color: #ffffff;
    border-color: #f5a623;
}

.sr-bb .srt-fill-nfl-penalty {
    fill: #f4a621;
}

.sr-bb .srt-stroke-nfl-penalty {
    stroke: #f4a621;
}

.sr-bb .srt-fill-nfl-negative-yards-1 {
    fill: #ac182e;
}

.sr-bb .srt-stroke-nfl-negative-yards-1 {
    stroke: #ac182e;
}

.sr-bb .srt-fill-nfl-negative-yards-2 {
    fill: #ac182e;
}

.sr-bb .srt-stroke-nfl-negative-yards-2 {
    stroke: #ac182e;
}

.sr-bb .srt-fill-nfl-first-line {
    fill: #4b90de;
}

.sr-bb .srt-stroke-nfl-first-line {
    stroke: #4b90de;
}

.sr-bb .srt-fill-nfl-ten-line {
    fill: #f5a623;
}

.sr-bb .srt-stroke-nfl-ten-line {
    stroke: #f5a623;
}

.sr-bb .srt-mlb-run-1 {
    background-color: #009900;
    color: #ffffff;
    border-color: #009900;
}

.sr-bb .srt-mlb-run-2 {
    background-color: #ffffff;
    color: #009900;
    border-color: #009900;
}

.sr-bb .srt-mlb-hit-1 {
    background-color: #f7ab11;
    color: #000000;
    border-color: #f7ab11;
}

.sr-bb .srt-mlb-hit-2 {
    background-color: #ffffff;
    color: #f7ab11;
    border-color: #f7ab11;
}

.sr-bb .srt-mlb-hit-3 {
    background-color: #00a4ff;
    color: #ffffff;
    border-color: #00a4ff;
}

.sr-bb .srt-mlb-error-1 {
    background-color: #d0021b;
    color: #ffffff;
    border-color: #d0021b;
}

.sr-bb .srt-mlb-error-2 {
    background-color: #ffffff;
    color: #d0021b;
    border-color: #d0021b;
}

.sr-bb .srt-mlb-neutral-1 {
    background-color: #212121;
    color: #ffffff;
    border-color: #ffffff;
}

.sr-bb .srt-fill-mlb-base {
    fill: #00a4ff;
}

.sr-bb .srt-strole-mlb-base {
    fill: #00a4ff;
}

.sr-bb .srt-fill-change-increase {
    fill: #00003c;
}

.sr-bb .srt-stroke-change-increase {
    stroke: #00003c;
}

.sr-bb .srt-fill-change-decrease {
    fill: #ff0000;
}

.sr-bb .srt-stroke-change-decrease {
    stroke: #ff0000;
}

.sr-bb .srt-fill-text {
    fill: #000000;
}

.sr-bb .srt-fill-text-invert {
    fill: #ffffff;
}

.sr-bb .srt-fill-text-secondary {
    fill-opacity: 0.7;
}

.sr-bb .srt-fill-text-disabled {
    fill-opacity: 0.35;
}

.sr-bb .srt-fill-base-1 {
    fill: transparent;
}

.sr-bb .srt-stroke-base-1 {
    stroke: transparent;
}

.sr-bb .srt-fill-base-1-active {
    fill: rgba(106, 30, 30, 0.12);
}

.sr-bb .srt-stroke-base-1-active {
    stroke: rgba(106, 30, 30, 0.12);
}

.sr-bb .srt-fill-base-1-active-2 {
    fill: #e6e6e6;
}

.sr-bb .srt-stroke-base-1-active-2 {
    stroke: #e6e6e6;
}

.sr-bb .srt-fill-base-1-primary {
    fill: transparent;
}

.sr-bb .srt-stroke-base-1-primary {
    stroke: transparent;
}

.sr-bb .srt-fill-base-1-home {
    fill: transparent;
}

.sr-bb .srt-stroke-base-1-home {
    stroke: transparent;
}

.sr-bb .srt-fill-base-1-away {
    fill: transparent;
}

.sr-bb .srt-stroke-base-1-away {
    stroke: transparent;
}

.sr-bb .srt-fill-base-2 {
    fill: currentColor;
}

.sr-bb .srt-stroke-base-2 {
    stroke: currentColor;
}

.sr-bb .srt-fill-base-2-active {
    fill: #ede4e4;
}

.sr-bb .srt-stroke-base-2-active {
    stroke: #ede4e4;
}

.sr-bb .srt-fill-base-2-hover {
    fill: #ede4e4;
}

.sr-bb .srt-stroke-base-2-hover {
    stroke: #ede4e4;
}

.sr-bb .srt-fill-base-3 {
    fill: #ede4e4;
}

.sr-bb .srt-stroke-base-3 {
    stroke: #ede4e4;
}

.sr-bb .srt-fill-base-3-active {
    fill: #e6d9d9;
}

.sr-bb .srt-stroke-base-3-active {
    stroke: #e6d9d9;
}

.sr-bb .srt-fill-base-3-hover {
    fill: #e6d9d9;
}

.sr-bb .srt-stroke-base-3-hover {
    stroke: #e6d9d9;
}

.sr-bb .srt-fill-primary-1 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-1 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-2 {
    fill: #4a1515;
}

.sr-bb .srt-stroke-primary-2 {
    stroke: #4a1515;
}

.sr-bb .srt-fill-primary-3 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-3 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-4 {
    fill: #a67878;
}

.sr-bb .srt-stroke-primary-4 {
    stroke: #a67878;
}

.sr-bb .srt-fill-primary-5 {
    fill: #a67878;
}

.sr-bb .srt-stroke-primary-5 {
    stroke: #a67878;
}

.sr-bb .srt-fill-primary-6 {
    fill: #3d1111;
}

.sr-bb .srt-stroke-primary-6 {
    stroke: #3d1111;
}

.sr-bb .srt-fill-primary-7 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-7 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-8 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-8 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-8-is-active-1 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-8-is-active-1 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-8-is-active-2 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-8-is-active-2 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-9 {
    fill: #d2bcbc;
}

.sr-bb .srt-stroke-primary-9 {
    stroke: #d2bcbc;
}

.sr-bb .srt-fill-primary-10 {
    fill: #884b4b;
}

.sr-bb .srt-stroke-primary-10 {
    stroke: #884b4b;
}

.sr-bb .srt-fill-primary-11 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-11 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-primary-12 {
    fill: var(--dg-primary);
}

.sr-bb .srt-stroke-primary-12 {
    stroke: var(--dg-primary);
}

.sr-bb .srt-fill-home-1 {
    fill: #00003c;
}

.sr-bb .srt-stroke-home-1 {
    stroke: #00003c;
}

.sr-bb .srt-fill-home-2 {
    fill: #00003c;
}

.sr-bb .srt-stroke-home-2 {
    stroke: #00003c;
}

.sr-bb .srt-fill-home-3 {
    fill: #00003c;
}

.sr-bb .srt-stroke-home-3 {
    stroke: #00003c;
}

.sr-bb .srt-fill-home-4 {
    fill: #4d4d77;
}

.sr-bb .srt-stroke-home-4 {
    stroke: #4d4d77;
}

.sr-bb .srt-fill-home-5 {
    fill: #000027;
}

.sr-bb .srt-stroke-home-5 {
    stroke: #000027;
}

.sr-bb .srt-fill-away-1 {
    fill: #ff0000;
}

.sr-bb .srt-stroke-away-1 {
    stroke: #ff0000;
}

.sr-bb .srt-fill-away-2 {
    fill: #ff0000;
}

.sr-bb .srt-stroke-away-2 {
    stroke: #ff0000;
}

.sr-bb .srt-fill-away-3 {
    fill: #ff0000;
}

.sr-bb .srt-stroke-away-3 {
    stroke: #ff0000;
}

.sr-bb .srt-fill-away-4 {
    fill: #ff4d4d;
}

.sr-bb .srt-stroke-away-4 {
    stroke: #ff4d4d;
}

.sr-bb .srt-fill-away-5 {
    fill: #a60000;
}

.sr-bb .srt-stroke-away-5 {
    stroke: #a60000;
}

.sr-bb .srt-fill-neutral-1 {
    fill: #dedede;
}

.sr-bb .srt-stroke-neutral-1 {
    stroke: #dedede;
}

.sr-bb .srt-fill-neutral-2 {
    fill: #1a1a1a;
}

.sr-bb .srt-stroke-neutral-2 {
    stroke: #1a1a1a;
}

.sr-bb .srt-fill-neutral-3 {
    fill: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-stroke-neutral-3 {
    stroke: rgba(0, 0, 0, 0.12);
}

.sr-bb .srt-fill-neutral-4 {
    fill: #595959;
}

.sr-bb .srt-stroke-neutral-4 {
    stroke: #595959;
}

.sr-bb .srt-fill-neutral-5 {
    fill: #404040;
}

.sr-bb .srt-stroke-neutral-5 {
    stroke: #404040;
}

.sr-bb .srt-fill-neutral-6 {
    fill: #c2c2c2;
}

.sr-bb .srt-stroke-neutral-6 {
    stroke: #c2c2c2;
}

.sr-bb .srt-fill-neutral-7 {
    fill: #595959;
}

.sr-bb .srt-stroke-neutral-7 {
    stroke: #595959;
}

.sr-bb .srt-fill-neutral-8 {
    fill: #dedede;
}

.sr-bb .srt-stroke-neutral-8 {
    stroke: #dedede;
}

.sr-bb .srt-fill-neutral-9 {
    fill: #f0f0f0;
}

.sr-bb .srt-stroke-neutral-9 {
    stroke: #f0f0f0;
}

.sr-bb .srt-fill-neutral-10 {
    fill: #e0e0e0;
}

.sr-bb .srt-stroke-neutral-10 {
    stroke: #e0e0e0;
}

.sr-bb .srt-fill-neutral-11 {
    fill: #999999;
}

.sr-bb .srt-stroke-neutral-11 {
    stroke: #999999;
}

.sr-bb .srt-fill-neutral-12 {
    fill: #4d4d4d;
}

.sr-bb .srt-stroke-neutral-12 {
    stroke: #4d4d4d;
}

.sr-bb .srt-fill-neutral-13 {
    fill: #e6e6e6;
}

.sr-bb .srt-stroke-neutral-13 {
    stroke: #e6e6e6;
}

.sr-bb .srt-fill-win {
    fill: #00003c;
}

.sr-bb .srt-stroke-win {
    stroke: #00003c;
}

.sr-bb .srt-fill-draw {
    fill: rgba(0, 0, 0, 0.4);
}

.sr-bb .srt-stroke-draw {
    stroke: rgba(0, 0, 0, 0.4);
}

.sr-bb .srt-fill-lose {
    fill: #ff0000;
}

.sr-bb .srt-stroke-lose {
    stroke: #ff0000;
}

.sr-bb .srt-stop-base-1 {
    stop-color: transparent;
}

.sr-bb .srt-stop-primary-1 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-primary-2 {
    stop-color: #4a1515;
}

.sr-bb .srt-stop-primary-3 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-primary-4 {
    stop-color: #a67878;
}

.sr-bb .srt-stop-primary-5 {
    stop-color: #a67878;
}

.sr-bb .srt-stop-primary-6 {
    stop-color: #3d1111;
}

.sr-bb .srt-stop-primary-7 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-primary-8 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-primary-9 {
    stop-color: #d2bcbc;
}

.sr-bb .srt-stop-primary-10 {
    stop-color: #884b4b;
}

.sr-bb .srt-stop-primary-11 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-primary-12 {
    stop-color: var(--dg-primary);
}

.sr-bb .srt-stop-home-1 {
    stop-color: #00003c;
}

.sr-bb .srt-stop-away-1 {
    stop-color: #ff0000;
}

.sr-bb .srt-fill-neutral-14 {
    fill: #FFFFFF;
}

.sr-bb .srt-stroke-neutral-14 {
    stroke: #FFFFFF;
}

.sr-bb .srt-logo-powered-by-light {
    display: inline-block;
}

.sr-bb .srt-logo-powered-by-dark {
    display: none;
}

.tab-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: start;
    cursor: pointer;
}

.tab-buttons div {
    padding: 10px 20px;
    background-color: var(--dg-primary);
    color: white;
    border: 1px solid #fff;
    border-bottom: 0;
    font-size: 0.9rem;
}

.tab-buttons div.active {
    background-color: var(--dg-secondary);
}

.tab-content {
    display: none;
    padding: 0px;
}

.tab-content.active {
    display: block;
}

.quote-up,
.quote-down {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

.td-quote-logo {
    width: 30%;
}


.table-quote THEAD TH {
    border-radius: 0;
}

.table-quote THEAD TH::after {
    content: '';
}

.table-quote .quote-logo {
    max-width: 130px;
    display: block;
}

.table-quote .td-quote {
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* ===== Base ===== */
.dg-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: .25rem;
    color: #fff;
}

.dg-menu .dg-menu-toggle {
    display: none;
}

/* Lista principale desktop */
.dg-menu .dg-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.dg-menu .dg-menu-list li {
    position: relative;
}

.dg-menu .dg-menu-list li a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 12px 14px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.dg-menu .dg-menu-list li a:hover,
.dg-menu .dg-menu-list li a.active {
    background: var(--dg-secondary);
}

/* ===== Dropdown (desktop) =====
   Evitiamo display:none per non avere hover "bloccati" su touch
   usiamo visibility/opacity+pointer-events e transizioni */
.dg-menu .dropdown-content {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: var(--dg-primary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
    z-index: 100;
    display: block;
    /* sempre block */
    visibility: hidden;
    /* nascosto di default */
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

/* Apri su .open, :hover o :focus-within (anche tastiera) */
.dg-menu li.dropdown.open>.dropdown-content,
.dg-menu li.dropdown:hover>.dropdown-content,
.dg-menu li.dropdown:focus-within>.dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

/* Submenu (livello 2+) */
.dg-menu .dropdown-content .dropdown {
    position: relative;
}

.dg-menu .dropdown-content .dropdown>.dropdown-content {
    top: 0;
    left: 100%;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .dg-menu {
        display: block;
        background: var(--dg-primary);
        padding: 0 14px;
    }

    .dg-menu .dg-menu-toggle {
        display: block;
        width: 100%;
        border: 0;
        background: var(--dg-primary);
        color: #fff;
        text-align: left;
        font-size: .9rem;
        font-weight: 800;
        text-transform: uppercase;
        padding: 12px 14px;
        cursor: pointer;
    }

    .dg-menu .dg-menu-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .dg-menu .dg-menu-list.open {
        display: block;
    }

    .dg-menu .dg-menu-list>li {
        border-top: 1px solid rgba(18, 52, 86, .3);
    }

    .dg-menu .dg-menu-list li a {
        padding: 12px 14px;
        font-size: .9rem;
        text-transform: none;
    }

    /* Dropdown come "accordion": niente posizionamento assoluto,
     niente spazi residui: usiamo max-height + overflow */
    .dg-menu .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        visibility: visible;
        /* visibile ma "chiuso" via max-height */
        opacity: 1;
        transform: none;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .22s ease;
    }

    .dg-menu li.dropdown.open>.dropdown-content {
        max-height: 1200px;
        /* abbastanza grande per contenere i figli */
    }

    /* Nested submenu padding per gerarchia */
    .dg-menu .dropdown-content>li>a {
        padding-left: 22px;
    }

    .dg-menu .dropdown-content .dropdown .dropdown-content>li>a {
        padding-left: 36px;
    }

    .hide-on-mobile {
        display: none;
    }
}

.dg-menu a.dropbtn::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "";
    margin-left: .4em;
    display: inline-block;
    transition: transform .2s ease;
}

.dg-menu li.dropdown.open>a.dropbtn::after,
.dg-menu li.dropdown:focus-within>a.dropbtn::after,
.dg-menu li.dropdown:hover>a.dropbtn::after {
    content: "";
}