* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

@media only screen and (max-width: 1068px) {
	html {
		font-size: 12px;
	}
}

body {
	background-color: #1b1b1b;
	color: #fff;
	background-image: url("./images/background.jfif");
	background-size: cover;
	overflow-x: hidden;
	overflow-y: auto;
}

.horizontal-list {
	list-style: none;
}

.horizontal-list li {
	display: inline-block;
}

a {
	text-decoration: none;
}

a:link {
	color: white;
}

a:visited {
	color: white;
}

a:hover {
	color: white;
}

a:active {
	color: white;
}

.flex-container {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
}

.overlay-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	background-color: rgba(192, 6, 6, 0.884);
	display: none;
}

.round-image {
	border-radius: 50%;
}

input[type="checkbox"] {
	display: none;
}

/* Nav Started Here*/
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	width: 100%;
	background-color: #282828;
	padding: 0 2%;
	position: sticky;
	top: 0;
	z-index: 1;
}

.nav-logo-section {
	align-items: center;
	justify-content: space-between;
	width: 40%;
}

.brand-logo-text {
	font-size: 1.4rem;
	margin-left: 1rem;
}

.nav-menu-section {
	justify-content: space-between;
	align-items: center;
}

.nav-item {
	margin: 0 10px;
}

.search-container {
	padding: 3px 8px;
	font-size: 1rem;
	border: 2px solid grey;
	color: grey;
	border-radius: 8px;
	width: fit-content;
}

#search-box {
	border: none;
	background-color: #1b1b1b;
	color: white;
	text-align: center;
	font-size: 1rem;
	width: 10vw;
}

#search-box:focus {
	outline: none;
}

.profile-pic {
	height: 50px;
}

.brand-logo {
	animation: rotate-image 5s linear infinite;
}

@keyframes rotate-image {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Nav Ended Here */

/* Main Start Here */
main {
	margin: 0 4%;
	display: flex;
}

main section {
	margin: 3rem 0 1rem;
}

/* Section1 */
.section1 {
	flex-basis: 70%;
	height: calc(100vh - 135px);
	overflow: scroll;
	overflow-x: hidden;
	padding: 0 1.2rem;
}

/* overflow should be scrollable but the scroll bar should be hidden*/
.section1::-webkit-scrollbar {
	display: none;
}

.bigbox {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	height: auto;
	max-height: 350px;
	border: 2px solid transparent;
	transition: all 0.3s;
}

.bigbox:hover {
	border: 1px solid white;
}

.bigbox-image-section {
	width: 40%;
	min-width: 250px;
	background-image: linear-gradient(to bottom, transparent, #412f14),
		url("./images/Images/coldplay.png");
	background-position: top;
	background-size: cover;
}

.bigbox-detail {
	width: 60%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	padding: 1rem;
}

.desc {
	max-height: 120px;
	overflow: auto;
}

.desc::-webkit-scrollbar {
	display: none;
}

.song-name-main {
	font-size: 2rem;
	padding-bottom: 6px;
}

.author {
	color: silver;
	padding-bottom: 12px;
}

.followers {
	float: right;
}

.btns {
	display: flex;
	justify-content: flex-start;
}

.btns button {
	color: white;
	width: fit-content;
	padding: 8px 2rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	border: 3px solid transparent;
	overflow: visible;
	background-color: transparent;
	transition: all 0.2s;
	position: relative;
}

.btns button:before {
	content: "";
	position: absolute;
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	top: calc(3px / -1);
	left: calc(3px / -1);
	background: linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to left, white 0%, white 100%);
	background-size: 100% 3px, 3px 200%, 3px 200%, 0% 3px, 0% 3px;
	background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
	background-repeat: no-repeat, no-repeat;
	transition: transform 0.2s linear, background-position 0.2s linear,
		background-size 0.2s ease-in-out;
	transform: scaleX(0) rotate(0deg);
	transition-delay: 0.4s, 0.2s, 0s;
	z-index: 1;
}

.btns button:hover:before {
	background-size: 200% 3px, 3px 400%, 3px 400%, 55% 3px, 55% 3px;
	background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
	transform: scaleX(1) rotate(0deg);
	transition-delay: 0s, 0.2s, 0.4s;
}

.action-part {
	padding: 1.5rem 0;
}

.btns button:hover {
	cursor: pointer;
	background-image: linear-gradient(to right, blue, purple);
	color: white;
}

/* particular item in the playlist */
#show_me {
	display: none;
	position: fixed;
	right: 0;
	font-size: 3rem;
	padding: 0.5rem 1rem;
	background-color: slategray;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.panel-close {
	display: none;
	font-size: 2rem;
	text-align: right;
	margin: 1rem 1rem 0 0;
}

.playlist-item {
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	overflow: visible;
	position: relative;
}

.playlist-item:before {
	content: "";
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	top: calc(2px / -1);
	left: calc(2px / -1);
	background: linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to left, white 0%, white 100%);
	background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
	background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
	background-repeat: no-repeat, no-repeat;
	transition: transform 0.1s linear, background-position 0.1s linear,
		background-size 0.1s ease-in-out;
	transform: scaleX(0) rotate(0deg);
	transition-delay: 0.2s, 0.1s, 0s;
	z-index: -1;
}

