/** @format */

* {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background-color: black;
	height: 100vh;
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
}

.main {
	width: 100%;
	height: 100vh;
	background-color: rgb(104, 104, 104);
	background-image: url(../img/backgroun-001.png);
	background-size: cover;
	background-position: center;
}

.logo {
	width: 80px;
	margin-left: 2%;
}

.logo img {
	width: 100%;
}

.main-menu {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	padding: 10px 0;
	background-color: transparent;
	height: 50px;
	z-index: 1000;
	transition: all 1s ease-in-out;
}

.content {
	position: absolute;
	top: 30%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.left-col {
	margin-left: 5%;
	width: 40%;
}

.left-col h1 {
	color: rgb(255, 255, 255);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 50px;
}

.right-col {
	width: 40%;
}

.right-col h1 {
	text-align: center;
	color: rgb(255, 255, 255);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin: auto;
}

.right-col #play {
	width: 100px;
	margin: 50px auto;
	cursor: pointer;
}

.track-container {
	width: 100%;
	background-color: rgb(0, 0, 0);
	display: flex;
}
.side-container {
	height: 100%;
	width: 20%;
	background-color: rgb(0, 0, 0);
	height: 100%;
	color: rgb(141, 141, 141);
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	align-items: center;
}

.sort-container {
	position: relative;
	margin: 25% auto;
	width: 60%;
	height: 70%;
	border-left: 1px solid rgb(87, 87, 87, 0.7);
	padding: 10px;
}

.sort-container a {
	color: rgb(155, 155, 155);
	text-decoration: none;
}

.sort-container p {
	color: #3d5b99;
}

.sort-container a:hover {
	color: rgb(100, 86, 3);
}

#song-name:hover,
#song-genre:hover,
#song-feeling:hover,
#stage-name:hover {
	color: rgb(95, 82, 9);
}

.music-list {
	height: 50vh;
	width: 50%;
	padding-bottom: 150px;
	padding-right: 50px;
	margin-top: 50px;
	background-color: rgb(0, 0, 0);
	overflow-y: scroll;
	scroll-behavior: smooth;
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background-color: rgb(59, 59, 59, 0.5);
}
::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: rgb(88, 88, 88, 0.5);
}

.track-top {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 20px;
}

.track-top #play,
.track #play {
	width: 35px;
	cursor: pointer;
	padding: 10px;
}

.track-top #play img,
.track #play img {
	width: 35px;
	cursor: pointer;
	padding: 10px;
}

.track-top p,
.track p {
	color: rgb(182, 182, 182);
	font-family: Arial, Helvetica, sans-serif;
	width: 150px;
	font-size: medium;
	padding: 10px;
}

.track {
	width: 100%;
	height: 70px;
	border-bottom: 0.2px solid rgb(119, 119, 119, 0.2);
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: rgb(85, 85, 85);
	font-family: Arial, Helvetica, sans-serif;
	transition: all 1s ease-in-out;
}

#song-name,
#song-genre,
#song-feeling,
#stage-name {
	cursor: pointer;
}

#icon {
	cursor: pointer;
	margin: 0px;
}

.audio-player {
	background-image: linear-gradient(rgb(255, 255, 255, 0), rgb(0, 0, 0) 45%);
	width: 100%;
	position: fixed;
	display: flex;
	bottom: -20vh;
	justify-content: space-around;
	align-items: center;
	left: 50%;
	transform: translateX(-50%);

	color: rgb(216, 216, 216);
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	z-index: 110;
	transition: all 1s ease-in-out;
}

.audio-player .play img {
	width: 40px;
	padding: 5px;
}

.artist-image {
	width: 10%;
	height: 160px;
	display: flex;
	align-items: center;
}

.artist-image img {
	width: 70%;
}

.play {
	width: 5%;
	display: flex;
	align-items: center;
}

.play #prev-icon {
	width: 30%;

	cursor: pointer;
}

.play #next-icon {
	width: 30%;
	cursor: pointer;
}

#thumbnail {
	width: 50px;

	padding: 10px;
	cursor: pointer;
}

.song-mood {
	width: 15%;
}

.song-mood p {
	color: rgb(77, 77, 77);
}

.progress-bar {
	width: 30%;
}

.song-volume {
	width: 10%;
}

.download-song {
	width: 3%;
}

.download-song img {
	width: 60%;
}
.bar-preg {
	height: 5px;
	width: 100%;
	background-color: rgb(44, 44, 44);
	border-radius: 5px 5px 5px 5px;

	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	cursor: pointer;
}

.bar-fill {
	height: 100%;
	width: 0%;
	background-color: #3d5b99;
	border-radius: 5px 5px 5px 5px;
	transition: 0.2s;
}

