body {
    background: #fff !important;
}

* {
    box-sizing: border-box;
    user-select: none !important;
}

#footer-thankyou,
#footer-upgrade {
    display: none !important;
}

/**
 * TODO :: RESET
 */
.notice {
    display: none !important;
}

/**
 * TODO ::: Loading
 */
.ytpl-loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 999999;
}

.ytpl-loading.fixed {
    position: fixed;
    top: 32px;
    right: 0;
    bottom: 0;
    left: 160px;
}

body.folded .ytpl-loading.fixed {
    left: 36px;
}

.ytpl-loading div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    -webkit-animation: spin 1s ease-in-out infinite;
    -moz-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
}

.ytpl-loading div:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    box-sizing: border-box;
    border: 8px solid #9E9E9E;
}

.ytpl-loading div:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/**
 * Header
 */

.ytpl-header {
    position: fixed;
    top: 32px;
    left: 160px;
    right: 0;
    height: 80px;
    padding: 14px 14px;
    background-color: #fff;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

body.folded .ytpl-header {
    left: 36px;
}

.ytpl-logo {
    float: left;
    padding-top: 8px;
}

.ytpl-logo img {
    height: 32px;
    vertical-align: middle;
    margin-right: 4px;
}

.ytpl-logo span {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #212121;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    padding-top: 4px;
}

.ytpl-search {
    width: 40%;
    min-width: 400px;
    max-width: 768px;
    position: absolute;
    padding-top: 3px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.ytpl-search input {
    width: 100%;
    height: 46px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #212121;
    border: 1px solid #E0E0E0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 14px;
    border-radius: 4px;
}

.ytpl-search input::placeholder {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
    color: #9E9E9E;
}

.ytpl-search-result {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 12px);
    padding-top: 58px;
    border-radius: 8px;
    margin: -4px 0 0 -6px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: -4px 4px 24px -4px rgba(0, 0, 0, 0.1);
}

.ytpl-search.show-result .ytpl-search-result {
    display: block;
}

.ytpl-search-result-content {
    padding: 0 6px 6px 6px;
    background-color: #fff;
    pointer-events: auto;
}

.ytpl-right-section {
    float: right;
}

.ytpl-create-button {
    float: right;
    display: flex;
    align-items: center;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #212121;
    text-transform: uppercase;
    border: 1px solid #E0E0E0;
    padding: 10px 14px;
    margin: 3px 2px;
    cursor: pointer;
}

.ytpl-create-button .ytpl-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #CC0101;
}

.ytpl-icon-button {
    float: right;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 100%;
    cursor: pointer;
    margin: 3px 6px;
    fill: #747474;
}

.ytpl-icon-button.search {
    display: none;
    margin-right: 0;
}

/**
 * Left nav
 */

.ytpl-left-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 112px;
    bottom: 0;
    left: 160px;
    width: 256px;
    background-color: #fff;
    border-right: 1px solid #E0E0E0;
    z-index: 99;
}

body.folded .ytpl-left-nav {
    left: 36px;
}

.ytpl-left-nav > div {
    flex: none;
}

.ytpl-left-nav > div:nth-child(2) {
    flex: auto;
    overflow-y: auto;
}

.ytpl-left-nav > div:last-child {
    border-top: 1px solid #E0E0E0;
    padding: 8px 0;
}

.ytpl-thumbnail .img {
    width: 112px;
    height: 112px;
    background-color: #f4f4f4;
    border-radius: 100%;
    margin: 24px auto 0 auto;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.ytpl-thumbnail div {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
}

.ytpl-thumbnail span {
    display: block;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
}

.ytpl-nav-item {
    position: relative;
    height: 48px;
    fill: #747474;
    color: #9E9E9E;
    background-color: #fff;
    cursor: pointer;
}

.ytpl-nav-item:hover {
    background-color: #f4f4f4;
}

.ytpl-nav-item.active {
    fill: #CC0101;
    color: #CC0101;
    background-color: #f4f4f4;
}

.ytpl-nav-item.active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #CC0101;
}

.ytpl-nav-item .ytpl-icon {
    float: left;
    width: 24px;
    height: 24px;
    margin: 12px 20px 0 20px;
}

.ytpl-nav-item span {
    display: inline-block;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-top: 16px;
}

/**
 * Page content
 */