.playlist-item:hover:before {
	background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
	background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
	transform: scaleX(1) rotate(0deg);
	transition-delay: 0s, 0.1s, 0.2s;
}

.playlist-item:hover {
	cursor: pointer;
}

/* left part if the playlist item */
.left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 50%;
	height: 100%;
	padding: 0 8px;
}

.center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: min-content;
	height: 100%;
}

.right {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 100%;
	padding-right: 32px;
}

.left > div:nth-child(2) {
	height: 80%;
	min-width: 65px;
	max-width: 65px;
	margin: 0px 24px;
	position: relative;
}

.left > div:nth-child(2) img {
	width: 100%;
	height: 100%;
}

.left > div:nth-child(3) p {
	color: #b9b9b9;
}

/* customizing the play button */
.play-btn {
	background-color: black;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	opacity: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: all ease-in-out 0.1s;
}

/* on hover effects */
.play-btn:hover {
	opacity: 0.7;
}

/* adjusting fonts in the playlist items  */
.left div p {
	font-size: 14px;
}

.center {
	font-size: 12px;
	color: #b9b9b9;
}

.right {
	color: #b9b9b9;
	font-size: 1.35rem;
}

.fa-heart:hover {
	color: red;
}

.fa-plus:hover {
	color: dodgerblue;
}

.right div:nth-child(2) {
	margin-left: 27%;
}

.similar {
	height: calc((100vh - 150px) / 2);
	margin-bottom: 2rem;
	overflow: scroll;
	padding: 0.5rem;
}

.similar::-webkit-scrollbar {
	display: none;
}

.section-heading {
	margin-top: 10px;
	position: relative;
	margin-bottom: 12px;
}

.section-heading div,
.section-heading h1 {
	display: inline-block;
}

.section-heading h1 {
	font-size: 23px;
}

.section-heading div {
	position: absolute;
	bottom: 0%;
	right: 0px;
	font-size: 14px;
}

.list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.list-item {
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0.5rem 0;
	padding: 0.5rem;
	position: relative;
}

.list-item:before {
	content: "";
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	top: calc(2px / -1);
	left: calc(2px / -1);
	background: linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to top, white 50%, transparent 50%),
		linear-gradient(to right, white 0%, white 100%),
		linear-gradient(to left, white 0%, white 100%);
	background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
	background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
	background-repeat: no-repeat, no-repeat;
	transition: transform 0.1s linear, background-position 0.1s linear,
		background-size 0.1s ease-in-out;
	transform: scaleX(0) rotate(0deg);
	transition-delay: 0.2s, 0.1s, 0s;
	z-index: -1;
}

.list-item:hover:before {
	background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
	background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
	transform: scaleX(1) rotate(0deg);
	transition-delay: 0s, 0.1s, 0.2s;
}

.list-item:hover {
	cursor: pointer;
}

/* adjusting the name and image of the songs relative to their original position */
.list-item > .list-item-section1 {
	display: flex;
	align-items: center;
}

.list-item > .list-item-section1 > .small-song-image {
	width: 85px;
	height: 100%;
	margin-right: 1.5rem;
	position: relative;
}

.list-item > .list-item-section1 > .small-song-image > img {
	display: block;
	width: 100%;
	height: 100%;
}

.list-item > .list-item-section1 > .x-small-song-image {
	width: 70px;
	height: 100%;
}

.list-item > .list-item-section1 > div:nth-child(3) {
	align-self: flex-start;
	padding-top: 1rem;
}

.author-name {
	font-size: 12px;
	color: #b9b9b9;
}

.extra {
	text-align: right;
	height: 100%;
}

.recent-right {
	margin-right: 1.4rem;
	font-size: 1.5rem;
}

.recently-played > .list-item {
	height: 80px;
	margin: 0.2rem 0;
	padding: 0.2rem;
}

/* Section2 */
.section2 {
	flex-basis: 30%;
	height: calc(100vh - 135px);
	overflow: scroll;
	overflow-x: hidden;
}

.section2::-webkit-scrollbar {
	display: none;
}

footer {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-around;
	position: sticky;
	bottom: 0;
	z-index: 10;
	height: 70px;
	width: 100%;
	transition: all 0.2s;
	background-color: #282828;
}

.player_song_section {
	display: flex;
	height: inherit;
	align-items: center;
	width: 20%;
	min-width: 200px;
}

.player_song_section .inner-flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.player_image {
	height: 80%;
	margin: 0 0.5rem 0 1rem;
}

.player_image img {
	height: 100%;
	width: auto;
}

/* 2. Second part of the footer*/
.music_player {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.controls {
	width: 40%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
}

#slider {
	width: 100%;
	font-size: 12px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
}

.time {
	margin: 0px 10px;
}

.slidecontainer {
	width: 100%;
}

.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 5px;
	background: #d3d3d3;
	outline: none;
	opacity: 0.5;
	transition: opacity 0.2s;
}

.slider:hover {
	opacity: 1;
}

.slider::-webkit-slider-thumb {
	appearance: none;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #007bff;
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #4caf50;
	cursor: pointer;
}

.extras {
	width: 20%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

/* Footer Ended Here */
/*# sourceMappingURL=artist-playlist.css.map */
