/************************ Team List ***************************/
.category_banner {
    display: flex;
    align-items: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--black);
}

.category_banner .button_2 {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    margin-right: 15px;
}

.category_banner .button_2:last-of-type {
    margin-right: 0;
}

.category_banner .button_2:hover,
.category_banner .selected {
    background-color: var(--black);
    color: var(--white);
}

.heading {
    font-size: 70px;
    margin-top: 92px;
    margin-bottom: 80px;
    text-align: center;
}

#results,
#fixtures {
    display: none;
    opacity: 0;
	transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) .3s;
}

.results_section {
    margin-bottom: 180px;
}

.show {
    display: block !important;
    opacity: 1 !important;
    transition: all 1.5s cubic-bezier(0.35, 1, 0.45, 1) .3s;
}

.match,
.result {
    position: relative;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    margin-bottom: 15px;
}

.match:last-of-type,
.result:last-of-type {
    margin-bottom: 0;
}

.match_details,
.result_details {
    display: flex;
    align-items: center;
    width: 220px;
    min-height: 10px;
}

.score {
    display: flex;
    justify-content: center;
    align-items: center;
}

.score h4 {
    width: 320px;
}

.score h4:first-of-type {
    text-align: right;
}

.home_or_away {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px !important;
    height: 46px !important;
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    font-style: normal;
    font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 709;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    border: none;
    outline: none;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.opponent {
    margin: 0;
}

.date,
.time {
    margin: 0;
    width: 160px;
}

.time {
    font-weight: 700;
}

.goals {
    height: 46px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: var(--red);
    font-style: normal;
    font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 709;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 40px;
}

.goals h5 {
    width: 40px;
}

.goals .vertical_divider {
    height: 15px;
    width: 2px;
    background-color: var(--white);
    margin: 0 20px;
    opacity: 0.5;
}

@media (max-width: 1550px) {
    .score h4 {
        font-size: 20px;
        width: 260px;
    }
}

@media (max-width: 1400px) {
    .match h4 {
        font-size: 20px;
    }

    .result {
        flex-direction: column-reverse;
    }

    .result_details {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .result_details:last-of-type {
        height: 0;
        min-height: 0;
        margin: 0;
    }

    .result_details .home_or_away {
        margin-top: 20px;
    }
}

@media (max-width: 980px) {
    .score {
        flex-direction: column;
        text-align: center !important;
    }

    .score h4:first-of-type {
        text-align: center !important;
    }

    .goals {
        margin: 20px auto;
    }
}

@media (max-width: 800px) {
    .heading {
        margin-top: 70px;
    }
}

@media (max-width: 800px) {
    .match {
        flex-direction: column-reverse;
    }

    .match_details {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .match_details .home_or_away {
        margin-top: 20px;
    }
}

@media (max-width: 650px) {
    .category_banner {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .heading {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .category_banner {
        flex-direction: column;
        padding: 20px 0;
    }

    .category_banner .button_2 {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .category_banner .button_2:last-of-type {
        margin-bottom: 0;
    }
}