﻿@charset "UTF-8";
/**/
/* CSS for Page : SCHEDULE on llsoccer.org  */
/**/
/* DATE PICKER ****************************************** 
*/
.dateScrollContainer {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.20);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    position: relative;
    background: linear-gradient(#fff 0%, #f8f8f8 100%);
    z-index: 10;
    height: auto;
    display: grid;
    grid-template-columns: 65px auto 65px;
}

@media (min-width: 768px) {
    .dateScrollContainer {
        margin: -35px 0 0 0;
    }
}

.dateScrollContainer div {
    display: inline-block;
}

.dateScrollContainer .prevArrow {
    padding: 30px 0;
    width: 65px;
    border-right: solid 1px #DBDBDB;
    text-align: center;
    border-radius: 10px 0 0 0;
    background: linear-gradient(#fff 0%, #f8f8f8 100%);
}

    .dateScrollContainer .prevArrow:hover {
        background: #DBDBDB;
    }

    .dateScrollContainer .prevArrow svg {
        width: 25px;
        height: 15px;
    }

.dateScrollContainer .nextArrow {
    padding: 30px 0;
    width: 65px;
    text-align: center;
    border-left: solid 1px #DBDBDB;
    border-radius: 0 10px 0 0;
    background: linear-gradient(#fff 0%, #f8f8f8 100%);
}

    .dateScrollContainer .nextArrow:hover {
        background: #DBDBDB;
    }

    .dateScrollContainer .nextArrow svg {
        width: 25px;
        height: 15px;
    }

.dateScrollContainer .links {
    display: grid;
    grid-template-columns: repeat(32, 1fr);
    overflow: hidden;
}

    .dateScrollContainer .links .date a {
        display: block;
        color: #2067ad;
        padding: 30px 15px;
        margin: 0;
        transition: transform .2s;
        white-space: nowrap;
    }

        .dateScrollContainer .links .date a:hover {
            text-decoration: none;
            transform: scale(1.15);
        }

    .dateScrollContainer .links .date .activeDate {
        color: #B1B1B1;
    }

        .dateScrollContainer .links .date .activeDate:hover {
            color: #B1B1B1;
            text-decoration: none;
            transform: scale(1);
        }
/**/
/* GAMES ****************************************** 
*/
.overallDateContainer:nth-last-of-type(1) {
    margin: 0 0 60px 0;
}

.overallDateContainer .dateHeadline {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--SectionHeadlineColor);
    padding: 35px 30px 20px 30px;
}

@media (min-width: 600px) {
    .overallDateContainer .dateHeadline {
        padding: 30px 30px 20px 30px;
    }
}

@media (min-width: 768px) {
    .overallDateContainer .dateHeadline {
        font-size: 21px;
        font-weight: 600;
        text-transform: capitalize;
        padding: 30px 30px 20px 20px;
    }
}

@media (min-width: 850px) {
    .overallDateContainer .dateHeadline {
        padding: 30px 30px 20px 35px;
    }
}
/**/
/* Wraps all games for that date */
/**/
.gamesInDateContainer {
    display: block;
    background: #ececec;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
    .gamesInDateContainer {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-gap: 15px 15px;
        background: transparent;
        box-shadow: none;
        padding: 0 30px;
    }
}

@media (min-width: 767px) {
    .gamesInDateContainer {
        padding: 0;
    }
}

@media (min-width: 850px) {
    .gamesInDateContainer {
        grid-template-columns: repeat(3, auto);
        grid-gap: 10px 10px;
    }
}
/**/
/* Single game box */
/**/
.singleGameContainer {
    padding: 10px 30px 7px 30px;
    margin: 0 0 5px 0;
    background: #fff;
}

@media (min-width: 600px) {
    .singleGameContainer {
        border-radius: 5px;
        padding: 15px 20px 10px 20px;
        margin: 0;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 850px) {
    .singleGameContainer {
        padding: 15px 35px 10px 35px;
    }
}
/**/
/* Final or not row */
/**/
.gamePlayed {
    display: grid;
    grid-template-columns: 50%;
    align-items: baseline;
    padding: 0 0 10px 0;
}

    .gamePlayed p {
        grid-area: 1/1;
        font-size: 17px;
        font-weight: 700;
        justify-self: left;
        color: #797979;
        padding: 0 5px 0 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;
    grid-template-columns: 100%;
    align-items: baseline;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    padding: 0 0 10px 0;
}

@media (min-width: 600px) {
    .gameNotPlayed {
        padding: 0 0 10px 0;
    }
}
/**/
/*  Game Time */
/**/
.gameNotPlayed .gameTime {
    grid-area: 1 / 1;
    justify-self: left;
    font-size: 20px;
    font-weight: 700;
    color: var(--HeadlineColor);
    padding: 0;
}

.gameNotPlayed .gameType {
/*    grid-area: 1 / 2;*/
    justify-self: right;
    font-family: "Bai Jamjuree";
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    padding: 0;
}

@media (min-width: 768px) {
    .gameNotPlayed .gameTime {
        font-size: 21px;
    }

    .gameNotPlayed .gameType {
        font-size: 15px;
    }
}

.gameFieldLocation {
    font-size: 14px;
    padding: 0 0 10px 0;
    font-weight: 500;
}
/**/
/* 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: flex-start;
}

.gameTeams .visitor .teamLogo {
    grid-area: 2/1;
    justify-self: flex-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;
}
