/* When abbreviated forms of the team name should be shown */
.ost-abbr-BrisbaneBroncos::after            { content: "Broncos" }
.ost-abbr-CanberraRaiders::after            { content: "Raiders" }
.ost-abbr-CanterburyBulldogs::after         { content: "Bulldogs" }
.ost-abbr-CronullaSharks::after             { content: "Sharks" }
.ost-abbr-Dolphins::after                   { content: "Dolphins" }
.ost-abbr-GoldCoastTitans::after            { content: "Titans" }
.ost-abbr-ManlySeaEagles::after             { content: "Sea Eagles" }
.ost-abbr-MelbourneStorm::after             { content: "Storm" }
.ost-abbr-NewcastleKnights::after           { content: "Knights" }
.ost-abbr-NorthQueenslandCowboys::after     { content: "Cowboys" }
.ost-abbr-ParramattaEels::after             { content: "Eels" }
.ost-abbr-PenrithPanthers::after            { content: "Panthers" }
.ost-abbr-SouthSydneyRabbitohs::after       { content: "Rabbitohs" }
.ost-abbr-StGeorgeIllawarraDragons::after   { content: "Dragons" }
.ost-abbr-SydneyRoosters::after             { content: "Roosters" }
.ost-abbr-Warriors::after                   { content: "Warriors" }
.ost-abbr-WestsTigers::after                { content: "Tigers" }
.ost-abbr-NewSouthWales::after,
.ost-abbr-NewSouthWalesWomen::after         { content: "Blues" }
.ost-abbr-Queensland::after,
.ost-abbr-QueenslandWomen::after            { content: "Maroons" }
.ost-abbr-Bye::after,
.ost-abbr-BYE::after                        { content: "Bye" }

/* Adjusted font sizes for long team names on Special Tips */
div#ost-specialtips-selections {
    --ost-ps-font-size-lg:  18px;
    --ost-ps-font-size-md:  15px;
    --ost-ps-font-size-sm:  13.5px;
    --ost-ps-font-size-xs:  11.5px;

    --ost-ps-margin-lg:     0.8rem;
    --ost-ps-margin-md:     0.9rem;
    --ost-ps-margin-sm:     0.9rem;
    --ost-ps-margin-xs:     1.1rem;
}

div#ost-specialtips-selections .ost-tip-selection label.ost-selection-label {
    font-size: var(--ost-ps-font-size-lg);
    margin-top: var(--ost-ps-margin-lg);
}

@media screen and (max-width: 576px /*xs*/) {
    
    div#ost-specialtips-selections .ost-tip-selection label.ost-selection-NorthQueenslandCowboys,
    div#ost-specialtips-selections .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons { 
        font-size:  var(--ost-ps-font-size-sm);
        margin-top: var(--ost-ps-margin-sm);
    }
}

@media screen and (min-width: 768px /*md*/) {
    
    div#ost-specialtips-selections .ost-tip-selection label.ost-selection-NorthQueenslandCowboys,
    div#ost-specialtips-selections .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons { 
        font-size:  var(--ost-ps-font-size-md);
        margin-top: var(--ost-ps-margin-md);
    }
}

@media screen and (min-width: 992px /*lg*/) {

    div#ost-specialtips-selections .ost-tip-selection label.ost-selection-label {
        font-size: var(--ost-ps-font-size-lg);
        margin-top: var(--ost-ps-margin-lg);
    }

}

@media screen and (min-width: 1200px /*xl*/) {

}

/* Adjusted font sizes for long team names on Fixtures */
div#ost-fixtures {
    --ost-fxt-font-size-xl:  24px;
    --ost-fxt-font-size-lg:  21.5px;
    --ost-fxt-font-size-md:  18px;
    --ost-fxt-font-size-sm:  16.5px;
    --ost-fxt-font-size-xs:  14px;

    --ost-fxt-margin-xl:     0.45rem;
    --ost-fxt-margin-lg:     0.55rem;
    --ost-fxt-margin-md:     0.8rem;
    --ost-fxt-margin-sm:     0.85rem;
    --ost-fxt-margin-xs:     1.0rem;
}

/* Do general styling first - largest media size to smallest */
@media screen and (max-width: 1199px /*up to lg*/) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-label {
        font-size: var(--ost-fxt-font-size-md);
        margin-top: var(--ost-fxt-margin-md);
    }
}

@media screen and (max-width: 767px /*up to sm*/) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-label {
        font-size: var(--ost-fxt-font-size-xl);
        margin-top: var(--ost-fxt-margin-xl);
    }
}

@media screen and (max-width: 576px /*up to xs*/) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-label {
        font-size: var(--ost-fxt-font-size-md);
        margin-top: var(--ost-fxt-margin-md);
    }
}

/* Override styling for specific teams second */
@media screen and (min-width: 1200px /*xl or larger*/) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons {
        font-size: var(--ost-fxt-font-size-lg);
        margin-top: var(--ost-fxt-margin-lg);
    }
}

@media screen and /*md*/ (min-width: 768px) and (max-width: 991px) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-NorthQueenslandCowboys,
    div#ost-fixtures .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons {
        font-size: var(--ost-fxt-font-size-xs);
        margin-top: var(--ost-fxt-margin-xs);
    }
    
    div#ost-fixtures .ost-tip-selection label.ost-selection-SouthSydneyRabbitohs,
    div#ost-fixtures .ost-tip-selection label.ost-selection-NewSouthWalesWomen {
        font-size: var(--ost-fxt-font-size-sm);
        margin-top: var(--ost-fxt-margin-sm);
    }
}

@media screen and /*sm*/ (min-width: 577px) and (max-width: 767px) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-NorthQueenslandCowboys,
    div#ost-fixtures .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons {
        font-size: var(--ost-fxt-font-size-lg);
        margin-top: var(--ost-fxt-margin-lg);
    }

}

@media screen and /*xs*/ (max-width: 576px) {
    div#ost-fixtures .ost-tip-selection label.ost-selection-NorthQueenslandCowboys,
    div#ost-fixtures .ost-tip-selection label.ost-selection-StGeorgeIllawarraDragons {
        font-size: var(--ost-fxt-font-size-xs);
        margin-top: var(--ost-fxt-margin-xs);
    }

    div#ost-fixtures .ost-tip-selection label.ost-selection-SouthSydneyRabbitohs,
    div#ost-fixtures .ost-tip-selection label.ost-selection-NewSouthWalesWomen {
        font-size: var(--ost-fxt-font-size-sm);
        margin-top: var(--ost-fxt-margin-sm);
    }
}
