﻿@fontSize: 10pt;
@cardMargin: 6px;
@cardPadding: 8px;
@cardBorder: 3px;

/*@hiColor1: #d67632;
@hiColor2: #f78c40;*/
@hiColor1: #e41b25;
@hiColor2: #e41b25;

@hiActiveColor: #fff;

@bgColor1: #fff;
@bgColor2: #f7f7f7;
@fgColor1: #222;
@fgColor2: #444;

@borderColor: rgba(0,0,0,.2);
@highlightColor: rgba(0,0,0,.1);

/*@fgColor2: #f7f7f7;
@fgColor1: #eee;
@bgColor1: #333;
@bgColor2: #555;*/


//@hiColor1: #f70;
//@hiColor2: #f50;
body.trackInfoBody {
    opacity: 1;
}

.noanim *, .noanim *:before, .noanim *:after {
    transition: none !important;
}

.noshadow *, .noshadow *:before, .noshadow *:after {
    box-shadow: none !important;
}

#mcpWrapper {
    background: @bgColor1 !important;
    overflow: hidden;
    perspective: inherit;
    border-bottom: 1px solid @borderColor;
    -webkit-perspective: inherit;
}

body {
    font-family: 'Roboto', 'Trebuchet MS', Tahoma, Segoe UI, 'Ubuntu', Arial, sans-serif !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: @bgColor1;
    color: @fgColor2;
    font-size: @fontSize;
    -webkit-font-smoothing: antialiased;

    &.trackInfoBody {
        /*overflow: visible;*/
        /*overflow: scroll;
        position: initial;
        min-height: 105vh;*/
        #sc-info {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: auto;
            overflow-x: hidden;
            transform: translateZ(0);
        }
    }
}

input:focus, a:focus, button:focus, :focus {
    outline-color: @hiColor1;
}

#castbutton {
    height: 42px !important;
    padding: 8px 12px;
    box-sizing: border-box;
    border: 0;
    background: transparent;
}

/*input.btn:hover {*/
/*color: @hiActiveColor !important;*/
/*text-shadow: none;*/
/*}*/

button,
.btn {
    position: relative;
    overflow: hidden;
    /*padding: 16px 32px;*/
}

/*button:after,
.btn:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    background: @hiColor1;
    border-radius: 100%;
    opacity: .6;
    transform: scale(0.3);
}

button:not(:active):after,
.btn:not(:active):after {
    animation: ripple 2s ease-out;
}*/

@keyframes ripple {
    0% {
        transform: scale(0.3);
    }

    30% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

button:after, .btn:after {
    visibility: hidden;
}

button:focus:after, .btn:focus:after {
    visibility: visible;
}


input[type=button], .btn, .ui-dialog-buttonpane .ui-button {
    background: @bgColor1;
    border: 1px solid @borderColor;
    box-shadow: 0 1px 3px @borderColor;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 8px;
    display: inline-block;
    .transition(all .2s ease);

    .fa {
        font-size: 18px;
    }
}

input[type=button]:hover, .btn:hover, .ui-dialog-buttonpane .ui-button:hover {
    box-shadow: 0 2px 5px @borderColor;
    background: @bgColor1;
    /*border-left: 1px solid @borderColor;*/
    /*border-top: 3px solid @hiColor2;*/
    /*border-right-color: @borderColor;*/
}

input[type=button],
.btn, a, button, .ui-dialog-buttonpane .ui-button {
    text-decoration: none;
    color: @fgColor1;
    cursor: pointer;
    font-weight: 500;
}


a:hover, button:hover,
.webAudioApi.selected {
    color: @hiColor2;
}

#header, #rightButtons {
    height: 42px;
    border-bottom: 1px solid @borderColor;
    z-index: 1001;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
}

a.sort i.fa {
    font-size: 1em;
}

a.share i {
    font-size: 18px;
    padding-top: 4px;
}

#searchWrapper, #tableTitleWrap, #helperObject {
    top: 43px;
    height: 46px;
    z-index: 1000;
    position: absolute;
    border-bottom: 1px solid @borderColor;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: @bgColor1;
    left: 0;
    right: 0;
}

/*#themeConfigurator input[type=button] {
    font-size: 12pt;
    padding: 5px;
    color: @fgColor1;
    background-color: @bgColor1;
}*/
.ui-dialog {
    input,
    textarea {
        margin: 8px 8px;
    }
}

input[type=text], input[type=password],
textarea {
    font-size: 11pt;
    text-indent: 6px;
    padding: 6px 0 4px;
    color: @fgColor1;
    border-radius: 0;
    background-color: transparent;
    .border;
    border: 0;
    border-bottom: 2px solid transparent;
}

input[type=text]:focus, textarea:focus,
input[type=text]:hover, textarea:hover {
    /*outline: 1px solid @hiColor1;*/
    outline: 0;
    outline-offset: 0px;
    background: @bgColor1;
    /*.box-shadow(0 1px 3px @borderColor);*/
    border-bottom: 2px solid @hiColor1;
}

#rightDiv {
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    bottom: 0;
    overflow: hidden;
    border-left: 1px @borderColor solid;
}

#mcpWrapper.saver {
    .transition(transform 10s ease-in-out);
    -moz-perspective: 800px;
    -ms-perspective: 800px;
    -webkit-perspective: 800px;
    perspective: 800px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    //.box-shadow(0 0 10px @borderColor);
}


/* div search */
#divSearch {
    z-index: 99;
    overflow: hidden;
    position: absolute;
    padding: 0px;
    bottom: 100px;
    top: 43px;
    width: 100%;
    background: @bgColor1;
    /*box-shadow: 0 2px 5px @borderColor;*/
    .transition(transform .25s ease-in);
    .transform(translateY(-110%));
}

#divSearch.open {
    .transform(translateY(0));
    .transition(transform .5s ease-out);
}

#divSearch #htableTitle i.bg {
    position: absolute;
    font-size: 1em;
    left: 12px;
    top: 12px;
    pointer-events: none;
    /*opacity: .3;*/
    /*color: @hiColor1;*/
    /*.transform(rotateZ(-20deg) translateY(-35%) translateZ(0));*/
}

#hbuttons > #btnEnqueueAll.btn {
    transform: translate3d(0,0,0);
    opacity: 0;
    z-index: 1;
    transition: all .2s ease-out;
    box-shadow: 0 2px 5px @borderColor;
    position: absolute;
    top: 1px;
    right: 0;
}

#hbuttons:hover > #btnEnqueueAll.btn {
    z-index: 1;
    opacity: 1;
    transform: translate3d(0,100%,0);
}


#other > a, #other > button {
    width: 48px;
    text-align: center;
    float: left;
    padding: 8px 12px;
    height: 43px;
    border-right: 0;
    box-shadow: none;
    box-sizing: border-box;
    border-left: 1px solid @borderColor;
    background: @bgColor1;
    font-size: 20px;
    cursor: pointer;
}

    a#hearthis {
        /*margin-left: 15px;*/
        /*border-right: 1px solid @borderColor;*/
    }


/*#other #aAbout {
    padding-top: 12px;
    font-size: 14px;
    font-weight: normal;
    margin-right: 10px;
    border-left: 1px solid @borderColor;
    border-right: 1px solid @borderColor;
}*/





#shhplaylist:hover {
    color: @hiColor2;
}

td.avatar img.atrack {
    position: absolute;
    left: 41px;
    height: 26px;
    top: 41px;
    z-index: 99;
    border: 1px solid @borderColor;
    border-right: 0;
    border-bottom: 0;
}

/*td.ttitle .date {
    padding: 3px 5px;
    font-style: italic;
    font-size: 1em;
    color: @hiColor1;
    float: right;
}*/

.divFbComments, .divScComments {
    background: @bgColor2;
}


#sc-info .comment span.timestamp {
    clear: right;
}


#sc-info h3 .buynow {
    font-size: 14pt;
    color: @hiColor2;
    display: inline-block;
    padding: 8px 0 0 4px;
    line-height: 8px;
    font-weight: bold;
}

/*hplaylist*/
#hplaylistwrap {
    scroll-behavior: smooth;
    overflow: auto;
    overflow-x: hidden;
    transform: translateZ(0);
    top: 46px;
    bottom: 0px;
    padding-top: 5px;
    position: absolute;
    width: 100%;
    border-bottom: 1px solid @borderColor;
}

