:root{
    --spotifyGreen:#1DB954;
    --primaryColor: black;
    --secondaryColor:rgb(25, 20, 20);
    --accentColor:#ffcc00;
    --tetriaryColor:#aa7700;
    --textColor:white;
}
* {
    box-sizing: border-box;
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
}
*::-webkit-scrollbar {
	display: none;
}
body{
    border:0;
    margin:0;
    padding:0;
    height:100vh;
    width:100vw;
    font-size:12px;
    font-family:sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--primaryColor);
    color:var(--textColor);
    overflow:hidden;
}
#waitPlate{
    background-color: black;
    z-index: 500;
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    transition: opacity 1s linear;
}
#login{
    background-color: black;
    z-index: 50;
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    transition: opacity 1s linear;
    top:0;
    display:flex;
    flex-flow:column;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    font-size: 4em;
}
#login #logo{
    position: relative;
    width: min-content;
    height: min-content;
    color:black;
}
#login #logo span{
    color:white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 55;
}
#login #logo span:nth-child(2){
    color:#3580a4;
    z-index: 54;
}
#login #logo span:nth-child(3){
    color:#61ab91;
    z-index: 53;
}
#login #logo span:nth-child(4){
    color:#9dd085;
    z-index: 52;
}
#login #logo span:nth-child(5){
    color:#d9e78c;
    z-index: 51;
}
#login label{
    font-size: 0.5em;
}
#settings{
	position:absolute;

	width:100%;
	height:100%;
	transition: opacity .5s ease;

    display:flex;
    flex-direction: column;
	font-family: monospace;
}
#settings > div{
	width:100%;
	height:95%;
    position:relative;
    color:white;
}
#settings > button{
	position: absolute;
	bottom:16px;
	right:16px;
	z-index:10;
}
#settings > div > div:first-child {
    z-index:5;
}
#settings > div > div{
	position: absolute;
	width:100%;
	height:100%;
	background-color: #2c2f33;
	border-radius: 0px 0px 16px 16px;
	border:black solid 2px;
	display:flex;
	flex-direction: column;
	padding:16px;
}
#settings > div > div > h3 {
	position:absolute;
	left:0;
	top:0;
	background-color: #2c2f33;
	margin:0px;
	transform: translateY(calc(-100%));
	width:min-content;
	border:1px black solid;
	border-bottom-width: 0px;
	border-radius: 4px 4px 0 0;
    font-size: 1.25em;
    white-space: nowrap;
    padding:2px;
}
#settings > div > #restoretoDefault > h3{
    text-decoration: underline;
}
#settings > div > div > div{
    overflow-y:scroll;
    height:90%;
}
#settings > div > div > div> div{
    overflow-y:hidden;
	border:black solid;
	border-width: 2px 0 0 0;
}
#settings > div > div > div> div > h5{
    font-size: 32px;
    margin:0;
    padding: 16px 0;
    border:solid black 0;
    border-bottom-width: 2px;
    box-sizing: content-box;
}
#settings > div > div > div > div > div{
	border:black solid;
	border-width: 2px 0 0 0;
	padding:4px 20px 4px 4px;
    display:flex;
    align-items: center;
    justify-content:space-between;
    font-size: 1.5em;
    position: relative;

}
#settings > div > div > div > div > div > a{
    position:absolute;
    right:0;
}
#settings a:visited{
    color:#0066cc;
}
#settings > div > div > div > div > div:last-child{
	border-width:2px 0;
}
#settings .radio label{
	border:black solid;
    padding-right:3px;
	border-width:0 1px 0 0;
    margin-top: 3px;
}
#settings .radio label:last-child{
	border:black solid;
	border-width: 0;
}
#settings .radio div{
	border:black solid;
	border-width:0 0 1px 0;
    margin-bottom: 3px;
}
#settings .radio input{
    margin-left:3px;
}
#settings input, #settings select, #settings button{
    padding:2px;
    background-color: white;
    border-color:#ffcc00;
    border-radius: 4px;
    font-size:1em;
    margin:5px;
}
#settings input[type="text"]{
    min-width:192px;
    width: fit-content;
}
#settings input[type="checkbox"]{
    height:32px;
    width:32px;
}
#settings > div > div > div > div > #themes{
    justify-content: flex-start;
    gap:16px;
}
#settings > div > div > div > div > #themes > div{
    position: relative;
    border-width: 0 ;
}
#settings h4{
    margin:0;
    padding: 8px 0 24px 0;
    height:48px;
    font-size: 48px;
    border:solid black 0;
    border-bottom-width: 4px;
    box-sizing: content-box;
}
#colorDiv{
    flex-flow:column nowrap;
}
#colorPicker {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width:100%;
    height:300px;
}
#colorPalette {
    position: relative;
    width: 200px;
    height: fit-content;
    cursor: crosshair;
}
#colorCanvas {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
}
#colorPalette p{
    margin-bottom: 0;
}
#colorSelector {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-6px, -6px);
    pointer-events: none;
    box-shadow: 0 0 3px #000;
}
#colorOpacity {
    width: 100%;
}
#colorView {
    position: relative;
    height:100%;
    flex:1;
    display:flex;
    flex-flow:column nowrap;
}
#colorText{
    display:flex;
}
#colorText > div{
    flex:1;
    position:relative;
}
#colorText > div > input[type="text"]{
    width:90%;
    position: absolute;
    top:0;
    right:0;
    display:none;
    text-align: end;
}
#colorText > #colorDropdown{
    width: fit-content;
}
#colorPreview{
    flex:1;
    display:flex;
    flex-flow: column nowrap;
}
#colorPreviewDisplay{
    flex:1;
    display:flex;
    flex-flow: column nowrap;
    justify-content: space-around;
    align-items: center;
}
#colorPreviewDisplay > div{
    border-radius: 4px;
    border: solid 2px;
    width:80%;
    height:35%;
    color:var(--textColor);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#colorPreviewDisplay > #colorPreviewPrimary{
    background-color: var(--primaryColor);
    border-color:var(--accentColor);
}
#colorPreviewDisplay > #colorPreviewSecondary{
    background-color: var(--secondaryColor);
    border-color:var(--tetriaryColor);
}
#colorPreviewButtons{
    display:flex;
    justify-content: center;
    align-items: center;
}
