.info-content {
    border-radius: 16px;
    background: #FFF;
    padding: 21px;

    &>.partido-content {
        display: flex;
        justify-content: center;

        &>.partido-data {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: space-between;

            &>div:first-child {
                text-align: center;

                &>.resultados {
                    color: #050505;
                    font-variant-numeric: lining-nums proportional-nums;
                    font-family: Syne;
                    font-size: 28px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 32px;
                    /* 114.286% */
                    letter-spacing: -1.176px;
                    text-transform: uppercase;
                }
            }
        }
    }

    &>.versus-nombre {
        display: flex;
        justify-content: space-evenly;
        margin-top: 20px;

        &>.custom-col {

            &>div {
                text-align: center;
            }

            &>div:nth-child(odd) {
                color: #050505;
                font-family: "DM Sans";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;
                letter-spacing: -0.028px;
            }

            &>div:nth-child(even) {
                color: #050505;
                font-family: Syne;
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: 14px;
                letter-spacing: -0.028px;
            }
        }
    }
}

.equipo-imagen {
    background-color: var(--main-bg-color);
    margin-right: 34px;
    margin-left: 34px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    border-radius: 16px;

    &>.image-content {
        height: 38px;
        width: 38px;
        border-radius: 100px;
        background-color: white;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;

        &>img {
            max-width: 31px;
            min-height: 31px;
        }
    }
}

.partido-campo {
    display: flex;
    justify-content: center;
    margin-top: 22px;

    &>div {
        color: #666;
        font-family: "DM Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
        /* 116.667% */
        letter-spacing: -0.024px;
        text-align: center;
    }
}

.custom-col {
    border-radius: 21px;
    border: 1px solid #f1f1f1;
    background: #FFF;
}