@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);

body{
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    font-size: 100%;
}

#wptpa_wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#wptpa_player {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
}


/* Left side */

#wptpa_left {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0;
    padding: 0;
    display: table-cell;
    overflow: hidden;
}

#wptpa_cover {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Social Button */

#wptpa_social_wrapper {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 60px;
    background: rgba(255, 255, 255, .75);
    font-size: 0px;
    overflow: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.3s;
    -o-transition: all 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.3s;
    transition: all 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.3s;
}

#wptpa_social_wrapper.wptpa_active_share_wrapper {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}

#wptpa_social_wrapper:hover {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    font-size: 0px;
    overflow: hidden;
    -webkit-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms;
}

.wptpa_social_button {
    position: relative;
    margin-top: 20px;
    display: inline-block;
    width: 25%;
    text-align: center;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;

}

#wptpa_social_wrapper .fa-facebook,
#wptpa_social_wrapper .fa-twitter,
#wptpa_social_wrapper .fa-google-plus,
#wptpa_social_wrapper .fa-tumblr{
    -webkit-animation: socialIconOut 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) both;
    -o-animation: socialIconOut 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) both;
    animation: socialIconOut 600ms cubic-bezier(0.95, 0.05, 0.795, 0.035) both;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}

#wptpa_social_wrapper.wptpa_active_share_wrapper .fa-facebook,
#wptpa_social_wrapper.wptpa_active_share_wrapper .fa-twitter,
#wptpa_social_wrapper.wptpa_active_share_wrapper .fa-google-plus,
#wptpa_social_wrapper.wptpa_active_share_wrapper .fa-tumblr{
    -webkit-animation: socialIconIn 600ms cubic-bezier(0.19, 1, 0.22, 1) both;
    -o-animation: socialIconIn 600ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation: socialIconIn 600ms cubic-bezier(0.19, 1, 0.22, 1) both;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

#wptpa_social_wrapper #wptpa_facebook{
    font-size: 23px;
    line-height: 20px;
    -webkit-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}
#wptpa_social_wrapper #wptpa_twitter{
    font-size: 28px;
    line-height: 20px;
    -webkit-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
#wptpa_social_wrapper #wptpa_google_plus{
    font-size: 23px;
    line-height: 20px;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#wptpa_social_wrapper #wptpa_tumblr{
    font-size: 23px;
    line-height: 20px;
    -webkit-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}



@-webkit-keyframes socialIconIn {
    from { -webkit-transform: translateY(40px); }
    to { -webkit-transform: translateY(0); }
}
@-o-keyframes socialIconIn {
    from { -ms-transform: translateY(40px); }
    to { -o-transform: translateY(0); }
}
@-moz-keyframes socialIconIn {
    from { -o-transform: translateY(40px); }
    to { -ms-transform: translateY(0); }
}
@keyframes socialIconIn {
    from { transform: translateY(40px); }
    to { transform: translateY(0); }
}
@-webkit-keyframes socialIconOut {
    from { -webkit-transform: translateY(0px); }
    to { -webkit-transform: translateY(40px); }
}
@-o-keyframes socialIconOut {
    from { -ms-transform: translateY(0px); }
    to { -o-transform: translateY(40px); }
}
@-moz-keyframes socialIconOut {
    from { -o-transform: translateY(0px); }
    to { -ms-transform: translateY(40px); }
}
@keyframes socialIconOut {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

/* Right side */

#wptpa_right {
    position: relative;
    display: table-cell;
    width: auto;
    height: 200px;
    vertical-align: top;
}


/* Top Section*/

#wptpa_top {
    position: relative;
    width: 100%;
    height: 90px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-opacity: 0.00;
    -khtml-opacity: 0.00;
    opacity: 0.00;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter:alpha(opacity=0);
}

.wptpa_artist {
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
}

.wptpa_title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 100;
}


/* Middle Section */

#wptpa_middle {
    position: relative;
    width: 100%;
    height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: table;
    table-layout: fixed;
    vertical-align: top;
    border-spacing: 20px 0;
	white-space: nowrap;
}


/* Control button*/

