.cndce-player{
	margin-top: 5px;
}

.cndce-player-container{
	margin-bottom: 50px;
	color: #9B9B9B;

}

.cndce-timeline{
	height: 2px;
	width: 100%;
	background: #9B9B9B;

	cursor: pointer;

	position: relative;
	
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	        transform: translateZ(0);
}

.cndce-timeline::before{
	content: ' ';
	position: absolute;
	left: 0;
	top: -15px;
	height: 30px;
	width: 100%;
}

.cndce-timeline-done{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;

	background: #545454;
}

.cndce-timeline-ball{
	position: absolute;
	left: 0;
	top: -3.5px;
	width: 9px;
	height: 9px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
	        border-radius: 50%;
	background: #B28A18;
	z-index: 10;
	cursor: pointer;

	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: -o-transform 0.2s ease-in-out;
	-moz-transition: transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out, -moz-transform 0.2s ease-in-out, -o-transform 0.2s ease-in-out;
}

.cndce-timeline:hover .cndce-timeline-ball{
	-webkit-transform: scale(1.4);
	   -moz-transform: scale(1.4);
	    -ms-transform: scale(1.4);
	     -o-transform: scale(1.4);
	        transform: scale(1.4);
}


.cndce-time-hover{
    position: absolute;
    background: black;
    bottom: -webkit-calc( 100% + 5px );
    bottom: -moz-calc( 100% + 5px );
    bottom: calc( 100% + 5px );
    font-size: 67%;
    padding: 0px 5px;
    color: white;
    opacity: 0;

    -webkit-transition: opacity 0.5s ease-in-out;
      -o-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
          transition: opacity 0.5s ease-in-out;

    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.cndce-timeline:hover .cndce-time-hover{
	opacity: 1;
}


.cndce-controls{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;

	margin-top: 13px;
}

.cndce-media-meta{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;

	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;

	font-size: 80%;
	margin: 8px 0;
}


.cndce-audio-button{
	width: 35px;
	cursor: pointer;

	-webkit-transition: all 0.3s ease-in-out;
	  -o-transition: all 0.3s ease-in-out;
	    -moz-transition: all 0.3s ease-in-out;
	      transition: all 0.3s ease-in-out;
}

.cndce-audio-button:hover{
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	     -o-transform: scale(1.1);
	        transform: scale(1.1);
}

.cndce-audio-button:hover path{
	fill: #B28A18;
}

.cndce-pause-button{
	display: none;
}


.cndce-player-container[data-play-state="play"] .cndce-play-button{
	display: none;
}

.cndce-player-container[data-play-state="play"] .cndce-pause-button{
	display: initial;
}



.cndce-player-link{
	text-transform: uppercase;
	text-align: right;
	text-decoration: none;
    letter-spacing: 1px;
    color: inherit;
    font-size: 80%;
    line-height: 200%;
    display: block;
    border-top: solid 1px;
    border-bottom: solid 1px;

	 -webkit-transition: all 0.2s ease-in-out;
	 -o-transition: all 0.2s ease-in-out;
	 -moz-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
	   
}

.cndce-player-link:hover{
	 color: #b38f47;
	 text-decoration: none;

}

.cndce-player-link b{
	color: #b38f47;
}