.ytpl-page-content {
    position: fixed;
    top: calc(32px + 80px);
    right: 0;
    bottom: 0;
    left: calc(160px + 256px);
    padding-bottom: 120px;
    z-index: 98;
    overflow-y: auto;
}

body.folded .ytpl-page-content {
    left: calc(36px + 256px);
}

.ytpl-page-title {
    padding: 38px 32px 0 32px;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #212121;
    line-height: normal;
}

.ytpl-accordion .ytpl-tabs {
    position: sticky;
    top: -2px;
    padding: 18px 32px 0 32px;
    border-bottom: 1px solid #E0E0E0;
    background-color: #fff;
    z-index: 97;
}

.ytpl-accordion .ytpl-tab-button {
    float: left;
    position: relative;
    height: 48px;
    line-height: 48px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #9E9E9E;
    margin-right: 42px;
    cursor: pointer;
}

.ytpl-accordion .ytpl-tab-button.active {
    color: #065FD4;
}

.ytpl-accordion .ytpl-tab-button.active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #065FD4;
}

.ytpl-accordion .ytpl-tabs .ytpl-save {
    position: absolute;
    right: 32px;
    bottom: 14px;
    height: 36px;
    padding: 0 18px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 2px;
    background-color: #065FD4;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    cursor: pointer;
}

.ytpl-accordion .ytpl-content .ytpl-field-video {
    position: sticky;
    top: 87px;
}

.ytpl-table-header {
    position: sticky;
    top: 65px;
    display: flex;
    height: 48px;
    border-bottom: 1px solid #E0E0E0;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 32px;
    color: #9E9E9E;
    background-color: #fff;
    z-index: 97;
}

.ytpl-table-row {
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px solid #E0E0E0;
}

.ytpl-table-row:last-child {
    border: none;
}

.ytpl-table-row:hover {
    background-color: #f4f4f4;
}

.ytpl-table-cell {
    padding-top: 8px;
    box-sizing: content-box;
}

.ytpl-table-selector {
    height: 64px;
    text-align: left;
    font-size: 0;
    padding: 0 24px;
    background-color: #282828;
    overflow: hidden;
}

.ytpl-table-selector.animation {
    height: 0;
    transition: all 0.13s ease-in-out;
}

.ytpl-table-selector.show {
    height: 64px;
}

.ytpl-table-selector > div {
    display: inline-block;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: 50px;
    margin: 7px 22px 0 0;
    padding-right: 22px;
}

.ytpl-table-selector .ytpl-title {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ytpl-table-selector button {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    color: #fff !important;
    vertical-align: initial;
    cursor: pointer;
}

.ytpl-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    margin: 3px;
    border-radius: 2px;
    border: 2px solid #212121;
    cursor: pointer;
}

.ytpl-checkbox.active {
    background-color: #212121;
}

.ytpl-checkbox.active:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 3px;
    width: 4px;
    height: 8px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
}

.ytpl-video-detail {
    display: flex;
    align-items: flex-start;
    max-width: 100%;
}

.ytpl-video-cover-mini {
    flex: none;
    width: 120px;
    height: 68px;
    background-color: #f4f4f4;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2px;
}

.ytpl-video-detail-content {
    position: relative;
    flex: auto;
    padding: 5px 15px 0 15px;
    height: 68px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    max-width: calc(100% - (120px + 15px));
}

.ytpl-video-detail-content div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ytpl-video-detail-content span {
    display: block;
    font-weight: 300;
    font-size: 12px;
    color: #9E9E9E;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ytpl-video-detail-content .ytpl-options {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 14px 0 0 15px;
    background-color: #f4f4f4;
    visibility: hidden;
}

.ytpl-table-row:hover .ytpl-video-detail-content .ytpl-options {
    visibility: visible;
}

.ytpl-video-detail-content .ytpl-options button {
    width: 42px;
    height: 42px;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    cursor: pointer;
}

.ytpl-video-detail-content .ytpl-options .ytpl-icon {
    width: 24px;
    height: 24px;
    fill: #747474;
    margin: auto;
}

.ytpl-video-detail-content .ytpl-options button:hover .ytpl-icon {
    fill: #212121;
}

.ytpl-visibility .ytpl-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    fill: #008207;
    vertical-align: middle;
    margin-right: 5px;
}

.ytpl-visibility.private .ytpl-icon {
    fill: #c59e05;
}

