html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
}


.title {
	width: 100vw;
	height: 6.3vh;
	background: #FFFFFF;
	box-shadow: 0px 4px 12px 1px rgba(0, 0, 0, 0.08);	
	display: flex;
	align-items: center;
	padding-left: 1.04vw;
	box-sizing: border-box;
	font-size: 1rem;
	font-weight: bold;
	color: #1C1F21;
}

.container {
	width: 100vw;
	height: 93.7vh;
	background-color: #1C1F21;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	box-sizing: border-box;
	flex: 1;
}

.container .video {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 1.77vw 5.73vw;
	box-sizing: border-box;
}

video {
	width: 100%;
	height: auto;
}

.content {
	padding-left: 0;
	background-color: #25292C;
	width: 17.18vw;
	overflow: auto;
}
		
.content-list {
	cursor: pointer;
	list-style: none;
	float: left;	
	padding: 0.3vw 0;
}

.item-title {
	cursor: pointer;
	color: white;
	font-size: 0.88rem;
	padding-left: 0.51vw;
	margin-top: 0.54vw;
}

.item-title span{
	vertical-align: middle;
}

.item-title img{
	width: 0.8vw;
	height: 0.8vw;
	margin-left: 0.32vw;
	vertical-align: middle;
}

.item-name {	
	float: left;
	display: flex;
}

.item-name-play{
	padding-left: 1.51vw;
	flex-direction: row;
	display: flex;
	align-items: center;
	margin-top: 0.54vw;
	color: white;
}

.item-name-play img{
	width: 0.8vw;
	height: 0.8vw;
	margin-right: 0.52vw;
}

.item-name-title {
	font-size: 0.75rem;	
}

.selected {
	color: rgb(0, 136, 253);
}

