.equalizer {
    display: block;
    height: 16px;
    width: 23px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: .3s;
    opacity: 0;
    z-index: 1
}

.equalizer-bar {
    background: #fff;
    bottom: 0;
    height: 2px;
    position: absolute;
    width: 3px;
    animation: 0s linear -.8s infinite alternate sound;
}

@keyframes sound {
    0% {
        height: 2px
    }
    100% {
        height: 16px
    }
}

.equalizer-bar:nth-child(1) {
    left: 4px;
    animation-duration: 474ms
}

.equalizer-bar:nth-child(2) {
    left: 8px;
    animation-duration: 433ms
}

.equalizer-bar:nth-child(3) {
    left: 12px;
    animation-duration: 407ms
}

.equalizer-bar:nth-child(4) {
    left: 16px;
    animation-duration: 458ms
}


.track__play {
    border-radius: 10px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    position: relative;
    float: left;
    cursor: pointer;
	background-size: cover;
	background-color: #455a64;
    background-blend-mode: multiply;
}
.music:hover > .track__play {
	background-color: #707070;
	transition: .2s linear;
}

.mustoggler_playing:hover  .equalizer-bar{
	 background: #fff;
}

.track__play:after {
    content: "";
    position: absolute;
    left: 3px;
    right: 0;
    top: -1px;
    bottom: 0;
    background: url(/styles/images/player/play-red-alt.svg) center no-repeat;
	opacity: 1;
}


.music:hover  .track__play:after {
	background: url(/styles/images/player/play-white.svg) center no-repeat;
	transition: .2s linear;
	right: 2px;
    top: 2px;
}

@media (max-width: 680px) {
	.track__play:after {
		opacity: 1;
	}
}

.music.mustoggler_playing .equalizer {
    opacity: 1
}

.music.mustoggler_playing .track__play:after {
    opacity: 0;
	background: url(/styles/images/player/play.svg) center no-repeat;
}

.music.mustoggler_paused .track__play {
    border-color: #BC0030
}

.music.mustoggler_paused .track__play:after {
    opacity: 1;
	background: url(/styles/images/player/play-red-alt.svg) center no-repeat;
}
.music.mustoggler_paused:hover .track__play:after {
    opacity: 1;
	background: url(/styles/images/player/play.svg) center no-repeat;
}

.music.mustoggler_paused .equalizer {
    opacity: 0
}
.fixed-player {
    position: fixed;
    z-index: 99999;
    position: fixed;
    bottom: 0;
	width: 100%;
    pointer-events: none;
    background-color: #fff;
}



.jp-playlist {
    display: none
}

.jp-controls-holder {
    height: 90px;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify
}

.jp-audio {
    overflow: hidden;
    height: 100%;
    pointer-events: all;
    position: relative
}

.jp-audio.jp-state-playing .jp-play:after {
    opacity: 1
}

.jp-audio.jp-state-playing .jp-play:before {
    opacity: 0
}

.jp-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 180px;
	margin-left: 25px;
	margin-top: 12px;
}

.clr-btn {
    outline: 0;
    border: none;
    background: 0 0;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    transition: .4s
}

.clr-btn:hover {
    opacity: .6
}

.clr-btn img {
    width: 30px;
}

.jp-play {
    width: 51px;
    height: 51px;
    position: relative;
}

.jp-previous {
    width: 51px;
    height: 51px;
}

.jp-next {
    width: 51px;
    height: 51px;
}

.jp-play:hover {
    opacity: 1
}

.jp-play:before {
	position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/styles/images/player/play-red.svg) 0 0/contain no-repeat;
    margin-left: 1px;
    transition: .3s;
    opacity: 1;
}

.jp-play:after {
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/styles/images/player/pause.svg) 0 0/contain no-repeat;
    transition: .3s;
    opacity: 0;
    margin-left: 1px
}

.jp-track-info {
    width: 230px;
	margin-top: 12px;
	margin-left: 25px;
}
@media (min-width: 992px) {
	.jp-track-info {
		padding-right: 20px
	}
}

@media (min-width: 680px) {
	.jp-subcontorols {
		margin-top: 10px;
	}
}


.jp-track-info__track {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 3px;
	margin-top: 1px;
}

.jp-track-info__artist {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    color: grey
}

.jp-subcontorols {
    display: flex;
    align-items: center;
    width: 100%;
	margin-right: 15px;
}

.jp-track-durations {
    padding-right: 10px;
    display: flex;
    align-items: center;
    width: calc(100% - 125px);
    justify-content: flex-end
}

