@font-face {
    font-family: 'robotoregular';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
    url('../fonts/roboto-regular-webfont.woff') format('woff'),
    url('../fonts/roboto-regular-webfont.ttf') format('truetype');
}
body {
    /*background: #151515;*/
}
.mplayer {
    position: relative;
    overflow: hidden;
    width: 280px;
    font-family: Arial, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mplayer__front-header {
    position: relative;
    overflow: hidden;
    height: 400px;
    text-align: center;
    background: #fff;
    border-radius: 4px;
}

.mplayer__front-header:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
}

.mplayer__front-header-current-bg,
.mplayer__front-header-next-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: none !important;
}

.mplayer__front-btn-playlist {
    position: absolute;
    z-index: 1;
    right: 12px;
    display: inline-block;
    width: 17px;
    height: 15px;
    padding-top: 23px;
    padding-right: 30px;
    cursor: pointer;
    background: 0 8px no-repeat url(./img/playlist.png);
	transition: all 0.3s ease-out;
	top: 15px;
}
.mplayer__front-btn-playlist:hover {
    filter: brightness(.8);
}

.mplayer__cover-art {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    width: 135px;
    height: 135px;
    margin-top: 82px;
    #border-radius: 100%;
}

.mplayer__cover-art img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mplayer__cover-art-next {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mplayer__front-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
}

.mplayer__toolbar {
    position: absolute;
    z-index: 99;
    top: 335px;
    right: 0;
    left: 0;
    text-align: center;
}

.mplayer__pause {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease-out;
    vertical-align: middle;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(58, 58, 58);
    border-radius: 50%;
    background-color: rgba(232, 232, 232, 0);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.mplayer__pause:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.mplayer__pause:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    background: no-repeat 58% 50% url(./img/play.svg);
    background-size: 40%;
}

.mplayer__pause.isplay:after {
    background: no-repeat 50% 50% url(./img/pause.svg);
    background-size: 30%;
}

.mplayer__prev,
.mplayer__next {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 40px;
    border-radius: 100%;
    cursor: pointer;
    vertical-align: middle;
}

.mplayer__prev::after,
.mplayer__next::after,
.mplayer__prev::before,
.mplayer__next::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    transition: opacity 0.3s ease-out;
}
.mplayer__prev::after,
.mplayer__next::after {
    opacity: 0;
}
.mplayer__prev:hover::after,
.mplayer__next:hover::after {
    opacity: 1;
}

.mplayer__prev {
    position: relative;
}

.mplayer__prev:before {
    background: no-repeat 50% 50% url(./img/previous.png);
}
.mplayer__prev:after {
    background: no-repeat 50% 50% url(img/previous.svg);
    filter: brightness(.8);
;
}
.mplayer__next::before {
    background: no-repeat 50% 50% url(./img/next.png);
}
.mplayer__next::after {
	background: no-repeat 50% 50% url(img/next.svg);
    filter: brightness(.8);
}

.mplayer__front-row:after {
    content: ' ';
    display: table;
    clear: both;
}

.mplayer__front-title-wrap {
    padding: 25px 0 0 0px;
    text-align: center;
    margin-top: -56px;
}

.mplayer__front-title-author {
    max-width: 100%;
    height: 12px;
    min-height: 1em;
    margin-top: 1px;
    color: rgb(49, 52, 55);
    font-family: "Myriad Pro", sans-serif;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mplayer__front-title-track {
    max-width: 100%;
    min-height: 1em;
    padding-top: 8px;
    color: rgb(49, 52, 55);
    font-family: "Myriad Pro", sans-serif;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    text-overflow: ellipsis;
    letter-spacing: 0.1em;
}

.mplayer__order-btn-wrap {
    float: none;
    position: absolute;
    display: block;
    z-index: 99;
    top: 53px;
}

.mplayer__random,
.mplayer__repeat {
    display: block;
    cursor: pointer;
    position: absolute;
	top: 17px;
}
.mplayer__repeat {
    left: 234px;
}
.mplayer__random {
    left: 30px;
}

.mplayer__random.mplayer__random-on {
    content: '';
    width: 20px;
    height: 14px;
    background: url(img/random.svg);
	filter: brightness(.65);
}

.mplayer__random::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    transition: opacity 0.3s ease-out;
}
.mplayer__random {
    content: '';
    width: 20px;
    height: 14px;
    #background: url(./img/random.png);
	background-repeat: no-repeat;
}
.mplayer__random::after {
    opacity: 0;
    #background: url(img/random_aft.png);
	background-repeat: no-repeat;
	filter: brightness(.8);
}
.mplayer__random:hover::after {
    opacity: 1;
}

