.gg{
	display: none;
}

body, html {
	margin:0;
	width:100vw;
	height:100vh;
	background-color: rgba(30,30,30,0.4);
	font-family: 'Arvo';
}

.fenetre{
	width:100vw;
	height:100vh;
}

.tournicoti{
	position:relative;
	width:10%;
	height:10%;
}

#loading{
	color:rgba(50,50,50,0.9);
	position:relative;
	padding:40px;
	font-size: 16pt;
}

.tourne1{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	animation:tourne1 0.8s ease-in-out forwards infinite;
}

.tourne2{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	animation:tourne2 0.8s ease-in-out forwards infinite;	
}

@keyframes tourne1{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

@keyframes tourne2{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(-360deg);
	}
}

#boutonshautgauche{
	position: absolute;
	top:0px;
	right:-218px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding:0px;
}

#cartecontainer{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	width:100vw;
	height:100vh;
	overflow:hidden;
	position: absolute;
	top:0px;
	left:0px;
}

#cartewrapper{
	height:100%;
	width:100%;
}

#windowsvg{
	margin:0px;
	position: fixed;
	top:0px;
	left:0px;
	width:100vw;
	height:100vh;
	pointer-events: none;
	z-index: 1500; 
}

#zoomsvg{
	margin:0px;
	position: fixed;
	top:0px;
	left:0px;
	width:100vw;
	height:100vh;
	pointer-events: none;
	z-index: 1500; 
}

#viseurnumero2svg{
	margin:0px;
	position: fixed;
	top:0px;
	left:0px;
	width:100vw;
	height:100vh;
	pointer-events: none;
	z-index: 20100; 
}

#viseurnumero2{
	display: none;
}

.svgscope{
	display: none;
}

.svgscopejumelles{
	display: none;
}

.lancer{
	position: absolute;
	z-index: 300;
}

.cassure{
	position:absolute;
	transition: all 0.45s ease-out;
}

.lancergrenade{
	border-radius: 80% 80% 80% 80%;
}

.presort{
	position: absolute;
	margin-top:-1vw;
	margin-left:-1vw;
	width:2vw;
	height:2vw;
	background-color: rgba(255,80,40,1);
	border-radius: 50%;
	animation: presortclignote 0.5s ease-in-out infinite;
	z-index: 600;
}

@keyframes presortclignote{
	0%{
		opacity: 1;
	}
	50%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.sort{
	position: absolute;
	border-radius: 50%;
	animation: sortclignote linear forwards;
	z-index: 6;
}

@keyframes sortclignote{
	0%{
		opacity: 1;
		transform: scale(1.0);
	}
	25%{
		opacity: 0.2;
		transform: scale(1.3);
	}
	50%{
		opacity: 1;
		transform: scale(1.0);
	}
	100%{
		opacity: 0;
		transform: scale(0);
	}
}

.joueur{
/*	position: absolute;
	width: 0px;
	height: 0px;
	transition: none 0.1s linear;*/
	z-index: 4;
}

.sousjoueur{
	background-color: rgb(240,220,220);
	border:2px solid rgb(250,240,240);
	border-radius: 50%;
	position: absolute;
	z-index:4;
	box-sizing: border-box;
}

.monjoueur{
	/*position:fixed;
	left: 50%;
	top: 50%;*/
}

.joueurmort{
	border-radius: 50%;
	top:-3vw;
	left:-3vw;
	position: absolute;
	width:6vw;
	height:6vw;
	z-index:1;
	animation: mortdujoueur 0.8s linear forwards;
	background-color: rgba(255,40,20,1);
}

.joueurmort2{
	border-radius: 50%;
	top:-1.5vw;
	left:-1.5vw;
	position: absolute;
	width:3vw;
	height:3vw;
	z-index:1;
	animation: mortdujoueur 0.8s linear forwards;
	background-color: rgba(255,40,20,1);
}

@keyframes mortdujoueur{
	0%{
		transform: scale(0.3);
		opacity: 1;
	}
	60%{
		transform: scale(0.64);
		opacity: 0.1;
	}
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.armeenmain{
	background-color: rgb(79, 25, 8);
	border-radius: 30%;
	position: absolute;
	transition: all 0.1s linear;
	z-index: 3;
}

.main{
	position: absolute;
	border-radius: 50%;
	background-color: rgba(250,240,240,1);
	border:1px solid rgb(180,180,180);
	box-sizing: border-box;
}

.oeilgauche, .oeildroit{
	width: 0px;
	height: 0px;
	position: absolute;
	overflow: visible;
	transition: all 0.1s linear;
}

.oeildroit{
	right:30%;
}
.oeilgauche{
	left:30%;
}

.oeil{
	width: 0.5vw;
	height: 0.5vw;
	position: absolute;
	top: +0.25vw;
	left: -0.45vw;
	border-radius: 50%;
	border: 0.2vw solid rgba(255,255,255,0.94);
	background-color: rgba(140,140,140,0.94);
}

.joueur:hover{
	background-color: rgb(160,140,140);
	border-color: rgb(200,200,200);
}

#menujeu{
	cursor: url("../img/pointer.png") 16 16,pointer;
	top:0vh;
	height:100vh;
	width:180px;
	position:absolute;
	z-index: 2600;
	padding:0px;
	background-color: rgba(20,20,20,0.96);
	opacity:0.8;
	color:white;
	border: 0px solid rgba(255,255,255,0.98);
	border-radius: 0px;
	user-select: none;
}

#menutoujoursvisible{
	position:absolute;
	z-index: 1200;
	margin: 0px;
	top:0px;
	left:180px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#nombrejoueurs{
	top: 0px;
	height: 20px;
	padding:10px;
	font-size: 13pt;
	background-color: rgba(20,20,20,0.9);
	color:white;
	border: 0px solid rgba(255,255,255,1);
	border-radius: 0px 0px 0px 0px;
	cursor:pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#menujeuicone{
	height:30px;
	width:30px;
	padding:5px;
	margin: 0px;
	background-color: rgba(20,20,20,0.9);
}