.ytpl-visibility span {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #212121;
}

.ytpl-view-date {
    font-family: Roboto, sans-serif;
    font-weight: 500;
}

.ytpl-view-date div {
    font-size: 14px;
    color: #212121;
}

.ytpl-view-date span {
    display: block;
    font-weight: 300;
    font-size: 12px;
    color: #9E9E9E;
    margin-top: 3px;
}

.ytpl-table-pagination {
    height: 48px;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding-right: 24px;
}

.ytpl-table-pagination .ytpl-icon-button {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 11px 12px;
}

.ytpl-count-item {
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 48px;
    padding: 0 24px;
    color: #9E9E9E;
}

.ytpl-per-page {
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #9E9E9E;
    padding: 9px 0;
}

.ytpl-per-page select {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9E9E9E !important;
    padding-right: 30px;
}

/**
 * Popup
 */

.ytpl-popup {
    position: fixed;
    top: 32px;
    right: 0;
    bottom: 0;
    left: 160px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
}

body.folded .ytpl-popup {
    left: 36px;
}

.ytpl-popup-box {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 960px;
    height: 620px;
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.ytpl-popup-box > div {
    flex: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 18px;
    height: 68px;
}

.ytpl-popup-box > div:nth-child(2) {
    flex: auto;
    height: auto;
    padding: 0;
    overflow-y: auto;
}

.ytpl-popup-box > div:last-child {
    border: none;
}

.ytpl-popup-title {
    float: left;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #212121;
    margin: 8px 0 0 8px;
}

.ytpl-popup-right-section {
    float: right;
}

.ytpl-popup-right-section .ytpl-icon-button {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 5px 4px 0 21px;
}

.ytpl-popup-box > div:nth-child(3) .ytpl-button {
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #9E9E9E;
    text-transform: uppercase;
    margin: 7px 6px 0 24px;
    cursor: pointer;
}

.ytpl-popup-box > div:nth-child(3) .ytpl-button.active {
    color: #065FD4;
}

/**
 * Shortcut
 */
.ytpl-shortcut {
    font-family: Roboto, sans-serif;
    font-size: 12px;
}

.ytpl-shortcut td {
    padding-bottom: 8px;
    vertical-align: top;
}

.ytpl-shortcut td:first-child {
    font-weight: 600;
    padding-right: 4px;
}

.ytpl-shortcut td:last-child {
    color: #9E9E9E;
}

.ytpl-shortcut td div {
    display: block;
    padding-top: 4px;
    margin-bottom: 6px;
}

.ytpl-shortcut span {
    padding: 4px 6px;
    background-color: #f4f4f4;
    border-radius: 2px;
    margin: 0 4px;
}

/**
 * Nav box
 */

.ytpl-nav-box {
    display: flex;
    height: 100%;
}

.ytpl-nav-box .ytpl-nav-items {
    flex: none;
    width: 280px;
    height: 100%;
    padding: 8px 0;
    background-color: #f4f4f4;
}

.ytpl-nav-box .ytpl-nav-item {
    height: 48px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #212121;
    line-height: 48px;
    padding: 0 18px;
    background: transparent;
}

.ytpl-nav-box .ytpl-nav-item:hover {
    background-color: #ebebeb;
}

.ytpl-nav-box .ytpl-nav-item.active {
    background-color: #e2e2e2;
}

.ytpl-nav-box .ytpl-nav-item.active:before {
    display: none;
}

.ytpl-nav-box .ytpl-nav-content {
    flex: auto;
    height: 100%;
    padding: 26px;
    overflow-y: auto;
}

.ytpl-nav-box .ytpl-nav-content-item {
    display: none;
}

.ytpl-popup-box .ytpl-field {
    margin-bottom: 26px;
}

.ytpl-popup-box .ytpl-field-video {
    position: sticky;
    top: 132px;
}

/**
 * Create
 */
.ytpl-create-container {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
}

.ytpl-create-container > div:first-child {
    position: sticky;
    flex: none;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.ytpl-create-container > div:last-child {
    flex: auto;
}

.ytpl-step-line {
    padding: 28px 0 38px 0;
}

.ytpl-step-line-content {
    position: relative;
    display: flex;
    width: 480px;
    max-width: 90%;
    margin: auto;
}

.ytpl-step-line-content:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f4f4f4;
    z-index: 1;
}

.ytpl-step-line-content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #065FD4;
    z-index: 2;
}

