#custom_ytp_dom {
    user-select: none;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
}

#custom_ytp_movie_area {
    z-index: 201;
    width: 100%;
    height: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

#custom_ytp_frame,
#custom_ytp_frame_mask {
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    z-index: 202;
}

#custom_ytp_frame_mask {
    z-index: 204;
}

#custom_ytp_close,
#custom_ytp_play,
#custom_ytp_volume {
    background: url("../img/player_ctrl.png") no-repeat;
    position: absolute;
    z-index: 210;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#custom_ytp_close {
    top: 0;
    right: 0;
    background-position: 0px 0px;
}

#custom_ytp_close:hover {
    background-position: -40px 0px;
}

#custom_ytp_ctrl {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 100px;
    z-index: 210;
    box-sizing: border-box;
}

#custom_ytp_play {
    top: 0;
    left: 60px;
    background-position: 0 -40px;
}

#custom_ytp_play:hover {
    background-position: -40px -40px;
}

#custom_ytp_play.pause {
    background-position: 0 -80px;
}

#custom_ytp_play.pause:hover {
    background-position: -40px -80px;
}

#custom_ytp_seekbar {
    width: 100%;
    height: 20px;
    margin: 10px 0;
    position: relative;
}

#custom_ytp_seekbar::before {
    content: " ";
    display: block;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 2px;
    margin: 9px 0;
    position: absolute;
}

#custom_ytp_seekbtn {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    top: 0px;
    z-index: 211;
    left: 0;
    margin-left: -10px;
    cursor: pointer;
}

#custom_ytp_seekbtn::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #FFE600;
    opacity: 0.7;
    width: 0;
    height: 0;
    border-radius: 20px;
    transition: all 0.25s ease-out;
}

#custom_ytp_seekbar:hover #custom_ytp_seekbtn::before {
    width: 100%;
    height: 100%;
}

#custom_ytp_seekbtn::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: #FFF;
    width: 2px;
    height: 2px;
}

#custom_ytp_played {
    width: 0;
    height: 2px;
    margin: 9px 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    transition: background-color 0.25s linear;
}

#custom_ytp_seekbar:hover #custom_ytp_played {
    background: rgba(255, 230, 0, 0.8);
}

#custom_ytp_loaded {
    width: 0;
    height: 2px;
    margin: 9px 0;
    position: absolute;
    background: #FFF;
    opacity: 0.2;
}

#custom_ytp_volume {
    top: 0;
    right: 60px;
    background-position: 0 -120px;
}

#custom_ytp_volume:hover {
    background-position: -40px -120px;
}

#custom_ytp_volume.mute {
    background-position: 0 -160px;
}

#custom_ytp_volume.mute:hover {
    background-position: -40px -160px;
}