
.reproductor
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2.5%;   
}

.title-r
{
    font-size: 20px;
    font-weight: 600;
    color: #060624;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}
.container-r
{
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    overflow: hidden;
    /* border: 2px solid red; */
}
.container-r #main-Video
{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    outline: none;
}

#searchInput{
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #060624;
    outline: none;
    border: 2px solid #375666;
    border-radius: 5px;
    margin-bottom: 10px;
}
.playlistBx
{
    position: relative;
    height: 100%;
    margin: 0 10px 0 10px;
    /* border: 2px solid green; */
}

.playlist
{ 
    overflow-y: auto; 
    border: 1px solid #ccc;
    position: absolute;
    width: 100%;
    height: calc(85% - 40px);
    overflow-y: scroll;
    border-top: 1px solid #dcdee1;
    padding-bottom: 42px;
}
.playlist::-webkit-scrollbar
{
   width: 0px;
}
.playlistBx .row .AllLessons
{
   display: block;
   text-align: left;
   color: #060624;
   font-size: 15px;
   font-weight: 700;
   margin-left: 20px;
   line-height: 40px;
}
.playlist li
{
   display: flex;
   justify-content: space-between;
   align-items: center;
   list-style: none;
   color: #060624;
   cursor: pointer;
   border: 1px solid transparent;
   padding: 15px 20px;
   border-radius: 5px;
}
.playlist li:hover
{
    border: 0.5px solid #375666;
}



.playlist li .row span
{
    font-size: 15px;
    font-weight: 400;
    color: #060624;
    text-decoration: none;
    display: inline-block;
    text-align: left;
}
.playlist li .row span::before
{
    content: '\f01d';
    font-family: FontAwesome;
    color: #060624;
    margin-right: 15px;
    font-size: 20px;
}
ul li.playing .row span::before
{
    content: '\f28c';
    font-family: FontAwesome;
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
}
.playlist li.playing .row span
{
   color: #fff;
}
.playlist li span.duration
{
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    color: #060624;
    text-align: right;
}
.playlist li.playing
{
   pointer-events: none;
   background: #1d3541;
   border: 0.5px solid #1d3541;
}

@media(max-width: 1092px){
    .reproductor
    {
        padding: 30px 10px;
    }
    .container-r
    {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        overflow: hidden;
    }
    .container-r #main-Video
    {
        height: 100%;
    }
    .playlistBx
    {
        height: 380px;
        margin-top: 10px;
    }
    .playlist
    {
        position: absolute;
        width: 100%;
        height: calc(85% - 40px);
        overflow-y: scroll;
    }
}