/* Additional CSS Rules */
a.active{
	background-color: #182529 !important;
}
a.active:hover {
	background-color: #2E3A3D !important;
}
button.newSearch {
	float: right;
	font-size: 1em;
}
ul.problems {
	margin-bottom: 50px !important;
	height: 300px;
	border: 3px solid #182529;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 5px;
	scrollbar-color: #F5C968 #182529;
  scrollbar-width: auto;
}
*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #182529;
}
*::-webkit-scrollbar-thumb {
  background-color: #F5C968;
  border-radius: 20px;
  border: 3px solid #F5C968;
}
.controls button {
	width: 3em !important;
	height: 3em !important;
}

/*Entry Parsing*/
div.parse-entry {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid #182529;
}
div.parse-entry:last-child {
	border-bottom: none;
}
div.parse-entry span.term {
	font-weight: bold;
}
.pinned {
	background-color: #182529;
}
/* Admin Modals */
div.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}
div.modal .box {
	margin: 15% auto;
	padding: 0 0 20px;
	width: 80%;
}
div.modal-header {
	background-color: #F3AF1B;
	padding: 25px 25px 10px;
	border-radius: 5px 5px 0 0;
}
div.modal-header h3 {
	color: #ffffff;
}
div.modal-body {
	padding: 25px 25px 0;
}
div.modal .confirmation, div.modal .loading {
	width: 35% !important;
}
div.modal h3 i, #message h4 i {
	display: inline-block;
	margin-right: 15px;
}
div.notify {
	background-color: #F3AF1B;
	color: #ffffff;
	font-weight: bold;
	border-radius: 5px;
	padding: 0 10px;
}
div.notify i {
	float: right;
	cursor: pointer;
	margin-top: 6px;
}
/* Suggestions */
div.suggestion-list {
  float: left !important;
	position: absolute !important;
	display: none;
	z-index: 100 !important;
  background-color: #fff;
  border-radius: 6px;
	border-color: #F3AF1B;
	box-shadow: 0 0 0 2px #F3AF1B;
}
div.suggestion-list > ul.suggestions {
	list-style: none !important;
	margin-left: -1em !important;
	margin-bottom: 0 !important;
}
li.suggest-album-item, li.suggest-artist-item, li.suggest-title-item {
	padding: 0 1em;
}
li.suggest-album-item:hover, li.suggest-artist-item:hover, li.suggest-title-item:hover {
	background-color: #F3AF1B;
	cursor: pointer;
}