#menujeuicone:hover{
	background-color: rgba(60,60,60,0.9);
}

.imageboutonparam{
	height:32px;
	padding:4px 10px;
	border-radius: 0px 0px 0px 0px;
	background-color: rgba(20,20,20,0.9);
}

.imageboutonparam:hover{
	background-color: rgba(20,20,20,0.2);
}

#menuargent{
	cursor: url("../img/pointer.png") 16 16,pointer;
	color: rgba(150,250,150,0.8);
	font-weight: 600;
	font-size: 15pt;
	height: 20px;
	padding:10px;
	background-color: rgba(20,20,20,0.9);
	border-radius: 0px 0px 4px 0px;
	white-space: nowrap;
	display: none;
}

#menuargent:hover{
	background-color: rgba(60,60,60,0.9);
	color: rgba(255,208,66,0.9);
}

#delaiachatrestant{
	cursor: url("../img/pointer.png") 16 16,pointer;
	background-color: transparent;
	color:rgba(255,205,63,0.98);
	font-weight: 600;
	font-size: 15pt;
	height:20px;
	padding:10px;
	display: none;
	white-space: nowrap;
}

#delaiachatrestant:hover{
	background-color:rgba(255,205,63,0.12);
}

.menujeuinactif{
	left: -180px;
}

.menujeuactif{
	left: 0px;
}

#menujeuliste{
	background-color: rgba(20,20,20,0.98);
	height:100%;
	box-sizing: border-box;
	padding:0px 0px;
}

.itemmenu{
	border-radius: 0px;
	padding: 10px 16px;
	font-size: 13pt;
	text-align: left;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.itemmenu:hover{
	background-color: rgba(80,80,80,0.5);
	margin:0px 0px;
}

.itemmenutexte{
	width:100px;
}

.itemmenutextelong{
	width:240px;
}

.itemmenulistecont{
	width:100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.itemmenuliste{
	padding: 10px 20px;
	width:100%;
}

.itemmenuliste:hover{
	background-color: rgba(100,100,100,0.5);
}


.boutononoff{
	border: 1px solid rgba(20,20,20,0.7);
	background-color: rgba(200,200,200,0.8);
	position:relative;
	width:40px;
	height:20px;
	margin:0px 10px;
	border-radius:15px;
	transition: all 0.2s ease-in-out;
}

.boutonrond{
	position:absolute;
	padding:5px;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
	background-color: rgba(140,140,140,0.7);
}

#detailkeyboard{
	font-size: 12pt;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index:4000;
	padding:4px 20px;
	background-color: rgba(20,20,20,0.95);
	border: 0px solid rgba(255,255,255,0.9);
	border-radius: 0px;
}

#inversersouris{
	padding: 10px;
	margin-top: 8px;
	display:flex;
	flex-direction: row;
}

#inversersouris:hover{
	background-color: rgba(80,80,80,0.5);
}

#qwerty{
	padding: 10px;
	margin-top: 8px;
	display:flex;
	flex-direction: row;
}

#qwerty:hover{
	background-color: rgba(80,80,80,0.5);
}

#detailkeyboardliste{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#toucheclavier{
	display: flex;
	flex-direction: column;
	space-between:6px;
	white-space: nowrap;
	align-items: right;
	padding:16px;
}

