﻿@charset "UTF-8";
/**/
/* CSS for Page : TEAMS & ROSTERS on llsoccer.org  */
/**/
/* TEAM PHOTO ****************************************** 
*/
.teamPhoto {
    display: block;
    margin: -10px 0 15px 0;
    z-index: 2;
    position: relative;
}

    .teamPhoto img {
        width: 100%;
    }

@media (min-width: 768px) {
    .teamPhoto {
        max-width: 1100px;
        margin: -30px 0 0 0;
    }

        .teamPhoto img {
            border-radius: 10px 10px 0 0;
        }
}
/* 2 COLUMN LAYOUT ****************************************** 
*/
.columnLayout {
}

@media (min-width: 768px) {
    .columnLayout {
        display: grid;
        grid-template-columns: 170px auto;
        grid-column-gap: 15px;
        padding: 0;
        margin-top: -25px;
    }
}

@media (min-width: 1024px) {
    .columnLayout {
        grid-template-columns: 200px auto;
        grid-column-gap: 40px;
        padding: 0;
    }
}
/* TEAM STATS (SIDEBAR) ****************************************** 
*/
.teamStats {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .05rem;
    text-align: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

    .teamStats .mobileSetup {
        display: grid;
        grid-template-columns: 48% 48%;
        grid-gap: 15px;
        padding: 0 25px;
    }

    .teamStats div > div {
        display: block;
        padding: 8px 10px 0 10px;
        border: solid 1px #DBDBDB;
        border-radius: 5px;
    }

    .teamStats img {
        display: block;
        width: 100px;
        margin: -35px auto 5px auto;
    }

    .teamStats em {
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        font-style: normal;
        letter-spacing: .03rem;
    }

@media (min-width: 768px) {
    .teamStats {
        font-size: 23px;
        grid-area: 1/1;
        align-self: self-start;
        border-radius: 10px;
        background: #fff;
        margin-top: 50px;
        padding: 0 0 10px 0;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

        .teamStats .mobileSetup {
            display: block;
            padding: 0;
        }

        .teamStats div > div {
            display: block;
            padding: 5px 15px 0 15px;
            border: none;
            border-bottom: solid 1px #DBDBDB;
            border-radius: 0;
            width: auto;
            margin: 0;
        }

        .teamStats div:nth-last-of-type(1) {
            border-bottom: none;
        }

        .teamStats img {
            display: block;
            width: 100px;
            margin: -20px auto -10px auto;
        }

        .teamStats em {
            font-size: 15px;
        }
}

@media (min-width: 1024px) {
    .teamStats {
        font-size: 25px;
    }

        .teamStats img {
            width: 120px;
        }
}
/**/
/* SCHEDULE ****************************************** 
*/
.scheduleContainer {
    grid-area: 1/2;
    margin-top: 50px;
}

.headlineContainer {
    margin: 0 0 0 0;
}

    .headlineContainer h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.2;
        color: var(--HeadlineColor);
        padding: 30px 0 15px 30px;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .02rem;
        grid-area: 1 / 1;
    }

    .headlineContainer .nonLeague {
        font-size: 14px;
        display: block;
        padding: 0 0 15px 30px;
    }

        .headlineContainer .nonLeague img {
            width: 20px;
            vertical-align: middle;
        }

@media (min-width: 550px) {
    .headlineContainer {
        display: grid;
        grid-template-columns: 65% 35%;
        margin: 0 0 0 0;
    }

        .headlineContainer .nonLeague {
            grid-area: 1 / 2;
            padding: 0 25px 20px 0px;
            justify-self: right;
            align-self: flex-end;
        }
}

@media (min-width: 768px) {
    .headlineContainer {
        margin: 0 0 0 0;
    }

        .headlineContainer h2 {
            font-size: 24px;
            padding: 15px 0 25px 30px;
        }

        .headlineContainer .nonLeague {
            font-size: 15px;
            padding: 0 0 25px 0;
        }

            .headlineContainer .nonLeague img {
                width: 21px;
            }
}

.gamesContainer {
    display: block;
    background: #ececec;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .gamesContainer {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-gap: 15px 15px;
        background: transparent;
        box-shadow: none;
    }
}
/**/
/* Single game box */
/**/
.singleGameContainer {
    padding: 13px 30px 7px 30px;
    margin: 0 0 5px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .singleGameContainer {
        padding: 15px 25px 10px 25px;
        border-radius: 5px;
        margin: 0;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 1024px) {
    .singleGameContainer {
        padding: 18px 35px 15px 35px;
    }
}
/**/
/* Final or not row */
/**/
.gamePlayed {
    display: grid;
    grid-template-columns: 50%;
    align-items: baseline;
    padding: 0;
}

    .gamePlayed p {
        grid-area: 1/1;
        font-size: 17px;
        font-weight: 600;
        justify-self: left;
        padding: 0;
        letter-spacing: .05rem;
    }

    .gamePlayed a {
        grid-area: 1/2;
        font-family: "Rajdhani", sans-serif;
        font-size: 15px;
        font-weight: 600;
        justify-self: right;
    }

.gameNotPlayed {
    display: grid;
    padding: 0;
}

    .gameNotPlayed p {
        grid-area: 1/1;
        font-family: "Bai Jamjuree", sans-serif;
        font-size: 17px;
        font-weight: 500;
        text-align: left;
        /* edit 
  padding: 0; */
        padding: 0 5px 0 0;
    }

    .gameNotPlayed a {
        grid-area: 1/2;
        font-family: "Rajdhani", sans-serif;
        font-size: 15px;
        font-weight: 600;
        justify-self: right;
        padding: 3px 0 0 0;
    }

@media (min-width: 768px) {
    .gameNotPlayed {
        padding: 0;
    }
}
/**/
/* Game Type = Scrimmage/League/Non-League/Playoff/State Playoff */
/**/
.gameNotPlayed .gameType {
    font-family: "Bai Jamjuree";
    font-weight: 500;
    font-size: 13px;
    color: #707070;
    padding: 2px 0 10px 0;
}

@media (min-width: 768px) {
    .gameNotPlayed .gameType {
        font-size: 14px;
        padding: 3px 0 10px 0;
    }
}
/**/
/* Match ups */
/**/
.gameTeams {
    font-family: "Rajdhani", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
}

.home, .visitor {
    display: grid;
    grid-template-columns: 55px auto auto;
}

@media (min-width: 550px) {
    .gameTeams {
        font-size: 20px;
    }
}
/**/
/*  Team Logo */
/**/
.gameTeams .teamLogo img {
    width: 35px;
}

.gameTeams .home .teamLogo {
    grid-area: 1/1;
    justify-self: self-start;
}

.gameTeams .visitor .teamLogo {
    grid-area: 2/1;
    justify-self: self-start;
}
/**/
/* Team Name */
/**/
.gameTeams .home .team {
    grid-area: 1/2;
    padding: 0 10px 0 0;
    justify-self: left;
    align-self: center;
}

.gameTeams .visitor .team {
    grid-area: 2/2;
    padding: 0 10px 0 0;
    justify-self: left;
    align-self: center;
}
/**/
/* Team Score */
/**/
.gameTeams .home .score {
    grid-area: 1/3;
    font-size: 21px;
    text-align: right;
    justify-self: flex-end;
    align-self: center;
}

.gameTeams .visitor .score {
    grid-area: 2/3;
    font-size: 21px;
    text-align: right;
    justify-self: flex-end;
    align-self: center;
}
/**/
/* ROSTER ****************************************** 
*/
h2.rosterTitle {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--HeadlineColor);
    padding: 30px 0 15px 30px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02rem;
}

