.wrapper .video_player .playlist{
    overflow: hidden;
    transition: all .5s ease-in-out;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.wrapper .video_player .playlist{
    width: 100%;
    height: auto;
    padding: 15px;
    background: transparent;
    overflow-y: scroll;
    color: #fff;
}

.wrapper .video_player .playlist::-webkit-scrollbar{
    width: 0;
}
.wrapper .video_player .playlist li{
    width: 100%;
    height: auto;
    padding: 5px;
    cursor: pointer;
}

.wrapper .video_player .playlist li a{
    color: #fff;
}

.wrapper .video_player .playlist li img{
    width: 100%;
}

.wrapper .video_player .playlist li:hover,
.wrapper .video_player .playlist li.active{
    border: 2px solid var(--main);
}

.wrapper .video_player .playlist li.active:hover{
    user-select: auto;
}

.wrapper .info{
    margin-top: 20px;
    position: relative;
    transition: all .5s ease-in-out;
}

.wrapper.seria .info{
    margin-top: 450px;
}

.wrapper .info .short_info{
    width: 55%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.wrapper .info .short_info .table{
    width: 100%;
    height: 269px;
    color: #fff;
    display: grid;
    grid-template-columns: 50% 50%;
}

.wrapper .info .short_info .table .row{
    padding: 10px;
    display: grid;
    grid-template-rows: repeat(calc(100% / 6));
}

.wrapper .info .short_info .table .row_1{
    color: #858585;
}

.wrapper .info .short_info .table .row span{
    display: block;
    padding: 10px 15px;
    user-select: none;
}

.wrapper .info .short_info .table .row span a{
    color: #fff;
}

.wrapper .info .text_info{
    margin-top: 20px;
    color: #fff;
}

.wrapper .info .text_info h3.sls{
    font-size: 32px;
    margin: 10px 0;
}

.show_more{
    width: 300px;
    padding: 10px 20px;
    background: var(--main);
    outline: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    position: relative;
    left: 50%;
    transform: translate(-50%);
    border: none;
}

.show_more::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: calc(100% - 4px);
    height: 100%;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    background: #393939;
    z-index: 2;
    transition: all .7s ease-in;
}

.show_more:hover::before{
    width: 0;
}

.show_more span{
    position: relative;
    z-index: 99;
}

@media (max-width: 768px) {
    .wrapper .video_player .playlist{
        grid-template-columns: 50% 50%;
    }
    .show_more{
        font-size: 10px;
        padding: 8px 10px;
    }
    .wrapper .info{
        margin-top: 20px;
    }
    .wrapper .info .short_info{
        width: 100%;
        display: block;
    }
    .wrapper .info .short_info img{
        width: 50%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .wrapper .info .short_info .table{
        height: 175px;
    }
    .wrapper .info .short_info .table .row{
        padding: 5px;
    }
    .wrapper .info .short_info .table .row span {
        padding: 5px 10px;
        font-size: 16px;
    }

    .wrapper .info .text_info .start {
        margin-bottom: 14px;
    }

    .wrapper .info .text_info .start h3 {
        font-size: 24px;
    }
    .wrapper .info .text_info .start span {
        font-size: 12px;
    }

    .wrapper .info .text_info p {
        font-size: 16px;
    }

    .wrapper .info .text_info h3.sls {
        font-size: 24px;
    }

    .wrapper .footer{
        margin-bottom: 10px;
        font-size: 10px;
    }
}