.ytpl-step-line-content > div {
    flex: auto;
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}

.ytpl-step-line-content span {
    display: inline-block;
    position: relative;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #9E9E9E;
    padding-bottom: 20px;
}

.ytpl-step-line-content > div.active span {
    color: #065FD4;
}

.ytpl-step-line-content span:before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: inset 0 0 0 2px #f4f4f4;
    transform: translate(-50%, 50%);
}

.ytpl-step-line-content > div.active span:before {
    border: 4px solid #065FD4;
    box-shadow: none;
}

.ytpl-step-line-content > div:first-child {
    text-align: left;
}

.ytpl-step-line-content > div:first-child span {
    transform: translateX(-50%);
}

.ytpl-step-line-content > div:last-child {
    text-align: right;
}

.ytpl-step-line-content > div:last-child span {
    transform: translateX(50%);
}

.ytpl-create-contents > div {
    display: none;
    min-height: 100%;
}

.ytpl-create-content-section {
    display: flex;
}

.ytpl-create-content-section > div:first-child {
    flex: auto;
    padding: 28px 0 0 28px;
}

.ytpl-create-content-section > div:last-child {
    flex: none;
    padding: 28px 28px 0 28px;
}

/**
 * Visibility
 */
.ytpl-create-video-visibility {
    display: flex;
}

.ytpl-create-video-visibility > div:first-child {
    flex: auto;
    padding: 28px 0 0 28px;
}

.ytpl-create-video-visibility > div:last-child {
    flex: none;
    padding: 28px 28px 0 28px;
}

/**
 * Empty
 */
.ytpl-empty {
    padding: 64px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #9E9E9E;
    text-align: center;
}

/**
 * Playlist add button
 */
#ytpl_open_popup_playlist {
    position: relative;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #9E9E9E;
    padding: 8px 8px;
    background-color: #f4f4f4;
    border-radius: 2px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-left: 8px;
    cursor: pointer;
}

/**
 * Playlist form
 */
.ytpl-playlist-create {
    position: fixed;
    width: 360px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
    cursor: default;
}

.ytpl-playlist-create:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 66px;
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #E0E0E0 transparent;
}

.ytpl-playlist-create label {
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    color: #212121;
    text-align: left;
    padding: 18px 14px 0 14px;
}

.ytpl-playlist-create input {
    display: block;
    width: calc(100% - 28px);
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #E0E0E0 !important;
    margin: 12px 0 0 14px;
    border-radius: 0;
    height: 34px;
    box-shadow: none !important;
    outline: none !important;
}

.ytpl-playlist-create > div {
    text-align: left;
    background-color: #f6f6f6;
    margin-top: 18px;
    padding: 10px 14px;
}