.mplayer__repeat.mplayer__repeat-on {
    content: '';
    width: 15px;
    height: 14px;
    #background: url(img/repeat.svg);
	filter: brightness(.65);
}
.mplayer__repeat::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    transition: opacity 0.3s ease-out;
}
.mplayer__repeat {
    transition: opacity 0.3s ease-out;
    content: '';
    width: 15px;
    height: 14px;
    margin-right: 3px;
    #ackground: url(./img/repeat.png);
}
.mplayer__repeat::after {
    opacity: 0;
    #background: url(img/repeat_aft.png);
	filter: brightness(.8);
}
.mplayer__repeat:hover::after {
    opacity: 1;
}

.mplayer__current-time,
.mplayer__all-time {
    display: block;
    color: rgb(42, 42, 42);
    font-family: "Myriad Pro", sans-serif;
    letter-spacing: .5px;
    font-size: 11px;
    position: absolute;
    top: 22px;
}
.mplayer__current-time {
    left: 30px;
}
.mplayer__all-time {
    right: 30px;
}

.mplayer__long,
.mplayer__volume {
    height: 24px;
    vertical-align: top;
}

.mplayer__long {
    margin-top: 3px;
    white-space: nowrap;
}
.mplayer__volume {
    float: none;
    position: absolute;
    z-index: 99;
    top: -261px;
    left: 30px;
    height: 22px;
}

.mplayer__long-slider,
.mplayer__volume-slider {
    position: relative;
    display: inline-block;
    height: 2px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    cursor: pointer;
    vertical-align: top;
}

.mplayer__long-slider {
    position: absolute;
    left: 50%;
    z-index: 99;
    width: 155px;
    margin-top: 9px;
    transform: translateX(-50%);
}
.mplayer__volume-slider {
    width: 0;
    margin-right: 0;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mplayer__long-slider:before,
.mplayer__volume-slider:before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    height: 3.5px;
    background-color: #d5d5d5;
}
.mplayer__volume-slider:before {
    height: 1.5px;
	width: 60px;
}

.mplayer__long-slider .ui-widget-header,
.mplayer__volume-slider .ui-widget-header {
    position: relative;
    z-index: 1;
    height: 3.5px;
    background: #383838;
}
.mplayer__volume-slider .ui-widget-header {
    height: 2px;
    background: #3a3a3a;
}
.mplayer__volume-icon:hover + .mplayer__volume-slider{
    opacity: 1;
    width: 60px;
    margin-right: 13px;
}
.mplayer__volume:hover .mplayer__volume-slider {
    opacity: 1;
    width: 50px;
    margin-right: 13px;
}

.mplayer__volume-slider .ui-slider-handle {
    width: 9px;
    height: 9px;
    position: absolute;
    top: -4px;
    border-style: solid;
    border-width: 1.5px;
    border-color: rgb(58, 58, 58);
    border-radius: 50%;
	background-color: #fff;
}

.mplayer__volume-icon {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: no-repeat url(./img/sound.png);
    transition: all 0.3s ease-out;
}
.mplayer__volume:hover .mplayer__volume-icon {
    filter: brightness(.8);
}

.mplayer__playlist {
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f9f9f9;
    border-radius:4px;
}

