/* "competition" container */
.schedule_page_container{
    padding-top: 166px;
}

/* Section titles */
.schedule_page_container .h2{
    color: white;
}

/* Competition filter container */
.schedule_page_individual_filters{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: end;
}

/* Tournament + team filter */
.schedule_page_individual_filters > div{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tournament + team filter title */
.schedule_page_individual_filters .caption2{
    color: var(--grey1);
}

/* Team filter */
.schedule_team_select{
    width: 90px;
}

/* Competition filter section */
.schedule_page_filter_section{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}


/* next game results container */
.scheduled_game_time_place{
    background-color: var(--grey3);
    padding: 30px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team information */
.scheduled_game_team_intro{
    display: flex;
    align-items: center;
    gap:15px;
}

/* First team text */
.scheduled_game_first_team p{
    text-align: right;
    color: var(--grey1);
}

/* Second team text */
.scheduled_game_second_team p{
    text-align: left;
    color: var(--grey1);
}

/* Next game section titles */
.scheduled_game_time_place h3{
    color: var(--white1);
}

/* Team logos in next game */
.scheduled_game_team_intro img{
    height: 80px;
    max-width: 80px;
    width: auto;
}

/* Team logos in results table */
.scheduled_game_team_info img{
    width: 30px;
    height: 30px;
}

/* Next match info text */
.scheduled_game_info p{
    color: var(--grey1);
}

/* Next match info container*/
.scheduled_game_info{
    background-color: var(--grey2);
    display: flex;
    justify-content: space-between;
    padding: 17px 30px;
}

/* Show more results button div */
.schedule_page_button_div{
    display: flex;
    justify-content: center;
}

/* Show more results button  */
.schedule_page_button{
    padding: 15px 25px;
    background-color: var(--grey2);
    color: var(--white1);
    text-decoration: none;
    transition: 0.4s all;
}

/* Show more results button (hover)  */
.schedule_page_button:hover{
    background-color: var(--grey4);
    transition: 0.4s all;
}

/* Time and date (in next match section) */
.schedule_page_time_and_date{
    display: flex;
    gap: 7px;
    justify-content: center;
}

/* Game information (in next match section) */
.game_information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 40px;
    gap: 7px;
}

/* Day of competition */
.schedule_day_of_competition{
    color: var(--white1);
}

/* Time of competition */
.schedule_time_of_competition{
    color: var(--green2);
}

/* Competition place */
.schedule_competition_place{
    color: var(--grey1);
}

/* Schedule page header */
.schedule_competition_header{
    display: flex;
    justify-content: space-between;
}

/* Competition place div */
.schedule_competition_place_div{
    display: flex;
    gap: 7px;
    align-items: center;
}

/* Location icon (in competition place div) */
.schedule_competition_place_div img{
    height: 10px;
    width: 8.3px;
}

/* Next match main section */
.schedule_page_section{
    margin-bottom: 100px;
}

/* Scheduled game (only 1) */
.scheduled_game_div{
    margin-top: 30px;
}

/* Show more button */
#show-more-schedule-results{
    margin-top: 30px;
}

@media screen and (max-width:1150px){

    /* "competition" container */
    .schedule_page_container{
        padding-top: 96px;
    }
}

@media screen and (max-width:1000px){

    /* First team information */
    .scheduled_game_first_team{
        flex-direction: column-reverse;
        gap:10px;
    }

    /* Next game section titles */
    .scheduled_game_time_place h3{
        text-align: center;
    }

    /* Second team information */
    .scheduled_game_second_team{
        flex-direction: column;
    }

    /* First/Second team text */
    .scheduled_game_first_team p, .scheduled_game_second_team p{
        text-align: center;
    }
}

@media screen and (max-width:900px){
    
    /* Tournament + team filter */
    .schedule_page_individual_filters > div{
        flex-direction: column;
        align-items: start;
        gap: 0px;
    }
}

@media screen and (max-width:769px){
    
    /* "competition" container */
    .schedule_page_container{
        padding-top: 55px;
    }

    /* Competition filter section */
    .schedule_page_filter_section{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Competition filter container */
    .schedule_page_individual_filters{
        gap: 25px;
        justify-content: start;
    }

    /* Competition filter section title*/
    .schedule_page_container .h2{
        font-size: 24px;
        line-height: 27px;
        font-weight: 600;
    }

    /* Tournament + team filter title */
    .schedule_page_individual_filters .caption2{
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }

    /* Team logos in results table */
    .scheduled_game_team_info img{
        width: 25px;
        height: 25px;
    }

    /* Next match main section */
    .schedule_page_section{
        margin-bottom: 30px;
    }

    /* All results  + show schedule buttons  */
    .schedule_page_button{
        padding: 14px 20px;
        font-size: 14px;
        line-height: 17px;
        font-weight: 600;
    }

    /* Team logos in next/last game */
    .scheduled_game_team_intro img{
        height: 45px;
        max-width: 50px;
    }

    /* Next game results container */
    .scheduled_game_time_place{
        padding: 20px 25px;
    }

    /* Where match will take place */
    .scheduled_game_info{
        padding: 13px 15px;
    }

    /* Next game section titles */
    .scheduled_game_time_place h3{
        font-size: 14px;
        line-height: 17px;
        font-weight: 600;
    }

    /* First/Second team text */
    .scheduled_game_first_team p, .scheduled_game_second_team p{
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }

    /* Next game results container */
    .scheduled_game_time_place{
        justify-content: space-between;
        gap: 10px;
    }

    /* Where match took place and tournament text*/
    .scheduled_game_info p{
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }

    /* First team information */
    .scheduled_game_first_team{
        gap:10px;
    }

    /* Second team information */
    .scheduled_game_second_team{
        gap: 10px;
    }

    /* Day/Time of competition */
    .schedule_day_of_competition, .schedule_time_of_competition{
        font-size: 16px;
        line-height: 23px;
        font-family: 'Axiforma';
        font-weight: 600;
        text-wrap: nowrap;
    }

    /* Time and date (in next match section) */
    .schedule_page_time_and_date{
        gap: 4px;
    }

    /* Competition place */
    .schedule_competition_place{
        font-size: 10px;
        line-height: 14px;
        font-weight: 400;
    }

    /* Location icon (in competition place div) */
    .schedule_competition_place_div img{
        height: 8px;
        width: 6.67px;
    }

    .schedule_competition_header{
        flex-direction: column;
        justify-content: start;
        gap: 20px;
    }
}