.post .post_sidebar{
	position: absolute;
	right: 16px;
	bottom: 96px;
	width: auto;
	height: auto;
	color: white;
	z-index: 1000;
	text-align: center;
}
.post .post_sidebar-button{
	width: auto;
	height: auto;
	margin-bottom: 12px;
	cursor: pointer;
	transition: transform 0.1s ease-in-out;
}
.post .post_sidebar-button svg{
	width: 100%;
	height: auto;
}
.post .post_sidebar-button:hover{
	transform: scale(110%);
}
.post .post_sidebar-text{
	width: auto;
	font-size: 13px;
	line-height: 1em;
	font-weight: 500;
	font-family: sans-serif;
	text-align: center;
	margin-bottom: 16px;
	margin-top: 3px;
	display: none;
}
.post .post_liked,
.post .post_saved{
	display: none;
}
.post.liked .post_liked,
.post.saved .post_saved{
	display: block;
}
.post.liked .post_like,
.post.saved .post_save{
	display: none;
}
.post .post_profilePicture{
	position: absolute;
	left: 16px;
	bottom: 42px;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background: white;
	z-index: 1000;
}
.post.collaborative .post_profilePicture-collaborator_1{
	left: 12px;
	bottom: 46px;
}
.post.collaborative .post_profilePicture-collaborator_2{
	left: 20px;
	bottom: 38px;
}
.post .post_username{
	position: absolute;
	left: 58px;
	bottom: 58px;
	font-size: 14px;
	font-family: sans-serif;
	font-weight: bold;
	margin: 0;
	padding: 0;
	color: white;
	z-index: 1000;
	max-width: calc(100% - 74px);
}
.post .post_description{
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 16px;
	left: 16px;
	font-size: 14px;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: white;
	z-index: 1000;
	height: 18px;
  	overflow: hidden;
  	width: calc(100% - 32px);
}
.post .post_content{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.post .post_uid{
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 14px;
	color: white;
	font-family: sans-serif;
	z-index: 1000;
}
.post .post_musicIcon{
	position: absolute;
	bottom: 38px;
	left: 58px;
	color: rgb(168,168,168);
	z-index: 1000;
}
.post .post_musicProducer{
	position: absolute;
	left: 74px;
	bottom: 42px;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 1em;
	color: rgb(168,168,168);
	height: 1em;
	white-space: pre;
	width: calc(60% - 90px);
	overflow: hidden;
	z-index: 1000;
}
.post .post_musicProducer-inner{
	position: absolute;
	top: 0;
	animation: scrollby 20s infinite linear;
}
.post .post_gradient{
	background: black;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 120px;
	width: 100%;
	z-index: 999;
	background: linear-gradient(to top,rgba(0,0,0,0.2),rgba(0,0,0,0.05),rgba(0,0,0,0));
}
@keyframes scrollby{
		0%{
			left: 0;
		}
		100%{
			left: -200px;
		}
	}