html,body{
	outline: 0;
	margin: 0;
	padding: 0;
	background-color: #050505;
	font-family: sans-serif;
	color: #eee;
}
.container{
	display: flex;
	justify-content: center;
	padding-top: 50px;
}
.player_container{
	width: 1280px;
}
#player{
	height: 720px;
}
.playlist_container{
	width: 400px;
    height: 720px;
    color: #fff;
}
.playlist_title{
	font-size: 20px;
	padding: 10px;
	display: block;
}
.playlist_item{
	width: 380px;
    padding: 10px;
    border-bottom: solid 1px #222;
    display: flex;
    cursor: pointer;
}
.playlist_empty{
	width: 380px;
    padding: 10px;
}
.playlist_item:hover{
	background-color: #222;
}
.playlist_item div{
	display: flex;
	flex-direction: column;
}
.playlist_item div span:first-child{
	max-height: 50px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.playlist_item_playing{
	border-bottom: 0px solid #000;
}
.views{
	padding-top: 5px;
	color: #555 !important;
	font-weight: normal !important;
}
.playlist_item span{
	padding-left: 10px;
	color: #eee;
	font-weight: bold;
	font-size: 15px;
}
.add_video{
	padding: 10px;
	padding-bottom: 20px;
}
.add_video input{
	background-color: #222;
    border: #222;
    padding: 5px;
    width: 300px;
    color: #ddd;
    outline: 0;
    font-style: italic;
}
.add_video span{
	padding-top: 4px;
    background-color: #222;
    width: 65px;
    height: 21px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}
.add_video span:hover{
	background-color: #167ac6;
}
.no-video-message{
	display: block;
	padding-top: 350px;
	margin: auto;
	width: 400px;
	text-align: center;
}
.border{
	border: 1px solid #222;
}


/* SLAVE */
.slave-container{
	padding-top: 100px;
	width: 400px;
	margin: auto;
}
.partytag-container{
	font-weight: bold;
	font-size: 20px;
}
.partytag-container span{
	padding: 10px;
}
.partytag{
	margin-left: -20px !important;
	color: #167ac6 !important;
}

/* WELCOME-MESSAGE */
.welcome-message{
	width: 800px;
	margin: auto;
	padding-top: 100px;
	font-size: 20px;
	color: #eee;
}
.welcome-message span{
	display: block;
}
.welcome-message a{
	color: #167ac6;
	text-decoration: none;
}