/*
	minimalPlayer audio player version 1.0
	Creator: ThemeSpartans
	Created: 22/4/2015
	
	browsers supported: IE10 and later,Mozilla,Safari,Chrome,Opera!	
*/

.SPlayer {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
  	bottom: 240px; /* Place the button at the bottom of the page */
  	right: 26px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(27,27,27,0.45); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 80px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
	padding:5px !important
}

@media (max-width: 991px) {
	.SPlayer {
  		bottom: 200px; /* Place the button at the bottom of the page */
  		right: 22px; /* Place the button 30px from the right */
	}
}

@charset "utf-8";
#minimal_player{
	width: auto;
	height: auto;
	position: relative;
	border-radius: 50%;
	display:block;
	background-color: rgba(0,0,0,0.30);
}
#minimal_player #knobSlider{
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#minimal_player #play_pause{
	width:auto;
	height:auto;
	position:absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	margin:auto;
	cursor:pointer;
	display:block;
}
#minimal_player #playBtn{
	width:100%;
	height:100%;
	position:absolute;
	display:block;
}
#minimal_player #pauseBtn{
	width:100%;
	height:100%;
	position:absolute;
	display:none;
}
#minimal_player #play_pause img{
	display:block;
    margin:0 auto;
}
#minimal_player canvas{
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 50%;
	display: block;
}
#minimal_player #warning{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	height: auto;
	text-align: center;
	color: #474747;
	font-weight: bold;
}
#minimal_player #audio{	
	display: none;
	width: 0px;
	height: 0px;
}
#minimal_player svg{
	display:block;
    margin:0 auto;
}
#minimal_player svg path{
	fill:#FFFFFF;
}
#minimal_player svg:hover path{
	fill:rgba(241,190,38,1.00);
}