#effettoucheclavier{
	display: flex;
	flex-direction: column;
	space-between:6px;
	white-space: nowrap;
	align-items: left;
	padding:8px;
}

#suiveurs{
	position: fixed;
	z-index: 2400;
	top:0;
	right: 10vw;
	left: 70vw;
	color: rgba(100,100,100,0.8);
	font-size:9pt;
	padding:16px 0px;
}

#fluxinfo{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:rgba(20,20,20,0.95);
	position:fixed;
	font-size: 9pt;
	font-weight: 400;
	text-align: left;
	overflow: hidden;
	border-radius: 4px;
	bottom:2vw;
	left: 64vw;
	width:22vw;
	z-index: 1600;
	pointer-events: none;
	overflow-y: visible;
}

.unflux{
	background-image: linear-gradient(86deg,rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.2) 75%,rgba(255,255,255,0.1) 100%);
	padding:3px 6px 2px 6px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.unflux > div{
	padding-bottom: 2px;
	margin-right:5px;
	white-space: nowrap;
}

.petitdrapeau{
	height:15px;
	width:20px;
	margin-right:5px;
}

#messagestreaming{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:rgba(255,255,255,0.9);
	width:16vw;
	position:fixed;
	font-size: 12pt;
	text-align: center;
	display:none;
	overflow: hidden;
	top:0;
	padding:16px;
	left: 40vw;
	z-index: 2600;
	border-radius: 0px 0px 4px 4px;
	background-color: rgba(100,100,160,0.45);
	/*border: 1px solid rgba(255,255,255,0.8);*/
	box-sizing: border-box;
}

#messagestreaming:hover{
	background-color: rgba(160,100,100,0.45);
	cursor: url("../img/pointer.png") 16 16, pointer;
}

#messagemeurtreelo{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:white;
	width:20vw;
	position:fixed;
	font-size: 12pt;
	text-align: center;
	display:none;
	overflow: hidden;
	bottom:9.2vw;
	padding:8px;
	left: 40vw;
	right: 40vw;
	z-index: 2600;
	border-radius: 2px;
	background-color: rgba(20,20,20,0.85);
	border: 0px;
	box-sizing: border-box;
}

#messageobjectif{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:white;
	width:12vw;
	position:fixed;
	font-size: 10pt;
	text-align: center;
	display:none;
	overflow: hidden;
	top:5vw;
	padding:12px;
	left: 2vw;
	z-index: 1800;
	border-radius: 4px;
	background-color: rgba(20,20,20,0.15);
	border: 1px solid rgba(255,255,255,0.2);
	box-sizing: border-box;
	pointer-events: none;
}

#messageobjectif:hover{
	background-color: rgba(20,20,20,0.65);
}

.messageobjectifnouveau{
	background-color: rgba(240,240,20,0.65) !important;
	animation: brilleunpeu 2500ms infinite;
}

.objectiftitre{
	font-weight: 600;
	margin-bottom: 10px;
}

#message{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:white;
	width:16vw;
	position:fixed;
	font-size: 12pt;
	text-align: center;
	display:none;
	overflow: hidden;
	top:4vw;
	padding:16px;
	left: 40vw;
	z-index: 2400;
	border-radius: 4px;
	background-color: rgba(20,20,20,0.85);
	border: 1px solid rgba(255,255,255,0.8);
	box-sizing: border-box;
}

#messageaide{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:rgba(255,255,255,0.86);
	left: 32vw;
	width:36vw;
	position:fixed;
	font-size: 11pt;
	text-align: center;
	display:none;
	overflow: hidden;
	bottom:8.5vw;
	padding:6px;
	z-index: 1600;
	border-radius: 4px;
	background-color: rgba(20,20,20,0.46);
	box-sizing: border-box;
	pointer-events: none;
}

.unmessageaide{
	padding:6px;
	background-color: rgba(255,255,255,0.06);
	margin:4px 2px;
}

#messageserveur{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	color:white;
	position:fixed;
	display:none;
	font-size: 12pt;
	text-align: center;
	display:none;
	overflow: hidden;
	top:0vw;
	padding:24px;
	left: 0vw;
	right: 0vw;
	z-index: 2800;
	background-color: rgba(40,40,40,0.75);
}

#messageserveurcont{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
}

#messageserveurmessage{
	padding:20px;
}

#messageserveurquitter{
	cursor: url('../img/crosshair.png') 16 16 ,crosshair;
	padding:24px;
	width:120px;
	background-color: rgba(20,20,20,0.8);
}

#messageserveurquitter:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(70,70,70,0.85);
}

