.board-row:after {
	clear: both;
	content: "";
	display: table;
}

.status {
	margin-bottom: 10px;
}

.square {
	background: #FFF;
	border: 1px solid #999;
	float: left;
	font-size: 24px;
	font-weight: bold;
	height: 34px;
	line-height: 34px;
	margin-right: -1px;
	margin-top: -1px;
	padding: 0;
	text-align: center;
	width: 34px;
}

.w-full {
	width: 100%;
}

.square:focus {
	outline: none;
}

.kbd-navigation .square:focus {
	background: #DDD;
}

.game {
	display: flex;
	flex-direction: row;
}

.game-info {
	margin-left: 20px;
}

.game-info ol, .game-info ul {
	padding-left: 30px;
}

.input-container {
    position: relative;
    width: 100%;
    margin: 8px 0;
    font-weight: normal;
}

.input-container input {
    width: 100%;
    padding: 16px 12px 8px;
    font-size: 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    outline: none;
    background: white;
    font-weight: normal;
}

.input-container label {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #888;
    background: white;
    font-weight: normal;
    padding: 0 4px;
    transition: 0.2s ease all;
    pointer-events: none;
}

/* When input is focused or has content */
.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
    top: 1px;
    font-size: 12px;
    color: #555;
}

/* error styling */
.input-container.has-error input {
    border: 1px solid red;
    color: red;
}

.input-container.has-value label {
    top: 1px;
    font-size: 12px;
    color: #555;
}

.input-container .label-mun {
    top: 20px;
}

input[type="radio"] {
    filter: hue-rotate(120deg);
    accent-color: #111;
}

input[type="checkbox"] {
    accent-color: #111;
}