body{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.content {
	justify-content: center;
}
.glassEffect {
    width: 50%;
}
/* podcast player part */
.podcastPlayer {
	position: relative;
	top: -20px;
	height: 400px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
/* both range slider part */
input[type="range"] {
	-webkit-appearance: none;
	width: 50%;
	outline: none;
	height: 2px;
	margin: 0 15px;
}
input[type="range"]::-webkit-slider-thumb{
	-webkit-appearance: none;
	height: 20px;
	width: 20px;
	background: #d1b49c;
	border-radius: 50%;
	cursor: pointer;
}
.podcastPlayer input[type=range]{
	width: 40%;
}
/* volume part */
.volume{
	position: absolute;
	bottom: 10%;
	left: 20%;
	width: 60%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.volume p{
	font-size: 15px;
}
.volume i{
	cursor: pointer;
	padding: 8px 12px;
	background: #e2d1c3;
}
.left .volume i:hover{
	background: rgba(245,245,245,0.1);
}
.volume #volume_show{
	padding: 9px 13px;
	margin: 0 5px 0 0;
	background: rgba(245,245,245,0.1);
}
/* podcast player part */
 .podcastPlayer .middle{
 	width: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
}
.podcastPlayer .middle button{
	border: none;
	height: 70px;
	width: 70px;
	border-radius: 50%;	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	transition: 0.5s;
	background: rgba(255,255,255,0.1);
}
#title{
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	text-transform: capitalize;
	color: #fff;
	font-size: 35px;
}
#artist{
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	text-transform: capitalize;
	color: #fff;
	font-size: 18px;
}
.podcastPlayer .duration{
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 20px;
	margin-top: 40px;
}
.podcastPlayer .duration p{
	color: #fff;
	font-size: 15px;
	margin-left: 20px;
}
.podcastPlayer #auto{
	font-size: 18px;
	cursor: pointer;
	margin-top: 45px;
	border: none;
	padding: 10px 14px;
	color: #fff;
	background: rgba(255,255,255,0.2);
	outline: none;
	border-radius: 10px;
}
.podcastPlayer #auto i{
	margin-left: 8px;
}
#play{
	background: #e2d1c3;
 	margin-top: 20px;
}
.podcastPlayer button:hover{
	background: #d1b49c;
}
.podcastPlayer i:before{
	color: #fff;
	font-size: 20px;
}
.podcastPlayer .show_song_no{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	color: #fff;
	border-radius: 5px;
	background: rgba(255,255,255,0.2);
}
.podcastPlayer .show_song_no p:nth-child(2){
	margin: 0 5px;
}