html, body {
	padding: 0;
	margin: 0;
	height: 100%;
}

*:focus {
    outline: none;
}

* {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #ffe86a;
    letter-spacing: 1px;
}

body {
    background-color: #565050;
    font-size: 14px;
    /* min-width: 720px; */
	width:100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

#nowPlayingBarContainer {
	width: 100%;
    background-color: #282828;
    bottom: 0;
    position: fixed;
    /* min-width: 480px; */
	z-index:2;
}

#nowPlayingBar {
	display: flex;
    height: 90px;
	width:100%;
    padding: 16px;
    box-sizing: border-box;
	z-index:10;
}

#nowPlayingLeft,
#nowPlayingRight {
	width: 30%;
    min-width: 180px;
}

#nowPlayingRight {
	position: relative;
    margin-top: 16px;
}

#nowPlayingCenter {
	width: 40%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nowPlayingBar .content {
	width: 100%;
	height: 57px;
}

.playerControls .buttons {
	margin: 0 auto;
    display: table;
}

.controlButton {
	background-color: transparent;
    border: none;
    vertical-align: middle;
}

.controlButton img {
	width: 20px;
    height: 20px;
}

.controlButton.play img,
.controlButton.pause img {
	width: 32px;
	height: 32px;
}

.controlButton:hover {
	cursor: pointer;
}

.progressTime {
	color: #a0a0a0;
    font-size: 11px;
    min-width: 40px;
    text-align: center;
}

.playbackBar {
	display: flex;
}

.progressBar {
	width: 100%;
    height: 12px;
    display: inline-flex;
    cursor: pointer;
}

.progressBarBg {
	background-color: #404040;
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

.progress {
	background-color: #a0a0a0;
    height: 4px;
    width: 0;
    border-radius: 2px;
}

.playbackBar .progressBar {
	margin-top: 3px;
}

#nowPlayingLeft .albumArtwork {
	height: 100%;
    max-width: 57px;
    margin-right: 15px;
    float: left;
    background-size: cover;
}

#nowPlayingLeft .trackInfo {
	display: table;
}

#nowPlayingLeft .trackInfo .trackName {
    display: inline-block;
    width: 100%;
}

#nowPlayingLeft .trackInfo .artistName span {
	font-size: 12px;
    color: #a0a0a0;
}

.volumeBar {
	width: 180px;
    position: absolute;
    right: 0;
}

.volumeBar .progressBar {
	width: 125px;
}

#topContainer {
	min-height: 100%;
	width: 100%;
}

#navBarContainer {
	/* background:url("../images/sidenav.png");
	background-size: cover;
	background-position:top; */
	background:rgba(0,0,0,0.9);
    width: 220px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	border-right:1px solid black;
	z-index:1;
}

.navBar {
    padding: 25px;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}

.navBar .group {
    border-top: 1px solid #a0a0a0;
    padding: 10px 0;
}

.navItem {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    display: block;
    letter-spacing: 1px;
    position: relative;
}

.navItemLink {
    color: #a0a0a0;
    text-decoration: none;
	padding-left:5px;
}

.navItemLink:hover {
    color: #ffffff;
}

.navItemLink .icon {
    position: absolute;
    right: 0;
    top: 6px;
    width: 25px;
}

#mainViewContainer {
    /* margin-left: 220px; */
	margin-left:64px;
    padding-bottom: 90px;
    /* width: calc(100% - 220px); */
	width: calc(100% - 64px);
	transition: 0.5s;
}

.pageHeadingBig {
    padding: 20px;
    text-align: center;
	color:#ffe86a;
}
.gridViewContainer{
	width:auto;
	padding-left:6%;
	padding-right:6%;
}

.gridViewItem {
    display: inline-block;
    margin-right: 20px;
    width: 29%;
    max-width: 200px;
    /* min-width: 150px; */
    margin-bottom: 20px;
}

.gridViewItem img {
    width: 100%;
}

