﻿#card {
	height: 100% !important;
  	justify-content: center;
  	align-items: stretch;
	}

#card #display { 
	float: left !important; 
	left: 0; 
	margin-left: 0px; 
 	width: auto;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  	padding: 1em;  
	padding-top: 4em; 
	}

#card #display > * {
  	text-align: center;  
	}

#card #display #art {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto; 
	
}




#card #display #art {
  	--s: 1px; /* control the size */
  	padding: var(--s);
  	border: calc(3*var(--s)) solid #856088;
  	outline: 1px solid #B1D4E0;
  	outline-offset: calc(-1*var(--s));
  	background: conic-gradient(from 90deg at 1px 1px,#B1D4E0  25%,#B1D4E0 0);
	box-shadow: rgb(85, 91, 255) 0px 0px 0px 1px, rgb(31, 193, 27) 0px 0px 0px 1px, rgb(255, 217, 19) 0px 0px 0px 1px, rgb(255, 156, 85) 0px 0px 0px 2px, rgb(177, 212, 224) 0px 0px 0px 4px;
	}












/** PLAYLIST********************************************/
#card #list {
  width: 40%;
  background: transparent;
  display: flex;
  flex-direction: column;
	box-sizing: border-box;
	clear: both; 
}

#card #list .item {
	color: #CCC; 
  padding: 0 1em;
  transition: all 0.3s ease;  
}

#card #list .item:first-of-type {
  	border-radius: 0 20px 0 0;
	}

#card #list .item:last-of-type {
  	border-radius: 0 0 20px 0; 
	}

#card #list .item.is-active {
	color: #800080;
	background:rgba(255,255,255,.2);   
  	transition: all 0.3s ease;
	}

#card #list .item:hover {
	color: #002080;
  	cursor: pointer;
  	background: rgba(255, 255, 255, 0.5);
	}