/*down arrowhead \2304 up arrowhead /2303 thick cross \2A2F  black up arrow \2B9D  black down arrow /2B9F */
/*TOGGLE HIDES/DISPLAYS THE MUSIC FOOTER*/

#toggle {
	position: absolute;
	bottom: 98px;
	right: 0;
}
#toggle,
#toggleShow {
	background-color: var(--dark);
	border: none;
	width: 50px;
	height: 50px;
	color: var(--comp);
    line-height: 0;
}
#toggleShow {
	line-height: 1.5;
	background-color: transparent;
}
#toggle::after {
    content: "\2304";
    font-size: 3em;
}
#toggle:hover,
#toggleShow:hover {
	cursor: pointer;
}
.uparrow {
	display: none;
}
.collapsed+.uparrow {
	color: black;
	position: fixed;
	bottom: 15px;
	right: 5px;
	width: 90px;
	height: 90px;
	display: block;
}
.collapsed+.uparrow::after {
}
svg#Layer_1 {
    width: 34px;
    height: 70px;
    transform: rotate(180deg);
    fill: none;
    stroke: var(--comp);
}
/* HTML5 Audio Player with Playlist, source: https://www.codehim.com/vanilla-javascript/javascript-audio-player-with-playlist/ */
.flex {
	display: -webkit-flex;
	display: flex;
}
.flex-wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-align {
	-webkit-align-items: center;
	align-items: center;
}
.simple-audio-player a,
.simple-audio-player a:hover,
.simple-audio-player a:visited {
	color: #ddd;
	text-decoration: none;
}
.simple-audio-player button,
.simple-audio-player input,
.simple-audio-player img {
	border: 0;
}
.simple-audio-player {
	width: 100%;
	text-align: initial;
	line-height: initial;
	margin: 0 auto;
	overflow: hidden;
    flex: 2;
}
.simple-audio-player img {
	max-width: 70px;
	width: 100%;
	margin: 0;
	padding: 0;
	display: block;
}
.simp-artist {
	font-size: 90%;
	color: #6c7883;
}
.simp-title {
    margin-left: 1em;
}
.simp-controls {
	flex: 1.5;
}
.simple-audio-player button {
	width: 32px;
	height: 32px;
	background: none;
	color: #999;
	padding: 7px;
	cursor: pointer;
	border: 0;
	border-radius: 3px;
}
.simple-audio-player .simp-shide-bottom {
    font-size: 2em;
    transition: .1s;
    margin-top: -25px;
	color: var(--comp);
}
.simp-shide-bottom::before {
	color: inherit;
}
.simp-player:not(:has(+.simp-hide)) .simp-shide-bottom {
	/*color: var(--lightContrast);*/
}
.simp-player:not(:has(+.simp-hide)) .simp-shide-bottom::before {
    display: block;
}
.simp-player:has(+.simp-hide) .simp-shide-bottom {
}
.simp-player:has(+.simp-hide) .simp-shide-bottom::before {
    transform: rotate(-180deg);
    content: "\f0d7";
    display: block;
    font-size: 2rem;
 }
