/*
 Toggle Switch
*/
.ToggleSwitch{
	display: none;
}

.ToggleSwitchLabel {
	cursor: pointer;
    width: 100px;
	height: 50px;
	background: grey;
	border-radius: 50px;
	position: relative;

    display: flex;
    align-items: center;
}

.ToggleSwitchLabel:after {
	content: '';
	position: absolute;
	left: 2.5px;
	width: 45px;
	height: 45px;
	background: #fff;
	border-radius: 45px;
	transition: 0.3s;
}

.ToggleSwitch:checked + .ToggleSwitchLabel {
	background: #249fe6;
}

.ToggleSwitch:checked + .ToggleSwitchLabel:after {
	left: calc(100% - 2.5px);
	transform: translateX(-100%);
}

.CreateRoomValueInput {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5em;
    text-align: center;

    height: 2em;
    width: 100%;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
}

.CreateRoomValueInput:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

.CreateRoomButton {
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f3f3f3;
    color: rgb(0, 0, 0);
    border-bottom: solid 4px #000000;
    border-radius: 3px;
}

.CreateRoomButton:hover {
    border-bottom: solid 4px #15ff00;
    color : #15ff00;
    border-radius: 3px;
}


.CreateRoomButton:active {
    border-bottom: solid 4px #ffe600;
    color : #ffe600;
    border-radius: 3px;
}

.CreateRoomButton h1{
    position: relative;
    bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.CreateRoomConfigItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.CreateRoomConfigItem:nth-child(1){
    margin: 0;
    margin-top: 20px;
}
.CreateRoomConfigItem:last-child{
    margin: 0;
    margin-bottom: 20px;
}

.CreateRoomConfigItem h3{
    width: 50%;
    font-family: "Noto Sans JP", sans-serif;
}

.CreateRoomConfigItem div{
    width: 40%;
}