#gameMenu {
	/* display: flex;
  flex-direction: column; */
	padding-bottom: 4px;
}

#gameBlock {
	text-align: center;
	margin-bottom: 10px;
}

@media (min-width: 992px) {
	#gameMenu {
		text-align: left;
	}

	#gameBlock {
		text-align: right;
	}
}

.no-padding {
	padding: 0px;
}

#gameContainer {
	/* margin-top: 20px; */
}
@media (max-width: 600px) {
	#gameContainer {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (min-width: 600px) {
	#gameContainer {
		padding-left: 8px;
		padding-right: 8px;
	}
}

#gameInformation {
	font-weight: bold;
}

.btn {
	font-weight: bold;
}
.btn:focus {
	outline: none;
}

.btn-shadow-game {
	/* box-shadow: 2px 2px 0 #bbb; */
	box-shadow: 0px 1px 2px 1px #bbb;

	transition: 0.2s;
}
.btn-shadow-game:focus {
	outline: none;
	box-shadow: 0px 0px 0px #aaa;
}

#gameOptions {
	/* min-width: 130px; */
	user-select: none;

	display: inline-flex;
	flex-direction: column;
	flex: 1;
}

#tchatInfo + span {
	background-color: #333;
	color: white;
	padding: 0 4px;
	border-radius: 4px;
	display: none;
}
#tchatInfo:hover + span {
	display: inline-block;
}

#pseudoBlack,
#pseudoWhite {
	/* CANVAS BUG WITH TRANSITION */
	transition: ease 0.7s;
	text-align: center;
	display: inline-block;
	word-wrap: break-word;
	max-width: 110px;
	min-width: 110px;
	line-height: 16px;
}

/* FIX CANVAS BUG BECAUSE OF TRANSITIONS */
@media screen and (max-width: 998px) {
	#pseudoBlack,
	#pseudoWhite {
		/* CANVAS BUG WITH TRANSITION */
		transition: none;
	}

	#gameButtons .btn {
		transition: none;
	}
	.btn-shadow-game {
		transition: none;
	}

	#pseudos td > img:last-child {
		display: none;
	}
}

/* Copy game link */
.share-tooltip {
	position: relative;
	display: inline-block;
}

.share-tooltip .share-tooltiptext {
	visibility: hidden;
	width: 140px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -75px;
	opacity: 0;
	transition: opacity 0.3s;
}

.share-tooltip .share-tooltiptext::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.share-tooltip:hover .share-tooltiptext {
	visibility: visible;
	opacity: 1;
}