/*.art img:hover {
    .transform(scale(1.1));
}*/
/*.comment img:hover,
.playlist img:hover {
    opacity: .6;
}*/


.art span {
    position: absolute;
    bottom: 0;
    left: 0;
    background: fade(@bgColor1, 70%);
    text-align: center;
    padding: 2px;
    right: 8px;
}

.playlist tr, .card {
    display: block;
    margin: 1px 0 @cardMargin;
    /*box-shadow: 0 1px 2px #aaa;
    border-radius: 3px;
    background: white;*/
    background: @bgColor1 + #090909;
    position: relative;
    z-index: 999;
    contain: layout;
}

/*div.card,*/
.card td {
    display: flex;
    border-top: 0;
    /*border-bottom: @cardBorder solid @borderColor;*/
    //.box-shadow;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: @cardPadding;
    min-height: 74px;
    contain: layout;
}


.card td b {
    position: absolute;
    top: -4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .6em;
    padding: 1px 3px;
    color: @hiActiveColor;
    .box-shadow(1px 1px 0 @borderColor);
}

.card td b.new {
    background: @hiColor2;
    left: 80px;
}

.card td b.private {
    background: @hiColor1;
    left: 110px;
}

.card .ttitle b {
    color: @hiColor2;
    font-weight: bold;
    font-size: 9pt;
    display: inline-block;
    padding-right: 3px;
    text-transform: uppercase;
}

.card .ttitle a:hover, .card .ttitle i:hover,
body > tr .ttitle a:hover {
    color: @fgColor1;
}

.playlist tr th {
    height: 20px;
    font-size: 11pt;
    font-weight: normal;
    display: block;
    padding-top: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid @borderColor;
}

.grepost.active:before {
    color: @hiColor2;
}

.gfavorite.favorited:before {
    content: "\f004";
    color: @hiColor2;
    text-shadow: 1px 1px 0 @borderColor;
}

.card.ui-state-active .gfavorite.favorited:before,
.card.ui-state-active .grepost.active:before {
    color: @hiActiveColor;
}

#html5player .grepost.reposted {
    content: "\f004";
    color: @hiColor2;
    text-shadow: 1px 1px 0 @borderColor;
}


/* playlist global */
.card.ui-state-hover td,
body > tr td {
    background: @highlightColor;
}


.card .stats .duration {
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    max-width: 76px;
    min-width: 76px;
    overflow: hidden;
    /*display: table;*/
    margin-right: 8px;
    background: fade(@bgColor1,80%);
    color: @fgColor1;
    text-shadow: none;
}


.card.ui-state-active .duration {
    background: fade(@hiColor1,80%);
    color: @hiActiveColor;
}

.card.ui-state-active {
    .gradient;
    //    background: @hiColor2;
    color: @hiActiveColor !important;
    text-shadow: 0px 1px 0px #000 !important;
    //    font-weight: normal !important;
}

/*.card.ui-state-active td {
    border-top: 1px solid @hiColor1;
}*/

.card.ui-state-active .ttitle a, .card.ui-state-active .ttitle i,
.card.ui-state-active a, .card.ui-state-active i,
.card.ui-state-active .stats, .card.ui-state-active .stats a {
    color: @hiActiveColor;
}

.card.ui-state-active .ttitle em {
    color: @hiActiveColor;
}
/* statuses */
#statusTooltip {
    min-height: 20px !important;
    font-size: 12pt;
    font-weight: normal;
    text-align: center;
    padding: 8px 10px 5px;
    color: @bgColor2;
    background: @fgColor2;
    z-index: 99999;
    position: absolute;
    min-width: 250px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) translateY(115%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 5px @borderColor;
    will-change: transform;
}

#statusTooltip.open {
    transform: translateX(-50%) translateY(0%);
    transition: transform 0.3s ease-out;
}


#tooltip {
    min-height: 100px;
    padding: 10px;
    position: absolute;
    width: 500px;
    z-index: 1;
    background: @bgColor1;
    .box-shadow(1px 1px 25px @borderColor);
    .border;
    opacity: 0;
    pointer-events: none;
    .transform(translate3d(10px, 0, -200px) rotateX(90deg));
    .transition(transform 0.3s ease opacity 0.3s ease);
}

#tooltip.open {
    opacity: 100;
    z-index: 999999;
    .transform(translateX(0px) rotateX(0deg));
}

#rightButtons #lengthFilter {
    border-right: 1px @borderColor solid;
    border-left: 0;
    padding: 11px 8px;
    line-height: 18px;
}

#rightButtons #alengthFilter #divLengthFilter {
    display: none;
    z-index: 120000;
    top: 41px;
    left: -1px;
    padding: 10px 15px;
    background: @bgColor1;
    box-shadow: 0 2px 8px @borderColor;
    border: 1px @borderColor solid;
}



#rightButtons #lengthFilter.selected {
    border-bottom: none !important;
    z-index: 120001;
    position: relative;
    /*padding-bottom: 8px;
    height: 18px;*/
    /*border-right: 1px outset @borderColor;*/
}




#rightButtons #lengthFilter.ui-state-active {
    color: @hiColor2;
    text-shadow: @bgColor1 + #222 0px 1px 5px;
}

#tableTitle input[type=text] {
    margin: 0;
}

a.dlshare:hover, a.directshare:hover,
a.emshare:hover, a.sharehtml:hover,
a.mobshare:hover, a.downall:hover {
    background-color: @fgColor2;
}

#sc-info .favs.auth:hover,
#sc-info .favs.auth.favorited:hover {
    color: @hiColor2;
    text-shadow: 1px 1px 0 @borderColor;
}

#sc-info .favs.favorited:before {
    color: @hiColor2;
    content: "\f004";
    text-shadow: 1px 1px 0 @borderColor;
}



#newplshare a,
#shareTrackNew a,
.plshares a {
    float: left;
    //margin: 0px 6px 0px 2px;
    min-height: 24px;
    border-left: 0px solid @borderColor !important;
    border-right: 0px solid @borderColor !important;
    border-bottom: 0px solid @borderColor !important;
    border-top-color: rgba(0,0,0,.3);
    margin-right: 2px;
    /*font-family: 'FontAwesome';*/
    line-height: .7em;
    width: 28px;
    display: inline-block;
    font-size: 22pt;
    font-weight: normal;
    text-align: center;
    padding: 6px;
    box-shadow: 0 1px 10px rgba(0,0,0,.3);
    .transition(transform 0.15s ease-out);
}

.plshares a,
#newplshare a,
.share a.btn {
    color: @hiActiveColor;
    background: @hiColor1;
}

.plshares a:hover,
#newplshare a:hover,
#shareTrackNew a:hover {
    transform: scale3d(1.2,1.2,1) translateY(-1px);
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}



#html5player span:hover, #html5player a:hover {
    color: @hiColor1;
}

#html5playerWrapp #shareTrackNew {
    position: relative;
    z-index: 39998;
    top: 0px;
    text-align: center;
    height: 38px;
    /*border-top: 1px solid @borderColor;*/
    //    .box-shadow(0 0 8px @borderColor);
    /*background: @bgColor2;*/
    transition: transform 0.15s ease-out;
}

#divThumb {
    background: @bgColor1;
    color: @fgColor2 !important;
    font-size: 2em;
    /*.box-shadow(0 4px 0px @borderColor);*/
    /*.border;*/
    /*.transition(all 1s ease);*/
    /*transform-origin: top;*/
    .transform(translate(0,0,50px));
    perspective: 4000px;
}

#divThumb #h1title {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    color: @hiActiveColor;
    font-size: 1.2em;
    font-weight: 500;
}


#divThumb.hidden {
    //        .transform(rotateX(-90deg) translateY(-100%));
    background: transparent;
    /*.transform(translateZ(120px));*/
}

#divThumb span.version {
    color: @fgColor2;
}

#divThumb img.thumb {
    /*-moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    -webkit-transform-origin: top;
    transform-origin: top;*/
    opacity: 0;
    border-radius: 50%;
    /*.box-shadow(0 1px 14px @borderColor);*/
    .transition(transform 3s ease-out);
    /*.transform(rotateZ(-90deg) translateZ(0px));*/
}

