﻿.kPlayer {
    background-color: #212121;
    width: 838px;
    height: 472px;
    max-width: 1920px;
    max-height: 1080px;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #242424;
    box-shadow: #242424 0 0 5px;
}

    .kPlayer:-ms-fullscreen {
        width: 100%;
        height: 100%;
        border: none;
    }

    .kPlayer:-webkit-full-screen {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        border: none;
    }

    .kPlayer > video {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        height: 100%;
    }

    .kPlayer > .bgPanel {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        background-image: url(images/background.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .kPlayer canvas {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
    }

    .kPlayer:-moz-full-screen canvas {
        width: 100%;
        height: 100%;
    }

    .kPlayer:-webkit-full-screen canvas {
        width: 100%;
        height: 100%;
    }

@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.kPlayer > .previewMode {
    top: 10px;
    left: 20px;
    position: absolute;
    font-size: 30px;
    text-transform: uppercase;
    color: white;
    z-index: 5;
    display: none;
    -webkit-animation: flickerAnimation 2s infinite;
    -moz-animation: flickerAnimation 2s infinite;
    -o-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}

.kPlayer > .favContainer {
    position: absolute;
    z-index: 4;
    left: 3.5%;
    top: 5%;
    opacity: 0;
    font-size: 26px;
    color: silver;
    transition-duration: 1s;
    cursor: pointer;
    padding-right: 2px;
}

    .kPlayer > .favContainer.active {
        color: red;
    }

    .kPlayer > .favContainer:hover {
        opacity: 0.8 !important;
    }

.kPlayer:hover > .favContainer {
    opacity: 0.4;
}

.kPlayer > .demoModeInstructions {
    top: 2px;
    left: 10px;
    text-align: left;
    position: absolute;
    font-size: 13px;
    color: rgb(242,242,242);
    z-index: 3;
    display: none;
}

    .kPlayer > .demoModeInstructions > a {
        color: rgb(242,242,242);
        text-decoration: underline;
    }

.kPlayer > .demoMode {
    bottom: 10px;
    left: 20px;
    position: absolute;
    font-size: 25px;
    text-transform: uppercase;
    color: rgb(110,109,109);
    z-index: 3;
    display: none;
    -webkit-animation: flickerAnimation 2s infinite;
    -moz-animation: flickerAnimation 2s infinite;
    -o-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}

.kPlayer > .fadeOverlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #212121;
    opacity: 1;
    /*transition: linear;*/
    /*transition-duration: 2s;*/
    z-index: 2;
}

    .kPlayer > .fadeOverlay:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: url(../svg/cde_logo.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 80%;
        opacity: 0.0;
        transition-duration: 1s;
    }

    .kPlayer > .fadeOverlay.idle {
        background-image: url(images/performer-alt.jpg);
        background-size: cover;
    }

        .kPlayer > .fadeOverlay.idle:before {
            opacity: 0.3;
        }

.kPlayer > .infoPanel {
    width: 272px;
    right: 5px;
    bottom: 5px;
    position: absolute;
    background-color: #FFF;
    z-index: 4;
    border-radius: 5px;
    background-color: rgba(135, 206, 250, 0.1);
    display: none;
    color: white;
    padding: 7px;
    font-size: 12px;
    text-align: left;
    line-height: 15px;
    overflow: hidden;
}

    .kPlayer > .infoPanel span {
        color: rgb(182,182,177);
        font-weight: bold;
    }

.kPlayer > .performerPanel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    background-image: url(images/performer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-size: 42px;
    display: none;
    z-index: 3;
    text-align: center;
    padding-top: 24px;
}

    .kPlayer > .performerPanel.alt {
        background-image: url(images/performer-alt.jpg);
    }

.kPlayer > .browserPanel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: white;
    display: none;
    z-index: 4;
    padding: 3px;
}

.kPlayer > .youtubePanel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    display: none;
    z-index: 3;
    padding: 3px;
}

    .kPlayer > .youtubePanel > iframe {
        width: 100%;
        height: 100%;
        border: none;
        padding: 0;
    }