#mort{
	background-color: rgba(255,30,30,0.6);
	position: absolute;
	top:0%;
	left:0%;
	right:0%;
	bottom:0%;
	z-index:2800;
	display: none;
	align-items: center;
	justify-content: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.mortlegere{
	background-color: rgba(255,30,30,0.4) !important;
}

.defaitelegere{
	background-color: rgba(160,160,160,0.4) !important;
}

#victoire{
	background-color: rgba(255,215,0,0.6);
	position: absolute;
	top:0%;
	left:0%;
	right:0%;
	bottom:0%;
	z-index:2200;
	display: none;
	align-items: center;
	justify-content: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.victoirelegere{
	background-color: rgba(255,215,0,0.4) !important;
}

#victoiremanche{
	background-color: rgba(255,215,0,0.4);
	position: absolute;
	top:0%;
	left:0%;
	right:0%;
	bottom:0%;
	z-index:2200;
	display: none;
	align-items: center;
	justify-content: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
}

#finmanche{
	background-color: rgba(30,30,30,0.75);
	color:white;
	font-size: 12pt;
	position: absolute;
	top:8vw;
	left:42vw;
	width:16vw;
	z-index:3200;
	display: none;
	padding:20px;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
}

#demarrerpartie{
	background-color: rgba(30,30,30,0.3);
	border-radius:2px;
	color:white;
	font-size: 12pt;
	position: absolute;
	top:4vw;
	left:42vw;
	width:16vw;
	z-index:2400;
	display: none;
	padding:20px;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	text-align: center;
	box-sizing: border-box;
}

#demarreradmin{
	background-color: rgba(30,30,30,0.3);
	border-radius:2px;
	color:white;
	font-size: 12pt;
	position: absolute;
	right:4vw;
	top:4vw;
	width:16vw;
	z-index:2400;
	display: none;
	padding:20px;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	text-align: center;
	box-sizing: border-box;
}

.demarrerpartiebouton:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(60,60,60,0.3) !important;
}

#choixcamp{
	background-color: rgba(30,30,30,0.3);
	border-radius:2px;
	color:white;
	font-size: 12pt;
	position: absolute;
	top:40vh;
	left:42vw;
	width:16vw;
	z-index:2400;
	padding:0px 0px;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	display:none;
	box-sizing: border-box;
}

#choixcamptitre{
	text-align: center;
	padding:15px;
}

#choixcampcontainer{
	font-weight: 600;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#choixcamprouge{
	width:50%;
	padding:15px;
	color:rgba(240,120,130,0.89);
	text-align: center;
}

#choixcamprouge:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(220,60,0,0.14);
}

#choixcampbleu{
	width:50%;
	padding:15px;
	color:rgba(60,140,240,0.89);
	text-align: center;
}

#choixcampbleu:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(0,60,220,0.14);
}

#choixcampblanc{
	width:100%;
	padding:15px 15px;
	color:white;
	text-align: center;
}

#choixcampblanc:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(220,220,220,0.3);
}

#monargentinventaire{
	color: rgba(150,250,150,0.8);
	font-weight: 600;
	font-size: 20pt;
}

.zeroargent{
	color: rgba(250,120,120,0.8) !important;
}

.remplacement{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	padding:12px;
	border-radius: 2px;
	color:rgba(255,255,255,0.75);
	z-index: 2400;
}

.remplacement:hover{
	opacity:0.6; 
}

.boutonquitterpetit{
	position: absolute;
	right:5px;
	top:5px;
	width:20px;
	height:20px;
	user-select: none;
}

.boutonquitterpetit > img{
	width: 100%;
}

.boutonquitterpetit:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(255,255,255,0.3);
}

.boutonquitter{
	position: absolute;
	right:16px;
	top:16px;
	width:32px;
	height:32px;
	user-select: none;
}

.boutonquitter > img{
	width: 100%;
}

.boutonquitter:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(255,255,255,0.3);
}

.boutonquitternormal{
	position: absolute;
	right:16px;
	top:16px;
	width:32px;
	height:32px;
	user-select: none;
}

.boutonquitternormal > img{
	width: 100%;
}

.boutonquitternormal:hover{
	cursor: pointer;
	background-color: rgba(255,255,255,0.3);
}

.boutonquitternormal:hover > img{
	filter:invert(0.4);
}

#inventaire{
	cursor:url("../img/cursor.png") 16 16, crosshair;
	background-color: rgba(30,30,30,0.95);
	position: fixed;
	top:5vh;
	height:90vh;
	left:3vw;
	width:94vw;
	z-index:3200;
	display: none;
	padding:5px;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	color:rgba(250,250,250,0.95);
	overflow-y: auto;
}

