@import url("https://dashboard.deltaplayer.net/DeltaPlayer/player/components/JiggleComponent/jiggle.css");

:root {
  --primary-color: #e3b282;
  --secondary-color: #BA8A5B;
  --old-primary-color: transparent;
  --old-secondary-color: #6c6c8b;
  --button-color: #2E3238;
  --default-offset: -17px;

  --jiggle-strength: 1.4;
}



.compareWidgetContainer {
	margin-top: 250px;
	display: flex;
	justify-content: center;
	width: 100%;
}

#currentTime {
	margin: 0 5px 0 5px;
}

#allPlayers {
	width: 100%;
	margin: auto;
}

.player-background {
	background: linear-gradient(180deg, rgba(70,72,102,1) 0%, #675c69 100%);
	border: 4px solid var(--old-secondary-color);
	border-radius: 20px;
	box-shadow: rgba(246, 177, 122, 0.4) 0px 5px, rgba(246, 177, 122, 0.3) 0px 10px, rgba(246, 177, 122, 0.2) 0px 15px, rgba(246, 177, 122, 0.1) 0px 20px, rgba(246, 177, 122, 0.05) 0px 25px;
}

.audio-player {
	-webkit-transition: .4s;
	transition: .4s;
	padding: 15px 20px;
	margin: auto;
	background-color: #ffd005;
	display: flex;
	flex-direction: column;
	border-radius: 20px 20px 0 0;
}

.audio-player .player-controls {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
}

.audio-player #playAudio {
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
	border: none;
	width: 30px;
	min-width: 20px;
	height: 30px;
	background: url('https://img.icons8.com/fluency-systems-filled/96/null/play.png') no-repeat center;
	background-size: contain;
	background-color: transparent;
	-webkit-transition: .4s;
	transition: .4s;
	margin-right: 5px;

}

.audio-player #playAudio.pause {
	background: url('https://img.icons8.com/fluency-systems-filled/96/null/pause.png') no-repeat center;
	background-size: contain;
}

.audio-player p {
	margin: 0 0 0 5px;
	line-height: 1;
	display: inline-flex;

	-webkit-transition: .4s;
	transition: .4s;
}

.audio-player .seekContainer {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.audio-player #seekObjContainer {
	position: relative;
	width: 300px;
	margin: 0 5px;
	height: 5px;
}

.audio-player img {
	height: 250px;
  width: 250px;
  margin: 0 auto;
  margin: auto;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: 0 0 10px #120808;
}

.audio-player #seekObjContainer #seekObj {
	-webkit-transition: .4s;
	transition: .4s;
	position: relative;
	width: 100%;
	height: 100%;
}

.audio-player #seekObjContainer #seekObj #percentage {
	-webkit-transition: .4s;
	transition: .4s;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.audio-player #switchContainer p#after {
	font-size: 11px;
	margin-top: -15px;
	margin-bottom: 5px;
	align-items: center;
	width: 100%;
}

.audio-player #switchContainer p#before {
	font-size: 11px;
	margin-top: 8px;
	margin-left: 2px;
	margin-bottom: 5px;
	text-align: center;
}

/* STYLES FOR THE TOGGLESWITCH */
.switch {
	position: relative;
	display: block;
	width: 25px;
	height: 45px;
	margin: auto;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2.5px;
	bottom: 5px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateY(-17px);
	-ms-transform: translateY(-17px);
	transform: translateY(-17px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 17px;
}

.slider.round:before {
	border-radius: 50%;
}


/* SONG BUTTONS */

#songButtons {
	display: flex;
	flex-wrap: wrap;  
	margin-bottom: 20px;
}

#songButtons .songButton {
	cursor: pointer;
	align-items: center;
	display: flex;
	position: relative;
	width: 33.333%;
	height: 0;
	padding-bottom: 33.333%;
	justify-content: center;
}


#songButtons .songButton div#playAudio {
	background: none;
	border: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s ease-in-out, width 0.2s ease-in-out, height 0.2s ease-in-out;
}

#songButtons .songButton div#playAudio .cover-image{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	filter: grayscale();
}

#songButtons .songButton.active div#playAudio .cover-image{
	filter: grayscale(0);
	box-shadow: 0px 12px 46px #0000005c;
}


#versionText {
	min-width: 58px;
	text-align: left;
}

#compareWidget {
	max-width: 500px !important;
	width: 100%;
	border-radius: 12px;
	font-family: 'Geologica', sans-serif;
	font-size: 14px;
}

#playAudio {
	filter: invert(5%);
}

.audio-player {
	background-color: var(--primary-color);
	color: white
}

.audio-player .song-info {
	display: flex;
	gap: 21px;
	justify-content: center;
}

.audio-player .song-service {
	text-align: center;
}


.audio-player #playAudio::before {
	color: #2E3238
}

.audio-player input:checked+.slider {
	background-color: var(--secondary-color);
}

.audio-player input:checked+.slider:before {
	background-color: #F0F0F0
}

.audio-player #seekObj {
	background-color: var(--secondary-color);
}

.audio-player #seekObj #percentage {
	background-color: #FFF
}

.songButton {
	color: #F0F0F0;
	background-color: var(--old-primary-color);
	border-top: 0px solid #000000;
}

.songButton.active {
	background-color: var(--old-primary-color)
}

.songButton.hover {
	background-color: var(--old-primary-color) !important
}

.audio-player.old {
	background-color: var(--old-primary-color)
	color: #F0F0F0
}

.audio-player.old #playAudio::before {
	color: #F0F0F0
}

.audio-player.old .slider {
	background-color: #2E3238
}

.audio-player.old .slider:before {
	background-color: #F0F0F0
}

.audio-player.old #seekObj {
	background-color: #2E3238
}

.audio-player.old #seekObj #percentage {
	background-color: #BABABA
}


/* ICOSN */

.play-icon {            
    background-color: white;
    webkit-mask-image: url('data:image/svg+xml;utf8, <svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8.6 5.2A1 1 0 0 0 7 6v12a1 1 0 0 0 1.6.8l8-6a1 1 0 0 0 0-1.6l-8-6Z" clip-rule="evenodd"/></svg>');
    mask-image:  url('data:image/svg+xml;utf8, <svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8.6 5.2A1 1 0 0 0 7 6v12a1 1 0 0 0 1.6.8l8-6a1 1 0 0 0 0-1.6l-8-6Z" clip-rule="evenodd"/></svg>');
    width: 48px;
    height: 48px;
}

.pause-icon {            
    background-color: white;
    webkit-mask-image: url('data:image/svg+xml;utf8, <svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H8Zm7 0a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1Z" clip-rule="evenodd"/></svg>');
    mask-image: url('data:image/svg+xml;utf8, <svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M8 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H8Zm7 0a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1Z" clip-rule="evenodd"/></svg>');
    width: 48px;
    height: 48px;
}