#divThumb img.thumb.open {
    /*animation: spin 10s linear infinite;*/
}

#divThumb > div > .divThumb.open,
#divThumb img.thumb.open {
    opacity: 1;
    .transform(rotateZ(0deg) translateZ(0px));
}


#divThumb {
    display: flex;
    align-items: center;
    justify-content: center;

    .logoDivWrap {
        text-align: center;
        width: 500px;
        height: 500px;
    }

    .logoWrap {
        padding: 0px;
        /*border-radius: 50%;*/
        width: 500px;
        height: 500px;
        position: relative;
        /*.gradient;*/
        background-color: transparent;
        /*.box-shadow(0 5px 25px rgba(0,0,0,.3));*/
        img.mcpLogo {
            z-index: 2;
            padding: 20px;
            box-sizing: border-box;
            box-shadow: 0 0 0 450px @hiColor1;
            background: @hiColor1;
            border-radius: 50%;
        }

        .thumb.open + img {
            background: transparent;
        }

        img {
            width: 500px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        span {
            z-index: 3;
        }
    }
}

#tableTitle {
    border-bottom: 1px solid @borderColor;
}

#tableTitleWrap.open #newplshare {
    .transform(translateY(0px));
}

#tableTitleWrap #newplshare {
    position: absolute;
    z-index: 39998;
    height: 39px;
    top: 47px;
    text-align: center;
    padding: 0px 8px;
    left: 0;
    right: 0;
    overflow: hidden;
    .transition(transform 0.2s ease-out);
    .transform(translateY(-100%));
    border-bottom: 1px solid @borderColor;
    box-shadow: 0 2px 5px @borderColor;
}

#html5player {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 100px;
    z-index: 39999;
    border-top: 1px solid @borderColor;
    background: @bgColor2;
    color: @fgColor2;
    //.transform(translateZ(20px));
}

#html5player span, #html5player a {
    //display: inline-block;
}


#html5player #volume div {
    border: 0;
    border-top: 1px solid lighten(@hiColor2,20%);
    .gradient(left, @hiColor1, @hiColor2);
    height: 6px;
    top: 0px;
    .box-shadow;
}

#html5player #volume span {
    border: 1px solid @hiColor2;
    border-top: 1px solid lighten(@hiColor2,20%);
    background: @hiColor1;
    top: -3px;
}

#html5player #volume {
    background: @bgColor2;
    height: 6px;
    border: 0;
    margin-right: 5px;
    width: 145px;
    float: right;
    position: absolute;
    bottom: 15px;
    right: 0;
    overflow: visible;
    cursor: pointer;
}



#html5playerWrapp:hover #shareTrackNew {
    transform: translateY(-38px);
    .transition(transform 0.1s ease-out);
}

#html5player #waveformD {
    position: absolute;
    left: 90px;
    height: 10px;
    right: 5px;
    top: 55px;
    z-index: 1111;
    overflow: hidden;
    cursor: pointer;
    background: @borderColor;
    display: none;
}

#html5player #waveform .bar.loaded {
    .transition(none .5s ease-in-out);
    background: fade(@hiColor2, 40%);
    height: 5px;
    bottom: 0px;
    z-index: 14;
}

#html5player #waveform .bar.played {
    .gradient;
    height: 5px;
    bottom: 0px;
    z-index: 999;
    display: block !important;
}

#html5player #waveform .waveform.loaded {
    .transition(all .5s ease-in-out);
    z-index: 7;
    width: 0%;
}

#html5player #scrobler {
    width: 1px;
    height: 50px;
    top: 5px;
    left: 70px;
    position: absolute;
    background: @hiColor2;
    display: none;
}

#html5player a.repeat.active {
    color: @hiColor2;
}

ul.ui-autocomplete {
    background: @bgColor2;
    list-style: none;
    padding: 0px;
    margin: 0;
    border: 1px solid @borderColor;
    .box-shadow(0px 5px 10px @borderColor);
}


/*ul.ui-autocomplete li.ui-menu-item div,*/
ul.ui-autocomplete li.ui-menu-item {
    padding: 6px 6px 6px 32px;
    border-bottom: 1px solid @borderColor;
    font-size: 1.2em;
}

/*ul.ui-autocomplete li.ui-menu-item div.ui-state-active,*/
ul.ui-autocomplete li.ui-menu-item.ui-state-focus {
    /*border-bottom: 1px solid @hiColor1;*/
    color: @hiColor1;
    background: @bgColor1;
    box-shadow: 0 2px 5px @borderColor;
}

.ui-dialog {
    background: @bgColor2;
    .box-shadow( 0 5px 15px @borderColor);
    z-index: 1000000;
}

.ui-widget-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 0;
    background: fade(@fgColor1, 85%);
}

.ui-dialog-titlebar-close:hover,
.ui-dialog-titlebar-close-small:hover {
    float: right;
    border: none;
    color: @hiColor1;
}


.ui-dialog-content {
    margin: 0;
    padding: 16px;
    scroll-behavior: smooth;
    overflow: auto;
    transform: translateZ(0);
    border-radius: 0;
    background: @bgColor2;
}

.ui-slider-handle {
    .gradient;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -6px;
    margin-left: -6px;
    .border;
    .box-shadow(1px 2px 0 @borderColor);
    cursor: pointer;
}

.ui-slider-horizontal {
    background: @bgColor1;
    .border;
    .box-shadow(1px 2px 0 @borderColor);
}



ul.ui-autocomplete li a {
    font-weight: normal;
    font-size: 1em;
    display: block;
    text-align: left;
    padding: 1px 3px;
    white-space: nowrap;
    border-top: @borderColor solid 1px;
    cursor: pointer;
    background: @bgColor2;
}

ul.ui-autocomplete li a.ui-state-focus {
    color: @bgColor2;
    background: @hiColor2;
}


#contextUserMenu,
#contextTrackMenu {
    background: @bgColor1;
    display: none;
    position: absolute;
    padding: 0px;
    z-index: 9999999;
    min-width: 320px;
    .box-shadow(0 0 35px rgba(0,0,0,.5));
    .border;
}

#contextTrackMenu .url {
    text-transform: none;
    font-size: .9em;
    display: block;
    border: 0;
    padding-left: 32px;
    position: relative;

    &:before {
        .material;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        padding: 4px 8px;
        font-size: 18px;
        display: block;
        content: 'content_copy';
    }
}

#contextUserMenu ul li,
#contextTrackMenu ul li {
    font-size: 1.2em;
    padding: 8px 16px;
    display: block;
    list-style: none;
    cursor: pointer;
    font-weight: 400;
    border-top: 1px solid @borderColor;
}

#contextUserMenu ul li:hover,
#contextTrackMenu ul li:hover {
    color: @hiColor2;
}

#rightButtons .settingsWrap .items {
    position: absolute;
    right: 42px;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    .transform(translateX(120%));
    .transition(transform .2s ease-out);
}

#rightButtons .settingsWrap.open .items {
    opacity: 1;
    .transform(translateX(0px));
}

#rightButtons, #header,
#divSearch ul {
    background: @bgColor2;
}

#tableTitleWrap #tableTitle, #tableTitleWrap #newplshare,
#sc-info #pWrap {
    background: @bgColor1;
}

.material {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

#shareTrackNew a.directshare,
#tableTitleWrap a.dlshare {
    color: @hiActiveColor;
    background: @hiColor1;
}
/*.qsearch, #header a.btn, #tableTitleWrap a.btn, #helperObject .btn, #commentsSwitch .btn,
#divSearch #htableTitle span.btn, #searchWrapper td a,
#rightButtons a.btn, #rightButtons span.btn,*/
#playlistButtons input[type=button], .ui-dialog-buttonpane .ui-button,
#helperObject .btn, #tableTitle #playlistButtons a {
    border-top: 3px solid @hiColor2;
}

#playlistButtons a:last-child {
    border-right: 1px solid @borderColor;
}

/*input[type=button],*/
#searchWrapper td a, #other a, #other button, .btn, input[type=button],
#sortOptionsWrapper1 a {
    border-top: 3px solid @hiColor2;
}

/*input[type=button]:hover,
#helperObject .btn:hover, #searchWrapper td a:hover,
#sortOptionsWrapper a:hover,
#rightButtons a.btn:hover, #rightButtons span.btn:hover, button:hover {
    .gradient(bottom, @hiColor1, @hiColor2);
    color: @hiActiveColor !important;
}*/