#monargentinventaire{
	text-align: center;
	padding:20px;
}

#armureriecontainer{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
}

.categoriearme{
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height:100%;
	margin:0px 15px;
	width:11vw;
}

.categoriearmetitre{
	cursor:url("../img/cursor.png") 16 16, crosshair;
	height:50px;
	background-color: rgba(255,255,255,0.1);
	margin-bottom: 20px;
	font-size: 14pt;
	font-weight: 600;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.categoriearmecontainer{
	cursor:url("../img/pointer.png") 16 16, pointer !important;
	font-size: 9pt;
	padding:10px;
	width:11vw;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border:1px solid transparent;
}

.armecachee{
	color: rgba(150,150,150,0.4) ;
}

.armecachee > img{
	filter: invert(0.6);
}

.armepossedee{
	border: 1px solid rgba(255,208,66,0.8);
	background-color: rgba(255,208,66,0.08);
}

.categoriearmecontainer:hover{
	background-color: rgba(255,255,255,0.15);
	border:1px solid white;
	color:rgba(250,250,250,0.95);
}

.categoriearmeimgarme{
	height:80px;
}

.categoriearmenomarme{
	position: absolute;
	top:0px;
	left:3px;
}

.categoriearmecoutarme{
	position: absolute;
	bottom:0px;
	right:3px;
}

#scores{
	background-color: rgba(30,30,30,0.52);
	border-radius:2px;
	position: absolute;
	top:4vw;
	left:2vw;
	width:26vw;
	z-index:2400;
	display: none;
	padding:30px;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}

#infopartie{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	color:rgba(255,208,66,0.8);
	margin-bottom:30px;
}

#infopartiecolonne1 > div{

}
#infopartiecolonne2 > div{
	text-align: right;
}

.scoresequipe{
	padding:10px;
}

.camprouge{
	color:rgba(255,160,160,0.98);
}
.campbleu{
	color:rgba(160,160,255,0.98);
}
.campgris{
	color:rgba(180,180,180,0.9);
}
.campblanc{
	color:rgba(245,245,245,0.9);
}

.camprougefonce{
	color:rgba(180,30,30,0.98);
}
.campbleufonce{
	color:rgba(30,30,180,0.98);
}
.campgrisfonce{
	color:rgba(80,80,80,0.98);
}
.campvertfonce{
	color:rgba(15,150,15,0.98);
}
.camporangefonce{
	color:rgba(255,208,66,0.98);
}

.camprougetresfonce{
	color:rgba(140,10,10,0.98);
}
.campbleutresfonce{
	color:rgba(10,10,140,0.98);
}
.campgristresfonce{
	color:rgba(40,40,40,0.98);
}
.campverttresfonce{
	color:rgba(10,140,10,0.98);
}
.camporangetresfonce{
	color:rgba(155,88,0,0.98);
}

.borderbasrouge{
	border-bottom: 1px solid rgba(255,160,160,0.98);
}
.borderbasbleu{
	border-bottom: 1px solid rgba(160,160,255,0.98);
}
.borderbasgris{
	border-bottom: 1px solid rgba(180,180,180,0.9);
}
.borderbasblanc{
	border-bottom: 1px solid rgba(245,245,245,0.9);
}

.tdequipe{
	padding-top: 20px;
	padding-bottom: 4px;
}

.tdscoreequipe{
	font-size: 13pt;
}

#tablescores{
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.unscore{
	padding:5px;
	display: flex;
	flex-direction: row;
}

.unscore > div{
	margin:0px 20px;
}

.trscoretitre{
	color:rgba(210,210,210,0.78);
	font-size: 12pt;
}

.trtoimeme{
	background-color: rgba(255,255,255,0.12);
}

.trscore > td{
	padding:4px;
}

.trscorehoverable:hover{
	background-color: rgba(255,255,255,0.06);
	cursor: url('../img/pointer.png') 16 16 ,pointer;
}

#boutonschangecamp{
	margin-top: 26px;
	width:100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}


.boutonchangecamp{
	background-color: rgba(255,255,255,0.03);
	padding:10px;
}

.boutonchangecamp:hover{
	background-color: rgba(255,255,255,0.12);
	cursor: url('../img/pointer.png') 16 16 ,pointer;
}

#aliaschat{
	display: none;
}

#chat{
	z-index: 2400;
	position: absolute;
	left:16vw;
	bottom:2vw;
	padding:10px;
	background-color: rgba(255,255,255,0.12);
	height:100px;
	width:16vw;
	display:none;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-end;
	overflow-y: hidden;
}

#chatmessages{
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

.unmessagechat{
	padding:3px;
	width: 100%;
	text-align:left;
	overflow-wrap: break-word;
}

