.content {

    &>.content-body {
        padding: 26px 38px;
        display: flex;
        align-items: center;
        width: 100%;

        &>.logo {
            background-color: var(--main-bg-color);
            margin-right: 12px;
            width: 134px;
            height: 134px;
            display: flex;
            align-items: center;
            justify-items: center;
            justify-content: center;
            border-radius: 16px;

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

                &>img {
                    width: 50px;
                    height: 50px;
                    display: block;
                    border-radius: 16px;
                }
            }

        }

        &>.nombre {
            &>h3 {
                margin: 0;
            }
        }

        &>.datos-equipo.active {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 1fr);
            grid-column-gap: 18px;
            grid-row-gap: 18px;
            width: 100%;
            &>.cajadatos {
                display: flex;
                padding: 10px 18px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                border-radius: 11px;
                background: #FFF;
                height: 100%;

            }

            &>.telefono {
                grid-area: 1 / 1 / 2 / 2;
            }

            &>.web {
                grid-area: 2 / 1 / 3 / 2;
            }

            &>.email {
                grid-area: 1 / 2 / 2 / 3;
            }

            &>.responsable {
                grid-area: 2 / 2 / 3 / 3;
            }

            &>.pabellon {
                grid-area: 1 / 3 / 3 / 4;
            }

            &>.pertenece {
               grid-area: 1 / 4 / 3 / 5;

                &>.tittle {
                    font-family: 'Syne';
                    font-weight: bold;
                }

                &>div {
                    color: #666666;
                }

                &>.pertenece-content {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    flex-direction: column;
                    justify-content: space-between;

                    &>.pertenece-button {
                        text-align: end;

                        &>a {
                            padding: 8px 16px;
                            justify-content: center;
                            align-items: center;
                            gap: 8px;
                            border-radius: 50px;
                            background: #FFF;
                        }
                    }
                }
            }

        }
    }

    &>.menu {
        &>ul {
            display: flex;
            margin-top: 32px;
            border: none;

            &>li {
                margin-right: 53px;
                height: 40px;
                display: flex;

                &>a {
                    color: #666666;
                    font-weight: 600;
                    padding-bottom: 12px;
                    border: none;
                }
            }

            & .active {
                &>a {
                    color: black;
                    font-weight: 600;
                    border: none;
                    border-bottom: 4px solid var(--componet-primary-color);
                }
            }
        }

    }

    #equipos {
        width: 100%;

        &>.tittle {
            display: flex;

            padding: 12px 12px 12px 22px;
            align-items: center;
            border-radius: 15.549px;
            background: rgba(255, 255, 255, 0.60);
            backdrop-filter: blur(1.2957518100738525px);

            &>h3 {
                color: #050505;
                font-family: "Syne";
                font-size: 17px;
                font-style: normal;
                font-weight: 600;
                line-height: 21px;
                letter-spacing: -0.102px;
                text-transform: uppercase;
            }
        }

        &>.table-responsive {
            &>table {
                &>thead {
                    background-color: var(--componet-primary-color);
                    color: var(--componet-primary-color-text);

                    &>tr {
                        &>th {
                            padding: 18px 10px;
                            text-align: center;
                        }

                        &>th:first-child {
                            text-align: left;
                            padding-left: 36px;
                        }
                    }


                }

                &>tbody {
                    &>tr:nth-child(odd) {
                        background-color: var(--main-bg-color);
                    }

                    &>tr:nth-child(even) {
                        background-color: var(--main-content-color);
                    }

                    &>.equipo-actual {
                        &>td {

                            &>.posicion,
                            .puntos {
                                background: var(--componet-primary-color);
                                color: var(--componet-primary-color-text);
                            }
                        }

                    }
                }
            }
        }
    }

    #partidos {
        width: 100%;

        &>div {
            &>table {
                &>thead {
                    background-color: var(--componet-primary-color);
                    color: var(--componet-primary-color-text);

                    &>tr {
                        &>th {
                            padding: 18px 10px;
                            text-align: center;
                        }

                        &>th:first-child {
                            text-align: left;
                            padding-left: 36px;
                        }
                    }

                }

                &>tbody {
                    &>tr:nth-child(odd) {
                        background-color: var(--main-bg-color);
                    }

                    &>tr:nth-child(even) {
                        background-color: var(--main-content-color);
                    }

                    &>tr {
                        &>td:first-child {

                            padding-left: 36px;
                        }

                        &>td {

                            &>.col-estadisticas,
                            .col-directo {
                                display: flex;
                                justify-content: center;

                                &>a {
                                    min-width: 36px;
                                    margin: 4px;
                                }
                            }

                            &>.equipos-col {
                                display: flex;


                                &>.escudos-partido {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    gap: 10px;
                                    margin-right: 10px;

                                    &>a {
                                        min-width: 43px;
                                        min-height: 43px;
                                        display: flex;
                                        border-radius: 36px;
                                        background-color: white;
                                        justify-content: center;
                                        align-content: center;
                                        align-items: center;

                                        &>img {
                                            width: 34px;
                                            min-width: 34px;
                                            min-height: 34px;
                                            display: block;
                                            border-radius: 36px;
                                        }
                                    }
                                }
                            }

                            &>.custom-col {
                                display: flex;
                                padding: 8px 16px;
                                justify-content: center;
                                align-items: center;
                                gap: 8px;
                                align-self: stretch;
                                border-radius: 50px;
                                background: #FFF;

                            }

                            &>.custom-col-circle {
                                max-width: 36px;
                                max-height: 36px;
                                display: flex;
                                padding: 9px;
                                align-items: center;
                                gap: 10px;
                                align-self: stretch;
                                border-radius: 50px;
                                background: #FFF;
                            }

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

                        &>.col-lugar {
                            max-width: 166px;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                    }
                }
            }
        }
    }

    .capa_jornada {
        height: 36px;
        width: 36px;
        background-color: var(--main-content-color);
        text-align: center;
        font-size: 14px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        border-radius: 50px;

        &.jornada_actual {
            background-color: var(--componet-primary-color);
            color: white;
        }
    }

    .custom-width {
        width: auto;
        padding: 0 10px;
    }




    .titulos-competiciones {

        &>h4 {
            font-family: "Syne", sans-serif;
            font-size: 17px;
            font-style: normal;
            font-weight: 600;
        }
    }

    .titulo_jornadas {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: end;
    }

    .nombre-jornada-actual {
        color: #050505;

        font-variant-numeric: lining-nums proportional-nums;
        font-family: "Syne", sans-serif;
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: 21px;
        letter-spacing: -0.102px;
        text-transform: uppercase;
    }

    .fecha-jornada-actual {
        color: #666;
        font-variant-numeric: lining-nums proportional-nums;
        font-family: "Syne", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 21px;
        letter-spacing: -0.084px;
        text-transform: uppercase;
    }
}