@font-face {
  font-family: 'Tauri';
  src: url('Tauri-Regular.ttf');
}

html,body {
	width: 100%;
	min-height: 100%;
	margin: 0;
}
body {
	font-family: "Tauri", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
}
#main {
	width: 100%;
	height: 100%;
	background: #222;
}

#dropdown {
	display: table;
	position: fixed;
	background: rgba(100,100,100,.5);
	height: 100%;
	width: 300px;	
	top:0;
	left:-280px;
	transition: left .2s, background .4s;
	color:white;
}
#dropdown:hover {
	left: 0;
	background: rgba(50,50,50,.98);
}
#dropdown.open {
	width: 500px;
}
#settings {
	position: absolute;
	text-align: left;
	overflow-y: auto;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	height: calc(100% - 40px);
}
#settings .setting-block {
	width: 230px; 
	padding: 5px;
}
#settings .title {
	font-size: 24px;
	color: #DD3333;
}
#settings .title .magenta {
	color: rgb(250,100,250);
}
#settings .title .green {
	color: rgb(0,180,80);
}
#settings .title .blue {
	color: rgb(0,100,250);
}

.chevron {
	display: table-cell;
	vertical-align: middle;
	width: 20px;
}
.chevron::before {
	content: "";
	border-color: rgba(200,200,200,.5);
	border-style: solid;
	border-width: 4px 4px 0 0;
	display: inline-block;
	height: 8px;
	right: 1px;
	position: relative;
	vertical-align: middle;
	width: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: transform .4s;
}
#dropdown:hover .chevron::before {
	transform: rotate(225deg);
	right:-2px;
}

@media (max-width: 1000px)  {
	#dropdown {
		width: 100%;
		height: 300px;
		left: 0;
		top: -280px;
		transition: top .2s, background .2s;
	}
	#dropdown:hover {
		top:0;
	}
	#dropdown #settings{
		height: 260px;
	}
	#settings .setting-block {
		display: table-cell;
	}
	.chevron {
		display: block;
		width: 100%;
		height: 20px;
		position: absolute;
		bottom: 0;
	}
	.chevron::before {
		-webkit-transform: rotate(135deg);
		right: 0;
		top: 2px;
	}
	#dropdown:hover .chevron::before {
		transform: rotate(315deg);
		top: 7px;
	}
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: rgb(60,60,60);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(120,120,120,0.7);
    border-radius: 10px;
}
