.player-container,
.player-container span {
    color: white;
}

.player-container span.hamster {

    position: absolute;
    z-index: 9500;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    top: 50%;
    left: 50%;
    display: block;
    width: 82px;
    height: 76px;
    margin: -42px auto auto -41px;
    background: url(../../images/player/hamster.svg) center center no-repeat transparent;
    background-size: cover;
    line-height: 86px;
    font-size: 10pt;
    color: #999;
    text-align: center;

}

.player-container span.loader {

    position: absolute;
    z-index: 10000;
    top: 50%;
    left: 50%;
    display: block;
    width: 46px;
    height: 46px;
    margin: -23px auto auto -23px;
    background: url(../../images/player/loader.svg) center center no-repeat transparent;
    -webkit-animation: spinner .70s steps(8) infinite;
    -moz-animation: spinner .70s steps(8) infinite;
    -ms-animation: spinner .70s steps(8) infinite;
    -o-animation: spinner .70s steps(8) infinite;
    animation: spinner .70s steps(8) infinite;

}

.player-container a.playster {

    position: absolute;
    z-index: 10000;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    top: 50%;
    left: 50%;
    display: block;
    width: 32px;
    height: 32px;
    margin: -16px auto auto -13px;
    background: url(../../images/player/playster.svg) center center no-repeat transparent;
    background-size: cover;
    opacity: .8;
    cursor: pointer;

}

