/* MAIN CONTAINER */
.jp-audio-demo {
	width: 100%;
	max-width: 290px;
	font-family: Arial, sans-serif;
}

/* PLAY BUTTON */
.jp-play-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	height: 44px;
	padding: 0 18px;

	background: transparent;
	border: 1px solid #d8cfc1;

	color: #111;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 500;

	cursor: pointer;
	transition: all .2s ease;
}

.jp-play-btn:hover {
	background: #111;
	color: #fff;
}

.jp-play-icon {
	font-size: 11px;
}

/* PLAYING BAR */
.jp-playing-bar {
	display: none;
	align-items: center;
	gap: 10px;

	height: 58px;
	padding: 0 14px;

	background: transparent;
	border: 1px solid #d8cfc1;

	box-sizing: border-box;
}

/* PAUSE */
.jp-pause-btn {
	border: 0;
	background: transparent;
	padding: 0;

	color: #4d7c82;
	font-size: 12px;
	font-weight: bold;

	cursor: pointer;
}

/* STATUS */
.jp-status {
	white-space: nowrap;

	font-size: 10px;
	letter-spacing: 3px;
	font-weight: 600;
	color: #111;
}

/* PROGRESS */
.jp-progress {
	position: relative;
	flex: 1;
	height: 1px;
	background: #cfc7bb;
	min-width: 30px;
}

.jp-progress-line {
	position: absolute;
	left: 0;
	top: 0;

	width: 0%;
	height: 1px;

	background: #111;
}

/* TIME */
.jp-time {
	min-width: 35px;

	font-family: monospace;
	font-size: 9px;

	color: #555;
	text-align: right;
}

/* MOBILE */
@media (max-width: 480px) {

	.jp-audio-demo {
		max-width: 100%;
	}

	.jp-playing-bar {
		gap: 7px;
		padding: 0 10px;
	}

	.jp-status {
		font-size: 9px;
		letter-spacing: 2px;
	}

}
