#bodyContainer {
	opacity: 0%;
	-webkit-transition: all 0.25s ease-in;
	-moz-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
}
.progress {
	position: relative;
	height: 6px;
	display: block;
	width: 100%;
	background-color: white;
	border-radius: 2px;
	background-clip: padding-box;
	/*margin: 0.5rem 0 1rem 0;*/
	overflow: hidden;
	-webkit-transition: all 0.25s ease-in;
	-moz-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
	position: fixed;
	top: 0;
}

.progress .indeterminate {
	background-color: black;
}

.progress .indeterminate:before {
	content: "";
	position: absolute;
	background-color: #2c67b1;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left, right;
	-webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
	animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
	content: "";
	position: absolute;
	background-color: #2c67b1;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left, right;
	-webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
	animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
	-webkit-animation-delay: 1.15s;
	animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
	0% {
		left: -35%;
		right: 100%;
	}
	60% {
		left: 100%;
		right: -90%;
	}
	100% {
		left: 100%;
		right: -90%;
	}
}

@keyframes indeterminate {
	0% {
		left: -35%;
		right: 100%;
	}
	60% {
		left: 100%;
		right: -90%;
	}
	100% {
		left: 100%;
		right: -90%;
	}
}

@-webkit-keyframes indeterminate-short {
	0% {
		left: -200%;
		right: 100%;
	}
	60% {
		left: 107%;
		right: -8%;
	}
	100% {
		left: 107%;
		right: -8%;
	}
}

@keyframes indeterminate-short {
	0% {
		left: -200%;
		right: 100%;
	}
	60% {
		left: 107%;
		right: -8%;
	}
	100% {
		left: 107%;
		right: -8%;
	}
}

.album-image {
	height: 300px;
	width: 300px;
	background-color: black;
	border-radius: 25px;
}
.album-image-small {
	display: none;
	height: 125px;
	width: 125px;
	background-color: black;
	border-radius: 25px;
}
.player-controls {
	align-items: center;
	justify-content: center;
	flex: 3;
}
progress {
	width: 90%;
}
progress[value] {
	-webkit-appearance: none;
	appearance: none;
	background-color: white;
	color: blue;
	height: 5px;
}
progress[value]::-webkit-progress-bar {
	background-color: white;
	border-radius: 2px;
	border: 1px solid lighten(#acacac, 20%);
	color: blue;
}
progress::-webkit-progress-value {
	background-color: blue;
}
#songInformation {
	font-color: black;
}
#songTitle {
	font-weight: bold;
	font-size: 30px;
}
#songArtist {
	font-weight: bold;
	font-size: 20px;
}
#buttons {
	width: 100%;
	filter: invert(100%);
	float: left;
}
#shuffle-btn {
	width: 55px;
	height: 55px;
	margin: 2rem 0 0 2rem;
	float: left;
}
#repeat-btn {
	width: 45px;
	height: 40px;
	margin: 2.5rem 2rem 0 2rem;
	float: right;
}
#skip-btn {
	width: 50px;
	height: 50px;
	margin: 2rem 0 0 2rem;
}
#back-btn {
	width: 50px;
	height: 50px;
	margin: 2rem 0.5rem 0 2rem;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
#back-btn-small {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
#play-btn {
	width: 50px;
	height: 50px;
	margin: 2rem 0 0 2rem;
}
#download-btn {
	width: 50px;
	height: 50px;
	float: right;
	padding: 50px 60px 0 0;
}

@media (max-width: 927px) {
	.album-image-small {
		display: block;
		float: left;
		margin: 15px 20px 2px 15px;
	}
	.album-image {
		display: none;
	}
	#shuffle-btn {
		display: none;
	}
	#repeat-btn {
		display: none;
	}
	#buttons {
		padding-bottom: 30px;
	}
	#back-btn {
		margin: 2rem 0.5rem 0 0;
	}
	#songTitle {
		font-size: 20px;
	}
	#songArtist {
		font-size: 15px;
	}
	#songInformation {
		text-align: left;
	}
}