#Discover form {
  text-align: center;
}

#Discover .album .cover img {
  width: 100%;
}

/**
 *	Genre Chooser Overlay
 */
.artist-search-overlay {
	position: absolute;
	left: 0px;
	top: -100%;
	right: 0px;
	bottom: 100%;
	z-index: 10;
	overflow: hidden;
	background: rgba(0,0,0,0.87);
	opacity: 0.3;
	text-align: left;
	-webkit-transition: 0.2s all ease-in;
}
.artist-search-overlay .inside {
	padding: 0;
}
.artist-search-overlay.open {
	top: 0%;
	bottom: 0%;
	opacity: 1;
}
.artist-search-overlay h2 {
	font-size: 30px;
	font-weight: 200;
	line-height: 1;
	padding: 30px 0 0;
	margin: 0;
}
.artist-search-overlay ul {
	overflow: auto;
}
.artist-search-overlay ul,
.artist-search-overlay li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.artist-search-overlay li {
	font-size: 13px;
	line-height: 1.2;
	position: relative;
	padding: 7px 30px 8px 10px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	cursor: pointer;
}
.artist-search-overlay li:hover {
	background: rgba(255,255,255,0.1);
}
