.grid-month_math {
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.c-season h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fc0706;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.container {
    display: flex;
    justify-content: center;
    position: relative;
}

.c-column_match {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.match_same_date {
background-color: #f3f3f3;
border-radius: 0px 10px 10px 0px;
padding: 30px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin-bottom:20px;
}

.match_same_date::before {
content: "";
position: absolute;
top: 0%;
bottom: 0%;
left: 0;
width: 6px;
background-color: #fc0706;
border-radius: 0 0px 0px 0;
}

.c-m_date {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-m_date:after {
    content: "";
    border: solid 1px #a9b7c8;
    height: 100px;
    margin-left: 70px;
}

.c-league_img img {
    max-height: 60px;
}

.cell.medium-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.c-date_hour {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.day_match .grid-x {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.c-nom_equipe,
.c-nom_equipe_2 {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.c-nom_equipe {
    margin-right: 10px;
    gap: 10px;
}

.c-nom_equipe_2 {
    margin-left: 10px;
    gap: 10px;
    flex-direction: row-reverse;
}

.c-nom_equipe img,
.c-nom_equipe_2 img {
    height: 40px;
}

.c-goals {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
}
.btn-red {
        background: #fc0706 !important;
        color: #fefefe !important;
        padding: 7px 10px !important;
    }
    
.btn-red:hover {
        background: #fefefe !important;
        color: #fc0706 !important;
    }
@media screen and (max-width: 768px) {
    .match_same_date {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 15px 30px 15px;
        background-color: #f3f3f3;
        border-radius: 0px 10px 10px 0px;
        padding: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 20px;
    }

    .c-date_hour {
        font-size: 16px;
        text-align: left;
    }

    .day_match .grid-x {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .c-goals {
        order: 2;
        font-size: 39px;
        margin: 2px 0;
    }

    .c-nom_equipe,
    .c-nom_equipe_2 {
        order: 1;
        font-size: 14px;
        justify-content: center;
    }

    .c-nom_equipe_2 {
        flex-direction: row;
    }

    .c-league_img {
        position: absolute;
        top: -120px;
        left: -64px;
        width: 30px;
    }

    .c-nom_equipe img,
    .c-nom_equipe_2 img {
        height: 30px;
    }
.c-m_date:after {
    display:none;
}
}