@media (min-width: 768px) {
    h2.rosterTitle {
        font-size: 24px;
        padding: 50px 0 20px 30px;
    }
}

@media (min-width: 1024px) {
    h2.rosterTitle {
        padding: 50px 0 20px 0;
    }
}
/* Coaches */
.headCoach {
    font-family: Rajdhani;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    padding: 0 0 10px 30px;
}

    .headCoach b {
        font-weight: 600;
        font-size: 20px;
    }

.assistCoach {
    font-family: Rajdhani;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.01rem;
    line-height: 22px;
    margin: 0;
    padding: 0 30px;
}

    .assistCoach span {
        display: block;
        padding: 0;
    }

    .assistCoach b {
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
    }

    .assistCoach span:nth-of-type(1) {
        padding: 0;
    }

@media (min-width: 480px) {
    .assistCoach {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .headCoach {
        font-size: 19px;
        padding: 0 0 10px 0;
    }

        .headCoach b {
            font-size: 21px;
        }

    .assistCoach {
        line-height: 25px;
        padding: 0;
    }

        .assistCoach span {
            display: inline;
            padding: 0 0 0 0;
        }

        .assistCoach b {
            font-size: 19px;
        }
}
/* Roster Table */
.rosterTable {
    background-color: #ececec;
    margin: 20px 0 70px 0;
    position: relative;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    z-index: 10;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.10);
}

    .rosterTable > div {
        margin: 0 0 3px 0;
        background-color: #fff;
    }

@media (min-width: 768px) {
    .contentBody {
        padding: 0 30px;
    }

    .rosterTable {
        background-color: #dfdfdf;
        border-radius: 5px;
        font-size: 21px;
    }

        .rosterTable > div {
            border-radius: 5px;
        }

        .rosterTable:nth-last-of-type(1) {
            border-bottom: none;
        }
}
/* Single Player Profile */
.rosterRow {
    display: grid;
    grid-template-columns: 100px 45% auto;
    font-family: "Rajdhani", sans-serif;
    align-items: center;
    justify-items: stretch;
    padding: 15px 5px 5px 0;
}

@media (min-width: 550px) {
    .rosterRow {
        grid-template-columns: 100px 30% 25% .75fr .5fr;
        padding: 17px 0 10px 0;
    }
}

@media (min-width: 768px) {
    .rosterRow {
        grid-template-columns: 115px 25% 25% .75fr .5fr;
        padding: 22px 0 15px 0;
    }
}