.gridViewInfo {
    font-weight: 300;
    text-align: center;
    padding: 5px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.gridViewItem a {
    text-decoration: none;
}

.entityInfo {
    padding: 40px 0 10px 0;		/* 40px 0 10px 0*/
    display: inline-block;
	padding:0px;
    width: 100%;
	position:relative;
}

.entityInfo .leftSection {
    width: 30%;
    float: left;
    max-width: 250px;
}

.entityInfo .leftSection img {
    width: 100%;
}

.entityInfo .rightSection {
    width: 70%;
    float: left;
    padding: 5px 10px 5px 40px;
    box-sizing: border-box;
}

.entityInfo .rightSection h2 {
    margin-top: 0px;
}

.entityInfo .rightSection p {
    color: #939393;
    font-weight: 200;
}

.tracklist {
    padding: 0;
}

.tracklistRow {
    height: 40px;
    padding: 15px 10px;
    list-style: none;
}

.tracklistRow span {
    color: #939393;
    font-weight: 200;
}

.tracklistRow:hover {
    background-color: #282828;
}

.tracklistRow .trackCount {
    width: 10%;
    float: left;
	clear:both; /*added by JD 07.04.2020*/
}

.tracklistRow .trackCount img {
    width: 20px;
    visibility: hidden;
    position: absolute;
    cursor: pointer;
}

.tracklistRow:hover .trackCount img {
    visibility: visible;
}

.tracklistRow .trackCount span {
    visibility: visible;
}

.tracklistRow:hover .trackCount span {
    visibility: hidden;
}

.tracklistRow .trackInfo {
    width: 75%;
    float: left;
}

.tracklistRow .trackInfo span {
    display: block;
}

.tracklistRow .trackOptions {
    width: 20%;
    float: left;
    text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tracklistRow .trackOptions img {
    width: 15px;
    visibility: hidden;
}

.tracklistRow:hover .trackOptions img {
    visibility: visible;
}

.tracklistRow .trackDuration {
    width: 10%;
    float: left;
    text-align: center;
}

.tracklistRow .trackInfo .trackName {
    color: #fff;
    margin-bottom: 7px;
}

.artistInfo {
    text-align: center;				
}

.button {
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: transparent;
    font-weight: 500;
    letter-spacing: 2px;
    border: 4px solid #FFFF66;
    border-radius: 500px;
    padding: 15px;
	min-width:100px;
	max-width:150px;
	background-color: #FFC000;
}

.borderBottom {
    border-bottom: 1px solid #939393;
    margin-bottom: 20px;
}
.artistsContainer{
	padding: 0 22px;
}
.albumsContainer{
	padding: 0 22px;
}

.tracklistContainer h2,
.gridViewContainer h2,
.artistsContainer h2 {
    /* text-align: center; */
}

[role="link"] {
    cursor: pointer;
}

.searchContainer {
    background-color: #242424;
    padding: 20px 28px;
}

.searchContainer h4 {
    margin: 0;
    font-weight: 300;
}

.searchContainer .searchInput {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 2px;
    margin-top: 5px;
}

input:focus {
    outline: none;
}

.searchResultRow {
    padding: 15px 10px;
}

.searchResultRow:hover {
    background-color: #282828;
}

.searchResultRow .artistName span {
    color: #fff;
}

.noResults {
    margin: 15px;
    display: block;
}

.buttonItems .button {
    display: block;
    margin: 0 auto 20px auto;
}

.playlistsContainer {
    padding: 10px 0;
}


.playlistImage {
    border: 3px solid #282828;
    padding: 10px;
}

.optionsMenu {
    position: fixed;
    background-color: #282828;
    width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    z-index: 1000;
    display: none;
}

.optionsMenu .item {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    font-weight: 400;
    color: rgba(147, 147, 147, 0.8);
    cursor: pointer;
    height: 40px;
    background-color: #282828;
    font-size: 14px;
}

.optionsMenu .item:hover {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

.optionsMenu select {
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.userInfo h1 {
    text-align: center;
}

.userDetails {
    padding: 20px;
}

.userDetails .container h2 {
    text-align: center;
}

.userDetails .container input[type="text"],
.userDetails .container input[type="password"],
.userDetails .container .button {
    display: block;
    margin: 16px auto;
}

.userDetails .container input[type="text"],
.userDetails .container input[type="password"] {
    height: 50px;
    width: 100%;
    background: rgba(0,0,0,0.8);
    border: none;
    font-size: 18px;
    font-weight: 300;
    padding: 0 20px;
}

.userDetails .container .message {
    color: #2ebd59;
    font-weight: 300;
}

.bandDetails {
    padding: 20px;
}

.bandDetails .container h2 {
    text-align: center;
}

.bandDetails .container input[type="text"],
.bandDetails .container input[type="password"],
.bandDetails .container .button {
    display: block;
    margin: 16px auto;
}

.bandDetails .container input[type="text"],
.bandDetails .container input[type="password"] {
    height: 50px;
    width: 100%;
    background: rgba(0,0,0,0.8);
    border: none;
    font-size: 18px;
    font-weight: 300;
    padding: 0 20px;
}

.bandDetails .container .message {
    color: #2ebd59;
    font-weight: 300;
}

.artistNameCustom{
	position:absolute;
	top:55%;
	z-index:6;
}
.artistheader{
	height:40%;
	overflow:hidden;
	position:relative;
	z-index:0;
}
.artistpicture img{
	width:100%;
	background-position: bottom;
	background-size:cover;
	position:absolute;
	z-index:0;
}
.artistNameSmallCustom{
	font-size:18px;
	color:#ffd800;
	text-shadow:1px 1px 1px black;
}
.artistNameSmallCustom:hover{
	font-weight:bold;
}
.artistNameCustom h1{
	margin:0px;
	padding:0px;
	/* display:inline-block; */
	font-size:54px;
	/* background-color:rgba(255,255,255,0.8); */
	/* border:1px solid white; */
	padding-left:25px;
	width:100%;
	color:white;
	font-weight:bold;
	/* text-shadow:1px 1px 1px yellow; */
}

.descriptionButtonCustom{
	padding:0px;
	position:relative;
	display:inline-block;
	padding-left:25px;
	bottom:0%;
	top:77%;
	z-index:8;
}
.artistInfoCustom{
	float:left;
	padding:0px;
	position:absolute;
	padding-left:25px;
	padding-right:25px;
	bottom:0%;
	top:45%;
	z-index:8;
	width:90%;
}
.artistButtonCustom{
	float:left;
	padding:0px;
	position:absolute;
	padding-left:25px;
	padding-right:25px;
	bottom:0%;
	top:85%;
	z-index:8;
	width:90%;
}
.artistButtonCustom .button{
	border:1px solid black;
	color:black;
	font-weight:bold;
	margin-top:-20px;
}
/* .button:hover{
	background:#DAA400;
	text-decoration:underline;
} */
.gradient{
	width:100%;
	height:100%;
	position:absolute;
	z-index:5;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,232121+100&0+2,1+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(1,1,1,0) 2%, rgba(35,33,33,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(1,1,1,0) 2%,rgba(35,33,33,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(1,1,1,0) 2%,rgba(35,33,33,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#232121',GradientType=0 ); /* IE6-9 */
}

.ad{
	width: calc(100% - 64px);
	height:75px;
	position:fixed;
	left:64px;
	bottom:90px;
	text-align:center;
	box-sizing:border-box;
	display:block;
	background:#111010;
	border-top:1px solid black;
	z-index:8;
}
.album{
	display:block;
	position:fixed;
	right:0;
	top:0;
	width:17%;
	margin:0 auto;
	text-align:center;
	background:black;
	padding-top:15px;
}
.left{
	opacity:0;
	position:absolute;
	z-index:12;
	float: left;
	width: 30px;
	text-align: center;
	left:0%;
	width:50px;
	top:7%;
}
.right{
	opacity:0;
	position:absolute;
	z-index:12;
	float: left;
	width: 30px;
	text-align: center;
	right:0%;
	width:50px;
	top:7%;
}
.albumBar{
	display:block;
	/* position:absolute; */
	position:fixed;
	right:0;
	top:8%;
	width:17%;
	background:black;
	clear:both;
	min-height:400px;
	/* height:auto; */
	/* height:auto !important;  */
	height:calc(100% - 245px);
	/* overflow:auto; */
	/* height: calc(100vh + 127px); */
	display: flex;
    flex-direction: column;
	padding-bottom:165px!important;
	overflow-y: scroll;
	overflow-x: hidden;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.albumBar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE and Edge */
.albumBar {
    -ms-overflow-style: none;
}
.albumBar div{
	text-align:center;
	display:block;
	margin:auto;
	width:80%;
	padding-bottom:15px;
}
.albumBar h2{
	text-align:center;
}	
.playlist{
	background-color:black!important;
}
.nav-icon-search{
	content: url("../../assets/images/icons/search.png");
}
.nav-icon-search:hover{
	content: url("../../assets/images/icons/searchhover.png");
}
.nav-icon-bands{
	content: url("../../assets/images/icons/bands.png");
}
.nav-icon-bands:hover{
	content: url("../../assets/images/icons/bandshover.png");
}
.nav-icon-songs{
	content: url("../../assets/images/icons/songs.png");
}
.nav-icon-songs:hover{
	content: url("../../assets/images/icons/songshover.png"); 
}
.nav-icon-playlist{
	content: url("../../assets/images/icons/playlist.png");
}
.nav-icon-playlist:hover{
	content: url("../../assets/images/icons/playlisthover.png"); 
}
.nav-icon-band{
	width:35px;
	height:35px;
	border-radius:50%;
	float:left
}
.nav-icon-band:hover{
	box-shadow: inset 0 0 0 10px rgba(0, 255, 0, 0.5);
}
.nav-icon-feedback{
	content: url("../../assets/images/icons/feedback.png");
}
.nav-icon-feedback:hover{
	content: url("../../assets/images/icons/feedbackhover.png"); 
}
.nav-icon-logout{
	content: url("../../assets/images/icons/logout.png");
}
.nav-icon-logout:hover{
	content: url("../../assets/images/icons/logouthover2.png"); 
	transition:2s;
}

.nav-icon{
	width:35px;
	float:left;
}
.select option{
	background:black!important;
}

/* Volume Bar */
 
/* Volume Bar */

@media only screen and (max-width: 1081px) {
	.pictureDetails{
		width:42%!important;
	}
	.bandDetails{
		width:42%!important;
	}
	.artistNameCustom{
		top:43%!important;
	}
}
@media only screen and (max-width: 767px) {
	.albumInformationWrapper{
		margin:1% 9%;
	}
	body{
		font-size:10px;
		height: 100%;
		margin: 0px;
		padding: 0px;
	}
	.hvrbox .hvrbox-text{
		font-size:12px!important;
	}
	.ad{
		height:50px;
	}
	.hvrbox .hvrbox-layer_middle{
		height:16%!important;
	}
	.tracklistRow{
		width:96%;
	}
	.artistButtonCustom{
		padding-left:10px!important;
	}
	.artistheader{
		width:100%!important;
		min-height:200px;
		max-height:30%;
	}
	.gradient{
		width:100%;
		height:auto;
	}
	.innerWrapperArtist{
		width:100%!important;
	}
	.button{
		min-width: 50px;
		max-width: 100px;
		letter-spacing:0px;
		font-size:8px;
	}
	.album{
		display:block;
		margin:0 auto;
		text-align:center;
		background:black;
		padding-top:15px;
		position:relative;
		width:100%;
	}
	.albumBar{
		position:relative;
		width:calc(100% - 2%);
		display:inline-block;
		min-height:auto;
		margin:0 auto;
		/* height: 25px!important; */
		height: 70px!important;
		white-space: nowrap;
		padding-bottom:60px;
		overflow:scroll;
		overflow-x:scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		/* text-overflow:ellipsis; */
	}
	.gridViewItem{
		/* width:calc(96% / 2)!important; */
		/* float:left; */
		margin:7px;
		width:43%!important;
	}
	.albumBar div {
		display:inline-block;
		margin:0;
		width:inherit;
		padding-left:6%;
	}
	.artistInfoCustom{
		top:40%;
	}
	.artistButtonCustom{
		top: 82%!important;
		/* height:200px; */
	}

	.editAlbum label{
		width:225px!important;
	}
	.input-transparent{
		width:225px!important;
	}

	.tracklistRow .trackOptions input{
		width:30px!important;
		height:30px!important;
	}
	.newAlbum{
		/* text-align:center; */
		margin:0 auto;
		width:100%!important;
	}
	/* .newAlbum select{ */
		/* width:100%!important; */
	/* } */
	.newAlbum label {
		width:225px!important;
	}
	.albumBar h2{
		font-size:20px;
	}
	.left{
		opacity:1;
		position:absolute;
		z-index:12;
		float: left;
		width: 30px;
		text-align: center;
		left:0%;
		width:50px;
		top:7%;
	}
	.right{
		opacity:1;
		position:absolute;
		z-index:12;
	    float: left;
		width: 30px;
		text-align: center;
		right:0%;
		width:50px;
		top:7%;
	}
	.tracklistRow .trackOptions{
		width:20%!important;
	}	
	.tracklistRow .trackDuration{
		width:20%!important;
		text-align:center;
	}
	.tracklistRow .trackInfo {
		width:70%!important;
	}
	.tracklistRow .trackInfo:hover {
		overflow:visible;
	}
	.addAlbum{
		width:29%!important;
	}
	#inputContainer{
		float:none;
		width:auto;
		border-right:none;
	}
	.hvrbox-layer_middle img{
		max-width:40%!important;
	}
	.profilepicture{
		width:150px!important;
		height:150px!important;
	}
	.pictureDetails{
		width:42%!important;
	}
	.bandDetails{
		width:42%!important;
	}
/* 	#nowPlayingLeft{
		width:40%;
		max-width:40%;
		min-width:40%;
	}
	#nowPlayingCenter{
		margin-top: 20px;
		width:40%;
		max-width:40%;
		min-width:40%;
	}
	#nowPlayingRight{
		width:20%;
		max-width:20%;
		min-width:20%;
	}
	.volumeBar {
		width:75%;
	}
	.volumeBar .progressBar{
		width:30px;
	} */

}
@media only screen and (max-width: 600px) {
	.albumInformationWrapper{
		position:absolute;
		padding-left:-1px;
		width:100%!important;
		margin:1% 15%;
	}
	.custom-row{
		height:6%!important;
	}
	.artistNameCustom{
		top:52%!important;
		padding-left:10px!important;
	}
	.artistNameCustom h1{
		font-size:28px;
		overflow:hidden;
		white-space:nowrap;
		text-overflow:ellipsis;
		padding:0px;
	}
	.tracklistRow .trackDuration{
		text-align:center;
	}
	.tracklistRow .trackInfo .trackName{
		overflow:hidden;
		white-space:nowrap;
		text-overflow: ellipsis; 
	}
	.tracklistRow .trackInfo .artistName{
		overflow:hidden;
		white-space:nowrap;
		text-overflow: ellipsis; 
	}
	.tracklistRow .trackOptions input {
		width:25px!important;
		height:25px!important;
	}
	.userDetailsWrapper{
		margin-bottom: 135px;
		height:100%!important;
		padding-bottom:135px;
	}
	#nowPlayingBar{
		z-index:10;
	}
	#nowPlayingLeft{
		width:20%;
		max-width:20%;
		min-width:20%;
	}
	#nowPlayingCenter{
		margin-top: 20px;
		width:60%;
		max-width:60%;
		min-width:60%;
	}
	#nowPlayingRight{
		width:20%;
		max-width:20%;
		min-width:20%;
	}
	.volumeBar {
		margin-top:20px;
		width:100%;
	}
	.volumeBar button{
		padding:0px;
	}	
	.volumeBar .progressBar{
		min-width:20px;
		width:33px;
	}
	#nowPlayingLeft .trackInfo{
		margin-left:74px;
		width:calc(100% - 74px);
		position:absolute;
		text-align:left;
		font-size:20px;
		line-height:0.7em;
		letter-spacing:1px;
	}
	#nowPlayingLeft .trackInfo .artistName{
		padding-left:5px;
		position:relative;
		white-space: nowrap; 
		width: auto; 
		max-width: 48%; 
		overflow: hidden;
		text-overflow: ellipsis; 
		display:inline-block;
	}
	#nowPlayingLeft .trackInfo .trackName{
		clear:both;
		position:relative;
		white-space: nowrap; 
		width: auto; 
		max-width: 48%; 
		overflow: hidden;
		text-overflow: ellipsis; 
		display:inline-block;
	}
	#nowPlayingLeft .trackInfo .trackName:hover{
		overflow:visible;
	}
	#nowPlayingLeft .trackInfo .artistName:hover{
		/* overflow:visible; */
	}
	.gridViewInfo{
		font-size:15px!important;
	}
	.gridViewItem{
		margin:7px;
		width:100%!important;
	}
	.artistpicture img {
		height:100%;
		width:auto;
	}
	.albumPicture{
		width:70%!important;
	}
	.albumInformation{
		width:95%!important;
	}
	.albumPictureWrapper{
		width:100%!important;
	}
	.pictureDetails{
		width:84%!important;
	}
	.bandDetails{
		width:84%!important;
	}
	/* .button{ */
		/* max-width:50px!important; */
	/* } */
}