.simp-time {
    font-size: .7em;
}
.simp-controls button[disabled] {
	color: var(--darkExtra);
	cursor: initial;
}
.simp-controls button:not([disabled]):hover {
	color: var(--light);
}
.simp-prev,
.simp-next {
	font-size: 100%;
}
.simp-tracker,
.simp-volume {
	flex: 1;
	margin-left: 10px;
	position: relative;
}
.simp-tracker,
.simp-time {
    /*display: none;*/
}
.simp-buffer {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 5px;
	margin-top: -2.5px;
	border-radius: 100px;
}
.simp-loading .simp-buffer {
	-webkit-animation: audio-progress 1s linear infinite;
	animation: audio-progress 1s linear infinite;
	background-image: linear-gradient(-45deg, var(--dark) 25%, transparent 25%, transparent 50%, var(--dark) 50%, var(--dark) 75%, transparent 75%, transparent);
	background-repeat: repeat-x;
	background-size: 25px 25px;
	color: transparent;
}
.simp-time,
.simp-others {
	margin-left: 10px;
}
.simp-volume {
	/*max-width: 110px;*/
}
.simp-mute {
	margin-right: 5px;
}
li.simp-active {
	background: var(--darkContrast);
}
.simp-shide button {
	font-size: 100%;
	padding: 0;
	width: 24px;
	height: 14px;
	display: block;
}
.simp-controls input[type=range] {
	-webkit-appearance: none;
	background: transparent;
	height: 19px;
	margin: 0;
	width: 100%;
	display: block;
	position: relative;
}
.simp-controls input[type=range]::-webkit-slider-runnable-track {
	background: rgba(183, 197, 205, .66);
	height: 5px;
	border-radius: 2.5px;
	transition: box-shadow .3s ease;
	position: relative;
}
.simp-controls input[type=range]::-moz-range-track {
	background: rgba(183, 197, 205, .66);
	height: 5px;
	border-radius: 2.5px;
	transition: box-shadow .3s ease;
	position: relative;
}
.simp-load .simp-progress::-webkit-slider-runnable-track {
	background: #2f3841;
}
.simp-load .simp-progress::-moz-range-track {
	background: #2f3841;
}
.simp-loading .simp-progress::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, .25);
}
.simp-loading .simp-progress::-moz-range-track {
	background: rgba(255, 255, 255, .25);
}
.simp-controls input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	background: var(--light);
	height: 13px;
	width: 13px;
	margin-top: -4px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(47, 52, 61, .2);
}
.simp-controls input[type=range]::-moz-range-thumb {
	-webkit-appearance: none;
	background: var(--light);
	height: 13px;
	width: 13px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .15), 0 0 0 1px rgba(47, 52, 61, .2);
}
.simp-footer {
	padding: 10px 10px 12px;
	font-size: 90%;
	text-align: center;
	opacity: .7;
}
.simp-display {
    overflow: hidden;
    transition: max-height .5s ease-in-out;
    flex: 1;
    max-height: 70vh;
}
.simp-hide {
	max-height: 0;
}
/* playlist */
.simp-playlist {
    position: absolute;
    bottom: 100px;
}
.simple-audio-player li {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	margin: 0;
	padding: 8px 20px;
	cursor: pointer;
	color: var(--light);
}
.simple-audio-player  li:last-child {
	padding-bottom: 13px;
}
/*#simp ul li:nth-child(odd) {
	background: #0e1621;
}*/
.simple-audio-player li:hover {
	background: var(--darkContrast);
	color: var(--light);
}
li.simp-active {
	background: var(--lightContrast);
	color: var(--dark);
}
li.simp-active::before {
	content: "\1F39C";
    color: var(--light);
    font-size: 1.5em;
}
.simp-desc {
	font-size: 90%;
	opacity: .5;
	margin-left: 5px;
}
/* playlist scrollbar */

.simple-audio-player ul {
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-color: #73797f #2f3841;
	background-color: var(--dark);
	margin: 5px 0 0;
	padding: 0;
	list-style: none;
}
.simple-audio-player ul::-webkit-scrollbar-track {
	background-color: var(--comp);
}
.simple-audio-player ul::-webkit-scrollbar {
	width: 6px;
	background-color: #2f3841;
}
.simple-audio-player ul::-webkit-scrollbar-thumb {
	background-color: #73797f;
}
.simp-info {
    flex: 1;
}
.simp-player {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
}
.simp-album {
    align-items: center;
}
/* progress animation */

@-webkit-keyframes audio-progress {
	to {
		background-position: 25px 0;
	}
}
@keyframes audio-progress {
	to {
		background-position: 25px 0;
	}
}
/* mobile */

/*@media screen and (max-width:480px) {
	#simp .simp-controls .simp-volume,
	#simp .simp-controls .simp-others {
		display: none;
	}
	#simp .simp-controls .simp-time {
		margin-right: 10px;
	}
}
@media screen and (max-width:370px) {
	#simp .simp-time .simp-slash,
	#simp .simp-time .end-time {
		display: none;
	}
}*/