.P3AudioPlayer {
	width: 100%;
	border: 4px solid #ffe100;
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
	height: 75px;
	line-height: 67px;
	overflow: hidden;
    font-weight: 200;
	margin-bottom: 3px;
}

.P3AudioPlayer .controlcontainer {
    float: left;
    background: #ffe100;
    z-index: 1;
    position: relative;
    cursor: pointer;
    font-size: 28px;
    width: 67px;
    height: 67px;
    text-align: center;
    color: black;
}

.P3AudioPlayer .controlcontainer.image {
    background: none;
    background-size: 100% 100%;
}

.P3AudioPlayer  .play, .P3AudioPlayer  .pause{
    display: block;
}

.P3AudioPlayer .image .play, .P3AudioPlayer .image .pause {
    background: rgba(255, 225, 0, 0.5);
}

.P3AudioPlayer  .textcontainer {
	position: relative;
	z-index: 1;
	padding-left: 10px;
	border-left: 4px solid #ffe100;
    height: 67px;
}

.P3AudioPlayer  .text {
	transition: font-size 1s;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.P3AudioPlayer .text.title.solo {
    line-height: 67px;
    font-size: 16px;
}
.P3AudioPlayer .text.title {
    line-height: 40px;
    font-size: 16px;
}

.P3AudioPlayer .text.description {
    line-height: 23px;
    font-size: 12px;
}

.P3AudioPlayer  .resize {
	top: 0;
	left: 0;
	position: absolute;
	visibility: hidden;
	padding-left: 10px;
}

.P3AudioPlayer  .time {
	float: right;
	margin-right: 5px;
	margin-left: 5px;
	position: relative;
	z-index: 1;
	opacity: 0;
	transition: opacity 1s;
	font-size: 13px;
}

.P3AudioPlayer  .seek-bar {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	margin-left: 4px;
}

.P3AudioPlayer  .progress-bar {
	position: relative;
	margin-left: 67px;
}
/* 74px er juksings for å få play-bar til å holde seg i ro når tekst blir mindre. */
.P3AudioPlayer  .play-bar-container {
	margin-right: -62px;
	position: relative;
	margin-top: -74px;
	height: 74px;
	left: 4px;
}

.P3AudioPlayer  .play-bar {
	background:  #ffe100;
	position: absolute;
	top: 0;
	height: 100%;
	overflow-x: visible !important;
	overflow-y: visible !important;
	/*left: -74px;*/
	 left: -67px;
}
.P3AudioPlayer  .play-bar:after {
    content: '';
    line-height: 0;
    font-size: 0;
    width: 0;
    height: 0;
    border-top: 74px solid #ffe100;
    border-right: 74px solid transparent;
    position: absolute;
    top: 0;
    right: -74px;
}