#inputchat{
	background-color: rgba(255,255,255,0.44);
	width:100%;
	border: 0;
	box-sizing: border-box;
	outline: none;
	margin:4px 0px;
	padding:4px 8px;
}

.messagefin{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	position: relative;
	color:white;
	margin: 0px 0px 100px 0px;
	font-size: 12pt;
	text-align: center;
	overflow: visible;
	padding:16px;
	margin: 10px;
	z-index: 3000;
	border-radius: 4px;
	background-color: rgba(20,20,20,0.85);
	border: 0px solid rgba(255,255,255,0.8);
}

.messagefinversus{
	margin: 0px 0px 0px 0px !important;
}

.messagefinmort{
	font-size: 20pt;
	margin: 12px;
}

.messagefinpar{
	font-size: 10pt;
	margin: 6px;
}

.messagefinresume{
	margin: 10px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.messagefinresume > div{
	margin: 10px 0px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.messagefinresume > div > div{
	margin: 0px 30px;
}

.messagefinboutons{
	margin:0px 0px;
}

.boutonfin{
	margin:6px;
	padding:14px;
	color:#444;
	border-radius:2px;
	background-color: rgba(240,240,240,0.9);
	font-size: 14pt;
}

.boutonfin:hover{
	cursor: url('../img/pointer.png') 16 16 ,pointer;
	background-color: rgba(215,215,215,0.9);
}

#vie{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	height:2vw;
	position:fixed;
	overflow: hidden;
	bottom:2vw;
	left: 40vw;
	right: 40vw;
	z-index: 1600;
	border-radius: 8px;
	opacity:0.65;
	/*box-shadow: 0px 0px 24px 0px rgba(255,255,255,0.8);*/
	border: 4px solid rgba(255,255,255,1);
	pointer-events: none;
}

#viecache{
	position: absolute;
	right:0%;
	width:0%;
	height:100%;
	background-color:rgba(30,30,30,0.74);
	pointer-events: none;
}

#oxygene{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	height:1.5vw;
	width:12vw;
	position:fixed;
	overflow: hidden;
	bottom:6vw;
	left: 44vw;
	z-index: 1600;
	border-radius: 4px;
	opacity:0.65;
	/*box-shadow: 0px 0px 24px 0px rgba(255,255,255,0.8);*/
	pointer-events: none;
}

#oxygenecache{
	position: absolute;
	right:0%;
	width:0%;
	height:100%;
	background-color:rgba(30,30,30,0.74);
	pointer-events: none;
}

#barrelancer{
	background-color: rgba(255,255,255,0.56);
	border: 0px solid rgba(255,255,255,1);
	border-radius: 4px;
	overflow:hidden;
	display:none;
	position:fixed;
	width:1.5vw;
	height:8vw;
	right: 15vw;
	bottom:1.6vw;
	z-index: 1600;
	opacity:0.8;
	cursor: url("../img/cursor.png") 16 16, crosshair;
	pointer-events: none;
} 

#barrelancerinterieur{
	background-color: white;
	position:absolute;
	width:100%;
	height:50%;
	bottom:0;
	opacity:0.72;
	cursor: url("../img/cursor.png") 16 16, crosshair;
}

#barrechargeur{
	position:fixed;
	height:8vw;
	width:3vw;
	padding-bottom: 4px;
	bottom:1.6vw;
	right: 8.6vw;
	z-index: 1600;
	opacity:0.7;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: url("../img/cursor.png") 16 16, crosshair;
	pointer-events: none;
}

.barrechargeur{
	height:1.5vw;
	margin:2px;
	width:100%;
	border-radius: 15%;
	box-shadow: 0px 0px 2px 0px rgba(255,255,255,0.5);
	background-color: rgba(255,255,255,0.85);
}

#barrechargeurvide{
	display:none;
	background-color: rgba(0,0,0,0.95) !important;
	height: 4px;
	margin: 0px;
}

@keyframes scintille{
	0%{   opacity: 0; }
	50%{  opacity: 1; }
	100%{ opacity: 0; }
}

@keyframes recul{
	0%{   opacity: 0; }
	100%{ opacity: 1; }
}

@keyframes brille{
	0%{   opacity: 0.6; }
	50%{  opacity: 1; }
	100%{ opacity: 0.6; }
}

@keyframes brilleunpeu{
	0%{   opacity: 0.9; }
	50%{  opacity: 1; }
	100%{ opacity: 0.85; }
}

@keyframes cligne{
	0%{   opacity: 0.6; }
	30%{  opacity: 1; }
	60%{ opacity: 0.6; }
	100%{ opacity: 1; }
}