.kControlBar {
    width: 838px;
    height: 35px;
    max-width: 1920px;
    max-height: 1080px;
    position: relative;
    background-color: #212121;
    border-top: 1px solid #c2c2c2;
    display: none;
    z-index: 4;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .kControlBar > .kVolume {
        width: 50px;
        height: 35px;
        font-size: 2em !important;
        color: white;
        line-height: 0;
        text-align: center;
        vertical-align: middle;
        /*background-image: url(images/speaker32.png);
        background-repeat: no-repeat;
        background-position: center;*/
        border-right: 1px solid #3e3e3e;
        transition: linear;
        transition-duration: 0.3s;
        display: table-cell;
    }

        .kControlBar > .kVolume:hover {
            background-color: #313131;
            cursor: pointer;
        }

        .kControlBar > .kVolume > i {
            position: absolute;
            z-index: 5;
            top: 4px;
            left: 14px;
            opacity: 1;
        }

.kVolumeDialBg {
    position: absolute;
    opacity: 0;
    transition: opacity linear 0.3s;
    left: 4px;
    bottom: 0px;
    z-index: 4;
    height: 35px;
    width: 46px;
    background-color: #313131;
    border: 1px solid #3e3e3e;
    border-bottom: none;
    overflow: hidden;
}

.kVolume:hover .kVolumeDialBg {
    height: 235px;
    opacity: 1;
}

.kVolumeDial.ui-slider-vertical {
    bottom: 48px;
    position: absolute;
    width: 34px !important;
    margin-left: 5px !important;
    margin-top: 5px !important;
    height: 180px !important;
    border-radius: 0 !important;
    border: none !important;
    background: repeating-linear-gradient(red, yellow, #044d00) !important;
}

.kVolumeDial .ui-slider-range {
    background: none !important;
    border-radius: 0 !important;
}

.kVolumeDial .ui-slider-handle {
    margin-left: -3px !important;
    margin-top: 5px !important;
    margin-bottom: -1.3em !important;
    border: 0 !important;
    border-radius: 0 !important;
    height: 22px !important;
    width: 48px !important;
    background: url(images/handle-v.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    outline: none;
}

.kControlBar > .kPlayPause {
    width: 50px;
    height: 35px;
    font-size: 2em !important;
    color: white;
    line-height: 0;
    text-align: center;
    vertical-align: middle;
    /*background-repeat: no-repeat;
        background-position: center;*/
    border-right: 1px solid #3e3e3e;
    transition: linear;
    transition-duration: 0.3s;
    display: table-cell;
    border-collapse: collapse;
}

    .kControlBar > .kPlayPause:hover {
        background-color: #313131;
        cursor: pointer;
    }

.kControlBar > .Play {
    color: white;
}

.kControlBar > .Pause {
    color: green;
}

/*.kControlBar > .kDuration {
        width: 70px;
        height: 35px;
        border-right: 1px solid #3e3e3e;
        display: table-cell;
        overflow: visible;
        white-space: nowrap;
        vertical-align: middle;
        font-size: 12px;
        font-weight: bold;
        text-align: center;
    }

        .kControlBar > .kDuration > span {
            color: skyblue;
        }*/

.kControlBar > .kProgressInfo {
    height: 35px;
    display: table-cell;
    color: white;
    padding-left: 7px;
    padding-right: 12px;
    position: relative;
}

    .kControlBar > .kProgressInfo > span {
        position: absolute;
        top: -30px;
        background-color: rgba(80,80,80,0.5);
        color: silver;
        border-radius: 3px;
        padding: 2px 5px 2px 5px;
        display: none;
        width: 40px;
        text-align: center;
    }

.kProgressBar {
    top: 9px !important;
    background: repeating-linear-gradient(#7c7c7c, #3f3f3f) !important;
    border: 0 !important;
    border-radius: 0 !important;
    height: 17px !important;
}

    .kProgressBar .ui-slider-horizontal {
        height: 28px !important;
    }

    .kProgressBar .ui-slider-range {
        background: repeating-linear-gradient(grey, rgb(189,188,188)) !important;
        border-radius: 0 !important;
    }

    .kProgressBar .ui-slider-handle {
        border: 0 !important;
        border-radius: 0 !important;
        height: 31px !important;
        width: 22px !important;
        background: url(images/handle.png) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        outline: none;
    }

.kControlBar > .kProgressTimer {
    height: 35px;
    display: table-cell;
    color: silver;
    padding-left: 3px;
    padding-right: 3px;
    width: 60px;
    vertical-align: middle;
    text-align: center;
    border-left: 1px solid #3e3e3e;
    font-size: 11px;
    overflow: hidden;
}


.kControlBar > .kPlaylist {
    width: 50px;
    height: 35px;
    font-size: 2em !important;
    color: white;
    line-height: 0;
    text-align: center;
    vertical-align: middle;
    /*background-image: url(images/browser32.png);
    background-repeat: no-repeat;
    background-position: center;*/
    border-left: 1px solid #3e3e3e;
    transition: linear;
    transition-duration: 0.3s;
    display: table-cell;
}

    .kControlBar > .kPlaylist:hover {
        background-color: #313131;
        cursor: pointer;
    }

    /*.kControlBar > .kPlaylist.disabled:hover {
        background-color: initial;
        cursor: initial;
    }*/

    .kControlBar > .kPlaylist.active {
        background-color: #616161;
    }

.kControlBar > .kKey {
    width: 120px;
    height: 35px;
    /*color: white;*/
    /*line-height: 0;*/
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #3e3e3e;
    /*transition: linear;
    transition-duration: 0.3s;*/
    display: table-cell;
    padding-bottom: 3px;
}

    .kControlBar > .kKey .bs-caret {
        right: 4px;
        position: absolute;
        top: 2px;
    }

    .kControlBar > .kKey .text {
        font-size: 12px !important;
    }

    .kControlBar > .kKey .dropdown-toggle {
        padding-top: 0px;
        padding-bottom: 0px;
        height: 17px;
        line-height: 1;
    }

    .kControlBar > .kKey ul.dropdown-menu {
        overflow-y: hidden;
    }

    .kControlBar > .kKey .dropdown-menu {
        top: -530%;
    }

        .kControlBar > .kKey .dropdown-menu > li:not(.divider) {
            height: 20px;
        }

            .kControlBar > .kKey .dropdown-menu > li:not(.divider) > a {
                padding-top: 0;
                padding-bottom: 0;
            }

    .kControlBar > .kKey .dropup .dropdown-menu {
        top: -530%;
        bottom: auto;
    }

    .kControlBar > .kKey .dropdown-menu .text-muted {
        left: 65px;
        position: absolute;
        top: 3px;
    }

    .kControlBar > .kKey .dropdown-toggle .text-muted {
        right: 18px;
        position: absolute;
        top: 2px;
    }

    .kControlBar > .kKey select {
        /*height: 50%;
        bottom: -6px;
        position: relative;
        color: #303030;
        font-size: 10px;
        width: 90%;
        box-sizing: border-box;
        border: none;
        border-radius: 3px;
        height: 16px;*/
    }

.kControlBar > .kInfo {
    width: 50px;
    height: 35px;
    font-size: 2em !important;
    color: dodgerblue;
    line-height: 0;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #3e3e3e;
    transition: linear;
    transition-duration: 0.3s;
    display: table-cell;
}

    .kControlBar > .kInfo:not(.disabled):hover {
        background-color: #313131;
        cursor: pointer;
    }

    .kControlBar > .kInfo.active {
        background-color: #616161;
    }

    .kControlBar > .kInfo.disabled {
        cursor: not-allowed;
    }

.kControlBar > .kFavorites {
    width: 50px;
    height: 35px;
    font-size: 2em !important;
    color: red;
    line-height: 0;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #3e3e3e;
    transition: linear;
    transition-duration: 0.3s;
    display: table-cell;
}

    .kControlBar > .kFavorites:hover {
        background-color: #313131;
        cursor: pointer;
    }

    .kControlBar > .kFavorites.active {
        background-color: #616161;
    }

.kControlBar > .kFullscreen {
    width: 50px;
    height: 35px;
    font-size: 2em !important;
    color: silver;
    line-height: 0;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #3e3e3e;
    transition: linear;
    transition-duration: 0.3s;
    display: table-cell;
}

    .kControlBar > .kFullscreen > i {
        z-index: 5;
        position: absolute;
        right: 10px;
        bottom: 3px;
        cursor: default;
    }

    .kControlBar > .kFullscreen > .kRemoteWindow > i {
        cursor: pointer;
        transition: color linear 0.5s;
    }

        .kControlBar > .kFullscreen > .kRemoteWindow > i:hover {
            color: white;
        }

.kRemoteWindow {
    position: absolute;
    opacity: 0;
    transition: opacity linear 0.3s;
    right: 4px;
    bottom: 0px;
    z-index: 4;
    height: 35px;
    width: 42px;
    background-color: #313131;
    border: 1px solid #3e3e3e;
    border-bottom: none;
    overflow: hidden;
}

    .kRemoteWindow > .fa-expand {
        position: absolute;
        bottom: -100px;
        left: 9px;
    }

    .kRemoteWindow > .fa-sign-out {
        position: absolute;
        bottom: -100px;
        left: 9px;
    }

    .kRemoteWindow > .fa.set-bg {
        position: absolute;
        bottom: -100px;
        left: 6px;
    }

.kFullscreen:hover .kRemoteWindow {
    height: 145px;
    opacity: 1;
}

    .kFullscreen:hover .kRemoteWindow > .fa-expand {
        bottom: 41px;
    }

    .kFullscreen:hover .kRemoteWindow > .fa-sign-out {
        bottom: 75px;
    }

    .kFullscreen:hover .kRemoteWindow > .fa.set-bg {
        bottom: 109px;
    }

.player {
    position: relative;
}

    .player .spinner {
        position: absolute;
        /*width: 16px;
        height: 16px;
        background-image: url(images/spinner16.gif);
        background-size: cover;*/
        left: 10px;
        top: 10px;
        color: white;
        display: none;
        z-index: 99;
    }

    .player .spinner-big {
        position: absolute;
        /*width: 64px;
        height: 64px;
        background-image: url(images/spinner64.gif);
        background-size: cover;*/
        left: 400px;
        top: 200px;
        display: none;
        z-index: 99;
        color: #ccc;
    }

    .player .debugOverlay {
        color: silver;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background-color: transparent;
        z-index: 3;
        padding-left: 20px;
        padding-top: 14px;
    }

.hidden {
    display: none;
}

.k-player-browser-header {
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    background: linear-gradient(90deg, #092601, #e01c00);
    height: 30px;
    line-height: 27px;
    font-size: 17px;
    text-transform: uppercase;
}

    .k-player-browser-header > span {
        vertical-align: middle;
    }

        .k-player-browser-header > span:last-child {
            text-transform: capitalize;
            font-size: 12px;
        }

    .k-player-browser-header.blue {
        background: linear-gradient(90deg, #00094c, #006cff);
    }

    .k-player-browser-header.green {
        background: linear-gradient(90deg, #092601, #44a900);
    }

.k-player-browser-body-wrapper {
    width: 100%;
    height: 433px;
    overflow: hidden;
}

.k-player-browser-home {
    width: 837px;
    height: 463px;
    overflow: hidden;
}

    .k-player-browser-home > div {
        width: 33%;
        height: 463px;
        overflow: hidden;
        float: left;
        margin-right: 4px;
    }

        .k-player-browser-home > div:last-child {
            margin-right: 0;
        }

        .k-player-browser-home > div > .k-player-browser-header {
            width: 270px;
        }

        .k-player-browser-home > div .k-player-browser-body {
            width: 300px;
            height: 433px;
            overflow: auto;
        }

    .k-player-browser-home .k-player-browser-item:nth-child(6n+4), .k-player-browser-home .k-player-browser-item:nth-child(6n+5), .k-player-browser-home .k-player-browser-item:nth-child(6n+6) {
        background-color: initial !important;
    }

        .k-player-browser-home .k-player-browser-item:nth-child(6n+4):hover, .k-player-browser-home .k-player-browser-item:nth-child(6n+5):hover, .k-player-browser-home .k-player-browser-item:nth-child(6n+6):hover {
            background-color: #e8e8e8 !important;
        }

.k-player-browser-body {
    width: 860px;
    height: 433px;
    overflow: auto;
}

.k-player-browser-item {
    width: 270px;
    height: 50px;
    border: 1px solid silver;
    border-top: none;
    float: left;
    margin-right: 10px;
    transition: background-color linear 0.5s;
    cursor: pointer;
}

    .k-player-browser-item a {
        color: #5a5a5a;
    }

    .k-player-browser-item:nth-child(6n+4), .k-player-browser-item:nth-child(6n+5), .k-player-browser-item:nth-child(6n+6) {
        background-color: #f7f7f7;
    }

    .k-player-browser-item:hover {
        background-color: #e8e8e8 !important;
    }

    .k-player-browser-item > .cover-art {
        text-align: center;
        width: 60px;
        float: left;
        padding: 5px 0 5px 1px;
    }

        .k-player-browser-item > .cover-art > img {
            width: 52px;
            height: 39px;
            border: 1px solid silver;
            opacity: 0;
            transition: opacity linear 0.5s;
        }

    .k-player-browser-item > .item-body {
        width: 208px;
        float: left;
        position: relative;
    }

        .k-player-browser-item > .item-body > .item-title {
            text-align: left;
            width: 170px;
            overflow: hidden;
            text-overflow: ellipsis;
            position: absolute;
            left: 4px;
            top: 1px;
            font-size: 12px;
            font-weight: bold;
            color: #333333;
            white-space: nowrap;
        }

        .k-player-browser-item > .item-body > .item-artist {
            position: absolute;
            left: 4px;
            top: 14px;
            font-size: 12px;
            color: #5a5a5a;
        }

        .k-player-browser-item > .item-body > .item-controls {
            color: silver;
            position: absolute;
            left: 4px;
            top: 28px;
            font-size: 14px;
        }

            .k-player-browser-item > .item-body > .item-controls i {
                cursor: pointer;
            }

        .k-player-browser-item > .item-body > .play-button {
            border: 1px solid silver;
            color: rgb(64, 64, 64);
            background: linear-gradient(whitesmoke, rgb(221, 221, 221)) repeat scroll 0% 0% transparent;
            padding: 3px 6px 2px 8px;
            position: absolute;
            right: 8px;
            top: 12px;
        }

            .k-player-browser-item > .item-body > .play-button:hover {
                background: linear-gradient(whitesmoke, rgb(200, 200, 200)) repeat scroll 0% 0% transparent;
            }

    .k-player-browser-item i.active {
        color: red !important;
    }

    .k-player-browser-item i.fa-list {
        color: #286eb9;
    }

.pdf-download {
    position: absolute;
    right: 3px;
    top: 3px;
}

    .pdf-download > a {
        color: red;
    }

.performer-panel-header {
    font-size: 28px;
    font-weight: bold;
}

.kPlayer:-ms-fullscreen .performer-panel-header {
    margin-top: 4vh;
    font-size: 3vw !important;
}

.kPlayer:-moz-full-screen .performer-panel-header {
    margin-top: 4vh;
    font-size: 3vw !important;
}

.kPlayer:-webkit-full-screen .performer-panel-header {
    margin-top: 4vh;
    font-size: 3vw !important;
}

.performer-panel-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 40px;
    color: silver;
    text-shadow: 2px 2px 4px black;
}

.performer-alt-panel-title {
    margin-top: 70px;
    font-weight: bold;
    font-size: 40px;
    color: silver;
    text-shadow: 2px 2px 4px black;
}

.kPlayer:-ms-fullscreen .performer-panel-title {
    margin-top: 4vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-moz-full-screen .performer-panel-title {
    margin-top: 4vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-webkit-full-screen .performer-panel-title {
    margin-top: 4vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-ms-fullscreen .performer-alt-panel-title {
    margin-top: 18vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-moz-full-screen .performer-alt-panel-title {
    margin-top: 18vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-webkit-full-screen .performer-alt-panel-title {
    margin-top: 18vh;
    font-size: 4.2vw !important;
    text-shadow: 2px 2px 0.5vw black;
}

.performer-panel-artist {
    font-size: 28px;
    font-weight: bold;
    margin-top: -10px;
}

.performer-alt-panel-artist {
    font-size: 28px;
    font-weight: bold;
    margin-top: 50px;
}

.kPlayer:-ms-fullscreen .performer-panel-artist {
    margin-top: -2vh;
    font-size: 3vw !important;
}

.kPlayer:-moz-full-screen .performer-panel-artist {
    margin-top: -2vh;
    font-size: 3vw !important;
}

.kPlayer:-webkit-full-screen .performer-panel-artist {
    margin-top: -2vh;
    font-size: 3vw !important;
}

.kPlayer:-ms-fullscreen .performer-alt-panel-artist {
    margin-top: 16vh;
    font-size: 3vw !important;
}

.kPlayer:-moz-full-screen .performer-alt-panel-artist {
    margin-top: 16vh;
    font-size: 3vw !important;
}

.kPlayer:-webkit-full-screen .performer-alt-panel-artist {
    margin-top: 16vh;
    font-size: 3vw !important;
}

.performer-panel-performer-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 80px;
}

.kPlayer:-ms-fullscreen .performer-panel-performer-title {
    margin-top: 18vh;
    font-size: 3vw !important;
}

.kPlayer:-moz-full-screen .performer-panel-performer-title {
    margin-top: 18vh;
    font-size: 3vw !important;
}

.kPlayer:-webkit-full-screen .performer-panel-performer-title {
    margin-top: 18vh;
    font-size: 3vw !important;
}

.performer-panel-performer {
    margin-top: 25px;
    font-weight: bold;
    font-size: 35px;
    color: #C0C0C0;
    line-height: 35px;
    text-shadow: 2px 2px 4px black;
}

.kPlayer:-ms-fullscreen .performer-panel-performer {
    margin-top: 8vh;
    font-size: 4vw !important;
    line-height: 6vh;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-moz-full-screen .performer-panel-performer {
    margin-top: 8vh;
    font-size: 4vw !important;
    line-height: 6vh;
    text-shadow: 2px 2px 0.5vw black;
}

.kPlayer:-webkit-full-screen .performer-panel-performer {
    margin-top: 8vh;
    font-size: 4vw !important;
    line-height: 6vh;
    text-shadow: 2px 2px 0.5vw black;
}

.performer-panel-copyright {
    font-size: 35%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: left;
    padding-left: 3%;
}

.kPlayer:-ms-fullscreen .performer-panel-copyright {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: left;
    padding-left: 3%;
}

.kPlayer:-moz-full-screen .performer-panel-copyright {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: left;
    padding-left: 3%;
}

.kPlayer:-webkit-full-screen .performer-panel-copyright {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: left;
    padding-left: 3%;
}

.performer-panel-performance {
    font-size: 35%;
    font-weight: bold;
    position: absolute;
    bottom: 25%;
    color: #363636;
    width: 100%;
    text-align: center;
}

.kPlayer:-ms-fullscreen .performer-panel-performance {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: center;
}

.kPlayer:-moz-full-screen .performer-panel-performance {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: center;
}

.kPlayer:-webkit-full-screen .performer-panel-performance {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: center;
}

.performer-panel-fb {
    font-size: 35%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: right;
    padding-right: 3%;
}

    .performer-panel-fb > i {
        color: #3B5998;
    }

.kPlayer:-ms-fullscreen .performer-panel-fb {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: right;
    padding-right: 3%;
}

    .kPlayer:-ms-fullscreen .performer-panel-fb > i {
        color: #3B5998;
    }

.kPlayer:-moz-full-screen .performer-panel-fb {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: right;
    padding-right: 3%;
}

    .kPlayer:-moz-full-screen .performer-panel-fb > i {
        color: #3B5998;
    }

.kPlayer:-webkit-full-screen .performer-panel-fb {
    font-size: 70%;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    color: #363636;
    width: 100%;
    text-align: right;
    padding-right: 3%;
}

    .kPlayer:-webkit-full-screen .performer-panel-fb > i {
        color: #3B5998;
    }


.kPlayer:-ms-fullscreen > .favContainer {
    display: none;
}

.kPlayer:-webkit-full-screen > .favContainer {
    display: none;
}

.kPlayer:-moz-full-screen > .favContainer {
    display: none;
}
