div#room-list-scene {
	width: 100vw;
	height: 95vh;

	/* background-color: rgb(15,15,15); */
}

div#room-list-navigation-bar {
	width: 100vw;
	height: 10vh;
}

div#room-items-container {
	width: 100vw;
	height: 85vh;
}

div.room-item {
	position: relative;

	margin-left: 10vw;
	margin-right: 5vw;
	margin-bottom: 5vh;

	width: calc(90vw - 1px);
	height: 10vh;

	/* background-repeat: no-repeat;
	background-size: 100% 50%; */

	/* border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3); */

	color: white;
	font-family: 'Blender Pro Thin', sans-serif;

	transition: 0.25s;

	cursor: pointer;

	clip-path: polygon(2% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 25%);
}

div.room-item-content-container {
	height: 100%;
	width: 100%
}

div.room-info-container {
	height: 100%;
	width: 25%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
}

div.room-contents-container {
	height: 100%;
	width: 75%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.25);
}

div.room-item:hover {
	margin-left: 5vw;

	width: calc(95vw - 1px);
}

p.room-title-text {
	font-size: 2vh;
}

input.input-assign-id {
	margin-left: 10px;
	margin-right: 10px;
	width: 20%;
	font-family: "Blender Pro Book";
	font-size: 2vh;
	color: white;
	background: none;
	border-left: none;
	border-right: none;
	border-top: none;
	outline: none;
}

button.button-kick-player {
	padding-top: 2.5px;
    padding-bottom: 2.5px;
    padding-left: 5px;
    padding-right: 5px;

    margin-left: 0.25vw;
    margin-right: 0.25vw;

    background-color: rgba(255, 0, 0, 0.5);

    color: rgba(255, 255, 255, 1);

    border-radius: 4px;
}