@keyframes cligneunpeu{
	0%{   opacity: 0.6; }
	30%{  opacity: 1; }
	60%{ opacity: 0.9; }
	100%{ opacity: 1; }
}

@keyframes highlight{
	0%{   opacity: 0; background-color: rgba(20,20,20,0.9);}
	20%{   opacity: 1; background-color: rgba(100,100,100,0.9);}
	60%{   opacity: 1; background-color: rgba(20,20,20,0.9);}
	100%{   opacity: 0.4; background-color: rgba(20,20,20,0.9);}
}

@keyframes argentchange{
	0%{
		color: rgba(150,250,150,0.6);
		transform: scale(1);
	}
	20%{
		color:rgba(255,208,66,1);
		transform: scale(1.6);
	}
	100%{   
		color: rgba(150,250,150,0.6);
		transform: scale(1);
	}
}

@keyframes argentchangezero{
	0%{
		color: rgba(250,100,100,0.6);
		transform: scale(1);
	}
	20%{
		color:rgba(255,208,66,1);
		transform: scale(1.6);
	}
	100%{   
		color: rgba(250,100,100,0.6);
		transform: scale(1);
	}
}

.degat{
	background-color: rgba(245,23,20,0.8) !important;
}

.rond{
	position:absolute;
	background-color: rgba(160,160,160,0.94);
	/*border: 0.4vw solid rgba(255,255,255,0.62);*/
	border-radius: 50%;
}

.rondfantome{
	position:absolute;
	border-radius: 50%;
	z-index:6;
}

.ligne{
	position:absolute;
	background-color: rgba(80, 80, 80,0.9);
	border: 0px solid rgba(160,160,160,0.94);
}

.lignefantome{
	z-index:600;
	position:absolute;
	border-radius:8px;
}

#listeequipements{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-height: 40vh;
	padding:0px;
	position:absolute;
	background-color: rgba(80,80,80,0.19);
	border: 3px solid rgba(245,245,245,0.7);
	border-radius: 6px;
	right:2vw;
	top:2vw;
	z-index: 1800;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.unequipement{
	padding:2px;
	position: relative;
	background-color: rgba(40,40,40,0.65);
}

.unequipement > img{
	width:100%;
}

.unequipement:hover{
	background-color: rgba(80,80,80,0.5) !important;
}

#listearmes{
	cursor: url("../img/cursor.png") 16 16, crosshair;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-height: 60vh;
	padding:0px;
	position:absolute;
	background-color: rgba(180,180,180,0.19);
	right:2vw;
	bottom:2vw;
	border: 3px solid rgba(255,255,255,0.8);
	border-radius: 6px;
	z-index: 1800;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.armeimage{
	cursor:url("../img/pointer.png") 16 16, pointer;
	padding:2px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0px solid rgba(255,255,255,0.90);
	background-color: rgba(40,40,40,0.65);
}

.armeimage:hover{
	background-color: rgba(80,80,80,0.5) !important;
}

.armenom{
	position: absolute;
	color:#222;
	font-size:9pt;
	top:8px;
	left:8px;
}

.armeactive{
	background-color: rgba(180,180,180,0.25) !important;
}

.ramassagecontainer{
	position: absolute;
}

.clicker{
	cursor:url("../img/pointer.png") 16 16, pointer;
	position: absolute;
	overflow: visible;
}

.ramassage{
	width:32px;
	height:32px;
	top:-16px;
	left:-16px;
	position: absolute;
	box-sizing: border-box;
	border-radius: 3px;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:100;
	/*animation: brille 2500ms infinite;*/
}

.ramassage:hover{
	animation:none;
}

.armeausol{
	padding:6px;
	border:1px solid rgba(30,30,30,0.1);
	background-color: rgba(30,30,30,0.05);
	border-radius: 50%;
}

.imagegrisee{
	filter: invert(0.25);
}

.ramassage > img{
	width:100%;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}
/*
.equipementausol{
	padding:6px;
	width:40px !important;
	height:40px !important;
	border:1px solid rgba(30,30,30,0.1);
	background-color: rgba(30,30,30,0.05);
	border-radius: 50%; 
}
*/
.texteramassage{
	position: relative;
	font-size:9pt;
	top:200%;
	display:none;
}

.detail{
	white-space: nowrap;
	padding:8px;
	margin-right: 10px;
	font-size: 10pt;
	right:100%;
	top:1vw;
	position: absolute;
	background-color: rgba(50,50,50,0.2);
	color:white;
	z-index: 1000;
	border-radius: 5%;
}

