/***************************************
* #### ycp.js v8.0 ####
* Coded by Ican Bachors 2014.
* https://github.com/bachors/ycp.js
* Updates will be posted to this site.
***************************************/


/* ── Video player area ── */
.ycp .belah.ycp_vid_play {
    cursor: pointer;
    background: #000;
    position: relative;
    flex: 1;
}

.ycp .belah.ycp_vid_play a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255,0,0,.85);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background .2s, transform .2s;
    text-decoration: none;
}

.ycp .belah.ycp_vid_play a:hover {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.ycp .belah.ycp_vid_play a::before {
    content: "▷";
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}

.ycp .belah .bingkay {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Playlist header ── */

.ycp .belah .luhur .tombol {
    display: inline-block;
    cursor: pointer;
}

.ycp .belah .luhur .about {
    float: right;
}

.ycp .belah .handap .title {    
    white-space: nowrap;
    overflow: hidden;
}

/* ── Playlist item ── */
.ycp .belah .play {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.ycp .belah .play:last-child { padding-bottom: 1rem; }

.ycp .belah .vid-active::before {
    content: "";
    position: absolute;
    top: 1.8rem;
    left: 0.25rem;
    width: 8px;
    height: 8px;
    background: rgb(239,68,68,1);
    border-radius: 100%;
}

.ycp .belah .play { position: relative; }

/* ── Thumbnail ── */
.ycp .belah .thumb {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    height: 51px;
    overflow: hidden;
    background: #000;
}

.ycp .belah .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.ycp .belah .thumb span {
    position: absolute;
    right: 3px;
    bottom: 3px;
    padding: 1px 4px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .3px;
}

/* ── Item text ── */

    .ycp .belah.ycp_vid_play {
        aspect-ratio: 16 / 9;
        height: auto;
    }