/* BARRA IZQUIERDA PRESENTE EN TODAS LAS VISTAS */
.sidebarI{
    /* border: solid 1px; */
    position: fixed;
    left: 0;
    width: 150px;
}

/* SECCIONES DE LA BARRA IZQUIERDA */
/* seccion historial */
.titulo-seccion-barra-izquierda{
    color: white;
    display: flex;
    align-items: center;
    gap: 2vh;
    font-weight: 400;
    width: fit-content;
    background-color: var(--verdeSecundario);
    box-shadow: 1px 1px 10px #e8e8e8 ;
    padding: 1vh;
    border-radius: .3cap;

    i{
        color: var(--naranja);
    }
}

.botones-historial{
    display: flex;
    gap: 2vh;
    width: fit-content;

    #btn-videos,#btn-comentarios,#btn-busquedas{
        color: white;
        padding: .5vh 1vh;
        border-radius: .5cap;
        background-color: var(--naranja);
        border: none;
        font-weight: 300;
        &:hover{
            cursor: pointer;
            box-shadow: 1px 1px 10px #dcd9d9;
        }
    }
}

.cuerpo-principal{
   display: flex;
   flex-direction: column;
   gap: 3vh;
}

.contenido-seccion-izquierda{
    /* padding: 5vh 0; */
    /* border: solid 1px; */
    display: flex;
    gap: 3vh;
    flex-wrap: wrap;
}

.item{
    color: var(--colorTitulos);
    border-radius: .5cap;
    padding: .5vh;
    font-size: 2vh;
    font-weight: 300;
    width: 25%;

    border: solid 1px #dcd9d9;
    box-shadow: 1px 1px 10px #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 2vh;

    a{ 
        color:var(--verdePrincipal); 
        border-radius: .5cap .5cap 0 0;
        font-weight: 500;
        font-size: 2.2vh;
        overflow: hidden; /* Oculta el texto que sobresale */
        white-space: nowrap; /* Evita el salto de línea */
        text-overflow:ellipsis;
    }
}

.info-video{
    width: 100%;
    font-size: 1.8vh;
    display: flex;
    flex-direction: column;
    gap: .5vh;

    i{
        color: var(--naranja);
    }
}

.p-busqueda{
    color: var(--verdePrincipal);
}



/* seccion vivo*/
.no-transmision{
    color: var(--colorTitulos);

}

/* .item-vivo{
    background-color: aqua;
} */

.p-info-vivo{
    color: var(--verdePrincipal);
    font-size: 2vh;
    line-height: 2.5vh;


    i{
        color: var(--naranja);
    }
}

/* Seccion contacto */

.formulario-contacto{
    border-radius: .5cap;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    padding: 2vh;
    width: 50%;
    box-shadow: 1px 1px 10px #e8e8e8;
    background-color: white;

    input{
        border:solid 1px #dcd9d9;
        padding: .5vh;
        border-radius: .3cap;
        /* color: var(--naranja); */
        width: 75%;
        font-size: 2vh;
        font-weight: 300;
    }

    label{
        color: var(--verdePrincipal);
        width: 25%;
        font-weight: 400;
    }

    button{
        background-color: var(--naranja);
        border: none;
        color: white;
        width: fit-content;
        padding: .5vh 1vh;
        border-radius: .3cap;
        margin: 0 auto;
        font-weight: 300;

        &:hover{
            cursor: pointer;
            background-color: var(--verdeSecundario);
        }
    }

    textarea{
        width: 75%;
    }
}

.div-contacto{
    display: flex;
    gap: 1vh;
    align-items: center;
    border-bottom: solid 1px #dcd9d9;
    padding: .5vh;
}