.infotexte{
	white-space: nowrap;
	padding:8px;
	font-size: 10pt;
	right:0;
	top:0;
	position: absolute;
	background-color: rgba(50,50,50,0.5);
	color:white;
	z-index: 1200;
	border-radius: 5%;
	-webkit-animation: none !important;
	-moz-animation: none !important;
	-o-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}
.infotexte:hover{
	cursor: url("../img/pointer.png") 16 16, pointer;
	background-color: rgba(50,50,50,0.65);
}

.infotextearme{
	white-space: nowrap;
	padding:2px 4px 6px 4px;
	font-size: 9pt;
	font-weight: 600;
	left:0;
	top:0;
	width:100%;
	position: absolute;
	color:white;
	z-index: 1000;
	border-radius: 5%;
}

.infotextearme:hover{
	cursor: url("../img/pointer.png") 16 16, pointer;
}

.iconeitem{
	z-index: 12;
}

#chiffrejoueurs{
	font-size: 24pt;
	margin-right: 6pt;
}

.explosionmort{
	position:absolute;
	width:1.5vw;
	height:1.5vw;
	background-color: transparent;
}

.explosionmortsang{
	position:absolute;
	border-radius: 50%;
	background-color: red;
}

@keyframes goutte{
	0%{
		transform: scale(0);
		opacity: 1;
	}
	12%{
		transform: scale(1);
	}
	100%{
		opacity: 0;
	}
}

@keyframes fade{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

@keyframes sang{
	0%{	opacity: 1; }
	90%{	opacity: 0.7; }
	100%{ opacity: 0.1; }
}

.traitsang{
	animation: sang 12000ms ease-out forwards;
}


.chargeurcont{
	color:white;
	bottom:4px;
	right:0;
	left:0;
	position: absolute;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.chargeur{
	font-size: 12pt;
	font-weight: 600;
	text-align: center;
	padding:0px 3px;
}

.chargeurmax{
	font-size: 8pt;
	line-height: 12pt;
	right:0;
	left:0;
	text-align: center;
	padding:0px 3px;
	text-align: center;
}

.signalement{
	width:4px;
	height:4px;
	background-color: red;
	border-radius: 2px;
	position: absolute;
	z-index:2600;
}

.indicationnombreequipement{
	position: absolute;
	font-size: 9pt;
	font-weight: 600;
	padding:3px;
	left:0px;
	bottom:0px;
	color:white;
}

.emphase{
	animation: highlight 2800ms forwards;
}

.emphaselent{
	animation: highlight 4000ms forwards;
}

.attire{
	animation: cligne 1000ms forwards;
}

.attireunpeu{
	animation: cligneunpeu 1000ms forwards;
}

.suggestioninscription{
	position: absolute;
	top:calc(100% + 40px);
	border-radius: 2px;
	font-size: 11pt;
	left:0%;
	right:0%;
	padding:16px;
	background-color:rgba(255,255,255,0.92);
	color:#444;
	text-align:center;
}

.suggestioninscription a{
	text-decoration: none;
	color: #444;
}

.suggestioninscription:hover{
	background-color:rgba(255,255,255,0.72);
}

.commentairesjoueur{
	position:absolute;
	top:0%;
	left:calc(100% + 16px);
	bottom: 0%;
	border-radius:4px;
	background-color: rgba(20,20,20,0.96);
	padding:24px;
	display:flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
}

.airecommentaires{
	margin:16px 0px;
	border-radius:2px;
	border:0px;
	padding:8px;
}

.texteemail{
	font-size:10pt;
}

.emailcommentaires{
	margin:16px 0px;
	border-radius:2px;
	border:0px;
	width:200px;
	padding:8px;
}

.envoicommentaires{
	background-color: rgba(255,255,255,0.96);
	border-radius:2px;
	color:#222;
	cursor: pointer;
	text-align:center;
	padding:8px;
}

.envoicommentaires:hover{
	background-color: rgba(255,255,255,0.6);
}

.indicateurdirection{
	position:absolute;
	z-index: 3000;
	top:0;
	left:0;
}

.indicateurobjectif{
	position:absolute;
	top:-10px;
	left:-10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.indicateurami{
	position:absolute;
	top:-8px;
	left:-8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
}

/*.indicateurdirection:hover{
	box-shadow: 0px 0px 12px 6px rgba(255,255,255,0.56);
	cursor: url("../img/pointer.png") 16 16,pointer;
}
*/

.molettedegauche{
	position: fixed;
	z-index: 1900;
	right: 62vw;
	width: 20vw;
	bottom: 0vw;
	height: 20vw;
}

.molettededroite{
	position: fixed;
	z-index: 1900;
	left: 62vw;
	width: 20vw;
	bottom: 0vw;
	height: 20vw;
}