
/*********************************/

@font-face {
	font-family: helvetica-upload;
	src: url(../helvetica/Helvetica.ttf);
	}
  
@font-face {
	font-family: helvetica-bold-upload;
	src: url(../helvetica/Helvetica-Bold.ttf);
	}
	
.opponent-container {
	display: flex;
	justify-content: center;
	column-gap: 10px;
	margin-bottom: -10px;
	}

.opponent-button {
	width: auto;
	padding-top: 3px;
	padding-bottom: 4px;
	}
	
.opponent-button:hover {
	border: 2px solid black;
	}
	
.opponent-button:active {
	background-color: rgb(84, 83, 85)
	}

.piece-container {
	display: none;
	justify-content: center;
	border: 2px solid black;
	height: auto;
	width: 350px; /*60%;*/
	background-color: rgb(189, 186, 192);
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	}

.piece-button {
	width: 40px;
	height: 35px;
	position: relative;
	margin-right: 5px;
	text-align: center;
	}

.piece-button:hover {
	border: 2px solid black;
	}

.piece-button:active {
	background-color: rgb(84, 83, 85)
	}

.piece-prompt-container {
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
}

.piece-prompt {
	font-family: helvetica, sans-serif;
	margin-left: 10px;
	margin-right: 20px;
	display: relative;
	}

.subtext {
	font-size: 12px;
	text-align: center;
	}

.player-summary {
    display: block;
    display: none;
    position: relative;
    margin-top: -15px;
	margin-left: 20px;
	padding-left: 20px;
	padding-bottom: 15px;
    left: 50%;
    width: 300px;
    transform: translate(-175px, 0);
    bottom: 5px;
    text-transform: capitalize;
    font-family: helvetica-bold-upload;
	}

.board {
    position: relative;
    margin-top: -0.5%;
	margin-left: 0.1%;
	margin-right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    height: 300px;
    width: 300px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    border: black solid 1px;
	text-align: center;
	}

.board > div {
	border: black solid 1px;
	text-align: center;
	font-size: 38px;
	vertical-align: middle;
 	padding-top: 12px;
	}
	
.board > div:hover {
	cursor: default;
	}
	
#resetButton {
	width: auto;
	height: auto;
	margin-bottom: 10px;
    padding: 14px 12px !important;
	border-radius: 8px;
	border: 2px solid #2B7CFF;
	background: linear-gradient(#FFFFFF,#EEF6FF);
    cursor: pointer;
	font-weight: 600;
}

#resetButton:hover {
    background-color: #FF0000;
}

.devinernum {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: -10px;
	margin-bottom: -10px;
}

.txtmobile {
	display: none;
}

.txtnormal {
	display: block;
}

/* mobile */
@media only screen and (max-width:700px){
	.colonnemilieu {
	width: 99.9999%;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
  }
	.txtmobile {
	display: block;
  }
	.txtnormal {
	display: none;
  }
	.piece-container {
	width: 75%;
  }
}

@media only screen and (min-width: 701px) and (max-width: 900px) {
	.txtmobile {
	display: block;
  }
	.txtnormal {
	display: none;
  }
	.piece-container {
	width: 70%;
  }
}

@media only screen and (max-width: 600px) {
	.board {
    position: relative;
    margin-top: -0.5%;
	margin-left: 0.1%;
	margin-right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    height: 280px;
    width: 280px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    border: black solid 1px;
	text-align: center;
	}
	.piece-container {
	width: 75%;
  }
}

.reset-button {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
	text-align: center;
    width: auto;
    height: 60px;
    font-size: 24px;
    margin-top: 20px;
	}

.winning-form {
    position: absolute;
    height: 200px;
    width: 250px;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 5;
    display: none;
	}

.winning-form > div {
	text-align: center;
	}
	
.exit {
	position: absolute;
	top: 5px;
	right: 12px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	}
	
.exit:hover {
	cursor: pointer;
	}
		
.congrats {
	text-align: center;
	margin-top: 0px;
	font-family: helvetica, sans-serif;
	font-size: 20px;
    }
	
.rematch {
	text-align: center;
	grid-area: buttonOne;
	height: 50px;
	width: auto; /* 90px; */
	margin: 30px auto auto 30px;
	padding-left: 7px;
	padding-right: 7px;
    }
	
.reset {
	grid-area: buttonTwo;
	text-align: center;
	height: 50px;
	width: 90px;
	margin: 15px 5px 20px 5px;
    }
	
.end-button {
	font-family: helvetica, sans-serif;
	font-size: 18px;
	text-align: center;
	margin-left: auto; /*31%; */
	margin-right: auto;
    }
	
.end-button:hover {
	border: 2px solid black;
	text-align: center;
	}
		
.end-button:active {
	background-color: rgb(84, 83, 85);
	text-align: center;	
	}
    