/*select.css*/
body {
	background-image: url("/images/image02.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
	width: 100%;
	height: 100vh;
}

#game #playerSelector {
	width: 732px;
}

.btn-primary {
	border-radius: 0px;
	padding: 8px 32px;
	background: #000;
	border-color: #000;
	opacity: 1;
	color: #fff;
	text-align: center;
	margin-bottom: 80px;
}
.btn-primary:hover {
	border-radius: 0px;
	padding: 8px 32px;
	background: #000;
	border-color: #000;
	opacity: 1;
	color: #fff;
	text-align: center;
}

.btn-primary:disabled {
	background: rgb(194, 194, 194);
	border-color: rgb(194, 194, 194);
	opacity: 1;
	color: #fff;
	text-align: center;
}

.open-modal-btn {
	background: transparent;
	border: transparent 1px solid;
	opacity: 1;
	color: transparent;
	text-align: bottom;
	border-radius: 0px;
	height: 168px;
	width: 168px;
	background-repeat: no-repeat;
	background-position: center;
}
.open-modal-btn:disabled {
	background: transparent;
	border: transparent 1px solid;
	opacity: 0;
	color: transparent;
	text-align: bottom;
	border-radius: 0px;
	height: 168px;
	width: 168px;
	background-repeat: no-repeat;
	background-position: center;
}

.h1 border-0 rounded-circle {
	border-radius: 50%;
}
.open-modal-btn:hover {
	background: transparent;
	color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	border: #2ee020 5px solid;
	border-radius: 5px;
}
.open-modal-btn:focus {
	background: transparent;
	color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	border: #2ee020 5px solid;
	border-radius: 5px;
}
.open-modal-btn.selected {
	display: flex;
	background: transparent;
	color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	border: #2ee020 5px solid;
	border-radius: 5px;
	background-image: url("/images/checked.png");
	background-repeat: no-repeat;
	background-position: center;
}

.row {
	display: inline-flex;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
#cA {
	background-image: url("/assets/game-ui/01.png");
	background-repeat: no-repeat;
	background-size: 130px;
	background-position: 50% 70%;
}
#cB {
	background-image: url("/assets/game-ui/02.png");
	background-repeat: no-repeat;
	background-size: 130px;
	background-position: 50% 70%;
}
#cC {
	background-image: url("/assets/game-ui/03.png");
	background-repeat: no-repeat;
	background-size: 130px;
	background-position: 50% 70%;
}
#cD {
	background-image: url("/assets/game-ui/04.png");
	background-repeat: no-repeat;
	background-size: 130px;
	background-position: 50% 70%;
}
.playerId {
	margin: 0 auto;
	width: 168px;
	height: 32px;
}

.confirm-modal {
	background-color: #fff;
	width: 480px;
	padding: 40px 0;
	border-radius: 5px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.confirm-modal p {
	color: #333;
	font-size: 20px;
	margin-bottom: 5px;
}
.confirm-modal-mask {
	background-color: #000;
	opacity: 0.8;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.confirm-buttons button {
	color: #fff;
	background-color: #000;
	font-size: 20px;
	width: 120px;
	padding: 7px 5px;
	border: none;
	border-radius: 0;
}

@media screen and (max-width: 1024px) {
	body {
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: cover;
		width: 100%;
		height: 100vh;
	}
}
@media screen and (max-width: 992px) {
	#game #playerSelector {
		width: 420px;
	}
}
@media screen and (max-width: 767px) {
	body {
		background-position: center center;
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: cover;
		height: 100%;
	}

	#game #playerSelector {
		width: 320px;
	}

	.confirm-modal {
		width: 320px;
		padding: 25px 15px;
	}
	.confirm-modal p {
		font-size: 16px;
	}

	.confirm-buttons button {
		font-size: 16px;
		width: 100px;
	}

	.open-modal-btn {
		width: 140px;
		height: 140px;
	}

	.selector {
		margin: 1rem 0;
	}

	#cA {
		background-size: 120px;
	}
	#cB {
		background-size: 120px;
	}
	#cC {
		background-size: 120px;
	}
	#cD {
		background-size: 120px;
	}
}

.warning {
	color: #db1a2d;
	font-size: 140%;
	padding: 0.5rem;
}