/*right section*/
#rightButtons {
    text-align: right;
    font-size: .95em;
    right: 0;
    left: 50%;
    position: absolute;
    border-left: 1px solid rgba(0, 0, 0, 0.2);

    a,
    > div > span {
        display: block;
        box-shadow: none;
        border: 0;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        border-top: 3px solid @hiColor2;
        border-right-color: rgba(0, 0, 0, 0.2);
        float: left;
        padding: 8px 10px;
        box-sizing: border-box;
        margin: 0;
        height: 42px;
    }

    a img {
        padding-right: 5px;
    }

    #divDuration a {
        padding: 0;
    }
}

input[type=button]:active,
#sortOptionsWrapper a:active, #other > a:active,
.btn:active, #searchWrapper td a:active, #rightButtons a.btn:active {
    background-color: @hiColor1;
    .box-shadow(inset 0 0 3px @borderColor);
    color: @hiActiveColor !important;
}

#sortOptionsWrapper {
    position: absolute;
    z-index: 9999999;
    top: 0;
    left: 0;
    display: none;
    background: @bgColor2;
    .box-shadow(0px 2px 5px @borderColor);
    .border;
    //.transform(translateZ(25px));
    //    .transition(transform .2s ease-out);
}

.ui-dialog-titlebar,
.ui-dialog-titlebar-close span {
    color: @hiActiveColor;
    background: @hiColor1;
    z-index: 1;
}

#sc-info #commentsBar {
    box-shadow: 0 2px 5px @borderColor;
    z-index: 100;
    position: relative;
    margin-bottom: 8px;
}

#sc-info #commentMsg {
    background: @bgColor1;
    width: 100%;
    font-weight: normal;
    font-size: 11pt;
    box-shadow: 0 2px 5px @borderColor;
}

.artworkDialogD {
    .ui-dialog-titlebar {
        height: 0;
        padding: 0;
    }

    .ui-dialog-titlebar-close span {
        color: @hiColor1;
        background: transparent;
    }
}

#hplaylist tr .add:before {
    .material;
    content: "add";
    font-size: 20px;
}

#tplaylist tr .add:before {
    .material;
    content: "clear";
    font-size: 20px;
}


@artworkSize: 176px;

#artwork {
    width: @artworkSize;
    height: @artworkSize;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    border-radius: 50%;
    transform-style: preserve-3d;
    /*.transform(rotateY(0deg) translateZ(0));
    transition: transform 2s ease-in-out;*/
    z-index: 1002;
    background: @hiColor1;
    margin-left: -10px;
    top: -6px;
    border: 1px solid @borderColor;
    box-sizing: border-box;
    box-shadow: 1px 1px 6px rgba(0,0,0,.4);
}

#artwork img {
    cursor: pointer;
    /*transform-origin: left center;*/
    backface-visibility: hidden;
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    z-index: 102;
    height: 166px;
    width: 166px;
    /*border: 2px solid @bgColor1;*/
    /*border-right: 1px solid @borderColor;*/
    /*box-shadow: 3px 0 9px 0px rgba(0,0,0,.3);*/
    /*transition: transform 1s ease-out;*/
    /*.transform(rotateY(0deg) translateZ(0));*/
    /*transform-origin: left center;*/
    /*transition: translateZ(5px) rotateY(-100deg);*/
    transform: translateZ(0px);
    transition: opacity 3.5s ease-in-out;
    opacity: 1;
}

/*#artwork:hover img:hover {
    -webkit-animation-play-state: paused; 
    animation-play-state: paused;
}*/

#artwork img.active {
    opacity: 0;
    pointer-events: none;
    transform: rotateZ(-360deg);
}

#artwork img.rotated {
    transform: rotateZ(-360deg);
    /*transform-origin: left center;
    .transform(rotateY(-90deg) translateX(-0px));
    transition: transform 1s ease-out;
    .transform(translate3D(-100%,0,0));*/
}

#artwork img.behind {
    z-index: 1;
    /*transition: none;*/
    /*.transform(rotateY(-90deg) translateZ(0));*/
}

#artwork img.odd {
    /*z-index: 103;*/
    /*.transform(rotateY(180deg) translateZ(0));*/
}

#artwork.active {
    .transform(rotateY(180deg) translateZ(0));
}



#sc-info #staticHeader {
    background: @bgColor1;
    border: 0 none;
    margin-bottom: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    /*z-index: 999;*/
    height: 162px;
    padding: 0px;
    position: relative;
}

#sc-info #commentsSort a.selected {
    .gradient;
    color: @hiActiveColor;
}

#playlist, #hplaylistwrap {
    background: @bgColor2;
}

div#commentsSwitch {
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0;
    margin: 16px 0 0;
    font-size: 14pt;
    height: 48px;
    border-top: 1px solid @borderColor;
    background: @bgColor2;
    border-bottom: 0px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
}



.playlist thead tr,
#sc-info #commentsTitleWrap {
    background: @bgColor1;
    margin: 0;
}

@-webkit-keyframes sky_background {
    0% {
        background: fade(@fgColor1, 80%);
        /*color: #007fd5;*/
    }

    50% {
        background: fade(@bgColor2, 70%);
        /*color: #a3d9ff;*/
    }

    100% {
        background: fade(@fgColor1, 80%);
        /*color: #007fd5;*/
    }
}

@-moz-keyframes sky_background {
    0% {
        background: fade(@fgColor1, 80%);
        /*color: #007fd5;*/
    }

    50% {
        background: fade(@bgColor2, 70%);
        /*color: #a3d9ff;*/
    }

    100% {
        background: fade(@fgColor1, 80%);
        /*color: #007fd5;*/
    }
}

td em.online {
    text-indent: -9999px;
    background-color: @hiColor2;
    display: inline-block;
    width: 10px;
    height: 10px;
}

.pinned #leftMenu, .open #leftMenu {
    .transform(translate3D(0, 0, 0));
}

.pinned #rightButtons {
    margin-left: 141px;
}

#leftMenuWrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 100000;
    pointer-events: none;
}

#leftMenuWrap.open {
    pointer-events: auto;
}

#leftMenuWrap::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.3s cubic-bezier(0,0,0.3,1);
}

#leftMenuWrap.open::before {
    opacity: 1;
}

.side-nav--animatable #leftMenu {
    transition: transform 0.13s cubic-bezier(0,0,0.3,1);
}

.side-nav--animatable.open #leftMenu {
    transition: transform 0.33s cubic-bezier(0,0,0.3,1);
}