.ytpl-playlist-create select {
    background-color: transparent;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ytpl-playlist-create > div a {
    float: right;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #212121;
    padding: 6px 8px;
    border: 1px solid #E0E0E0;
    margin: 0 0 0 8px;
    border-radius: 2px;
    cursor: pointer;
}

.ytpl-playlist-create > div a.ytpl-create {
    background-color: #86b8de;
    font-weight: 600;
    color: #fff;
}

/**
 * Playlist item
 */
.ytpl-playlist-list .ytpl-thumbnails {
    white-space: nowrap;
    line-height: 0;
    font-size: 0;
}

.ytpl-playlist-list .ytpl-thumbnails > div {
    display: inline-block;
    width: 120px;
    height: 68px;
    margin-right: 4px;
    border-radius: 2px;
    background-size: cover !important;
    background-color: #f4f4f4;
}

.ytpl-playlist-list .ytpl-table-row:hover .ytpl-thumbnails > div {
    color: #fff;
    background-color: #747474;
}

.ytpl-playlist-list .ytpl-no-thumbnail {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 68px;
    text-align: center;
}

.ytpl-playlist-list .ytpl-detail {
    font-family: Roboto, sans-serif;
    font-weight: 600;
}

.ytpl-playlist-list .ytpl-detail > div {
    font-size: 14px;
    color: #212121;
    margin-bottom: 4px;
}

.ytpl-playlist-list .ytpl-detail > span {
    font-weight: 300;
    font-size: 12px;
    color: #9E9E9E;
}

.ytpl-playlist-list button {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9E9E9E;
    background-color: #f4f4f4;
    border-radius: 2px;
    padding: 4px 8px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

.ytpl-playlist-list .ytpl-table-row:hover button {
    color: #fff;
    background-color: #747474;
}

/**
 * Playlist Edit
 */
.ytpl-edit-playlist {
    display: flex;
}

.ytpl-edit-playlist > div:first-child {
    flex: none;
    padding: 24px;
}

.ytpl-edit-playlist > div:last-child {
    flex: auto;
    padding: 24px;
}

.ytpl-playlist-preview {
    padding: 14px;
    border-radius: 2px;
    background-color: #f4f4f4;
}

.ytpl-playlist-preview .ytpl-thumbnail {
    width: 346px;
    height: 180px;
    border-radius: 2px;
    background-size: cover !important;
    background-position: center !important;
}

.ytpl-playlist-preview > .ytpl-title {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    max-width: 346px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 12px 0 4px 0;
}

.ytpl-playlist-preview > .ytpl-detail {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #9E9E9E;
    max-width: 346px;
    margin-bottom: 12px;
}

.ytpl-playlist-preview > input {
    width: 100%;
    padding: 10px;
    border-radius: 2px;
    background-color: #e2e2e2;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 12px;
    user-select: contain;
}

.ytpl-playlist-preview .ytpl-field-radio {
    max-width: 346px;
}

.ytpl-playlist-preview .ytpl-delete-button {
    display: block;
    width: 100%;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    margin-top: 14px;
    border-radius: 6px;
    color: #fff;
    background-color: #CC0101;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    cursor: pointer;
}

.ytpl-edit-playlist .ytpl-table-row button {
    display: inline-block;
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    visibility: hidden;
    cursor: pointer;
}

.ytpl-edit-playlist .ytpl-table-cell:nth-child(3) {
    white-space: nowrap;
}

.ytpl-edit-playlist .ytpl-table-row:hover button {
    visibility: visible;
}

.ytpl-edit-playlist .ytpl-table-row .ytpl-icon {
    width: 24px;
    height: 24px;
    fill: #747474;
}

.ytpl-edit-playlist .ytpl-table-row > div:first-child {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #9E9E9E;
}

.ytpl-edit-playlist .ytpl-table {
    padding-left: 0 !important;
}

/**
 * Video Panel
 */
.ytpl-edit-video-panel {
    display: flex;
    padding: 24px;
}

.ytpl-edit-video-panel > div {
    flex: auto;
}

.ytpl-edit-video-panel > div:last-child {
    flex: none;
    padding-left: 24px;
}

.ytpl-edit-video-panel .ytpl-field:not(:last-child) {
    margin-bottom: 26px;
}

.ytpl-edit-video-panel .ytpl-create-video-selector {
    top: 86px;
}

/**
 * Panel Info
 */
.ytpl-panel-info table {
    width: 100%;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
}

.ytpl-panel-info table td {
    padding: 14px;
    vertical-align: top;
}

.ytpl-panel-info table td:first-child {
    width: 1px;
    white-space: nowrap;
}

.ytpl-panel-info table input,
.ytpl-panel-info table textarea {
    width: 300px;
    padding: 10px;
    border-radius: 2px;
    background-color: #f4f4f4;
    box-shadow: none !important;
    border: none !important;
    user-select: all;
}

.ytpl-panel-info table textarea {
    height: 120px;
    resize: none;
}

/**
 * Traffic board
 */
.ytpl-traffic-board {
    padding: 14px;
}

.ytpl-traffic-board .ytpl-inner {
    font-family: Roboto, sans-serif;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
    padding: 14px;
}

.ytpl-traffic-board .ytpl-inner .ytpl-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #9E9E9E;
}

.ytpl-traffic-board .ytpl-inner .ytpl-number {
    font-weight: 400;
    font-size: 44px;
    line-height: 44px;
    color: #212121;
    margin-top: 14px;
}

/**
 * Subtitle
 */
#ytpl_show_edit_subtitle {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    background-color: #e2e2e2;
    outline: none !important;
    cursor: pointer;
}

#ytpl_show_edit_subtitle .ytpl-icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.ytpl-subtitle-list-edit-button {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9E9E9E;
    background-color: #f4f4f4;
    border-radius: 2px;
    padding: 4px 8px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

