	/*
			PLAYER
		*/

		.audioplayer
		{
			height: 2.5em; /* 40 */
			color: #fff;
			text-shadow: 1px 1px 0 #000;
			border: 1px solid #222;
			position: relative;
			z-index: 1;
			background: #333;
		}

			/* player elements: play/pause and volume buttons, played/duration timers, progress bar of loaded/played */

			.audioplayer > div
			{
				position: absolute;
			}


			/* play/pause button */

			.audioplayer-playpause
			{

				text-indent: -9999px;
				cursor: pointer;
				z-index: 2;
				top: 0;
				left: 0;
			}

				.audioplayer-mini .audioplayer-playpause
				{
					width: 100%;
				}

				.audioplayer-playpause a
				{
					display: block;
				}
				.audioplayer-stopped .audioplayer-playpause a
				{
					width: 0;
					height: 0;
					position: absolute;
				}




			/* progress bar of loaded/played */

			.audioplayer-bar
			{
				cursor: pointer;
				z-index: 1;
				top: 50%;
			}
				.audioplayer-novolume .audioplayer-bar
				{
					right: 4.375em; /* 70 */
				}
				.audioplayer-bar div
				{
					width: 0;
					height: 100%;
					position: absolute;
					left: 0;
					top: 0;
				}
				.audioplayer-bar-loaded
				{
					background-color: #333;
					z-index: 1;
				}
				.audioplayer-bar-played
				{
					background: #007fd1;
					z-index: 2;
				}


			.audioplayer-bar-played			{
				background: #55B994;
			}





/*santosepulcro.co.il*/
.audioplayer-time {
  font-size: 9px;
}
.audioplayer-time-duration {left: 150px;top: 18px;}
.audioplayer-time-current {left: 35px;top: 18px;}
.audioplayer-volume {
  display: none;
}

.audioplayer-bar {
    height: 2px;
    width: 140px;
    cursor: pointer;
    z-index: 1;
    top: 13px;
    left: 35px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.audioplayer {
  height: auto;
  border-radius: 10px;
  background: transparent;
  border: 0;
}

.audioplayer:not(.audioplayer-mini) .audioplayer-playpause {
  left: 0px;
  top: 0px;
}

.audioplayer-stopped
.audioplayer-playpause a {
  	border: 14px solid transparent;
 	border-left: 20px solid white;
	width: 0;
    height: 0;
}
.audioplayer-playing
.audioplayer-playpause {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 7px;
    height: 22px;
    margin-top: 3px;
}


.audioplayer-bar, .audioplayer-bar-loaded {
  background: rgb(255 255 255 / 50%);
}
.audioplayer-bar-played {
  background: #fff;
}

@media (max-width: 767px) {
	.audioplayer {color: #675140;text-shadow: none;}
	.audioplayer-stopped .audioplayer-playpause a {border-left-color: #675140;}
	.audioplayer-playing .audioplayer-playpause {border-color: #675140;}
	.place-item__audio:after, .place-item__audio:before {
	    content: '';
	    position: absolute;
	    width: 21px;
	    height: 100%;
	    top: 50%;
	    left: -17px;
	    transform: translateY(-50%);
	    background-image: url(/local/templates/santosepulcro_052020/assets/images/button-left-light.svg);
	    background-repeat: no-repeat;
	    background-size: contain;
	}
	.place-item__audio:before {
	    transform: translateY(-50%) rotate(180deg);
	    right: -17px;
	    left: auto;
	}
	.audioplayer-bar, .audioplayer-bar-loaded {background: rgba(159, 55, 47, 0.4);}
	.audioplayer-bar-played {background: #9F372F;}
}