:root {
    --ytd-player-width-ratio: 16;
    --ytd-player-height-ratio: 9;
    --ytpl-player-min-height: 480px;
    --ytpl-player-min-width: calc(var(--ytpl-player-min-height) * (var(--ytd-player-width-ratio) / var(--ytd-player-height-ratio)));
}

@media screen and (max-width: 992px) {

    :root {
        --ytpl-player-min-height: 320px;
    }

}

.clear {
    clear: both;
}

/**
 * TODO ::: Main
 */
.ytpl-render {
    direction: ltr !important;
    user-select: none !important;
    position: relative;
    line-height: 0;
    width: 100%;
}

.ytpl-render * {
    box-sizing: border-box;
}

/**
 * TODO ::: Player
 */
.ytpl-skin-youtube .ytpl-player {
    width: 100%;
    text-align: center;
}

.ytpl-skin-youtube .ytpl-video-player {
    position: relative;
    display: inline-block;
    width: var(--ytpl-player-min-width);
    height: var(--ytpl-player-min-height);
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    line-height: normal !important;
}

.ytpl-skin-youtube.vpp-page .ytpl-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    min-height: 100% !important;
}

.ytpl-skin-youtube .ytpl-video {
    width: 100% !important;
    height: 100%;
    background-color: #000;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-overlay,
.ytpl-skin-youtube .ytpl-video-player .ytpl-bottom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
    transition: all 0.16s ease;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-bottom-overlay {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.ytpl-skin-youtube .ytpl-player.ytpl-overlay .ytpl-top-overlay,
.ytpl-skin-youtube .ytpl-player.ytpl-overlay .ytpl-bottom-overlay {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 23, 23, 0.9);
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.ytpl-skin-youtube .ytpl-player.ytpl-dark-overlay .ytpl-dark-overlay {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: 7;
}

.ytpl-skin-youtube .ytpl-player.ytpl-thumbnail .ytpl-thumbnail {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-center-action {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 8;
}

.ytpl-skin-youtube .ytpl-player:not(.ytpl-video-played) .ytpl-center-action {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-center-action .ytpl-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 66px;
    height: 66px;
    transform: translate(-50%, -50%);
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-center-action .ytpl-button {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-player.ytpl-video-played .ytpl-center-action .ytpl-button.ytpl-pause {
    display: block;
}

.ytpl-skin-youtube .ytpl-player:not(.ytpl-video-played) .ytpl-center-action .ytpl-button.ytpl-play {
    display: block;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-center-action .ytpl-original-button {
    width: 68px;
    height: 48px;
    margin: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-center-action .ytpl-original-button .shape {
    fill: #212121;
    fill-opacity: 0.8;
}

.ytpl-skin-youtube .ytpl-video-player:hover .ytpl-center-action .ytpl-original-button .shape {
    fill: #f00;
    fill-opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 16px 0 16px;
    z-index: 11;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-player.ytpl-top-bar .ytpl-top-bar {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-top-bar-content {
    flex: auto;
    text-align: left;
    padding: 10px 0 0 10px;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-title {
    width: 100%;
    text-overflow: ellipsis;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-description-btn {
    display: inline-block;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: #212121;
    background-color: #fff;
    margin-top: 6px;
    padding: 2px 4px;
    border-radius: 2px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-top-bar-button {
    flex: none;
    align-self: center;
    white-space: nowrap;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-top-bar-button .ytpl-item {
    float: right;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-top-bar-button .ytpl-item .ytpl-icon {
    height: 36px;
    width: 36px;
    margin: auto;
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-top-bar .ytpl-top-bar-button .ytpl-item span {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-subtitle {
    position: absolute;
    bottom: 26px;
    text-align: center;
    left: 0;
    right: 0;
    width: 600px;
    max-width: 90%;
    margin: auto;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.ytpl-skin-youtube .ytpl-player.ytpl-subtitle .ytpl-subtitle {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-subtitle span {
    font-family: Roboto, arial, sans-serif;
    font-size: 20px;
    color: #fff;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
}

.ytpl-skin-youtube .ytpl-player.ytpl-thumbnail .ytpl-subtitle {
    display: none;
}

.ytpl-skin-youtube .ytpl-player.ytpl-controller .ytpl-subtitle {
    bottom: 66px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 14px 4px 14px;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 15;
}

.ytpl-skin-youtube .ytpl-player.ytpl-controller .ytpl-controller {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress {
    position: relative;
    height: 12px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-progress-container {
    position: absolute;
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    transition: all 0.06s ease;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-progress-container input[type=range] {
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    margin: 0 !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-progress-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 8px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-progress-container input[type=range]::-moz-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 8px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress:hover .ytpl-progress-container {
    height: 5px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preload {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.06s ease;
    z-index: 2;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-progressed {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #CC0101;
    z-index: 3;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-point-hover {
    position: absolute;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 99px;
    background-color: #CC0101;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0;
    z-index: 4;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress:hover .ytpl-point-hover {
    width: 12px;
    height: 12px;
    cursor: pointer;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preview {
    position: absolute;
    bottom: 100%;
    left: 0;
    opacity: 0;
    /*transition: all 0.06s ease;*/
    pointer-events: none;
}

.ytpl-skin-youtube .ytpl-player:not(.ytpl-setting) .ytpl-controller .ytpl-progress:hover .ytpl-preview {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preview img,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preview canvas {
    width: 168px;
    height: 94px;
    background-color: #000;
    box-shadow: 0 0 0 2px #fff;
    border-radius: 1px;
    vertical-align: bottom;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preview video {
    display: none;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-progress .ytpl-preview span {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    padding: 8px 0;
    text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.7);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons {
    display: flex;
    padding-top: 2px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-left-controller {
    flex: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-right-controller {
    flex: none;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button {
    float: left;
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-right: 6px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button:last-child {
    margin-right: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button .ytpl-icon {
    transform: scale(1.1);
}

.ytpl-skin-youtube .ytpl-player.ytpl-video-played .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-play {
    display: none;
}

.ytpl-skin-youtube .ytpl-player.ytpl-video-played .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-pause {
    display: block;
}

.ytpl-skin-youtube .ytpl-player:not(.ytpl-video-played) .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-pause {
    display: none;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-like,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-dislike,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-comment-btn {
    padding: 6px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-like.active,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-buttons .ytpl-button.ytpl-dislike.active {
    fill: #065FD4;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-time {
    float: left;
    align-self: center;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    padding: 5px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-time .ytpl-duration {
    color: rgba(255, 255, 255, 0.6);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process {
    float: left;
    position: relative;
    width: 0;
    height: 16px;
    transition: all 0.16s ease;
    margin: 7px 0 0 -6px;
    cursor: pointer;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-player.ytpl-volume-bar .ytpl-controller .ytpl-volume-process {
    width: 90px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-process-container {
    position: absolute;
    width: calc(100% - 20px);
    height: 3px;
    top: 50%;
    left: 0;
    margin-left: 10px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-process-container input[type=range] {
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    margin: 0 !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-process-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 8px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-process-container input[type=range]::-moz-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1px;
    height: 8px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-processed {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-volume-process .ytpl-point-hover {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: all 0.06s ease;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 14px;
    background-color: rgba(23, 23, 23, 0.9);
    border-radius: 2px;
    transition: all 0.16s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 15;
}

.ytpl-skin-youtube .ytpl-player.ytpl-setting.setting .ytpl-controller .ytpl-setting-popup.setting,
.ytpl-skin-youtube .ytpl-player.ytpl-setting.quality .ytpl-controller .ytpl-setting-popup.quality,
.ytpl-skin-youtube .ytpl-player.ytpl-setting.subtitle .ytpl-controller .ytpl-setting-popup.subtitle,
.ytpl-skin-youtube .ytpl-player.ytpl-setting.speed .ytpl-controller .ytpl-setting-popup.speed {
    opacity: 1;
    visibility: visible;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup ul {
    width: 210px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: left;
    padding: 8px 12px;
    cursor: pointer;
    margin: 0 !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li.active:before {
    position: absolute;
    content: '';
    width: 13px;
    height: 7px;
    left: 14px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg) translateY(-68%);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li > div:first-child {
    flex: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li > div:last-child {
    flex: none;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup li > div:last-child .ytpl-icon {
    display: inline-block;
    vertical-align: middle;
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup ul .ytpl-icon {
    width: 24px;
    height: 24px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup .ytpl-back {
    padding: 12px 12px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup .ytpl-back .ytpl-icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup.quality li,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup.speed li,
.ytpl-skin-youtube .ytpl-video-player .ytpl-controller .ytpl-setting-popup.subtitle li {
    padding-left: 32px;
}

.ytpl-skin-youtube .ytpl-video-player .vpp-more-button-enable {
    position: absolute;
    bottom: 61px;
    left: 14px;
    font-family: Roboto, sans-serif;
    line-height: 13px;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    padding: 10px;
    border-radius: 2px;
    background-color: rgba(23, 23, 23, 0.9);
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    z-index: 14;
}

.ytpl-skin-youtube .ytpl-player.ytpl-more-button .vpp-more-button-enable {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more {
    position: absolute;
    bottom: 61px;
    top: auto;
    left: 14px;
    right: 14px;
    background-color: rgba(23, 23, 23, 0.9);
    border-radius: 2px;
    padding: 8px 16px;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 14;
}

.ytpl-skin-youtube .ytpl-player.ytpl-more .ytpl-view-more {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-heading {
    width: 100%;
    color: #fff;
    padding: 6px 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-heading span {
    float: left;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 13px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-heading .ytpl-icon {
    float: right;
    width: 18px;
    height: 18px;
    fill: #fff;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content {
    position: relative;
    margin: 6px 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner {
    white-space: nowrap;
    text-align: left;
    font-size: 0;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-scrl {
    position: relative;
    width: fit-content;
    left: 0;
    transition: all 0.16s ease;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item {
    display: inline-block;
    position: relative;
    width: 168px;
    height: 94px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2px;
    margin-right: 8px;
    overflow: hidden;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item:last-child {
    margin-right: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
    transition: all 0.16s ease;
    opacity: 0;
    z-index: 2;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item:hover:before {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item .ytpl-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    white-space: initial;
    padding: 0 3px;
    border-radius: 2px;
    background-color: rgba(23, 23, 23, 0.9);
    transition: all 0.16s ease;
    opacity: 0;
    z-index: 3;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item:hover .ytpl-time {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item .ytpl-title {
    position: relative;
    padding: 4px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    transition: all 0.16s ease;
    opacity: 0;
    z-index: 3;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content-inner .ytpl-item:hover .ytpl-title {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content .ytpl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content .ytpl-nav.next {
    right: -12px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content .ytpl-nav.prev {
    left: -12px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-view-more .ytpl-content .ytpl-nav .ytpl-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
    background-color: #333333;
    border-radius: 999px;
    padding: 4px;
    box-shadow: -2px 2px 8px 0 rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-point {
    position: absolute;
    top: 87px;
    left: 14px;
    right: 14px;
    bottom: 61px;
    z-index: 14;
    pointer-events: none;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-player.ytpl-end-point .ytpl-end-point {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen {
    position: absolute;
    top: 87px;
    left: 14px;
    right: 14px;
    bottom: 61px;
    pointer-events: none;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-player.ytpl-end-screen .ytpl-end-screen {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen > div {
    pointer-events: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-video {
    position: absolute;
    width: 290px;
    height: 162px;
    background-size: cover;
    background-position: center;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-video .ytpl-title {
    position: relative;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    z-index: 2;
    padding: 8px 12px;
    text-align: left;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-video .ytpl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-video .ytpl-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    padding: 4px 4px;
    border-radius: 2px;
    background-color: rgba(23, 23, 23, 0.9);
    z-index: 3;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user {
    display: flex;
    position: absolute;
    max-width: 360px;
    max-height: 148px;
    padding: 14px;
    border-radius: 2px;
    transition: all 0.16s ease;
    pointer-events: none;
    overflow: hidden;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user:hover {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user .ytpl-image {
    flex: none;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.16s ease;
    pointer-events: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user .ytpl-content {
    max-width: calc(100% - 120px);
    text-align: left;
    padding-left: 14px;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user:hover .ytpl-image {
    box-shadow: none;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user:hover .ytpl-content {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user .ytpl-content .ytpl-title {
    max-width: 100%;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #065FD4;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user .ytpl-content .ytpl-view {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    padding: 4px 6px;
    margin: 4px 0 0 0;
    border-radius: 2px;
    background-color: #cc0101;
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-end-screen .ytpl-type-user .ytpl-content .ytpl-meta {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video {
    position: absolute;
    top: 87px;
    left: 14px;
    right: 14px;
    bottom: 61px;
    text-align: center;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 14;
}

.ytpl-skin-youtube .ytpl-player.ytpl-similar .ytpl-similar-video {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item {
    float: left;
    position: absolute;
    width: 168px;
    height: 94px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    margin: 4px;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item .ytpl-title {
    position: relative;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    z-index: 2;
    padding: 8px 12px;
    text-align: left;
    transition: all 0.16s ease;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item:hover .ytpl-title {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item .ytpl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
    transition: all 0.16s ease;
    opacity: 0;
    z-index: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item:hover .ytpl-overlay {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item .ytpl-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    padding: 4px 4px;
    border-radius: 2px;
    background-color: rgba(23, 23, 23, 0.9);
    transition: all 0.16s ease;
    opacity: 0;
    z-index: 3;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-similar-video .ytpl-item:hover .ytpl-time {
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-description {
    position: absolute;
    top: 87px;
    left: 14px;
    right: 14px;
    bottom: 61px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    text-align: left;
    padding: 12px;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 14;
}

.ytpl-skin-youtube .ytpl-player.ytpl-description .ytpl-description {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-player.ytpl-cart-notification .ytpl-carts .ytpl-notification {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item {
    display: none;
    float: right;
    position: relative;
    height: 32px;
    cursor: pointer;
    margin-bottom: 6px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item:before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    right: 0;
    top: 0;
    border-radius: 2px;
    background-color: #e9e9ea;
    transition: all 0.16s ease;
    z-index: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item:hover:before,
.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item.active:before {
    width: 100%;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item .ytpl-icon {
    position: relative;
    float: right;
    width: 32px;
    height: 32px;
    z-index: 2;
    fill: #545454;
    pointer-events: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item .ytpl-title {
    position: relative;
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    max-width: 340px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 8px 10px;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item:hover .ytpl-title,
.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-notification .ytpl-item.active .ytpl-title {
    transition-delay: 0.1s;
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -280px;
    width: 250px;
    background-color: rgba(23, 23, 23, 0.7);
    transition: all 0.16s ease;
    box-sizing: content-box;
    overflow-y: auto;
    padding: 14px;
    z-index: 15;
}

.ytpl-skin-youtube .ytpl-player.ytpl-cart-box .ytpl-carts .ytpl-box {
    right: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-heading {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-heading .ytpl-title {
    float: left;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-heading .ytpl-icon {
    float: right;
    width: 18px;
    height: 18px;
    fill: #fff;
    cursor: pointer;
    margin-top: 2px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-item {
    margin-top: 14px;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-item .ytpl-image {
    width: 100%;
    height: calc(250px / calc(16 / 9));
    background-size: cover;
    background-position: center;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-item .ytpl-content {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 8px;
    text-align: left;
    line-height: 22px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-carts .ytpl-box .ytpl-item.playlist .ytpl-image {
    width: 50%;
    height: 66px;
    float: left;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
    transition: all 0.16s ease;
}

.ytpl-skin-youtube .ytpl-player.ytpl-controller .ytpl-watermark {
    bottom: 62px;
}

.ytpl-skin-youtube .ytpl-player.ytpl-more .ytpl-watermark,
.ytpl-skin-youtube .ytpl-player.ytpl-dark-overlay .ytpl-watermark {
    opacity: 0;
    visibility: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark .ytpl-image {
    width: 40px;
    height: 40px;
    background-size: cover !important;
    background-position: center !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark .ytpl-box {
    position: absolute;
    bottom: 0;
    right: 50px;
    background-color: rgba(23, 23, 23, 0.9);
    border-radius: 2px;
    padding: 8px 12px;
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark:hover .ytpl-box {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark .ytpl-box .ytpl-title {
    max-width: 150px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: left;
    white-space: nowrap;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-watermark .ytpl-box a {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    white-space: nowrap;
    margin-top: 4px;
    background-color: #cc0101;
    border-radius: 2px;
    padding: 4px 6px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-share,
.ytpl-skin-youtube .ytpl-video-player .ytpl-info,
.ytpl-skin-youtube .ytpl-video-player .ytpl-comment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 23, 23, 0.95);
    transition: all 0.16s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 15;
}

.ytpl-skin-youtube .ytpl-player.ytpl-share .ytpl-share,
.ytpl-skin-youtube .ytpl-player.ytpl-info .ytpl-info,
.ytpl-skin-youtube .ytpl-player.ytpl-comment .ytpl-comment {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-share .ytpl-close,
.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-close,
.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    padding: 0;
    z-index: 2;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-share .ytpl-close .ytpl-icon,
.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-close .ytpl-icon,
.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-close .ytpl-icon {
    width: 54px;
    height: 54px;
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-share .ytpl-content,
.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    z-index: 14;
}

.ytpl-skin-youtube .ytpl-player.ytpl-comment .ytpl-comment {
    display: flex;
    flex-direction: column;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-content {
    overflow-y: auto;
    flex: auto;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-content .ytpl-empty {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    padding: 18px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row {
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    text-align: left;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-comment-cell {
    padding-top: 20px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-image-profile {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #E0E0E0;
    background-size: cover !important;
    background-position: center !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-meta {
    color: #9E9E9E;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-comment-text {
    font-weight: 300;
    font-size: 16px;
    padding: 6px 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row button {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9E9E9E;
    text-decoration: none;
    text-transform: uppercase;
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section {
    display: none;
    max-width: 590px;
    margin-top: 8px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section label {
    display: block;
    border: 1px solid #757575;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section label span {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #757575;
    padding: 10px 0 0 14px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section label textarea {
    display: block;
    width: 100%;
    height: 68px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    padding: 8px 14px;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section label textarea::placeholder {
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section button {
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #9E9E9E;
    text-transform: uppercase;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    margin: 16px 12px 6px 2px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-comment-row .ytpl-reply-section button.ytpl-cancel {
    color: #065FD4;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-field {
    float: none;
    display: flex;
    width: 100%;
    padding: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-field .ytpl-button {
    flex: none;
    height: 40px;
    line-height: 40px;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    background-color: #065FD4;
    padding: 0 18px;
    border-radius: 2px;
    align-self: center;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-field textarea {
    flex: auto;
    height: 26px;
    align-self: center;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 0 14px;
    background-color: transparent;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    margin-right: 14px !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-comment .ytpl-field textarea::placeholder {
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-share .ytpl-content a {
    display: inline-block;
    max-width: calc(90% - 60px);
    height: 40px;
    line-height: 40px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    border-radius: 2px;
    padding: 0 12px;
    margin: auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-content {
    left: 50%;
    width: 800px;
    max-width: 90%;
    text-align: left;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-content table {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #e0e0e0;
    border: none !important;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-content td {
    background-color: transparent !important;
    border: none !important;
    vertical-align: top;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-info .ytpl-content td:first-child {
    width: 1px;
    white-space: nowrap;
    font-weight: 500;
    color: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu {
    position: absolute;
    background-color: rgba(23, 23, 23, 0.9);
    color: #fff;
    width: 290px;
    z-index: 15;
    top: 0;
    left: 0;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
}

.ytpl-skin-youtube .ytpl-player.ytpl-context-menu .ytpl-context-menu {
    visibility: visible;
    opacity: 1;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu ul,
.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu ul li {
    margin: 0;
    padding: 8px 0;
    list-style: none;
    text-align: left;
    color: #fff;
    fill: #fff;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu ul li.active {
    color: #065FD4;
    fill: #065FD4;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu ul li {
    height: 40px;
    padding: 0 10px;
    line-height: 40px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ytpl-skin-youtube .ytpl-video-player .ytpl-context-menu .ytpl-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.ytpl-skin-youtube .ytpl-player .ytpl-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 23, 23, 0.9);
    z-index: 999;
}

.ytpl-skin-youtube .ytpl-player .ytpl-loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border-style: solid;
    border-width: 6px;
    border-color: #f4f4f4 #f4f4f4 transparent transparent;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ytpl-skin-youtube .ytpl-player.ytpl-loading .ytpl-loading {
    display: block;
}

.ytpl-skin-youtube .ytpl-player.ytpl-loading .ytpl-loading:before {
    -webkit-animation: spin 1s ease-in-out infinite;
    -moz-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: translate(-50%, -50%) rotate(405deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(405deg);
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

/**
 * TODO Playlist
 */
.ytpl-skin-youtube .ytpl-section {
    display: flex;
}

.ytpl-skin-youtube .ytpl-section > div:first-child {
    flex: auto;
    width: calc(100% - 420px);
}

.ytpl-skin-youtube .ytpl-section > div:last-child {
    flex: none;
    width: 400px;
    height: 100%;
    margin-left: 20px;
}

.ytpl-skin-youtube .ytpl-playlist {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: normal !important;
}

.ytpl-skin-youtube .ytpl-playlist.ytpl-mini {
    height: auto !important;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header {
    flex: none;
    background-color: #fff;
    padding: 12px 16px;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-title {
    white-space: nowrap;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #212121;
    text-overflow: ellipsis;
    text-transform: capitalize;
    padding-right: 32px;
    margin-bottom: 4px;
    overflow: hidden;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-meta {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9E9E9E;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-meta .ytpl-private {
    display: inline-block;
    white-space: nowrap;
    background-color: #f2f2f2;
    color: #606060;
    fill: #606060;
    border-radius: 2px;
    margin-right: 4px;
    padding: 2px 4px;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-meta .ytpl-private .ytpl-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-controller {
    font-size: 0;
    margin-top: 12px;
}

.ytpl-skin-youtube .ytpl-playlist.ytpl-mini .ytpl-header .ytpl-controller {
    display: none;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-controller .ytpl-button {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: #909090;
    margin-right: 14px;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-controller .ytpl-button.active {
    fill: #065FD4;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-scope {
    position: absolute;
    top: 26px;
    right: 18px;
    width: 24px;
    height: 24px;
    fill: #606060;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-header .ytpl-scope.active {
    transform: rotate(180deg);
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items {
    flex: auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 0;
}

.ytpl-skin-youtube .ytpl-playlist.ytpl-mini .ytpl-items {
    display: none;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item {
    display: flex;
    align-items: center;
    padding: 4px 0;
    cursor: pointer;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item.active,
.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item:hover {
    background-color: #ececec;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item > div:nth-child(1) {
    flex: none;
    width: 28px;
    padding: 0 4px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 10px;
    text-align: center;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item > div:nth-child(2) {
    flex: none;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item > div:nth-child(3) {
    padding: 0 6px;
    align-self: start;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item .ytpl-thumbnail {
    position: relative;
    width: 100px;
    height: 56px;
    background-size: cover !important;
    background-position: center !important;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item .ytpl-thumbnail .ytpl-time {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    padding: 0 3px;
    border-radius: 2px;
    background-color: rgba(23, 23, 23, 0.9);
    transition: all 0.16s ease;
}

.ytpl-skin-youtube .ytpl-playlist .ytpl-items .ytpl-item .ytpl-title {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #212121;
    overflow: hidden;
    height: 40px;
}

/**
 * TODO Access denied
 */
.ytpl-skin-youtube .ytpl-access-denied {
    display: flex;
    align-items: center;
    padding: 50px;
    border-radius: 4px;
    border: 2px solid #cc0101;
    cursor: default;
}

.ytpl-skin-youtube.vpp-page .ytpl-access-denied {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cc0101;
    border-radius: 0;
    border: none;
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon {
    position: relative;
    flex: none;
    width: 180px;
    height: 116px;
    min-width: 180px;
    margin-right: 50px;
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon:before,
.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 20px;
    background-color: #cc0101;
    transition: all 0.05s ease;
    border-radius: 100%;
}

.ytpl-skin-youtube.vpp-page .ytpl-access-denied .ytpl-icon:before,
.ytpl-skin-youtube.vpp-page .ytpl-access-denied .ytpl-icon:after {
    background-color: #fff;
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon:before {
    left: 50%;
    transform: translateX(-50%) translateX(-36px);
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon:after {
    left: 50%;
    transform: translateX(-50%) translateX(36px);
}

.ytpl-skin-youtube:not(.vpp-page) .ytpl-access-denied:hover .ytpl-icon:before,
.ytpl-skin-youtube:not(.vpp-page) .ytpl-access-denied:hover .ytpl-icon:after {
    width: 40px;
    height: 8px;
    border-radius: 0;
}

.ytpl-skin-youtube:not(.vpp-page) .ytpl-access-denied:hover .ytpl-icon:before {
    transform: translateX(-50%) translateX(-36px) rotate(24deg);
}

.ytpl-skin-youtube:not(.vpp-page) .ytpl-access-denied:hover .ytpl-icon:after {
    transform: translateX(-50%) translateX(36px) rotate(-24deg);
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-icon div {
    position: absolute;
    width: 100px;
    height: 8px;
    left: 50%;
    bottom: 20px;
    background-color: #cc0101;
    transition: all 0.05s ease;
    transform: translateX(-50%) rotate(-14deg);
}

.ytpl-skin-youtube.vpp-page .ytpl-access-denied .ytpl-icon div {
    background-color: #fff;
}

.ytpl-skin-youtube:not(.vpp-page) .ytpl-access-denied:hover .ytpl-icon div {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: transparent;
    box-shadow: 0 0 0 4px #cc0101;
}

.ytpl-skin-youtube .ytpl-access-denied .ytpl-description {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #cc0101;
}

.ytpl-skin-youtube.vpp-page .ytpl-access-denied .ytpl-description {
    color: #fff;
}