/*
 * Project: CirclePlayer
 * http://www.jplayer.org
 *
 * Copyright (c) 2012 Happyworm Ltd
 *
 * Author: Silvia Benvenuti
 * Edited by: Mark J Panaghiston
 * Date: 2nd October 2012
 * Artwork inspired by: http://forrst.com/posts/Untitled-CJz
 */

.cp-container {
	position:relative;
	width:75px; /* 200 - (2 * 48) */
	height:75px;
	background:url("../images/circle.skin-bgr.webp") 0 0 no-repeat;
	padding:3px;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	background-size: cover;
	float:left;
}

.cp-container :focus {
	border:none;
	outline:0;
}

.cp-buffer-1,
.cp-buffer-2,
.cp-progress-1,
.cp-progress-2 {
	 position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    clip: rect(0px,17px,30px,0px);
    -moz-border-radius: 17px;
    -webkit-border-radius: 17px;
    border-radius: 17px;
}

.cp-buffer-1,
.cp-buffer-2 {
	background:url("../images/circle.skin-buffer.png") 0 0 no-repeat;
	background-size:30px;
}


/* FALLBACK for .progress
 * (24 steps starting from 1hr filled progress, Decrease second value by 104px for next step)
 * (It needs the container selector to work. Or use div)
 */
.prototype-wrapper {
	width:70px;
	margin: 0 auto;
}
.cp-container .cp-fallback {
	background:url("../images/circle.skin-progress_sprite.jpg") no-repeat;
	background-position:0 70px;
}

.cp-progress-1,
.cp-progress-2 {
	background:url("../images/circle.skin-progress.png") 0 0 no-repeat;
	background-size: 30px;
}

.cp-buffer-holder,
.cp-progress-holder,
.cp-circle-control {
	    position: absolute;
    width: 30px;
    height: 30px;
    top: 22px;
    left: 22px;
}

.cp-circle-control {
	cursor:pointer;
}

.cp-buffer-holder,
.cp-progress-holder {
	clip:rect(0px,30px,30px,18px);
	display:none;
}


/* This is needed when progress is greater than 50% or for fallback */

.cp-buffer-holder.cp-gt50,
.cp-progress-holder.cp-gt50,
.cp-progress-1.cp-fallback{
	clip:rect(auto, auto, auto, auto);
}

.cp-controls {
	margin:0;
	padding:17px;
}

.cp-controls li{
	list-style-type:none;
	display:block;
    top: 0;
    right: 0;
	/*IE Fix*/
	position:absolute;
	margin:0;
}

.cp-controls li a{
	position:relative;
	display:block;
	width: 75px;
	height: 75px;
	text-indent:-9999px;
	z-index:1;
	cursor:pointer;
}

.cp-controls .cp-play {
	background:url("../images/circle.skin-control-1-removebg-preview (2).png") 0 0 no-repeat;
	background-size: 75px;
}

.cp-controls .cp-play:hover {
	background:url("../images/circle.skin-control-2hover.png")  0 no-repeat;
	background-size: 75px;
}

.cp-controls .cp-pause {
	background:url("../images/circle.skin-control-4.png") 0 no-repeat;
	background-size: 75px;
}

.cp-controls .cp-pause:hover {
	background:url("../images/circle.skin-control-3.png") 0 no-repeat;
	background-size: 75px;
}

.cp-jplayer {
	width:0;
	height:0;
}
.audio-meta {
    /*background: #eaeaea;*/
    border-left: 1px solid #ccc;
    display: block;
    color: #333;
    font-weight: normal;
}