#leftMenu {
    .transform(translate3D(-110%, 0, 0));
    /*.transition(transform .25s ease-out);*/
    background: @bgColor1;
    width: 280px;
    position: absolute;
    top: 0px;
    bottom: 0;
    scroll-behavior: smooth;
    overflow: auto;
    overflow-x: hidden;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    will-change: transform;
    -webkit-overflow-scrolling: touch;

    .pin {
        z-index: 1000;
        position: absolute;
        top: 8px;
        right: 8px;
        color: @hiActiveColor;

        i {
            font-size: 1.4em;
        }
    }

    .dummy {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 26px;
        cursor: pointer;
        z-index: 999;
        text-shadow: 0 1px 2px #000;
        /*background: @hiColor1;*/
        padding: 8px;

        i {
            color: @hiActiveColor;
        }
    }

    .menuHead {
        background: @hiColor1;
        height: 160px;
        z-index: 995;
        position: absolute;
        background-size: cover;
        background-position: center;
        text-shadow: 0 1px 2px #000;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,.3);

        #logged {
            padding: 12px 16px;
            font-size: 1.6em;
            /*text-align: right;*/
            box-sizing: border-box;
            cursor: default;
            top: 24px;
            background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.7));


            > div {
                display: block;
                text-align: left;
                padding: 4px 0;

                .subtitle {
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
            }
        }

        a {
            position: absolute;
            width: 100%;
            bottom: 0;
            color: @hiActiveColor;
        }

        a#connectToSc {
            font-size: 1em;
            color: @hiActiveColor;
            padding: 1em;
            box-sizing: border-box;
            font-weight: 400;
            .gradient;

            span {
                font-size: 96pt;
                line-height: .4em;
            }
        }
    }


    img {
        width: 54px;
        border-radius: 50%;
        margin-bottom: 4px;
        border: 2px solid #fff;
        .box-shadow(0px 3px 9px @borderColor);
    }

    a.sc-authorize img {
        width: 128px;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-top: 4px;
        position: absolute;
        width: 100%;
        top: 160px;
        bottom: 0;
        transform: translateZ(0);
        overflow: auto;
        scroll-behavior: smooth;
        overflow-x: hidden;
        box-sizing: border-box;
        /*text-align: center;*/
        i {
            width: 22px;
            font-size: 1.2em;
            padding: 0 16px 0 12px;
            text-align: center;
            /*text-shadow: 0 0 2px @borderColor;*/
            &.material-icons {
                font-size: 1.6em;
                position: relative;
                top: 6px;
                line-height: 0;
            }
        }

        .double sup {
            left: 1px;
        }

        sup {
            position: absolute;
            font-size: 0.6em;
            left: 24px;
            top: 8px;
            display: none;

            i {
                padding: 0;
            }
        }

        li {
            /*border-bottom: 1px solid @bgColor2 - #222;
            box-shadow: 0px 2px 4px @bgColor2 - #222;*/
            z-index: 12;
            background: @bgColor1;
            margin-bottom: 10px;
            position: relative;
            border-bottom: @borderColor;
        }
        /*li:before {
            z-index: -1;
            position: absolute;
            content: "";
            height: 10px;
            bottom: 15px;
            left: -10px;
            width: 90%;
            max-width: 300px;
            .box-shadow(0 15px 10px @borderColor);
        }*/
        li > a {
            display: inline-block;
            padding: 10px;
            background: @bgColor1;
            display: block;
            font-weight: normal;
            font-size: 1.4em;
            .transition(color 0.2s ease);
        }

        li > a:after {
            font-family: FontAwesome;
            content: "\f0d7";
            position: absolute;
            top: 5px;
            right: 8px;
            transition: all .2s ease-out;
        }

        li.selected > a:after {
            transform: rotateZ(180deg);
            /*font-family: FontAwesome;*/
            /*content: "\f0d8";*/
        }

        li.selected > a {
            color: @hiColor2;
        }
        /*li > a:hover, td.selected, td:hover {
            .transition(color 0.3s ease);
        }*/
        td .select {
            margin: 0 4px;
        }

        td.selectWrap {
            padding: 8px;
            box-sizing: border-box;

            label {
                display: block;
                padding: 4px;
            }
        }

        td select {
            width: 100%;
            margin: 0px;
        }


        td,
        td a,
        td input {
            display: block;
            border: none;
            width: 100%;
            font-size: 15px;
            /*text-align: center;*/
            position: relative;
        }

        hr {
            border: 0;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin: 0;
            padding: 0;
            height: 16px;
        }

        td {
            border-bottom: 1px solid rgba(0,0,0,.1);
            /*will-change: auto;*/
            /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
            a {
                transform: translate3D(-2px, 0, 0);
                transition: all .07s ease-in 0s;
            }

            &.selected, &:hover a {
                /*box-shadow: 0 3px 10px rgba(0,0,0,0.2);*/
                /*background: @bgColor2;*/
                transform: translate3D(0, 0, 0);
            }

            label {
                padding: 16px 16px 6px 20px;
                display: block;
                font-weight: 500;
                text-transform: uppercase;
                font-size: 0.8em;
                /* opacity: 0.8; */
                border-bottom: 2px solid @hiColor1;
            }
        }


        td.double div a {
            display: block;
        }

        td > a > span {
            font-weight: bold;
            position: absolute;
            display: block;
            width: 100%;
            top: 30px;
            opacity: 0;
            /*.transition(all 0.3s ease);*/
        }

        td:hover > a > span {
            top: 46px;
            opacity: 1;
            color: @hiColor2;
            /*.transition(all 0.3s ease);*/
        }

        td a {
            padding: 12px 0px;
            border-left: 5px solid transparent;
            font-weight: 400;
            /*.transform(scale(.9));*/
            /*.transition(all 0.2s ease-out);*/
        }

        td.selected a, td:hover a {
            border-color: @hiColor2;
        }
    }

    td select {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 12pt;
        color: @fgColor2;
        background-color: @bgColor1;
        padding: 5px 6px 5px 2px;
        font-weight: normal;
        width: 100px;
        margin: 0 10px 10px;
        .border;
    }
}

.barLoading > span {
    background-color: @hiColor2;
    background-image: -moz-linear-gradient(top, @hiColor1, @hiColor2);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, @hiColor1),color-stop(1, @hiColor2));
    background-image: -webkit-linear-gradient(@hiColor1, @hiColor2);
}


#shhplaylist #divExpandCollapse div:before {
    .material;
    display: block;
    text-align: center;
    /*content: 'play_arrow';*/
    content: "keyboard_arrow_down";
    font-size: 38px;
    transform: rotateZ(0deg);
    transition: transform .2s ease-out;
}

#contextTrackMenu img.artwork,
#contextUserMenu img.avatar {
    margin: 6px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    float: left;
}

#contextUserMenu h2 {
    font-size: 1.2em;
    margin: 0px;
    margin-right: 8px;
    padding: 4px 0px;
    white-space: nowrap;
    color: @hiActiveColor;
    height: 20px;
    line-height: 25px;
}



/*#searchWrapper, #header, #rightButtons, #searchWrapper, #tableTitleWrap, #helperObject, div#playlistButtons, div#tableTitle, #staticHeader {
    background: @hiColor1 !important;
    color: @hiActiveColor !important;
        border-color:transparent !important;

    a, input, textarea {
        background: @hiColor1 !important;
        color: @hiActiveColor !important;
    }

    a, input[type=button], .button {
        border-color:transparent !important;
    }

    ::-webkit-input-placeholder {
        color: fade(@hiActiveColor, 60%);
    }
}*/

#searchWrapper {
    background: @bgColor2;
    .transform(translate3D(0, -100%, 0));
    .transition(transform 0.1s ease-in);
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    z-index: 8;
}

#searchWrapper #tbTrackSearch {
    height: 46px;
    padding-left: 16px;
    box-sizing: border-box;
    font-size: 1.2em;
    font-weight: 500;
}

#mcpWrapper #searchWrapper.open {
    .transform(translate3D(0, 0, 0));
    .transition(transform 0.1s ease-in);
    z-index: 1000;
}

#cbDownloadable label.checked:hover,
#cbDownloadable label.checked,
#cbDownloadable label:hover {
    color: @hiColor1;
}

.playtoggle {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 10px;
    margin-top: 4px;
    position: absolute;
    cursor: pointer;
}

.playtoggle:after {
    transform: rotateZ(0deg);
    .material;
    content: 'play_circle_outline';
    display: block;
    font-size: 64px;
    position: absolute;
    transition: all .5s ease-out;
}

.playtoggle.pause:after {
    opacity: 0;
    transform: rotateZ(180deg);
}

.playtoggle:before {
    .material;
    display: block;
    font-size: 64px;
    content: 'pause_circle_outline';
    opacity: 0;
    transform: rotateZ(-180deg);
    transition: all .5s ease-out;
    position: absolute;
}

.playtoggle.pause:before {
    transform: rotateZ(0deg);
    opacity: 1;
}
/*.playtoggle1, .control1 {
    @color: @fgColor2;
    @highlight: @hiColor2;
    @duration: 0.5s;
    @sin: 0.866;
    @size: 36px;

    border: @size*0.1 solid @color;
    border-radius: 50%;
    padding: @size*0.25;
    margin: 10px;
    margin-top: 13px;
    width: @size;
    height: @size;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;

    &, .left, .right, &:before {
        display: inline-block;
        vertical-align: middle;
        transition: border @duration, width @duration, height @duration, margin @duration;
        transition-timing-function: cubic-bezier(1, 0, 0, 1);
    }

    &:before {
        content: "";
        height: @size;
    }

    &.pause {
        .left, .right {
            margin: 0;
            border-left: @size*0.33 solid @color;
            border-top: 0 solid transparent;
            border-bottom: 0 solid transparent;
            height: @size*@sin;
        }

        .left {
            border-right: @size*0.2 solid transparent;
        }
    }

    &.play {
        @border: @size/4;

        .left {
            margin-left: @size/6;
            border-left: @size*@sin/2 solid @color;
            border-top: @border solid transparent;
            border-bottom: @border solid transparent;
            border-right: 0px solid transparent;
            height: @size - 2*@border;
        }

        .right {
            margin: 0;
            border-left: @size*@sin/2 solid @color;
            border-top: @border solid transparent;
            border-bottom: @border solid transparent;
            height: 0px;
        }
    }

    &:hover {
        border-color: @highlight;

        .left, .right {
            border-left-color: @highlight;
        }
    }
}*/


