html {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 0;
}

#boosterContainer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	background-color: #C9202F; /* N'oublie pas de changer la version portable quand tu fais des changements */
	height: 100%;
	text-align: center;
	box-shadow: 0px 0px 20px black;
	border-right: 3px solid black;
	overflow-y: scroll;
	overflow-x: hidden;
}

#boosterContainer img {
	transition: filter 0.7s;
	width: 100px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#boosterContainer img:hover {
	filter: invert(100%);
	cursor: pointer;
}

#cards {
	margin-top: 0;
	margin-left: 120px;
	height: 100%;
	width: 70%;
}

#cards img {
	transition: transform 0.5s;
	transform: rotateY(0);
}

#comCard {
	display: flex;
	justify-content: space-around;
	margin-top: 10px;
	flex-wrap: wrap;
	flex-direction: row;
}

#uncoAndRareCard {
	transition: margin-right 0.5s, margin-left 0.5s, height 0.5s;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	flex-direction: row;
}

#comCard img {
	height: 260px;
	margin-top: 10px;
	margin-right: 25px;
	margin-left: 25px;
}

#land {
	transition: margin-right 0.5s, margin-left 0.5s, height 0.5s;
	height: 300px;
}

#cardInfo {
	position: absolute;
	text-align: center;
	top: 0;
	right: 0;
	width: 23%;
	background-color: #C9202F;
	height: 100%;
	text-align: center;
	box-shadow: 0px 0px 20px black;
	border-left: 3px solid black;
}

#cardInfo img {
	width: 265px;
	margin-top: 50px;
}

#videoBackground {
	height: 100%;
	position: absolute;
	top: 0;
	left: -20%;
	z-index: -1;
}

#options {
	transition: color 0.7s;
	margin: 0;
	position: absolute;
	z-index: 100;
	top: 0;
	right: 5px;
	font-size: 25px;
	font-weight: bold;
}

#turnAll {
	transition: color 0.7s;
	margin: 0;
	position: absolute;
	z-index: 100;
	top: 0;
	right: 55px;
	font-size: 25px;
	font-weight: bold;
}

#versionInfo {
	transition: color 0.7s;
	margin: 0;
	color: black;
	position: absolute;
	z-index: 100;
	top: 5px;
	right: 35px;
	font-size: 25px;
	font-weight: bold;
}

#games {
	transition: color 0.7s;
	margin: 0;
	position: absolute;
	z-index: 100;
	top: 0;
	right: 85px;
	font-size: 25px;
	font-weight: bold;
}

#version {
	margin: 0;
	color: white;
	position: absolute;
	z-index: 100;
	top: 5px;
	left: 5px;
	font-size: 12px;
}

#options:hover {
	color: white;
	cursor: pointer;
}

#games:hover {
	color: white;
	cursor: pointer;
}

#turnAll:hover {
	color: white;
	cursor: pointer;
}

#versionInfo:hover {
	color: white;
	cursor: pointer;
}

#optionsDiv {
	padding: 10px;
	text-align: justify;
	display: none;
	border-bottom: 1px dashed black;
}

#versionInfoDiv {
	padding: 10px;
	text-align: justify;
	display: none;
	border-bottom: 1px dashed black;
}

#versionInfoDiv h1 {
	text-align: center;
}

#versionInfoDiv p:before {
	content: '-';
	margin-right: 5px;
}

.anOption {
	display: flex;
	font-weight: bold;
}

#backgroundColorOption {
	margin-left: 10px;
	margin-top: 12px;
}

#turnAllOption {
	margin-left: 10px;
	margin-top: 19px;
}

#allowClipOption {
	margin-left: 10px;
	margin-top: 19px;
}

#videoBackgroundOption {
	margin-left: 10px;
	margin-top: 19px;
}

#allowTurnCardOption {
	margin-left: 10px;
	margin-top: 19px;
}

.anOption select {
	margin-left: 10px;
	height: 25px;
	margin-top: 12px;
}

#gameGrayOverlay {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 1000px;
	background-color: rgba(0,0,0,0.75);
	z-index: 100;
}


#gameGrayOverlay div {
	transition: 0.5s;
	color: white;
	margin: 25px;
	padding: 25px;
	width: 200px;
	height: 150px;
	border-radius: 10px;
	border: 5px solid white;
	text-align: center;
	background-position: center;
	z-index: 1000000;
}

#gameGrayOverlay div:hover {
	transition: 0.5s;
	width: 250px;
	cursor: pointer;
}

#gameGrayOverlay h1 {
	font-weight: bold;
	-webkit-text-stroke: 1px black;
	margin-top: -20px;
}

/* IMG des jeux */

#huntGameDiv {
	background-image: url('gameImg/hunt.png');
	background-size: cover;
}

#planechaseGameDiv {
	background-image: url('gameImg/planechase.png');
	background-size: cover;
}

#explorationGameDiv {
	background-image: url('gameImg/exploration.png');
	background-size: cover;
}