/*----------------PLAYER------------------*/
.main-player {
	text-align: left;
	
}

.header-logo {
	transition-delay: 0.4s;
}

.playing .header-logo, .paused .header-logo {
	height: 180px;
	transition-delay: 0s;
}

.main-player marquee {
	width: 0;
/*
	background: rgb(51,51,51); 
	background: -moz-linear-gradient(top, rgba(51,51,51,1) 0%, rgba(85,85,85,1) 50%, rgba(51,51,51,1) 100%); 
	background: -webkit-linear-gradient(top, rgba(51,51,51,1) 0%,rgba(85,85,85,1) 50%,rgba(51,51,51,1) 100%);
	background: linear-gradient(to bottom, rgba(51,51,51,1) 0%,rgba(85,85,85,1) 50%,rgba(51,51,51,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#333333',GradientType=0 );
*/
	color: black;
	font-size: 0.7em;
	font-weight: light;
	opacity: 0;
	transition-delay: 0s;
}

.playing .main-player marquee, .paused .main-player marquee{
	width: 240px;
	opacity: 0.3;
	cursor: pointer;
}

.main-player marquee:hover {
	opacity: 1;
}

.playing #ml-menu, .paused #ml-menu {
	top: 180px;
	transition-delay: 0s;
}

.audio-control {
	width: 0;
	height: 0;
	background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 5px;
    cursor: pointer;
}



.paused .audio-control.cancel, .playing .audio-control.cancel{
	background-image: url(../img/icon-cancel.svg);
    height: 8px;
    width: 18px;
    top: 0;
    opacity: 0.3;
}

.audio-control.cancel:hover {
	opacity: 1;
}

.playing .audio-control {
	background-image: url(../img/icon-play-rounded.svg);   
	height: 18px;
    width: 18px; 
}

.paused .audio-control {
	background-image: url(../img/icon-pause-rounded.svg);
	    height: 18px;
    width: 18px;
}

.single .play {
    position: absolute;
    background: #c83b3b;
    border-radius: 30px;
    right: 25px;
    bottom: 25px;
    z-index: 4;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    opacity: 1;
}

.single .play::before {
	content: " ";
    background-image: url('../img/volume.png');
    height: 20px;
    width: 20px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.single .play.playing::before {
	background-image: url('../img/pause.png');
	height: 15px;
    width: 15px;
    margin: 3px 5px 3px 0;
}

.single .play span {
	vertical-align: middle;
}


.single .play .player-icon {
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 5px;
    cursor: pointer;
	background-image: url('../img/volume.png');
	height: 20px;
    width: 20px;
    margin-right: 5px;
}

.single .play.playing .player-icon {
	background-image: url('../img/pause.png');
	transform: scale(0.8);
/*
	height: 16px;
    width: 16px;
    top: 2px;
*/
}

/*
.single .play:before {
    content: " ";
    background: url('../img/volume.png');
    height: 20px;
    width: 20px;
    display: inline-block;
    background-size: cover;
    float: left;
    margin-right: 5px;
}

.single .play.playing:before {
	background: url('../img/pause.png');
	content: " ";
    height: 20px;
    width: 20px;
    display: inline-block;
    background-size: cover;
    float: left;
    margin-right: 5px;
}
*/

.single .play.inactive {
	opacity: 0.7;
	background: #565656;
}

.single .play.inactive:hover {
	opacity: 0.7;
	background: #565656;
}

.single .play.playing {
	width: 130px;
}



.single .play:hover {
	background: #224a74;
}

.single .play img {
	width: 50px;
    padding: 15px;
}

@media screen and (max-width: 40em) {
	#waveform wave, #waveform canvas {
		height: 120px!important;
	}
	
	.single .post-header-footer {
		width: 50%;
	}
}
