#field{
	display: none;
	position: absolute;
	width: 90%;
	background-color: white;
	transform: translate(-50%, -50%);
	left: calc(50% + 57px);
	top: calc(50% + 15px);
	padding-top: 4px;
	padding-left: 4px;
	z-index: 10;
}
	#ulField{
		z-index: 10;
		right: 0px;
		width: 100%;
	}
	.slot{
		background-color: lightblue;
		display: none;
		margin-right: 4px;
	}
		.card{
			position: relative;
			perspective: 500px;
			transform: translate(-0%, -0%);
			left: 0%;
			top: 0%;
			transition: 0.7s;
		}
			.face{
				position: absolute;
				backface-visibility: hidden;
				transition: 0.7s;
			}
			.front{
				background-color: lightgreen;
				transform: rotateY(-180deg);
			}
			.front.flipped{
				transform: rotateY(0deg);
			}
			.back{
				background-image: url(../Img/cards/Set_vertical.png);
				background-size: cover;
			}
			.back.flipped{
				transform: rotateY(180deg);
			}
#ulWindowField{
	top: 50%;
	width: 50%;
	background: #040404;
	color: #1782a5;
	border-radius: 15px;
	padding: 20px;
	display: none;
	opacity: 0;
	z-index: 11;
}
	.field{
		text-align: right;
		font-size: 25px;
	}
#ulGameOver{
	position: absolute;
	transform: translate(-50%, -50%);
	top: calc(50% + 15px);
	left: 50%;
	width: 50%;
	background-color: #040404;
	font-size: 40px;
	text-align: center;
	padding: 100px 40px;
	border-radius: 45px;
	display: none;
	opacity: 0;
	z-index: 11;
}
	#emoticon{
		position: absolute;
		top: 40px;
		height: 50px;
		width: 50px;
		font-family: Arial;
		font-size: 40px;
		color: #040404;
		left: calc(50% - 25px);
		transform: rotateZ(90deg);
		border-radius: 90px;
	}
	#confirm{
		position: absolute;
		right: 40px;
		text-align: center;
		padding: 6px 12px;
		font-size: 40px;
	}
#status{
	width: 125px;
	background-color: #040404;
	color: #1782a5;
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: absolute;
	left: -131px;
	top: 30px;
	text-align: center;
	font-size: 25px;
	border-radius: 0px 0px 70px 0px;
	border-top: 0px;
	border-left: 0px;
	border-bottom: 6px;
	border-right: 6px;
	border-style: solid;
	border-color: #1782a5;
	z-index: 12;
	transition: 0.5s;
}
	.numb{
		font-size: 40px;
	}
#greyScreen{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 5;
	background-color: #040404;
	opacity: 0.6;
	display: none;
}
#guideScreen{
	z-index: 102;
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
}
	#guideDiv{
		position: absolute;
		z-index: 105;
		border: 6px solid #1782a5;
		border-radius: 15px;
		display: none;
	}
	#guideDivSpan{
		background-color: black;
		color: #1782a5;
		position: absolute;
		padding: 20px;
		padding-bottom: 42px;
		z-index: 103;
		font-size: 20px;
		border: 6px solid #1782a5;
		border-radius: 15px;
	}
		#guideSpan{
			
		}
			#guideBtn{
				color: #1782a5;
				text-decoration: none;
				border: 3px solid #1782a5;
				bottom: 8px;
				right: 8px;
				padding: 0px 5px;
				position: absolute;
				border-radius: 10px;
			}
	#guideBlackScreen{
		z-index: 102;
		position: absolute;
		top: 0px;
		width: 100%;
		height: 100%;
		background-color: #040404;
		opacity: 0.6;
	}
	
@media(max-width: 900px){
	#ulGameOver{
		font-size: 35px;
		padding: 60px 0px;
	}
		#emoticon{
			top: 10px;
		}
}
@media(max-width: 768px){
	#ulGameOver{
		font-size: 27px;
	}
}