.player {
	background-color: #252525;
    overflow:hidden;
}

.container-fluid {
    padding:0;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
}

.play::before {
	font-family: "FontAwesome";
    content: "\f04b";
    font-size: 36px;
	color:#fff;
}

.pause::before {
	font-family: "FontAwesome";
    content: "\f04c";
    font-size: 36px;
    color:#fff;
}

.controls {
    width:100%;
    border-radius: 25px;
}

.control-btn {
	position: relative;
	background: #70b8d6;
	z-index: 2;
    width: 86px;
    height: 86px;
    float:left;
    cursor:pointer;
}

.play {
	padding: 18px 0 0 32px;
}

.pause {
	padding: 18px 0 0 27px;
}

.progress-container {
    width:100%;
    position:relative;
    background-color: #252525;
    height:86px;
    padding-left: 86px;
}

.player-progress {
	position: relative;
    margin:auto;
    /*top:39px;*/
    height: 86px;
    width: 100%;
}

.total {
	/*background-color: rgba(252,252,252,0.3);*/
    background-color: #f5f5f5;
	width: 100%;
    height: 100%;
    z-index: 0;
}

.played {
	background-color: #e0e0e0;
    border: none;
    height: 100%;
    width:0;
    transition: width .25s linear;
}

.no-transition {
    transition: none;
}

.position {
    color:#76767d;
    font-size: 16px;
    font-family:'Source Sans Pro', sans-serif;
    display: inline;
}

.replay {
    color:#70b8d6;
    font-size: 16px;
    display: inline;
    margin-left: 4px;
    cursor: pointer;
}

.title {
    color:#76767d;
    font-size: 24px;
    font-weight: 700;
    font-family:'Source Sans Pro', sans-serif;
    padding-top: 10px;
}

.download {
    display: inline;
    color:#76767d;
    font-size: 16px;
    font-family:'Source Sans Pro', sans-serif;
    display: inline;
    border: none;
    background: none;
}

.download a {
    color:#70b8d6;
}

.title,.position,.replay, .download {
    position: relative;
    padding-left: 16px;
    padding-right: 10px;
    z-index: 1; 
}

.total, .played {
	position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 755px) {
    .player-progress {
        width:100%;
    }

    .title {
        font-size: 16px;
    }

}

@media (max-width: 320px) {

    .title {
        font-size: 12px;
    }

}