@media (min-width: 1024px) {
    .rosterRow {
        grid-template-columns: 130px 27% 25% 1fr .75fr;
    }
}
/* Player's Photo */
.rosterRow .playerPhoto {
    grid-area: 1 / 1;
    justify-self: right;
}

    .rosterRow .playerPhoto img {
        width: 70px;
        position: relative;
        z-index: 5;
    }

@media (min-width: 768px) {
    .rosterRow .playerPhoto img {
        width: 85px;
    }
}

@media (min-width: 1024px) {
    .rosterRow .playerPhoto img {
        width: 100px;
    }
}
/* Player's Number */
.rosterRow .number {
    grid-area: 1 / 1;
    padding: 0;
    align-self: self-end;
    justify-self: right;
    position: relative;
    z-index: 6;
    margin: 0 17px -20px 0;
}

    .rosterRow .number span {
        display: block;
        font-family: "Rajdhani", sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: var(--DefaultWhite);
        text-align: center;
        padding: 7px 0 3px 0;
        width: 33px;
        height: 23px;
        border-radius: 35px;
        background: var(--HeadlineColor);
    }

@media (min-width: 480px) {
    .rosterRow .number {
        margin: 0 17px -5px 0;
    }

        .rosterRow .number span {
            font-size: 23px;
            padding: 7px 0 4px 0;
            width: 35px;
            height: 25px;
            border-radius: 35px;
        }
}

@media (min-width: 768px) {
    .rosterRow .number {
        margin: 0 -10px 0 0;
    }

        .rosterRow .number span {
            font-size: 23px;
            padding: 8px 0 0;
            width: 40px;
            height: 30px;
            border-radius: 45px;
        }
}

@media (min-width: 900px) {
    .rosterRow .number span {
        font-size: 23px;
        padding: 8px 0 0;
        width: 40px;
        height: 30px;
        border-radius: 45px;
    }
}

@media (min-width: 1024px) {
    .rosterRow .number {
        margin: 0 -20px 0 0;
    }

        .rosterRow .number span {
            font-size: 26px;
            padding: 9px 0 0;
            width: 45px;
            height: 35px;
            border-radius: 45px;
        }
}
/* Player's Name, Position, Year */
.rosterRow .player {
    grid-area: 1 / 2;
    align-self: self-start;
    padding: 0 15px 0 10px;
}

    .rosterRow .player h3 {
        font-size: 19px;
        font-weight: 500;
        line-height: 1.10;
        padding: 0 0 2px 0;
        margin: 0;
    }

    .rosterRow .player .position {
        font-size: 20px;
        color: var(--HeadlineColor);
        font-weight: 700;
        line-height: 1.1;
        padding: 0 0 5px 0;
        margin: 0;
    }

    .rosterRow .player .year {
        font-size: 17px;
        line-height: 1.1;
        font-weight: 500;
        padding: 0 0 5px 0;
        margin: 0
    }

@media (min-width: 480px) {
    .rosterRow .player {
        padding: 0 25px 0 15px;
    }

        .rosterRow .player h3 {
            font-size: 20px;
            line-height: 1.0;
        }

        .rosterRow .player .position {
            font-size: 20px;
        }
}

@media (min-width: 768px) {
    .rosterRow .player {
        padding: 0 25px 0 15px;
    }
}

@media (min-width: 1024px) {
    .rosterRow .player {
        padding: 0 25px 0 25px;
    }
}
/* Player's Stats */
.rosterRow .playerStats {
    grid-area: 1 / 3;
    align-self: self-start;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    padding: 0 15px 15px 0;
    margin: 0;
}

    .rosterRow .playerStats p {
        padding: 0;
        margin: 0;
    }

@media (min-width: 480px) {
    .rosterRow .playerStats {
        font-size: 17px;
        padding: 2px 15px 0 0;
    }
}

@media (min-width: 768px) {
    .rosterRow .playerStats {
        line-height: 1.4;
    }
}
/* Player's Club */
.rosterRow .club {
    grid-area: 2/3;
    align-self: self-start;
    font-size: 15px;
    padding: 0 15px 0 0;
    margin: -15px 0 0 0;
}

    .rosterRow .club img {
        display: inline-block;
        width: 30px;
        margin: 0 5px 0 0;
        vertical-align: middle;
    }

    .rosterRow .club p {
        display: inline-block;
        padding: 0;
        margin: 0;
    }

@media (min-width: 550px) {
    .rosterRow .club {
        grid-area: 1 / 4;
        font-size: 16px;
        padding: 0 15px 0 0;
        margin: -2px 0 0 0;
    }
}

@media (min-width: 768px) {
    .rosterRow .club {
        font-size: 17px;
    }

        .rosterRow .club img {
            width: 35px;
        }
}
/* Player's Town */
.rosterRow .town {
    grid-area: 2 / 2;
    align-self: self-start;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 500;
    padding: 5px 15px 0 10px;
    margin: 0;
}

@media (min-width: 550px) {
    .rosterRow .town {
        grid-area: 1 / 5;
        font-size: 16px;
        padding: 7px 15px 0 0;
    }
}

@media (min-width: 768px) {
    .rosterRow .town {
        font-size: 17px;
    }
}
