body{
	background-color: #0f0f0f;
	color: #fff;
	cursor: default;
	font-family: Sans-Serif;
	margin-right: 0 !important;
	width: 100vw;
	margin: 0;
	margin-right: 0px;
	padding: 0;
	scroll-snap-type: y;
	overflow-x: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 10px;
	display: flex;
	align-items: center;
	height: 100%;
}
iframe, #player{
	aspect-ratio: 16/9;
	width: 50vw;
	height: auto;
	border: none;
}
.LS_modalContainer{
	display:none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: hidden;
	outline: 0;
	z-index: 1050;
	justify-content: center;
	align-items: center;
}
.LS_modalContainer:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.LS_modalContainer[show]{
	display:flex;
}
.LS_modal{
	display:flex;
	position:relative;
	overflow-x: hidden;
	overflow-y: auto;
	background:black;
	min-height: 20%;
	max-height: 80%;
	min-width: 30%;
	max-width: 60%;
	pointer-events: auto;
	box-shadow: 0 0 1vw black;
}
@media all and (max-width:767.99px){	
	.LS_modal{max-width: 90% !important;}
	iframe, #player{width: 90vw !important;}
}
.item-container{
	position:relative;
	text-decoration: none;
	color:inherit;
	cursor:pointer;
	margin-bottom: 2vw;
	transition:transform .3s ease-in-out;
}
.item-container:hover{
	transform:scale(1.05);
}
.item-container img{
	width:100%;
	border-radius:1vw;
}
.item-container .description{
	position:relative;
	color:#a6a6a6;
}
.item-container .description[data-title]:before{
	content:attr(data-title);
	display:block;
	color:#f1f1f1;
	font-size: 1.6rem;
	line-height: 2.2rem;
	overflow: hidden;
	display: block;
	max-height: 4.4rem;
	-webkit-line-clamp: 2;
	display: box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
}
.item-container .description[data-creator]:after{
	content:attr(data-creator);
	display:block;
	color:#a6a6a6;
}