.track > div {
	display: inline-block;
	vertical-align: middle;
}

.num {
	margin-top: 10px;
	text-align: left;
	font-size: 18; 
	border-top: .5px solid #999999;
	padding-top: 5px;
	margin-left: 3%;
	margin-right: 5%;
}

img {
	height: 80;
	width: 80;
}

.text {
	margin-left: 5%;
	width: calc(88% - 70px);
	white-space: normal;
}

.name {
	font-size: 18;
	color: white;
	margin-bottom: 8px;
}

.artist {
	font-weight: 300;
}

.track {
	margin-top: 20px;
	white-space: nowrap;
	margin-left: 7%;
}

#search-bar {
    background-color: black;
    border: 0;
    font-size: 16px;
    padding: 12px 60px 12px 40px;
    color: white;
    margin-top: 15px;
    margin-left: 2%;
    background-image: url('/filter.svg');
    background-position: 10px 11px;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border-radius: 8px;
}

#root-left {
	float: left;
	width: 50%;
	overflow: auto;
	height: 100%;
}

.album-top-title, .artist-top-title {
	padding-top: 15px;
	padding-bottom: 20px;
	margin-left: 5%;
}

.top-artists, .top-albums {
	margin-left: 5%;
	padding-bottom: 20px;
}

.rank {
	margin-bottom: 10px;
	white-space: nowrap;
}

.right-num {
	display: inline-block;
	width: 20px;
	text-align: right;
}

.right-name {
	display: inline-block;
	margin-left: 5%;
	color: white;
	font-weight: 300;
}

#root-right {
	width: 50%;
	float: right;
	overflow: auto;
	height: 100%;
}

body, html {
	background-color: #161616;
	color: #BBBBBB;
	font-family: "Lato", sans-serif;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body::-webkit-scrollbar {
	display: none;
}

@media screen and (max-width: 900px) {

	img {
		height: 60;
		width: 60;
	}
}

@media screen and (max-width: 700px) {
	
	#root-left, #root-right {
		width: 100%;
	}
	
	#root-right {
	    display: none;
	}
}

@media screen and (max-width: 450px) {

	.num, .name {
		font-size: 14;
	}

	.artist {
		font-size: 12;
	}
}