@-webkit-keyframes spinner {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes spinner {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@keyframes spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.player-container {
    position: relative;
    background: #000;
    overflow: hidden;
}

.player-container * {
    position: absolute;
    outline: none !important;
}

.player-container div.panel {
    background: rgba(40, 40, 40, 0.6);
    height: 30px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    max-height: 30px;
    z-index: 10300;
}

.player-container .panel a,
.player-container .social a,
.player-container .tabs a {
    line-height: 31px;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-block;
    /*left: 0;*/
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container .panel a:hover,
.player-container .social a:hover,
.player-container .tabs a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container a.play {
    background-image: url(../../images/player/play-button.png);
}

.player-container a.play.playing {
    background-image: url(../../images/player/pause-button.png);
}

.player-container a.play.replay {
    background-image: url(../../images/player/replay.png);
}

.player-container a.menu-button {
    text-align: center;
    right: 65px;
    width: 60px;
}

.player-container a.menu-button:hover {
    color: white !important;
}

.player-container.nosettings a.menu-button {
    right: 34px;
}

.player-container a.volume {
    background-color: transparent !important;
    background-image: url(../../images/player/volume.png);
    left: 0px;
    -webkit-transition: background-image 250ms ease;
    -moz-transition: background-image 250ms ease;
    -ms-transition: background-image 250ms ease;
    -o-transition: background-image 250ms ease;
    transition: background-image 250ms ease;
}

.player-container a.volume.half {
    background-image: url(../../images/player/volume-half.png);
}

.player-container a.volume.mute {
    background-image: url(../../images/player/volume-mute.png);
}

.player-container span.timings {
    display: inline-block;
    line-height: 30px;
    font-size: 10pt;
    left: 62px;
    height: 30px;
    padding-left: 10px;
}

.player-container span.timings span {
    padding-top: 1px;
    position: relative;
    float: left;
    color: white !important;
    text-shadow: 0 1px 2px #000;
    font-weight: bold;
}

.player-container span.timings span.separator {
    color: #999 !important;
    margin: 0 .3em;
}

.player-container a.fullscreen {
    background-image: url(../../images/player/fullscreen.png);
    -webkit-transition: background-image 250ms ease;
    -moz-transition: background-image 250ms ease;
    -ms-transition: background-image 250ms ease;
    -o-transition: background-image 250ms ease;
    transition: background-image 250ms ease;
    right: 0px;
}

.player-container a.fullscreen:hover {
    background-image: url(../../images/player/fullscreen-over.png);
}

.player-container a.settings-button {
    background-image: url(../../images/player/settings.png);
    right: 31px;
}

.player-container .seeker {
    display: block;
    left: 0;
    right: 0;
    bottom: 30px;
    height: 6px;
    border: 0px none;
    border-top: 1px solid rgba(40, 40, 40, 0.75);
    border-bottom: 1px solid rgba(40, 40, 40, 0.75);
    background: rgba(40, 40, 40, 0.6);
    z-index: 10300;
}

.player-container .handle {
    top: -2px;
    bottom: -2px;
    width: 5px;
    display: inline-block;
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
    left: 0;
    -webkit-transition: left 250ms ease;
    -moz-transition: left 250ms ease;
    -ms-transition: left 250ms ease;
    -o-transition: left 250ms ease;
    transition: left 250ms ease;
}

.player-container .seeker,
.player-container .filler,
.player-container .buffer,
.player-container .handle {
    cursor: pointer;
}

.player-container .filler,
.player-container .buffer {
    top: 0px;
    bottom: 0px;
    display: inline-block;
    background: #c23f2d;
    left: 0;
    width: 0;
    -webkit-transition: width 250ms ease;
    -moz-transition: width 250ms ease;
    -ms-transition: width 250ms ease;
    -o-transition: width 250ms ease;
    transition: width 250ms ease;
}

.player-container .buffer {
    width: 0;
    background: rgba(128, 128, 128, .9);
}

.player-container .volume-controls {
    height: 30px;
    width: 30px;
    overflow: hidden;
    white-space: nowrap;
    bottom: 0;
    left: 31px;
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container .volume-controls:hover {
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container .volume-bar {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    left: 32px;
    right: 10px;
    border: 1px solid black;
    top: 12px;
    height: 6px;
}

.player-container span.settings {
    width: 220px;
    padding: 8px;
    background: rgba(0, 0, 0, .7);
    bottom: 42px;
    right: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    display: block;
    font-size: 90%;
    z-index: 11500;
}

.player-container .settings span {
    position: relative;
}

.player-container .settings .setting {
    display: block;
    clear: both;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    text-shadow: 0 1px 2px #000;
    color: white;
}

.player-container .settings .setting:after {
    content: '';
    display: block;
    clear: both;
}

.player-container .settings .setting:last-child {
    padding-bottom: 0px;
    padding-top: 8px;
    border-bottom: 0px none;
}

.player-container .settings .setting .label {
    display: inline-block;
    width: 80px;
    font-weight: bold;
    padding-top: 3px;
}

.player-container .settings .setting .label.multiline {
    min-height: 2em;
}

.player-container .settings .setting .chooser {
    width: 115px;
    float: right;
}

.player-container .settings .setting .chooser span,
.player-container .settings .setting .chooser a {
    display: block;
    padding: 3px 4px;
    border-radius: 3px;
    margin-right: 3px;
    background: none;
    cursor: pointer;
    clear: both;
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container .settings .setting .chooser a {
    height: auto;
    line-height: inherit;
    position: relative;
    width: auto;
}

.player-container .settings .setting .chooser .chosen {
    background: #c23f2d;
    -webkit-transition: background-color 250ms ease;
    -moz-transition: background-color 250ms ease;
    -ms-transition: background-color 250ms ease;
    -o-transition: background-color 250ms ease;
    transition: background-color 250ms ease;
}

.player-container .flyout.below:after {
    content: '';
    position: absolute;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.4);
}

.player-container .flyout.ontop:after {
    content: '';
    position: absolute;
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.4);
}

.player-container:-webkit-full-screen,
.player-container:-webkit-full-screen video {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.player-container:-webkit-full-screen a.fullscreen {
    background-image: url(../../images/player/fullscreen-exit.png) !important;
}

.player-container:-webkit-full-screen .btnList,
.player-container:-webkit-full-screen .addthis_button_compact {
    display: none !important;
}

.player-container:-moz-full-screen,
.player-container:-moz-full-screen video {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.player-container:-moz-full-screen a.fullscreen {
    background-image: url(../../images/player/fullscreen-exit.png) !important;
}

.player-container:-moz-full-screen .btnList,
.player-container:-moz-full-screen .addthis_button_compact {
    display: none !important;
}

.player-container:-ms-fullscreen,
.player-container:-ms-fullscreen video {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.player-container:-ms-fullscreen a.fullscreen {
    background-image: url(../../images/player/fullscreen-exit.png) !important;
}

.player-container:-ms-fullscreen .btnList,
.player-container:-ms-fullscreen .addthis_button_compact {
    display: none !important;
}

.player-container:fullscreen,
.player-container:fullscreen video {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.player-container:fullscreen .addthis_button_compact,
.player-container:fullscreen .btnList {
    display: none !important;
}

.player-container:-webkit-full-screen .tab-content a.tab-content-item:after {
    font-size: 140% !important;
}

.player-container:-moz-full-screen .tab-content a.tab-content-item:after {
    font-size: 140% !important;
}

.player-container:-ms-fullscreen .tab-content a.tab-content-item:after {
    font-size: 140% !important;
}

.player-container:fullscreen .tab-content a.tab-content-item:after {
    font-size: 140% !important;
}

.player-container:fullscreen a.fullscreen {
    background-image: url(../../images/player/fullscreen-exit.png) !important;
}

.player-container .sprite {
    top: -160px;
    left: 200px;
    background: #efefef;
    box-shadow: 0 2px 10px black;
    width: 160px;
    padding: 5px;
    text-align: center;
    border-radius: 2px;
}

.player-container .sprite span {
    position: relative;
    display: block;
}

.player-container .sprite .sprite-image {
    width: 160px;
    height: 120px;
    background-position-x: 0;
    background-position-y: top;
    border: 1px solid rgba(0, 0, 0, .3);
    box-sizing: border-box;
    border-radius: 3px;
}

.player-container .sprite .time {
    color: rgba(0, 0, 0, 0.9);
    text-shadow: white 0 1px 0;
    margin-top: .3em;
}

.player-container.filter.off video {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}

.player-container.filter.bw video {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.player-container.filter.voyeur video {
    -webkit-filter: brightness(50%) blur(2px);
    -moz-filter: brightness(50%) blur(2px);
    -ms-filter: brightness(50%) blur(2px);
    -o-filter: brightness(50%) blur(2px);
    filter: brightness(50%) blur(2px);
}

.player-container.filter.sepia video {
    -webkit-filter: sepia(100%);
    -moz-filter: sepia(100%);
    -ms-filter: sepia(100%);
    -o-filter: sepia(100%);
    filter: sepia(100%);
}

.player-container.filter.hot video {
    -webkit-filter: contrast(150%) brightness(125%);
    -moz-filter: contrast(150%) brightness(125%);
    -ms-filter: contrast(150%) brightness(125%);
    -o-filter: contrast(150%) brightness(125%);
    filter: contrast(150%) brightness(125%);
}

.player-container.filter.avatar video {
    -webkit-filter: contrast(170%) hue-rotate(180deg);
    -moz-filter: contrast(170%) hue-rotate(180deg);
    -ms-filter: contrast(170%) hue-rotate(180deg);
    -o-filter: contrast(170%) hue-rotate(180deg);
    filter: contrast(170%) hue-rotate(180deg);
}

.player-container.filter.techno video {
    -webkit-animation: techno 5s infinite linear;
    -moz-animation: techno 5s infinite linear;
    -ms-animation: techno 5s infinite linear;
    -o-animation: techno 5s infinite linear;
    animation: techno 5s infinite linear;
}

@-webkit-keyframes techno {
    0%, 100% {
        -webkit-filter: contrast(150%) brightness(125%) hue-rotate(0deg);
    }
    59% {
        -webkit-filter: contrast(150%) brightness(125%) hue-rotate(359deg);
    }
}

@-moz-keyframes techno {
    from {
        -moz-filter: contrast(150%) brightness(125%) hue-rotate(360deg);
    }
    to {
        -moz-filter: contrast(150%) brightness(125%) hue-rotate(0deg);
    }
}

@-o-keyframes techno {
    from {
        -o-filter: contrast(150%) brightness(125%) hue-rotate(360deg);
    }
    to {
        -o-filter: contrast(150%) brightness(125%) hue-rotate(0deg);
    }
}

@keyframes techno {
    0%, 100% {
        -webkit-filter: contrast(150%) brightness(125%) hue-rotate(0deg);
        filter: contrast(150%) brightness(125%) hue-rotate(0deg);
    }
    59% {
        -webkit-filter: contrast(150%) brightness(125%) hue-rotate(360deg);
        filter: contrast(150%) brightness(125%) hue-rotate(360deg);
    }
}

.player-container .social {
    display: block;
    right: 5px;
    left: 40%;
    top: 5px;
    text-align: right;
    height: 50px;
}

.player-container .social a {
    position: relative;
    opacity: .6;
    display: inline-block;
    background-color: rgba(0, 0, 0, .6);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 3px;
    width: 50px;
    height: 50px;
    margin-left: 5px;
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.player-container.embedded .timings {
    font-size: 10px;
    left: 60px
}

.player-container.embedded .social a {
    width: 32px;
    height: 32px;
    mrgin-left: 1px;
}

.player-container .social a:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, .9);
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.player-container .social a.like {
    background-image: url(../../images/player/like.png);
}

.player-container .social a.dislike {
    background-image: url(../../images/player/dislike.png);
    margin-right: 18px;
}

.player-container .social a.tweet {
    background-image: url(../../images/player/twitter.png);
}

.player-container .social a.reddit {
    background-image: url(../../images/player/reddit.png);
}

.player-container .social a.addThis {
    background-image: url(../../images/player/share.png);
}

.player-container .overlay,
.player-container .ad-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10200;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 31px;
}

.player-container .overlay .tabs {
    background: black;
    display: block;
    height: 45px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 45px;
    text-align: center;
}

.player-container .overlay .tabs a {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    width: auto;
    min-width: 45px;
    line-height: 45px;
    height: 45px;
    top: 0;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}

.player-container .overlay .tabs a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.player-container .overlay .tabs a.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #c23f2d;
}

.player-container .overlay .tabs a.close {
    width: 45px;
    padding: 0;
    background-image: url(../../images/player/close.png);
    float: right;
}

.player-container .tab-content {
    display: block;
    vertical-align: middle;
    text-align: center;
    top: 60px;
    left: 15px;
    right: 15px;
    bottom: 95px;
}

.player-container .tab-content.share {
    display: block;
    vertical-align: middle;
    text-align: center;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 90%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.player-container .tab-content .tab-content-item {
    width: 24%;
    border: 1px solid black;
    height: 33.3333%;
    background: black;
    display: inline-block;
    text-align: left;
    vertical-align: bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    opacity: 1;
    z-index: 1500 !important;

    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;

    -webkit-transition: background-size 250ms;
    -moz-transition: background-size 250ms;
    -ms-transition: background-size 250ms;
    -o-transition: background-size 250ms;
    transition: background-size 250ms;
}

.player-container .tab-content .tab-content-item:after {
    content: attr(title);
    margin: 5px;
    display: inline-block;
    text-shadow: 0 1px 2px black;
    color: white;
    line-height: 1em !important;
    font-size: 10pt !important;
    opacity: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: opacity 250ms;
    -moz-transition: opacity 250ms;
    -ms-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
}

.player-container .tab-content .tab-content-item span.dimmer {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: black;
    opacity: 0;
    -webkit-transition: opacity 250ms;
    -moz-transition: opacity 250ms;
    -ms-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
}

.player-container .tab-content .tab-content-item:hover {
    cursor: pointer;
    opacity: 1;
    z-index: 5500 !important;
    background-size: auto 110%;
    -webkit-transition: background-size 250ms;
    -moz-transition: background-size 250ms;
    -ms-transition: background-size 250ms;
    -o-transition: background-size 250ms;
    transition: background-size 250ms;
}

.player-container .tab-content .tab-content-item:hover span.dimmer {
    opacity: .4;
    -webkit-transition: opacity 250ms;
    -moz-transition: opacity 250ms;
    -ms-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
}

.player-container .tab-content .tab-content-item:hover:after {
    opacity: .99999;
    -webkit-transition: opacity 250ms;
    -moz-transition: opacity 250ms;
    -ms-transition: opacity 250ms;
    -o-transition: opacity 250ms;
    transition: opacity 250ms;
}

.player-container .tab-content.share table,
.player-container .tab-content.share tbody,
.player-container .tab-content.share tr,
.player-container .tab-content.share td,
.player-container .tab-content.share th,
.player-container .tab-content.share a,
.player-container .tab-content.share div,
.player-container .tab-content.share textarea {
    position: relative !important;
}

.player-container .tab-content.share table tr td:first-child {
    width: 30%;
    padding-top: .8em;
    padding-right: 35px;
}

.player-container textarea {
    resize: none !important;
}

.player-container .tab-content.share table tr td .btnList {
    margin-top: .3em;
}

.player-container .tab-content.share .addThis {
    white-space: nowrap;
}

.player-container .tab-content.share .addThis a,
.player-container .tab-content.share .addThis a span {
    width: 64px !important;
    height: 64px !important;
    background-size: 100% !important;
    background-position: center;
    display: inline-block;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    border-radius: 10%;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    margin: 0 5px;
}

.player-container .tab-content.share .addThis a span .at-icon {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
}

.player-container .tab-content.share .addThis a span {
    margin: 0 !important;
}

.player-container .tab-content.share {
    width: auto;
}

.player-container .tab-content.share .share-heading {
    margin: 48px 5px 5px 5px;
    text-align: left;
    font-weight: bold;
}

.player-container .tab-content.share .share-link {
    margin: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 5px;
    white-space: normal;
    border-radius: 5px;
    word-break: break-all;
    text-align: left;
    line-height: 150%;
}

.player-container .tab-content.share .copy-link {
    text-align: right;
    margin: 5px;
}

.player-container .tab-content.share .copy-link a {
    color: white;
}

.player-container.embedded .tab-content.share .addThis a {
    float: none;
}

.player-container .tab-content.share table tr td textarea {
    width: 90%;
    background: none;
    outline: none !important;
    border: 0px none !important;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10pt !important;
    height: 4em !important;
    float: left;
    overflow: hidden;
}

#plAds {
    z-index: 12000;
}

.ad-overlay *,
#plAds * {
    position: relative;
}

#plAds iframe {
    width: 100%;
    height: 280px;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.player-container.embedded,
.player-container.embedded video {
    width: 100%;
    height: 100%;
}

.player-container.embedded a {
    text-decoration: none !important;
}

.player-container.embedded a:hover {
    color: red;
}

.player-container .watermark {
    background: url(../../images/player/xlogo.png) center center no-repeat transparent;
    width: 100px;
    height: 22px;
    bottom: 40px;
    -webkit-transition: bottom 250ms ease;
    -moz-transition: bottom 250ms ease;
    -ms-transition: bottom 250ms ease;
    -o-transition: bottom 250ms ease;
    transition: bottom 250ms ease;
}

.player-container .watermark.released {
    bottom: 6px;
    -webkit-transition: bottom 250ms ease;
    -moz-transition: bottom 250ms ease;
    -ms-transition: bottom 250ms ease;
    -o-transition: bottom 250ms ease;
    transition: bottom 250ms ease;
}

.player-container .title {
    left: 10px;
    right: 50%;
    top: 10px;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-weight: bolder;
}

.player-container .author {
    left: 10px;
    right: 50%;
    top: 24pt;
}

.player-container .author a {
    color: white;
    font-weight: bolder;
}

.player-container .title,
.player-container .author {
    color: white;
    font-size: 12pt;
    text-shadow: 0 1px 2px #000;
}

.player-container .downmore {
    display: block;
    left: 0;
    right: 0;
    height: 30px;
    bottom: 64px;
    text-align: center;
    z-index: 11800;
}

.player-container .downmore a {
    display: inline-block;
    position: relative;
    width: auto;
    background: #efefef;
    text-align: center;
    padding: 10px 10px 10px 35px;
    -webkit-box-shadow: 0 5px 15px black;
    -moz-box-shadow: 0 5px 15px black;
    box-shadow: 0 5px 15px black;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: rgba(0, 0, 0, .9) !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
    margin: 20px;
}

.player-container .downmore a:hover {
    opacity: .8;
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.player-container .downmore a.download {
    background: url(../../images/player/download.png) 13px center no-repeat #efefef;
}

.player-container .downmore a.moreFrom {
    background: url(../../images/player/user.png) 13px center no-repeat #efefef;
}

.player-container.idevice .loader,
.player-container.idevice .hamster,
.player-container.idevice .playster {
    display: none !important;
}

.player-container.idevice.embedded .hamster,
.player-container.idevice.embedded .playster {
    display: inline-block !important;
}

.player-container.idevice .ad-overlay,
.player-container.basic-layout .ad-overlay {
    height: 300px !important;
    overflow: visible !important;
    top: 50% !important;
    margin-top: -150px !important;
    background: none !important;
}

@media only screen
and (max-device-width: 412px) {

    .player-container span.social {
        top: auto;
        bottom: 55px;
    }

    .player-container .tabs a.livesex,
    .player-container .tabs a.top {
        display: none;
    }

    .player-container .tabs a.tab {
        max-width: 20%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-container .tab-content {
        min-height: 0 !important;
        bottom: 95px;
    }

    .player-container .tab-content.share tr:first-child,
    .player-container .tab-content.share tr td:first-child,
    .player-container .tab-content.share .btnList,
    .player-container .tab-content.share textarea {
        display: none;
    }

    .player-container .tab-content.share tr .addThis a {
        float: none;
    }

    .player-container .tab-content.share .addThis a,
    .player-container .tab-content.share .addThis a span {
        width: 32px !important;
        height: 32px !important;
    }

    .player-container .downmore {
        bottom: 75px;
    }

    .player-container .downmore a.download {
        display: none;
    }
}

@media only screen
and (min-device-width: 568px)
and (max-device-width: 732px) {

}

@media only screen
and (min-device-width: 480px)
and (max-device-width: 568px) {

    .player-container .overlay {
        bottom: 76px;
    }

    .player-container .overlay .download,
    .player-container .overlay .moreFrom {
        bottom: -45px;
    }

    .player-container .tab-content {
        min-height: 0 !important;
        bottom: 55px;
    }

    .player-container .tab-content .tab-content-item {
        background-size: 100% auto;
    }

    .player-container .tab-content.share .addThis a,
    .player-container .tab-content.share .addThis a span {
        width: 48px !important;
        height: 48px !important;
    }

    .player-container .downmore {
        bottom: 75px;
    }

    .player-container .downmore a.download {
        display: none;
    }

    /*.player-container .overlay .tab-content {*/
    /*top: 60%;*/
    /*max-height: 196px;*/
    /*overflow: hidden;*/
    /*}*/

}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {

    .player-container .panel {
        height: 60px;
    }

    .player-container .watermark {
        bottom: 75px;
    }

    .player-container div.panel {
        height: 50px;
        max-height: 50px;
    }

    .player-container div.panel a {
        height: 50px;
        width: 50px;
    }

    .player-container div.panel span.volume-controls {
        height: 50px;
        left: 50px;
        width: 150px !important;
    }

    .player-container.mobile div.panel span.volume-controls {
        width: 50px !important;
    }

    .player-container.mobile div.panel span.volume-bar {
        top: 50%;
        margin-top: -5px;
        height: 10px;
        left: 45px;
    }

    .player-container.mobile div.panel span.volume-bar {
        display: none !important;
    }

    .player-container div.panel span.timings {
        left: 200px !important;
        line-height: 50px;
    }

    .player-container.embedded div.panel span.timings {
        font-size: 10px;
        left: 100px !important
    }

    .player-container.mobile div.panel span.timings {
        left: 100px !important;
    }

    .player-container div.panel a.settings-button {
        right: 50px;
    }

    .player-container div.panel a.menu-button {
        right: 100px;
        line-height: 50px;
    }

    .player-container.nosettings div.panel a.menu-button {
        right: 54px;
    }

    .player-container div.panel span.settings {
        bottom: 75px;
    }

    .player-container .seeker {
        bottom: 50px;
    }

}

.player-container.mobile .seeker {
    height: 25px;
}

.player-container.mobile .social {
    bottom: 80px;
}

.sublayer {
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}