.tag-orange {
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    height: 19px;
    position: relative;
    content: "";
    cursor: pointer;
    margin: 0 13px 7px 0;
    padding: 1px 11px 0px 7px;
    font-size: 10pt;
    border: 0 solid rgba(0,0,0,0);
    border-radius: 4px 1px 1px 4px;
    color: @hiActiveColor;
    text-align: center;
    text-transform: uppercase;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: @hiColor2;
    box-shadow: 0 2px 0 0 @hiColor1, 2px 2px 0 0 @hiColor1;
    text-shadow: 0px 1px 0px #000;
}


.tag-orange:before {
    display: inline-block;
    z-index: 1;
    width: 14px;
    height: 14px;
    position: absolute;
    content: "";
    cursor: pointer;
    top: 3px;
    right: -8px;
    border: 0 solid @hiColor2;
    border-radius: 1px 1px 4px;
    font: normal normal normal medium/normal Arial, Helvetica, sans-serif;
    color: @borderColor;
    background: @hiColor2;
    -webkit-box-shadow: 0 2px 0 0 @hiColor1;
    box-shadow: 0 2px 0 0 @hiColor1;
    -moz-transform: rotateY(1deg) rotateZ(-45deg) scaleX(1) scaleY(1) scaleZ(1);
    -webkit-transform: rotateY(1deg) rotateZ(-45deg) scaleX(1) scaleY(1) scaleZ(1);
    transform: rotateY(1deg) rotateZ(-45deg) scaleX(1) scaleY(1) scaleZ(1);
}

.tag-orange:after {
    display: inline-block;
    z-index: 2;
    width: 6px;
    height: 6px;
    position: absolute;
    content: "";
    cursor: pointer;
    top: 7px;
    right: 0;
    border: 0 solid @hiColor2;
    border-radius: 10px;
    font: normal normal normal medium/normal Arial, Helvetica, sans-serif;
    color: @borderColor;
    background: @bgColor1;
    box-shadow: 2px 2px 0 0 @hiColor1 inset;
}


.gradient (@origin: bottom, @start: @hiColor1, @stop: @hiColor2) {
    background: @start;
    /*background-image: -webkit-linear-gradient(@origin, @start, @stop);
    background-image: -moz-linear-gradient(@origin, @start, @stop);
    background-image: -o-linear-gradient(@origin, @start, @stop);
    background-image: -ms-linear-gradient(@origin, @start, @stop);
    background-image: linear-gradient(@origin, @start, @stop);*/
}

.transition(@e) {
    /*will-change: auto;*/
    transition: @e;
}

.transform(@e) {
    -moz-transform: @e;
    -o-transform: @e;
    -ms-transform: @e;
    transform: @e;
    will-change: transform;
}

.border (@color: @borderColor) {
    border: 1px solid @color;
}

.box-shadow(@e: 0 2px 0 @borderColor) {
    -moz-box-shadow: @e;
    box-shadow: @e;
}

#ctip {
    /*font-family: 'Roboto Condensed', sans-serif;*/
    padding: 6px 10px;
    background: fade(@fgColor1, 90%);
    color: @bgColor2;
    opacity: 0;
    font-size: 10pt;
    position: absolute;
    z-index: 10000;
    margin-top: -2px;
    transform-origin: top;
    .transform(translateX(-10px) rotateX(0));
    .transition(transform .2s ease-out opacity .2s ease-out);
    .box-shadow(0px 3px 9px rgba(0,0,0,.3));

    em {
        /*font-family: 'Roboto', 'Trebuchet MS', Tahoma, Segoe UI, 'Ubuntu', Arial, sans-serif !important;*/
        font-style: normal;
        font-weight: normal;
        font-size: 0.8em;
    }
}


#ctip.visible {
    opacity: 1;
    .transform(translateX(0) rotateX(0));
    /*.transition(all .3s ease);*/
}


#mcpWrapper {
    display: block !important;
    -moz-perspective: 2000px;
    -ms-perspective: 2000px;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    overflow: visible;
}

#ssCanvas, #ssCanvas2 {
    -moz-transform-origin: -1px -1px;
    -ms-transform-origin: -1px -1px;
    -o-transform-origin: -1px -1px;
    -webkit-transform-origin: -1px -1px;
    transform-origin: -1px -1px;
    z-index: 9;
    position: absolute;
    height: 80%;
    bottom: 45%;
    width: 100%;
    -webkit-box-reflect: below 0px -webkit-linear-gradient(top, transparent, transparent 50%, rgba(255,255,255,0.8));
}

#ssCanvas:hover ~ .ssInfo, #ssCanvas2:hover ~ .ssInfo {
    display: block !important;
}

.webAudioApi {
    .transform(rotateZ(90deg) scaleX(.7));
}

#html5player a.webAudioApiFs {
    font-size: 12pt;
    position: absolute;
    z-index: 99999;
    top: 2px;
    right: 30px;
    .transform(rotateZ(0deg) scaleX(.8) scaleY(.8));
}

#themes table {
    display: inline-block;
    width: 33%;
    text-align: center;
    padding: 8px;
    box-sizing: border-box;

    &:hover ~ table tbody {
        opacity: .5;
    }

    tbody {
        border: 1px solid @borderColor;
        padding: 0;
        display: inline-block;
        width: 100%;
        cursor: pointer;
        box-shadow: 0 2px 5px @borderColor;
        transition: all .3s ease-out;
        /*opacity: .8;*/
        &:hover {
            /*border: 3px solid @hiColor2;*/
            box-shadow: 0 3px 9px rgba(0,0,0,.3);
            opacity: 1;
        }
    }
}


.borderHi {
    border: 1px solid @hiColor1;
}


.sky {
    background: fade(@hiColor2, 80%);
}


/*#leftDiv #divSearch #helperObject {
    height: 162px;

    #htableTitle {
        padding: 0;
        float: left;

        .avatar {
            width: 162px;
            float: left;
        }
    }
}

#divSearch #htableTitle div {
    padding-top: 0;
}*/



.absolute {
    position: absolute;
    transition: all 0.2s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}

.absolute.shown {
    opacity: 1;
    visibility: visible;
}

.dynamic {
    z-index: -1000;
    position: absolute;
    opacity: 0;
    transition: opacity 1s, z-index 0 1s;
}

.dynamic.visible {
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s;
}

@media screen and (min-width: 769px) {
    *::-webkit-scrollbar {
        background-color: rgba(122, 122, 122, 0.05);
        width: 8px;
        height: 8px;
        box-shadow: inset -1px 0 2px rgba(0,0,0,0.15);
    }

    *::-webkit-scrollbar:hover {
        background-color: rgba(122, 122, 122, 0.1);
    }


    *::-webkit-scrollbar-thumb {
        background-color: rgba(122, 122, 122, 0.4);
        min-height: 40px;
        /*border: 1px solid @bgColor2;*/
        /*border-left-width: 1px;*/
        /*border-right-width: 1px;*/
    }

    *::-webkit-scrollbar-thumb:hover {
        background-color: rgba(122, 122, 122, 0.6);
        /*border-width: 1px;*/
        /*border-right-width: 0px;*/
    }
}


@media screen and (min-width: 385px) {
    body.trackInfoBody {
        *::-webkit-scrollbar {
            background-color: fade(@borderColor,5);
            width: 8px;
            height: 8px;
            box-shadow: inset 0px 0 5px rgba(0, 0, 0, 0.15);
        }

        *::-webkit-scrollbar:hover {
            /*background-color: rgba(122, 122, 122, 0.1);*/
        }


        *::-webkit-scrollbar-thumb {
            background-color: rgba(122, 122, 122, 0.4);
            min-height: 40px;
            /*border: 1px solid @bgColor2;*/
            /*border-left-width: 1px;*/
            /*border-right-width: 1px;*/
        }

        *::-webkit-scrollbar-thumb:hover {
            background-color: rgba(122, 122, 122, 0.6);
            /*border-width: 1px;*/
            /*border-right-width: 0px;*/
        }
    }
}