.wptpa_playpause_toggle,
.wptpa_prev,
.wptpa_repeat,
.wptpa_next,
.wptpa_share,
.wptpa_shuffle,
.wptpa_playlist_toggle,
#wptpa_volume{
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: table-cell;
    vertical-align:middle;
	line-height: 23px;
}

.wptpa_prev:before,
.wptpa_repeat:before,
.wptpa_next:before,
.wptpa_share:before,
.wptpa_shuffle:before,
.wptpa_playlist_toggle:before,
.wptpa_playlist_toggle:after,
#wptpa_volume:before,
.wptpa_one_item_buy:before,
.wptpa_one_item_dwn:before{
    position: absolute;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
}

.wptpa_playpause_toggle{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid transparent;
}

.wptpa_play {
    border-left-width: 20px;
    border-right-width: 0px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    -webkit-animation: rotateButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    -o-animation: rotateButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    animation: rotateButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.wptpa_pause {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    -webkit-animation: rotateButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    -o-animation: rotateButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    animation: rotateButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}


.wptpa_prev:before {
    content: "\f04a";
    top: -2px;
    left: -1px;
}

.wptpa_repeat:before {
    content: "\f01e";
    top: -2px;
    left: 0px;
}

.wptpa_shuffle:before {
    content: "\f074";
    top: -1px;
    left: -1px;
}

.wptpa_repeat {
    -webkit-animation: rotateRepeatButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
    -o-animation: rotateRepeatButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
    animation: rotateRepeatButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
}

.wptpa_next:before {
    content: "\f04e";
    top: -2px;
    left: 0px;
}

.wptpa_share:before {
    content: "\f1e0";
    top: -2px;
    left: 0px;
}

.wptpa_repeat.wptpa_active_button{
    -webkit-animation: rotateRepeatButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    -o-animation: rotateRepeatButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    animation: rotateRepeatButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.wptpa_one_item_buy,
.wptpa_one_item_dwn{
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 20px;
	left: -webkit-calc(50% - 10px);
	left:-moz-calc(50% - 10px);
	left:-mos-calc(50% - 10px);
	left:-o-calccalc(50% - 10px);
	left:calc(50% - 10px);
    cursor: pointer;
}

.wptpa_one_item_buy:before{
    content: "\f218";
    top: -2px;
    left: 0px;
}

.wptpa_one_item_dwn:before{
    content: "\f063";
    top: -2px;
    left: 0px;
}


/* Анимация Воспроизведение/Пауза */

@-webkit-keyframes rotateButtonIn {
    0% { 
        -webkit-transform: rotate(0deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    50% {
        -webkit-transform: rotate(90deg) scale(.75,.75);
    }
    100% {
        -webkit-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
}

@-o-keyframes rotateButtonIn {
    0% { 
        -o-transform: rotate(0deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    50% {
        -o-transform: rotate(90deg) scale(.75,.75);
    }
    100% {
        -o-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
}

@-moz-keyframes rotateButtonIn {
    0% { 
        -moz-transform: rotate(0deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    50% {
        -moz-transform: rotate(90deg) scale(.75,.75);
    }
    100% {
        -moz-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
}

@keyframes rotateButtonIn {
    0% { 
        transform: rotate(0deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    50% {
        transform: rotate(90deg) scale(.75,.75);
    }
    100% {
        transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
}

@-webkit-keyframes rotateButtonOut {
    0% {
        -webkit-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
    50% {
        -webkit-transform: rotate(270deg) scale(0.75,0.75);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

@-o-keyframes rotateButtonOut {
    0% {
        -o-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
    50% {
        -o-transform: rotate(270deg) scale(0.75,0.75);
    }
    100% {
        -o-transform: rotate(360deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

@-moz-keyframes rotateButtonOut {
    0% {
        -moz-transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
    50% {
        -moz-transform: rotate(270deg) scale(0.75,0.75);
    }
    100% {
        -moz-transform: rotate(360deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

@keyframes rotateButtonOut {
    0% {
        transform: rotate(180deg) scale(1,1);
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 0px;
        border-bottom-width: 0px;
    }
    50% {
        transform: rotate(270deg) scale(0.75,0.75);
    }
    100% {
        transform: rotate(360deg) scale(1,1);
        border-left-width: 20px;
        border-right-width: 0px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}


/* Анимация кнопки повтора */

@-webkit-keyframes rotateRepeatButtonIn {
    0%   { -webkit-transform: rotate(0deg) scale(1,1);}
    50%  { -webkit-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -webkit-transform: rotate(360deg) scale(1,1);}
}

@-o-keyframes rotateRepeatButtonIn {
    0%   { -o-transform: rotate(0deg) scale(1,1);}
    50%  { -o-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -o-transform: rotate(360deg) scale(1,1);}
}

@-moz-keyframes rotateRepeatButtonIn {
    0%   { -moz-transform: rotate(0deg) scale(1,1);}
    50%  { -moz-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -moz-transform: rotate(360deg) scale(1,1);}
}

@keyframes rotateRepeatButtonIn {
    0%   { transform: rotate(0deg) scale(1,1);}
    50%  { transform: rotate(180deg) scale(0.75,0.75);}
    100% { transform: rotate(360deg) scale(1,1);}
}

@-webkit-keyframes rotateRepeatButtonOut {
    0%   { -webkit-transform: rotate(0deg) scale(1,1);}
    50%  { -webkit-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -webkit-transform: rotate(360deg) scale(1,1);}
}

@-o-keyframes rotateRepeatButtonOut {
    0%   { -o-transform: rotate(0deg) scale(1,1);}
    50%  { -o-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -o-transform: rotate(360deg) scale(1,1);}
}

@-moz-keyframes rotateRepeatButtonOut {
    0%   { -moz-transform: rotate(0deg) scale(1,1);}
    50%  { -moz-transform: rotate(180deg) scale(0.75,0.75);}
    100% { -moz-transform: rotate(360deg) scale(1,1);}
}

@keyframes rotateRepeatButtonOut {
    0%   { transform: rotate(0deg) scale(1,1);}
    50%  { transform: rotate(180deg) scale(0.75,0.75);}
    100% { transform: rotate(360deg) scale(1,1);}
}

#wptpa_timerange {
    position: relative;
    width: auto;
    height: 20px;
    cursor: pointer;
    display: table-cell;
}

#wptpa_current,
#wptpa_duration {
    position: absolute;
    top: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
	line-height: 18px;
    font-weight: 100;
    z-index: 5;
}

#wptpa_current{
    left: 5px;
}

#wptpa_duration {
    right: 5px;
}


/* Анимация индикатора загрузки */

@-webkit-keyframes wptpa_buffer {
    from { background-position: 0px 0; }
    to { background-position: 10px 0; }
}
@-o-keyframes wptpa_buffer {
    from { background-position: 0px 0; }
    to { background-position: 10px 0; }
}
@-moz-keyframes wptpa_buffer {
    from { background-position: 0px 0; }
    to { background-position: 10px 0; }
}
@keyframes wptpa_buffer {
    from { background-position: 0px 0; }
    to { background-position: 10px 0; }
}

#wptpa_progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 20px;
}


/* Bottom Section */

#wptpa_bottom {
    position: relative;
    width: 100%;
    height: 90px;
}


/* Playlist button*/

.wptpa_playlist_toggle {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 20px;
	left: -webkit-calc(50% - 10px);
	left:-moz-calc(50% - 10px);
	left:-mos-calc(50% - 10px);
	left:-o-calccalc(50% - 10px);
	left:calc(50% - 10px);
}

.wptpa_playlist_toggle .wpta_playlist_toggle_middle_line{
    position: absolute;
    width: 20px;
    height: 4px;
    top: 8px;
    left: 0;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	opacity:1;
}

.wptpa_playlist_toggle:before,
.wptpa_playlist_toggle:after{
    content: "";
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.wptpa_playlist_close{
    -webkit-animation: rotatePlaylistButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    -o-animation: rotatePlaylistButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    animation: rotatePlaylistButtonOut 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.wptpa_playlist_open{
    -webkit-animation: rotatePlaylistButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    -o-animation: rotatePlaylistButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
    animation: rotatePlaylistButtonIn 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.wptpa_playlist_close:before{
    top: 1px;
    left: 0;
    width: 100%;
    height: 4px;
}

.wptpa_playlist_close:after{
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 4px;
}

.wptpa_playlist_open .wpta_playlist_toggle_middle_line{
    opacity:0;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.wptpa_playlist_open:before{
    top: 8px;
    left: 0px;
    width: 20px;
    height: 4px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.wptpa_playlist_open:after{
    left: 0px;
    bottom: 8px;
    width: 20px;
    height: 4px;
}


/* Анимация кнопки плейлиста */

@-webkit-keyframes rotatePlaylistButtonIn {
    0% {-webkit-transform: rotate(0deg) scale(1,1);}
    50% {-webkit-transform: rotate(67deg) scale(0.75,0.75);}
    100% {-webkit-transform: rotate(135deg) scale(1,1);}
}

@-o-keyframes rotatePlaylistButtonIn {
    0% {-o-transform: rotate(0deg) scale(1,1);}
    50% {-o-transform: rotate(67deg) scale(0.75,0.75);}
    100% {-o-transform: rotate(135deg) scale(1,1);}
}

@-moz-keyframes rotatePlaylistButtonIn {
    0% {-moz-transform: rotate(0deg) scale(1,1);}
    50% {-moz-transform: rotate(67deg) scale(0.75,0.75);}
    100% {-moz-transform: rotate(135deg) scale(1,1);}
}

@keyframes rotatePlaylistButtonIn {
    0% {transform: rotate(0deg) scale(1,1);}
    50% {transform: rotate(67deg) scale(0.75,0.75);}
    100% {transform: rotate(135deg) scale(1,1);}
}

@-webkit-keyframes rotatePlaylistButtonOut {
    0% {-webkit-transform: rotate(135deg) scale(1,1);}
    50% {-webkit-transform: rotate(247deg) scale(0.75,0.75);}
    100% {-webkit-transform: rotate(360deg) scale(1,1);}
}

@-o-keyframes rotatePlaylistButtonOut {
    0% {-o-transform: rotate(135deg) scale(1,1);}
    50% {-o-transform: rotate(247deg) scale(0.75,0.75);}
    100% {-o-transform: rotate(360deg) scale(1,1);}
}

@-moz-keyframes rotatePlaylistButtonOut {
    0% {-moz-transform: rotate(135deg) scale(1,1);}
    50% {-moz-transform: rotate(247deg) scale(0.75,0.75);}
    100% {-moz-transform: rotate(360deg) scale(1,1);}
}

@keyframes rotatePlaylistButtonOut {
    0% {transform: rotate(135deg) scale(1,1);}
    50% {transform: rotate(247deg) scale(0.75,0.75);}
    100% {transform: rotate(360deg) scale(1,1);}
}

/* Volume */


#wptpa_volume_wrapper {
    position: absolute;
    width: 130px;
    height: 20px;
    right: 20px;
    bottom: 20px;
}

#wptpa_volume:before{
    top: -2px;
    border: 0;
    border-right: 10px solid transparent;
}

.wptpa_volume_up:before{
    content: '\f028';
}

.wptpa_volume_low:before{
    content: '\f027';
}

.wptpa_volume_muted:before{
    content: '\f026';
}

.wptpa_volumerange {
    position: absolute;
    top: 7px;
    right: 0;
    width: 100px;
    height: 5px;
    cursor: pointer;
}

.wptpa_volumerange_value {
    position: relative;
    width: 75%;
    height: 100%;
}

.wptpa_volume_value {
    position: absolute;
    right: 0;
    top: -35px;
    padding: 2px 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 100;
    display: none;
}

.wptpa_volume_value:before{
    position: absolute;
    content: '';
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border: 0;
    border-left: 10px solid transparent;
}

#wptpa_volume_wrapper:hover .wptpa_volume_value{
    display: block;
}


/* Playlist */

#wptpa_playlist {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.wptpa_playlist_item{
    position: relative;
    width: 100%;
    height: 40px;
    margin: 0;
	padding: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    line-height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wptpa_playlist_item span{
    -webkit-animation: itemShow 600ms forwards cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-animation: itemShow 600ms forwards cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: itemShow 600ms forwards cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-opacity: 0.00;
    -khtml-opacity: 0.00;
    opacity: 0.00;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter:alpha(opacity=0);
}


// Анимация списка плейлиста при открытие

@-webkit-keyframes itemShow {
    from {
        -webkit-transform: translateY(50%);
        -moz-opacity: 0.00;
        -khtml-opacity: 0.00;
        opacity: 0.00;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        filter:alpha(opacity=0);
    }
    to {
        -webkit-transform: translateX(0%);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        filter:alpha(opacity=100);
    }
}
@-o-keyframes itemShow {
    from { 
        -o-transform: translateY(50%);
        -moz-opacity: 0.00;
        -khtml-opacity: 0.00;
        opacity: 0.00;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        filter:alpha(opacity=0);
    }
    to {
        -o-transform: translateX(0%);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        filter:alpha(opacity=100);
    }
}
@-moz-keyframes itemShow {
    from {
        -moz-transform: translateY(50%);
        -moz-opacity: 0.00;
        -khtml-opacity: 0.00;
        opacity: 0.00;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        filter:alpha(opacity=0);
    }
    to { 
        -moz-transform: translateX(0%);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        filter:alpha(opacity=100);
    }
}
@keyframes itemShow {
    from {
        transform: translateY(50%);
        -moz-opacity: 0.00;
        -khtml-opacity: 0.00;
        opacity: 0.00;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=0);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
        filter:alpha(opacity=0);
    }
    to {
        transform: translateX(0%);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
        filter:alpha(opacity=100);
    }
}

.wptpa_item{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 0 50px 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.wptpa_playlist_item:before{
    position: absolute;
    content: '\f111';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 6px;
    left: -23px;
    top: 0px;
}

.wptpa_current_item:before{
    content: '\f001';
    font-size: 20px;
    left: -30px;
}

.wptpa_buy,
.wptpa_dwn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wptpa_buy:before,
.wptpa_dwn:before{
    position: absolute;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    opacity: 0.5;
    top: 0px;
    left: 10px;
    font-size: 20px;
}

.wptpa_buy:before{
    content: '\f218';
}

.wptpa_dwn:before{
    content: '\f063';
}

.wptpa_current_item .wptpa_buy:before,
.wptpa_playlist_item:hover .wptpa_buy:before,
.wptpa_current_item .wptpa_dwn:before,
.wptpa_playlist_item:hover .wptpa_dwn:before{
    opacity: 1;
}

.wptpa_buy:hover:before,
.wptpa_dwn:hover:before{
    opacity: 1;
    -webkit-animation: rubberBand 1s both;
    -o-animation: rubberBand 1s both;
    animation: rubberBand 1s both;
}

@media screen and (max-width: 600px) {

    #wptpa_player {
        height: 400px;
    }
    
    
    /* Left side */

    #wptpa_left {
        width: 100%;
        display: block;
    }

    #wptpa_cover {
        width: 100%;
        height: 200px;
        display: block;
    }
    
    /* Right side */

    #wptpa_right {
        display: block;
        width: 100%;
    }
    
}

@media screen and (max-width: 500px) {
   
    #wptpa_middle {
        height: 50px;
        text-align: center;
		border-spacing: 0px;
    }
    
    
    /* Control button*/
    .wptpa_playpause_toggle,
    .wptpa_prev,
    .wptpa_repeat,
    .wptpa_next,
    .wptpa_shuffle,
    .wptpa_share,
    .wptpa_playlist_toggle,
    .wptpa_volume{
        display: inline-block;
        margin: 0 10px;
    }
        
    #wptpa_timerange {
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 20px;
        cursor: pointer;
        display: block;
		overflow: hidden;
    }

    
    /* Bottom Section */

    #wptpa_bottom {
        width: 100%;
        height: 60px;
    }

    
    /* Playlist button*/

    .wptpa_playlist_toggle {
        left: 10px;
    }
    
}



/* loader */
.wptpa_loading{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	font-size: 60px;
	color: #fff;
	width: 60px;
    height: 60px;
	display: none;
}