.littiDot,
.littiDotV {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #3d5b99;
	opacity: 0;
	transition: all 0.3s;
	margin-left: -3px;
}
.bar-preg:hover .littiDot {
	opacity: 1;
}

.bar-volume {
	height: 5px;
	width: 80%;
	background-color: rgb(44, 44, 44);
	border-radius: 5px 5px 5px 5px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	cursor: pointer;
}

.volume-fill {
	height: 100%;
	width: 30%;
	background-color: #3d5b99;
	border-radius: 5px 5px 5px 5px;
}

.bar-volume:hover .littiDotV {
	opacity: 1;
}

.time-report {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.searchbox-cont {
	width: 505px;
	margin-right: 5%;
	height: 35px;
	background-color: transparent;
	font-family: Arial, Helvetica, sans-serif;
	align-items: center;
	margin-top: 0px;
}

.searchbox-cont a {
	text-decoration: none;
	color: rgb(99, 99, 99);
	font-weight: bold;
	transition: 1s;
}

.searchbox-cont a:hover {
	color: rgb(150, 137, 27);
}

.search-box {
	width: 0px;
	height: 25px;
	border-radius: 10px 10px;
	background-color: transparent;
	margin-left: 3%;
	margin-bottom: 2%;
	color: rgb(165, 165, 165);
	font-size: larger;
	font-family: Arial, Helvetica, sans-serif;
	outline: none;
	padding: 0 40px 0 10px;
	border: none;
	transition: all 1s ease-in-out;
}

.search-icon {
	width: 18px;
	margin: -3px 00px;
	cursor: pointer;
}

.search-icon:hover {
	transform: scale(1.1);
}

.search-button {
	margin: -2px -30px;
	width: 20px;
	background-color: transparent;
	border: none;
	outline: none;
	z-index: 100;
	transform: 1s;
}

.albuminfo img {
	height: 250px;
}

#big-cover {
	display: none;
}

.music-cost {
	background-color: rgb(0, 0, 0);
	width: 100%;
}

.moodlist {
	position: absolute;
	top: -350%;
	left: 35%;

	padding: 0 20px;
	overflow: hidden;
	transition: all 1s;
}

#moodlist p,
#genrelist p {
	cursor: pointer;
	padding: 5px 20px;
	transform: translateX(-150%);
	transition: all 0.5s;
	background-color: rgb(64, 96, 160, 0.3);
}

#moodlist p:hover {
	color: rgb(138, 138, 138);
}

#genrelist p:hover {
	color: rgb(138, 138, 138);
}

.download {
	width: 20px;
	cursor: pointer;
}

@media only screen and (max-width: 1025px) {
	.search-box {
		margin-top: -20;
		margin-left: -30px;
	}

	.searchbox-cont {
		position: relative;
		width: 100%;
	}

	/* .search-icon {
	} */

	#signin-button {
		position: absolute;
		right: -60%;
		top: 28px;
		font-size: 11px;
	}

	.main-menu {
		height: 90px;
		padding: 0;
	}

	.music-list {
		width: 100%;
		padding-right: 20px;
		height: 70vh;
	}
	.content {
		top: 40vh;
	}
	.right-col {
		display: none;
	}
	.left-col {
		width: 100%;
	}
	.left-col h1 {
		font-size: 40px;
	}

	.track p {
		font-size: 11px;
		width: 35px;
	}
	.track h6 {
		display: none;
	}

	#song-name {
		width: 90px;
	}

	#thumbnail {
		width: 35px;
		padding-left: 10px;
		margin: 0;
	}

	.side-container {
		display: none;
	}

	#stage-name {
		display: none;
	}

	.track .play {
		width: 5px;

		padding: 0;
	}

	.track .play a {
		width: 25px;
	}

	.track .play #icon {
		width: 25px;
	}

	.play #prev-icon {
		width: 25px;
		margin-left: -40px;
	}

	.play #next-icon {
		width: 25px;
	}

	.track .play {
		width: 5px;
		margin: 0;
		padding: 0;
	}

	.song-mood {
		font-size: smaller;
		width: 100%;
		position: absolute;
		left: 5%;
		bottom: 0;
	}

	.song-volume {
		display: none;
	}

	.audio-player .play {
		padding: 0;
		margin: 0;

		width: 10%;
	}

	.artist-image {
		margin: 0;
		padding: 0;
	}

	.download-song img {
		width: 180%;
	}

	.progress-bar {
		margin-left: 30px;
		font-size: 11px;
	}

	.bar-preg {
		height: 3px;
	}
}