/*#rightDiv {
    left: 0;
}

#playlist {
    transform: translateY(110%);
    transition: transform .3s ease-in;
    will-change: transform;

    &.open {
        transform: translateY(0%);
        transition: transform .3s ease-out;
    }
}

#tplaylist {
    left: 0;
    right: 0;

    tbody {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;

        tr {
            display: inline-table;
            max-width: 320px;
            margin: 8px 0px;
            position: relative;
            z-index: 999;

            td {
                padding: 0;

                .ttitle, .user {
                    padding: 2px 8px;
                }

                .actwrap {
                    padding: 2px 8px;
                    margin-bottom: 4px;
                }

                .artwork {
                    float: none;
                    width: 100%;
                    margin:0;

                    img {
                        width: 100%;
                        height: auto;
                        border-radius: 0;
                        float: none;
                    }
                }

                div.stats1 {
                    position: relative;
                    flex-wrap: wrap;

                    > span {
                        overflow: visible;
                        text-overflow: none;
                        flex-grow: 1;
                        text-align: center;
                        padding: 4px 8px;
                        left: 0;
                        right: 0;
                        bottom: 0;
                    }
                }

                div.stats {
                    position: relative;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    flex-wrap: wrap;

                    > span {
                        width: 17%;
                        text-align: center;
                        flex: auto;
                        padding: 4px 4px;
                    }
                }
            }

        }
    }
}*/

.center {
    text-align: center;
}