.jp-current-time, .jp-duration {
    font-size: 9px;
    color: #ffffff;
    font-weight: 500;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: -4px;
    position: absolute;
    z-index: 999;
}

.jp-duration {
	right: 0;
}

.jp-track-durbar-c .jp-track-durbar {
    height: 10px;
    background: #ccc;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.jp-track-durbar-c .ui-slider-range {
    background: #455a64;
    height: 10px;
    position: relative;
}


.jp-volume-c {
    flex: 0 0 auto;
    display: flex;
    align-items: center
}

.jp-volume-btn-svg {
    fill: #fff;
    display: block
}

.jp-volume-ico {
    flex: 0 0 auto;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    position: relative
}

.jp-volume-ico:after, .jp-volume-ico:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/styles/images/player/volume.svg) 0 0/contain no-repeat;
    transition: .3s;
    top: 0;
    left: 0
}

.jp-volume-ico:before {
    opacity: 1
}

.jp-volume-ico:after {
    background-image: url(/styles/images/player/volume-muted.svg);
    opacity: 0
}

.jp-volume-ico:hover {
    opacity: 1
}

.jp-volume-ico.muted:before {
    opacity: 0
}

.jp-volume-ico.muted:after {
    opacity: 1
}

.jp-volume-bar {
    flex: 0 0 auto;
    width: 50px;
    height: 12px;
    background: #d2d2d2;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
}

.jp-volume-bar:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    top: -5px;
    bottom: -5px;
    left: 0
}

.jp-volume-bar .ui-slider-range {
    background: #455a64;
    height: 100%;
    left: 0;
    position: absolute;
    display: block;
	border-radius: 10px;
}



.jp-track-durbar-c {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        top: 0
    }
@media (max-width: 992px) {
  
    

    .jp-controls-holder {
        height: 92px
    }

    .jp-track-durbar-c .ui-slider-range:after {
        display: none
    }

	
	.jp-track-durbar-c .ui-slider-range {
		border-radius: 0;
	}
}


@media (max-width: 680px) {


    .jp-controls-holder {
        direction: unset;
        justify-content: space-between;
        height: 65px;
        padding-top: 10px;
    }

    .jp-track-info {
        width: calc(100% - 155px);
        direction: ltr;
		margin-top: 0;
		margin-left: 15px;
    }

    .jp-controls {
        direction: ltr;
        width: auto;
		margin-right: -8px;
		margin-top: 0;
		margin-left: 5px;
    }

    .jp-track-info__track {
        font-size: 13px
    }

    .jp-track-info__artist {
        font-size: 12px
    }

    .jp-play {
        height: 44px;
        width: 44px
    }

    .jp-previous {
        width: 44px;
        height: 44px;
    }

    .jp-next {
        width: 44px;
        height: 44px;
    }

    .clr-btn img {
        width: 17px;
    }

    .jp-play:before {
        width: 40px;
		height: 40px;
    }
}
.jp-track-info__img {
	width: 45px;
    height: 45px;
    float: left;
    margin-right: 7px;
	background-size: cover;
	border-radius: 5px;
}
@media (max-width: 680px) {
	.jp-track-info__img {
		display: none;
	}
	
	.jp-track-info__track {
		margin-top: 2px;
	}
}

.jp-player-close {
	font-size: 23px;
    position: absolute;
    color: #ababab;
    cursor: pointer;
    right: 40px;
}
.jp-player-close:hover {
	color: #BC0030;
	 transition: .3s;
}
@media (max-width: 774px) {
	.jp-player-close {
		right: 25px;
	}
	.jp-track-durations {
		width: calc(100% - 137px);
	}
}

@media (max-width: 680px) {
	.jp-track-durations {
		width: calc(100% - 110px);
	}
	.jp-player-close {
		display: none;
	}
	.jp-favorite {
		margin-right: 0px !important;
	}
}

#player-open {
	display: none;
    right: 30px;
    bottom: 12px;
    position: fixed;
    border: 3px solid #BC0030;
    color: #BC0030;
    background-color: #BC00302e;
    border-radius: 50px;
    padding: 4px 9px 5px 9px;
    font-size: 19px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 10px 3px rgb(74 118 168 / 47%);
    box-shadow: 0px 0px 10px 3px rgb(74 118 168 / 47%);
}

.player-download {
	width: 20px;
    margin-right: 25px;
    margin-top: 3px
}

@media (max-width: 480px) {
	.jp-track-info {
		display: none;
	}
}
.noactive {
    display: none;
}
@media screen and (max-width: 980px) { 
	.fixed-player {
		right: 0;
		left: 0;
	}
}