.ytpl-table-row:hover .ytpl-subtitle-list-edit-button {
    color: #fff;
    background-color: #747474;
}

/**
 * TODO ::: Vs. Like
 */
.ytpl-vs-like {

}

.ytpl-vs-like .ytpl-process-bar {
    position: relative;
    width: 100%;
    height: 4px;
    border-radius: 6px;
    background-color: #E0E0E0;
}

.ytpl-vs-like .ytpl-process-bar > div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 6px;
    background-color: #212121;
}

.ytpl-vs-like .ytpl-title {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #9E9E9E;
    text-align: right;
    margin: 0 4px 4px 0;
}

/**
 * TODO ::: 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-comment-row .ytpl-meta {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #9E9E9E;
    margin-bottom: 6px;
}

.ytpl-comment-row .ytpl-comment {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #212121;
    margin-bottom: 6px;
}

.ytpl-comment-row .ytpl-actions .ytpl-reply {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9E9E9E;
    text-transform: uppercase;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    padding: 0;
}

.ytpl-comment-row .ytpl-actions .ytpl-reply:hover {
    color: #065FD4;
}

.ytpl-comment-row .ytpl-to-video {
    width: 18px;
    height: 18px;
    padding: 0;
    fill: #747474;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
}

.ytpl-comment-row .ytpl-field-text-area {
    border-color: #065FD4;
    margin: 8px 14px 0 0;
}

.ytpl-comment-row .ytpl-field-text-area label {
    font-weight: 500;
    color: #065FD4;
}

.ytpl-comment-row .ytpl-field-text-area textarea {
    background-color: transparent !important;
    height: 68px;
}

.ytpl-comment-row .ytpl-reply-section {
    display: none;
    max-width: 590px;
}

.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-comment-row .ytpl-reply-section button.ytpl-cancel {
    color: #065FD4;
}

/**
 * TODO Free version
 */
.ytpl-free-version .ytpl-slider {
    position: relative;
    height: calc(100vh - 270px);
    background-color: #fafafa;
    padding: 28px;
}

.ytpl-free-version .ytpl-slider .ytpl-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.ytpl-free-version .ytpl-slider .ytpl-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-title {
    font-family: Roboto, sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #212121;
    line-height: 42px;
    margin-bottom: 8px;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-subtitle {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #212121;
    margin-bottom: 24px;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-buttons a {
    display: inline-block;
    font-family: 'ROBOTO', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fed200;
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: 0 0 0 1px #fed200;
    outline: none !important;
    border-radius: 99px !important;
    border: none !important;
    padding: 12px 16px;
    cursor: pointer;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-meta {
    text-align: left;
    margin-bottom: 12px;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-version-name {
    display: inline-block;
    background: linear-gradient(45deg, #7c6dbe, #5087c2);
    padding: 5px 10px;
    border-radius: 99px;
    color: #fff;
}

.ytpl-free-version .ytpl-slider .ytpl-content .ytpl-version-name .ytpl-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.ytpl-free-version .ytpl-feature,
.ytpl-free-version .ytpl-screenshot {
    padding: 28px;
}

.ytpl-free-version .ytpl-feature .ytpl-heading,
.ytpl-free-version .ytpl-screenshot .ytpl-heading {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #212121;
    margin-bottom: 28px;
}

.ytpl-free-version .ytpl-screenshot .ytpl-images a {
    display: inline-block;
    float: left;
    margin-top: 14px;
    margin-right: 14px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.ytpl-free-version .ytpl-screenshot .ytpl-images img {
    height: 160px;
    border: 4px solid #fafafa;
    border-radius: 2px;
}

.ytpl-free-version .ytpl-screenshot .ytpl-images img:hover {
    border-color: #222;
}

/**
 * TODO Free version
 */
.vpp-log li.add {
    color: green;
}

.vpp-log li.remove {
    color: red;
}

.vpp-log li.fixed {
    color: #8a12ff;
}

.vpp-log li.new {
    font-weight: bold;
}

.vpp-log li.pro:after {
    content: 'Pro';
    border-radius: 2px;
    background-color: rgb(255, 215, 0);
    color: #222;
    padding: 2px 4px;
    margin-left: 10px;
    font-size: 10px;
    text-transform: uppercase;
}