@media screen and (min-width: 769px) {
    #staticHeader {
        z-index: 999;
    }

    .hidden-sm {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .hdbtns {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .webAudioApiFs {
        display: none;
    }

    #castbutton {
        --connected-color: @hiActiveColor;
        --disconnected-color: @hiActiveColor;
    }

    .hidden-xs, td .handle {
        display: none !important;
    }

    #header, #html5player, #html5player .buttons {
        background: @hiColor1;

        *, *:hover {
            color: @hiActiveColor;
        }
    }

    #html5player .buttons .grepost, #html5player .buttons .gfavorite {
        display: none !important;
    }

    #helperObject {
        background: @hiColor1;

        *, a.btn {
            border-top: 0;
            background: transparent;
            color: @hiActiveColor;
            border: 0;
        }

        a.btn {
            padding-top: 16px;
        }
    }

    .card .stats .duration {
        max-width: 64px;
        min-width: 64px;
    }

    .card > td > div.artwork {
        width: 64px;
        min-width: 64px;
        height: 64px;
    }

    .card > td > img,
    .card > td > div.artwork > img {
        width: 64px;
        min-width: 64px;
        height: 64px;
    }

    .card .act .ttitle, .card .ttitle > a, body > tr .ttitle > a {
        font-size: 1.2em;
    }

    #header {
        right: 0;
        height: 56px;
        border: 0;
        box-shadow: none;
        /*background:linear-gradient(fade(@bgColor1, 70), transparent);
        border:0;*/
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);

        #appTitle i {
            /*font-size: 24px;
            position: absolute;*/
            padding: 16px;
            top: 0;
            left: 0;
        }

        h4 {
            display: none;
        }

        #other > a#playlistIcon {
            display: block;

            i:before {
                content: "playlist_play";
            }
        }

        &.current {
            #other {
                float: left;
            }

            #appTitle {
                display: none;
            }

            #other > a {
                display: none;
            }

            #other > #castbutton {
                display: none !important;
            }

            #other > a#playlistIcon {
                display: block;

                i:before {
                    content: "arrow_back";
                }
            }
        }
    }

    #appTitle, #other {
        z-index: 2;
        position: relative;
    }

    #rightButtons {
        height: 48px;
    }

    a.btn, .btn, input[type=button] {
        min-width: 48px;
        /*min-height: 56px;
        padding: 10px 12px;*/
        box-sizing: border-box;
        transition: none;
    }

    /*input[type=button] .fa, .btn .fa, .ui-dialog-buttonpane .ui-button .fa {
        font-size: 22px;
    }*/

    .btn.sort .fa {
        font-size: 16px;
    }

    #shhplaylist {
        padding: 12px;
        top: 0;
        width: 100%;
        z-index: 1;
        text-align: left;
        display: block;


        #divExpandCollapse {
            opacity: 1;
            pointer-events: all;

            div:before {
                font-size: 24pt;
                line-height: 1.1em;
            }
        }

        .current-playlist-title {
            margin: 4px 54px;
            font-size: 20px;
            opacity: 0;
            width: 100%;
            transform: translateY(-50px);
            pointer-events: none;
            position: absolute;
        }

        > div {
            transition: all .3s ease-in-out;
        }

        &.current {

            #divExpandCollapse {
                opacity: 0;
                transform: translateY(-50px);
                pointer-events: none;
            }

            .current-playlist-title {
                pointer-events: all;
                transform: translateY(0px);
                opacity: 1;
                /*display: block;*/
            }
        }
    }

    #other > a, #other button {
        min-width: 56px;
        min-height: 56px;
        padding: 16px 12px;
        border: none !important;
        background: none !important;

        i.material-icons {
            font-size: 24px;
        }
    }

    #divThumb {
        display: none;
    }

    .pin {
        display: none;
    }

    #leftMenu ul {
        bottom: 0px;

        select {
            font-family: 'Roboto', sans-serif;
        }

        i.fr {
            padding: 4px 20px;
        }
    }

    #btnMyFavs .search {
        display: none !important;
    }

    #leftDiv {
        top: 56px;
        right: 0;

        #searchWrapper {
            display: flex;
            flex-wrap: wrap;
            background: @hiColor1;
            color: @hiActiveColor;
            padding: 0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .4);

            table tr {
                display: flex;
                flex-flow: wrap;

                td {
                    flex-grow: 1;
                }
            }

            input, a.btn {
                height: 46px;
                color: @hiActiveColor;
                background: transparent;
                padding: 10px 0;
                border-top: 0;
                /*flex-grow: 1;*/
                position: relative;
            }
        }
    }

    #rightDiv {
        left: 0;
        top: 56px;
        transform: translateX(110%);
        transition: transform 0.33s cubic-bezier(0,0,0.3,1);
        will-change: transform;
        z-index: 111111;

        &.open {
            transform: translateX(0);
        }

        #tableTitleWrap {
            top: 0;
        }

        #tableTitle {

            #playlistButtons {
                display: flex;
                background: @hiColor1;
                height: 47px;
                box-shadow: 0 2px 5px @borderColor;

                a.sort, a {
                    color: @hiActiveColor;
                    background: transparent;
                    border: 0;
                    flex-grow: 1;
                    padding-top: 12px;
                    position: relative;

                    .fa.fa-sort-amount-asc {
                        padding-top: 4px;
                    }
                }
            }
        }

        #tableTitleWrap #newplshare {
            display: flex;
            flex-wrap: wrap;
            background: @hiColor1;
            padding: 0;

            a.sort, a {
                color: @hiActiveColor;
                background: transparent;
                border-top: 0;
                flex-grow: 1;
                position: relative;
            }
        }

        #playlist {
            top: 47px;
            padding-top: 4px;
            bottom: 0px;
        }
    }

    #divSearch {
        top: 0px;
        bottom: 80px;
    }

    #contextUserMenu, #contextTrackMenu {
        top: 50% !important;
        left: 50% !important;
        max-width: 95%;
        transform: translateX(-50%) translateY(-50%) !important;
    }

    #contextUserMenu ul li, #contextTrackMenu ul li {
        padding: 10px 16px;
    }

    #searchWrapper {
        top: 0px;

        ::-webkit-input-placeholder {
            color: fade(@hiActiveColor, 60%);
        }
    }

    #tableTitleWrap, #helperObject {
        top: 56px;
    }

    #divSearch #htableTitle {
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        /*width: calc(100% - 146px);*/
        width: auto;
        max-width: 95%;
        box-sizing: border-box;
        white-space: nowrap;
        padding-left: 16px;
        font-size: 1.4em;
        line-height: 1em;

        i.bg {
            display: none;
            position: relative;
            float: left;
        }
    }

    .sc-info {
        width: 100%;
        overflow: visible;
        bottom: 82px;
        /*position: absolute;
    top: 43px;
    z-index: 9;*/
    }

    .sc-info.trackInfo {
        position: absolute;
        width: 100%;
        height: auto;
        scroll-behavior: smooth;
        overflow: auto;
        overflow-x: hidden;
        top: 0px;
        /*perspective: 500px;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: transform 1.2s cubic-bezier(0.6, 0, 0.3, 1);
        transform: rotateX(0deg);*/
        will-change: transform;
        /*&.flipped {
            transform: translateX(-100%);
        }*/
    }

    #loadComments.collapse {
        display: inline-block;
    }

    .sc-info.trackInfo > div {
        position: relative;
        width: 100%;
        display: block;
        overflow: visible;
        z-index: 99999;
    }

    .sc-info.trackInfo > div.iframeWrapper {
        /*transform: translateX(100%);*/
    }

    .addToPlaylist {
        padding: 12px 18px 12px 12px;
    }

    #staticHeader .track-info span.date {
        margin-right: 16px;
    }

    #sc-info #trackInfos {
        position: relative;
        margin: 0;
        padding: 0;
        background: @bgColor1;
        z-index: 99999;

        a {
            padding: 10px 4px;
        }
    }

    #sc-info #staticHeader {
        background: @bgColor2;
        border: 0 none;
        margin-bottom: 0px;
        /*overflow: auto;
        overflow-x: hidden;*/
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 999;
        height: auto;
        width: 100%;
        top: 0;
        bottom: auto;
        padding: 0px;
        position: relative;

        #artwork {
            border-color: transparent;
            border-radius: 0;
        }
    }

    .sc-info .iframeWrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0%;
        width: 100%;
    }

    .sc-info .iframeWrapper #ifTrackInfo {
        position: relative;
        height: auto;
    }

    .sc-info table.track-info td.art {
        -moz-perspective: none;
        -ms-perspective: none;
        -webkit-perspective: none;
        perspective: none;
        overflow: hidden;
        max-height: 70vh;

        #artwork {
            max-height: 70vh;
        }
    }

    .sc-info table.track-info td.art,
    .sc-info .track-info tr td {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: -12px;
        position: relative;
    }

    #sc-info .track-info tr td:last-child {
        margin-top: -24px;
        box-shadow: 0 -4px 16px rgba(0,0,0,.2);
        /*margin-bottom:4px;*/
        padding-bottom: 8px;
        z-index: 10000;
        background: @bgColor1;

        h3 {
            /*position: absolute;*/
            margin: 0 !important;
            padding: 16px;
            padding-bottom: 4px;
        }

        .extrasWrap .extrasWrap, h4 {
            padding: 0px 18px;
        }
    }

    /*#sc-info .track-info tr td:last-child, #sc-info #trackInfos {
        color: @hiActiveColor;
        background: @hiColor2;
    }

    #sc-info .track-info tr td:last-child a, #sc-info #trackInfos a {
        color: @hiActiveColor;
    }*/

    #artwork {
        width: 100%;
        padding-bottom: 100%;
        height: 0;
        position: relative;
        top: 0;
        margin-left: 0;
        /*box-shadow: 0 3px 10px @borderColor;*/
        img {
            height: auto;
            width: 100%;
            border-radius: 0;
            top: 0;
            left: 0;
        }
    }

    #connectBtns {
        display: none !important;
    }

    #themes table {
        width: 100%;
    }

    #sc-info #pWrap .descr {
        padding: 16px 24px 0;
        border-top: @borderColor;
    }

    #statusTooltipWrap {
        position: absolute;
        bottom: 0;
        height: auto;
        width: 100%;
        bottom: 80px;
        overflow: hidden;
        pointer-events: none;
    }

    #statusTooltip {
        position: relative;
        z-index: 99999;
        bottom: 0px;
        background: fade(@fgColor2, 80);
    }

    #html5playerWrapp, #html5player {
        height: 64px;

        a.station, a.webAudioApi, #likeTrackNew, #shareTrackNew {
            display: none !important;
        }
    }

    #html5player {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 -3px 12px rgba(0,0,0,0.2);

        .html5player_padding {
            left: 0px;
            right: 0px;
            height: 80px;
            position: relative;
            display: block;
            z-index: 3;

            .buttons {
                display: flex;
                align-items: center;
                z-index: 2;
                position: relative;

                > span, > a {
                    position: relative !important;
                    display: inline-block;
                    flex-grow: 1;
                    text-align: center;
                    margin: 0;
                    padding: 8px !important;
                    left: 0 !important;
                    right: 0 !important;
                    bottom: auto !important;
                    top: 0 !important;
                    font-size: 20px;

                    i, i:before {
                        font-size: 20px;
                    }
                }

                > a, > a i:before {
                    font-size: 20px;
                }

                .playtoggle {
                    padding: 8px 0 !important;
                    height: 48px;
                }

                .playtoggle:before, .playtoggle:after {
                    width: 100%;
                    /*left: 50%;*/
                    /*transform: translateX(-50%);*/
                }
            }

            #volume, .vol {
                display: none;
            }

            #waveform {
                left: 16px;
                right: 16px;
                top: auto;
                bottom: 80px;
                transform: translateY(100%);
                transition: transform .3s ease-out;
                will-change: transform;

                &.open {
                    transform: translateY(0%);
                }
            }

            #waveformD {
                display: none !important;
            }

            #progress {
                left: 0;
                bottom: auto;
                right: auto;
                text-align: left;
                padding: 2px 8px;
                font-size: 1.1em;
                font-weight: normal;
                top: 0;

                &:after {
                    display: none;
                }
            }

            #duration {
                top: 0;
                bottom: auto;
                font-size: 1.1em;
                font-weight: normal;
                margin-right: 0;
                left: auto;
                right: 0;
                text-align: right;
                padding: 2px 8px;
            }
        }
    }


    .playtoggle:before, .playtoggle:after {
        font-size: 48px;
    }


    body {
        /* Without this compositing trigger, Edge does not correctly parallax until
     a repaint is triggered otherwise. */
        transform: translateZ(0);
    }

    #sc-info {
        /*height: 100%;*/
        /*overflow-y: scroll;*/
        /*overflow-x: hidden;*/
        -webkit-overflow-scrolling: touch;
    }

    #artwork {
        background: 50% 50% / cover;
        position: relative;
        transform: translateZ(-2px) scale(3);
        transform-style: preserve-3d;
        transform-origin: 0% 0% 0px;
        width: 100%;

        img {
            display: none;
        }
    }

    #tableTitle #playlistButtons a {
        display: inline-block !important;
    }

    /*#content {
        background: white;
        height: 3000px;
        position: relative;
    }*/

    .magic-fixed-pixel {
        /* Without this fixed position element, Edge does not correctly update the
     parallax position until it is forced to repaint. */
        position: fixed;
        top: 0;
        width: 1px;
        height: 1px;
        z-index: 1;
    }

    /* This magic pixel div is necessary to get the #content div to paint its
   background to the top of its bounds. Otherwise the background is only painted
   where the content starts (excluding margins). */
    .magic-pixel {
        width: 1px;
        height: 1px;
    }

    .overflow-parallax #sc-info,
    .sticky-parallax #staticHeader {
        perspective: 1px;
        perspective-origin: 0% 0%;
    }

    .overflow-parallax #staticHeader {
        transform-style: preserve-3d;
    }

    .sticky-parallax #artwork {
        position: -webkit-sticky;
        top: 0;
    }

    body.trackInfoBody, #tableTitleWrap #tableTitle, #tableTitleWrap #newplshare, #sc-info #pWrap {
        background: @bgColor2;
    }

    #sc-info .actions a {
        border: none !important;
        margin-top: 2px;
        min-height: 10px;

        i {
            float: left;
            width: 100%;
            padding: 0;
            /*display:block;*/
        }

        span {
            text-align: center;
        }
    }

    #sc-info div#commentsSwitch {
        span {
            margin-top: 10px;
        }
    }
}

@media screen and (min-width: 385px) {
    body.trackInfoBody {
        .hidden-sm {
            display: none !important;
        }
    }
}