.ps-container {
    overflow: hidden !important;

    -ms-touch-action: none;
        touch-action: none;
    -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
    .ps-container {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps-container {
        overflow: auto !important;
    }
}

.ps-container.ps-active-y > .ps-scrollbar-y-rail,
.ps-scrollbar-y-rail {
    display: block;
    background-color: transparent;
}
.ps-container.ps-in-scrolling {
    pointer-events: none;
}
.ps-container > .ps-scrollbar-y-rail {
    position: absolute;
    right: 0;
    display: none;
    width: 15px;
}

.mplayer__playlist-body-inner.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    position: absolute;
    right: 5px;
    width: 7px;
    opacity: 0.3;
    border: 0;
    transition: opacity 0.2s ease-out;
    background-color: transparent;
}
.mplayer__playlist-body-inner > .ps-scrollbar-y-rail > .ps-scrollbar-y:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 7px;
    left: 0;
    display: inline-block;
    border-radius: 7px;
    background-color: #ffffff;
}

.mplayer__playlist-body-inner > .ps-scrollbar-y-rail > .ps-scrollbar-y:hover,
.mplayer__playlist-body-inner > .ps-scrollbar-y-rail > .ps-scrollbar-y:active {
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s ease-out;
}

.ps-container:hover.ps-in-scrolling {
    pointer-events: none;
}

.mplayer__playlist-header {
    position: relative;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius:4px;
}

.mplayer__playlist-btn-front {
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 20px;
    padding-right: 20px;
    padding-left: 15px;
    cursor: pointer;
    background: 14px 50% no-repeat url(./img/back.svg);
}

.mplayer__playlist-header-title {
    display: inline-block;
    color: #3a3a3a;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}
.mplayer__playlist-body {
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.mplayer__playlist-body-current-bg,
.mplayer__playlist-body-next-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
	background-color: #000;
}

.mplayer__playlist-body-inner {
    position: absolute;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width: 280px;
	height: 360px;
}

.mplayer__playlist-body:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    opacity: 0.54;
    background-color: #000000;
}

.mplayer__playlist span {
    display: block;
    overflow: hidden;
    padding-right: 70px;
    padding-left: 14px;
    color: #d1d1d1;
    font-size: 12px;
    line-height: 40px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mplayer__playlist span:nth-child(2n+1) {
    background-color: rgba(0,0,0,0.2);
}

.mplayer__playlist span.mplayer__playlist-current:nth-child(2n+1),
.mplayer__playlist span.mplayer__playlist-current:nth-child(2n+1):hover {
    background-color: rgba(0,0,0,0.6);
}

.mplayer__playlist span:nth-child(2n+1):hover {
    background-color: rgba(0,0,0,0.3);
}

.mplayer__playlist span:nth-child(2n) {
    background-color: rgba(255,255,255,0.08);
}

.mplayer__playlist span.mplayer__playlist-current:nth-child(2n),
.mplayer__playlist span.mplayer__playlist-current:nth-child(2n):hover {
    background-color: rgba(255,255,255,0.4);
}

.mplayer__playlist span:nth-child(2n):hover {
    background-color: rgba(255,255,255,0.1);
}

.mplayer__playlist span.mplayer__playlist-current {
    color: #fffefe;
    font-size: 12px;
}
.mplayer__playlist-current:before {
    content: url(./img/sound.png);
    filter: brightness(0) invert(1);
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0 7px 0 0;
}

.mplayer__playlist time {
    position: absolute;
    right: 34px;
    overflow: hidden;
    max-width: 37px;
    color: #a5a5a5;
    font-size: 12px;
    font-weight: 400;
    text-overflow: ellipsis;
}

.vscrollerbase {
    background-color: transparent;
}
input,
textarea {
    outline: none;
}
input:active,
textarea:active {
    outline: none;
}
:focus {
    outline: none;
}

.scrollbar-track {
    background: transparent !important;
}
.scrollbar-track-y {
    width: 15px !important;
}
.scrollbar-thumb {
    background: transparent !important;
}
.scrollbar-thumb-y {
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.2s ease-out;
}
.scrollbar-thumb-y:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0px;
    bottom: 7px;
    left: 0;
    display: inline-block;
    border-radius: 7px;
    background-color: #ffffff;
}
.scrollbar-thumb-y:hover, .scrollbar-thumb-y:active {
    opacity: 0.7;
}