			html	/* Prevent iPhone body scrolling when modal */
			{
				-webkit-overflow-scrolling: touch;
			}

			body
			{
				font-family: Arial, Helvetica, sans-serif;
				overflow : hidden;
				margin:0;    padding:0;    width: 100%;    height: 100%;
			}

			img
			{
				user-drag: none; 
				user-select: none;
				-moz-user-select: none;
				-webkit-user-drag: none;
				-webkit-user-select: none;
				-ms-user-select: none;
			}

			::-webkit-scrollbar { width: 15px; }
			::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; }
			::-webkit-scrollbar-thumb { background: #166590; border-radius: 10px; }
			::-webkit-scrollbar-thumb:hover { background: #00b8ff; }

			.light-text {
				text-shadow: 0 -1px 4px #FFF, 0 -2px 10px #ff0, -2px 12px 20px #ff8000, 0px -8px 40px #ff0000, 0px 2px 2px rgba(206, 89, 55, 0);
				font-size: 40px;
			}

.mainButtons {
	top: 10px;
	left: 10px;
	position: fixed;
	width: 150px;
}

.mainButtonItem {
	position: relative;
	display: block;
	height: 50px; 
	width: 100%; 
	margin-bottom: 10px; 
	cursor: pointer;
}

.mainButtonItem.glowblue:hover, .mainButtonItem.glowblue:active {
	-webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 255, 0.9));
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 255, 0.9));
}

.mainButtonItem.glowyellow:hover, .mainButtonItem.glowyellow:active {
	-webkit-filter: drop-shadow(0px 0px 5px rgba(220, 220, 0, 0.9));
	filter: drop-shadow(0px 0px 5px rgba(220, 220, 0, 0.9));
}

.mainButtonItem.glowpurple:hover, .mainButtonItem.glowpurple:active {
	-webkit-filter: drop-shadow(0px 0px 5px rgba(128, 0, 128, 0.9));
	filter: drop-shadow(0px 0px 5px rgba(128, 0, 128, 0.9));
}

.mainButtonItem img.image {
	position: absolute;
	width: 100%;
}

.mainButtonItem img.icon {
	position: absolute;
	top: 10px;
	left: 12px;
	width: 30px;
}

.mainButtonItem span {
	position: absolute;
	top: 15px;
	left: 60px;
	font-size: 24px;
	font-weight: bold;
	-webkit-text-stroke: 1.2px rgba(0,0,0,1);
	text-stroke: 1.2px rgba(0,0,0,1);
	z-index: 10;
	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.mainButtonItem span.yellow { color: #E7FF00; }
.mainButtonItem span.white { color: #FFFFFF; }

/* Shared */
.loginBtn {
  box-sizing: border-box;
  position: relative;
  /* width: 13em;  - apply for fixed size */
  margin: 0.2em;
  padding: 0 15px 0 46px;
  border: none;
  text-align: left;
  line-height: 34px;
  white-space: nowrap;
  border-radius: 0.2em;
  font-size: 16px;
  color: #FFF;
  cursor: pointer;
}
.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 100%;
}
.loginBtn:focus {
  outline: none;
}
.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}


/* Facebook */
.loginBtn--facebook {
  background-color: #4C69BA;
  background-image: linear-gradient(#4C69BA, #3B55A0);
  /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
  border-right: #364e92 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
  background-color: #5B7BD5;
  background-image: linear-gradient(#5B7BD5, #4864B1);
}


/* Google */
.loginBtn--google {
  /*font-family: "Roboto", Roboto, arial, sans-serif;*/
  background: #DD4B39;
}
.loginBtn--google:before {
  border-right: #BB3F30 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 6px 6px no-repeat;
}
.loginBtn--google:hover,
.loginBtn--google:focus {
  background: #E74B37;
}

.sk-fading-background {
  background-color: #000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: fixed;
  z-index: 10000;
}

.sk-fading-circle {
  top: 47%;
  left: 47%;
  width: 100px;
  height: 100px;
  position: fixed;
}

.sk-fading-circle span {
  position: relative;
  top: 120%;
  left: -28%;
  font-family: Arial;
  font-size: 24px;
  font-weight: bold;
  color: white;
  width: 100%;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}
	/*--------------------------------------------------------------------------------------------------
	-------------------------------------- F P S ---------------------------------------
	--------------------------------------------------------------------------------------------------*/

 			.layer1 {
				position: fixed; /* ������������� ���������������� */
				text-align: left;
				font-size: 15px;
				color: red;
				top: 0px;
				left: 0px;
				pointer-events:none;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
			}

			.forgotPassButton {
				box-shadow:inset 0px 1px 0px 0px #ffffff;
				background:linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
				background-color:#ededed;
				border-radius:6px;
				border:1px solid #dcdcdc;
				display:block;
				cursor:pointer;
				color:#777777;
				font-family:Arial;
				font-size:15px;
				font-weight:bold;
				padding:6px 24px;
				text-decoration:none;
				text-shadow:0px 1px 0px #ffffff;
			}
			.forgotPassButton:hover {
				background:linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
				background-color:#dfdfdf;
			}
			.forgotPassButton:active {
				position:relative;
				top:1px;
			}


	/*--------------------------------------------------------------------------------------------------
	-------------------------------------- S E L E C T O R -------------------------------------
	--------------------------------------------------------------------------------------------------*/

			.styled-select {
			  background: url("../assets/Resourse/whitearrow.png") no-repeat 96% 0;
			  overflow: hidden;
			  padding: 8px 12px;
			  margin: 8px 0;
			  width: 80%;
			}
			.styled-select select {
			  background: transparent;
			  border: none;
			  font-size: 24px;
			  /* If you add too much padding here, the options won't show in IE */
			  width: 100%;
			  height: 100%;
			}

			.rounded {
			  -webkit-border-radius: 20px;
			  -moz-border-radius: 20px;
			  border-radius: 20px;
			}
			.semi-square {
			  -webkit-border-radius: 5px;
			  -moz-border-radius: 5px;
			  border-radius: 5px;
			}

			.blue {
			  background-color: #3b8ec2;
			}
			
			.blue select {
			  color: #fff;
			  background-color: #3b8ec2
			}

			/* Full-width input fields */
			input[type=text], input[type=password], [type=text] {
			    width: 100%;
			    padding: 12px 20px;
			    margin: 8px 0;
			    display: inline-block;
			    border: 1px solid #ccc;
			    box-sizing: border-box;
			}
			
			.buttontext {
			    background-color: #4CAF50;
			    color: white;
			    padding: 14px 20px;
			    margin: 8px 0;
			    border: none;
			    cursor: pointer;
			    width: 100%;
			}
			
			.buttontext:hover {
			    opacity: 0.8;
			}

	/*--------------------------------------------------------------------------------------------------
	-------------------------------------- S W I T C H E R -------------------------------------
	--------------------------------------------------------------------------------------------------*/
			
			.container_switch {
			  position: relative;
			  display: block;
			  font-size: 22px;
			  text-align: left;
			  color: #fff;
			  padding-top: 10px;
			  margin-bottom: 15px;
			  width: 355px;
			  border-bottom: 2px solid white;
			}
			
			.container_switch input { 
			  opacity: 0;
			  width: 0;
			  height: 0;
			  border-bottom: 3px solid white;
			}
			
			.slider {
				position: absolute;
				cursor: pointer;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				margin-left: 300px;
				border-radius: 34px;
				background-color: #F39696;
				background-repeat: no-repeat;
				background-position: center;
				background-image:url("../assets/Resourse/modalite/close.png");
				width: 60px;
				height: 34px;
				-webkit-transition: .4s;
				transition: .4s;
			}
			
			input:checked + .slider {
				background-color: #21F396;
				background-image:url("../assets/Resourse/modalite/tick.png");
			}
			
			input:focus + .slider {
				box-shadow: 0 0 1px #219621;
			}


	/*--------------------------------------------------------------------------------------------------
	-------------------------------------- CHECKMARK BOX -------------------------------------
	--------------------------------------------------------------------------------------------------*/

			.container_checkbox {
			    
			    position: relative;
			    padding-left: 18px;
			    margin-bottom: 12px;
			    margin-left: 15px;
			    cursor: pointer;
			    font-size: 16px;
			    color: #000;
			    -webkit-user-select: none;
			    -moz-user-select: none;
			    -ms-user-select: none;
			    user-select: none;
			}
			
			/* Hide the browser's default checkbox */
			.container_checkbox input {
			    position: absolute;
			    opacity: 0;
			    cursor: pointer;
			    height: 0;
			    width: 0;
			}
			
			/* Create a custom checkbox */
			.checkmark {
			    position: absolute;
			    top: 0;
			    left: 0;
			    height: 15px;
			    width: 15px;
			    background-color: #ccc;
			}
			
			/* On mouse-over, add a grey background color */
			.container_checkbox:hover input ~ .checkmark {
			    background-color: #999;
			}
			
			/* When the checkbox is checked, add a blue background */
			.container_checkbox input:checked ~ .checkmark {
			    background-color: #2196F3;
			}
			
			/* Create the checkmark/indicator (hidden when not checked) */
			.checkmark:after {
			    content: "";
			    position: absolute;
			    display: none;
			}
			
			/* Show the checkmark when checked */
			.container_checkbox input:checked ~ .checkmark:after {
			    display: block;
			}
			
			/* Style the checkmark/indicator */
			.container_checkbox .checkmark:after {
			    left: 2px;
			    top: 2px;
			    width: 8px;
			    height: 5px;
			    border: solid white;
			    border-width: 0 3px 3px 0;
			    -webkit-transform: rotate(45deg);
			    -ms-transform: rotate(45deg);
			    transform: rotate(45deg);
			}

	/*--------------------------------------------------------------------------------------------------
	-------------------------------------- IN-GAME DOM -------------------------------------
	--------------------------------------------------------------------------------------------------*/

			.p1 {
				position: fixed;
				top: -500px;
				left: -500px;
			}

.InputPlayerName {
    position: fixed;
    top:  54%;
    left: 50%;
    transform: translate(-50%,-50%);
    visibility: hidden;
    z-index: 9;
}

.InputPlayerNameId {
    text-align: center;
    font-size: 22px;
}

.InputPlayerNameText {
	 position: relative;
	 font-size: 1.5em;
	 background: linear-gradient(21deg, #10abff, #1beabd);
	 padding: 3px;
	 display: inline-block;
	 border-radius: 9999em;
}
 .InputPlayerNameText *:not(span) {
	 position: relative;
	 display: inherit;
	 border-radius: inherit;
	 margin: 0;
	 border: none;
	 outline: none;
	width: 260px;
	height: 50px;
	 z-index: 10;
}
 .InputPlayerNameText *:not(span):focus + span {
	 opacity: 1;
	 transform: scale(1);
}
 .InputPlayerNameText span {
	 transform: scale(0.993, 0.94);
	 transition: transform 0.5s, opacity 0.25s;
	 opacity: 0;
	 position: absolute;
	 z-index: 9;
	 margin: 4px;
	 left: 0;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 border-radius: inherit;
	 pointer-events: none;
	 box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px #fff, 3px -3px 30px #1beabd, -3px 3px 30px #10abff;
}

			.GamemodeTemplate {
				position: fixed;
				top: 62%;
				left: 1%;
				width: 250px;
				height: 155px;
				color: rgb(255, 255, 255);
				visibility: hidden;
				opacity: 1;
				z-index: 9;
				cursor: pointer;
				transform-origin: center left;
				transition: transform .2s ease-in-out;
				-webkit-user-select: none; /* Safari */        
				-moz-user-select: none; /* Firefox */
				-ms-user-select: none; /* IE10+/Edge */
				user-select: none; /* Standard */
			}
			.GamemodeTemplate:hover {
				transform: scale(1.1) rotate(-8deg);
			}

			.GamemodeTemplateDescription {
				position: absolute;
				top: -10px;
				font-size: 20px;
				font-weight: bold;
				padding: 2px 5px 2px 5px;
				background-color: black;
				color: #CCCC00;
				transform: rotate(-6deg);
			}

			.GamemodeImg {
				width: 100%;
				height: 100%;
			}


			.LevelboardTemplate {
				position: fixed;
				top: 85%;
				left: 1%;
				width: 300px;
				height: 100px;
				color: rgb(255, 255, 255);
				overflow: hidden;
				visibility: hidden;
				opacity: 1;
				z-index: 8;
				cursor: default;
				transform: translateZ(0px);
				-webkit-user-select: none;
				-khtml-user-select: none;
				-moz-user-select: none;
				-o-user-select: none;
				user-select: none;
				pointer-events:none;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
			}

			.LevelboardInfoText {
				position: fixed;
				top: 35%;
				left: 20%;
				color: #6060FF;
				text-shadow: -3px -1px 18px rgba(0,0,0,1);
			}

			.LevelboardCarTemplate {
				position: fixed;
				width: 25%;
				height:24px;
				top: 2%;
				left: 70%;
			}

			.Levelboard_CarImg {
				width: 100%;
			}

			.LevelboardLevelTemplate {
				position: fixed;
				top: 40px;
				left: 0px;
				width: 13%;
			}

			.LevelboardLineTemplate {
				position: fixed;
				top: 40px;
				left: 40px;
				width: 87%;
			}

			.Levelboard_LevelImg {
				width: 100%;
			}

			.Levelboard_LevelLine {
				position: fixed;
				top: 40px;
				left: 40px;
				margin-top: 15px;
				height: 39px;
			}

			.Levelboard_LevelLineImg {
				width: 100%;
				height: 100%;
			}

			.Levelboard_LevelCircleImg {
				position: fixed;
				height: 60px;
			}

			.Levelboard_LevelCircleText {
				position: fixed;
				top: 52px;
				left: 12px;
				font-family: Impact, Charcoal, sans-serif;
				font-size: 30px;
				letter-spacing: 2px;
				word-spacing: 2px;
				color: #FFFFFF;
				font-weight: 700;
				text-decoration: none solid rgb(68, 68, 68);
				font-style: normal;
				font-variant: normal;
				text-transform: uppercase;
			}

			.Levelboard_LevelLineText {
				position: fixed;
				top: 39px;
				left: 73%;
				font-family: Arial, Helvetica, sans-serif;
				font-size: 14px;
				color: #FFFFFF;
				font-weight: 400;
				text-decoration: none solid rgb(68, 68, 68);
				font-style: normal;
				font-variant: normal;
				text-transform: none;
			}

			.WeaponboardTemplate {
				width: 370px;
				height: 150px;
				position: fixed;
				bottom: 0px;
				margin: 10px auto;
				left: 50%;
				text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
				border-radius: 20px;
    -webkit-text-stroke: 2px black; /* width and color */

    font-family: sans; color: yellow;
	text-align: center;
				pointer-events:none;
				user-select: none;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				-webkit-transform: translate(-50%, 0);
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
			}

			.WeaponboardTemplateItems {
				position: absolute;
				top: 15%;
				left: 15%;
			}

			.WeaponboardTemplateItem {
				display: inline-block;
				margin: 30px 30px 30px 30px;
			}

			.ProgressBarTemplate {
				width: 370px;
				height: 65px;
				position: fixed;
				bottom: 0px;
				margin: 10px auto;
				left: 50%;
				text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
				border-radius: 20px;
				visibility: hidden;
				pointer-events:none;
				user-select: none;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				-webkit-transform: translate(-50%, 0);
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
			}

			.ProgressBar_Nick {
				color: #4646fa;
				font-size: 22px;
				position: absolute;
				margin: -30px 0 0 145px;
			}
		
			.ProgressBar_Score {
				width: 240px;
				background-color: #000;
				margin: 0 auto;
				border-radius: 20px;
			}

			.ProgressBar_ScorePercent {
				width: 0;
				height: 15px;
				margin-top: 3px;
				margin-left: 3px;
				border-radius: 20px;
			}

			.ProgressBar_ScoreText {
				color: #fff;
				position: absolute;
				margin: 1px 0 0 80px;
			}

			.ProgressBar_Ammos {
				position: absolute;
				top: 0%;
				left: 95%;
				width: 190px;
				height: 60px;
				border-radius: 20px;
				border: 6px dashed #000000;
			}

			.ProgressBar_AmmosText {
				color: #fff;
				position: absolute;
				margin: 0 0 0 15px;
				font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;
				font-size: 55px;
				font-weight: bold;
				text-shadow: 0px 0px 15px #000000;
			}

			.ProgressBar_AmmosImg {
				height: 60px;
			}
		
			.ProgressBar_Level {
				width: 306px;
				background-color: #000;
				margin: 0 auto;
				margin-top: 3px;
				border-radius: 20px;
			}

			.ProgressBar_LevelPercent {
				width: 0;
				height: 15px;
				margin-top: 3px;
				margin-left: 3px;
				border-radius: 20px;
			}

			.ProgressBar_LevelText {
				color: #fff;
				position: absolute;
				margin: 1px 0 0 113px;
			}

			.LobbyText {
				position: fixed; /* ������������� ���������������� */
				text-align: center;
				left: 0;
				right: 0;
				margin-left: auto;
				margin-right: auto;
				width: 100%;
				top: 15vh;
				font-size: 34px;
				color: white;
				white-space: pre-line;
				text-shadow: 2px 2px 2px #000000;
				pointer-events:none;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
			}

			.LeaderBoardTemplate {
				position: fixed;
				right: 120px;
				top: 10px;
				width: 220px;
				height: 220px;
				color: rgb(255, 255, 255);
				font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;
				font-size: 12px;
				font-weight: bold;
				overflow: hidden;
				visibility: hidden;
				opacity: 1;
				z-index: 9;
				display: inline;
				cursor: default;
				line-height: 150%;
				transform: translateZ(0px);
				-webkit-user-select: none;
				-khtml-user-select: none;
				-moz-user-select: none;
				-o-user-select: none;
				user-select: none;
				pointer-events:none;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
				text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
			}

			.CarballScoreTemplate {
				position: fixed;
				top: 0%;
				left: 42%;
				width: 270px;
				height: 95px;
				color: rgb(255, 255, 255);
				overflow: hidden;
				visibility: hidden;
				opacity: 1;
				z-index: 8;
				cursor: default;
				transform: translateZ(0px);
				-webkit-user-select: none;
				-khtml-user-select: none;
				-moz-user-select: none;
				-o-user-select: none;
				user-select: none;
				pointer-events:none;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
			}

			.KillsBoardTemplate {
				position: fixed;
				left: 170px;
				top: 10px;
				width: 220px;
				height: 220px;
				color: rgb(255, 255, 255);
				font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;
				font-size: 12px;
				font-weight: bold;
				overflow: hidden;
				visibility: hidden;
				opacity: 1;
				z-index: 8;
				display: inline;
				cursor: default;
				line-height: 150%;
				transform: translateZ(0px);
				-webkit-user-select: none;
				-khtml-user-select: none;
				-moz-user-select: none;
				-o-user-select: none;
				user-select: none;
				pointer-events:none;
				text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
				-moz-user-select: none;
				-ms-user-select: none;
				-o-user-select: none;
				-webkit-user-select: none;
				user-select: none;
			}

	/*--------------------------------------------------------------------------------------------------
	--------------------------------- MODALITE CONTAINER --------------------------------
	--------------------------------------------------------------------------------------------------*/

				@keyframes modalite-spinner-animation{
					0%{
						-webkit-transform:rotate(0);
						-moz-transform:rotate(0);
						-ms-transform:rotate(0);
						-o-transform:rotate(0);
						transform:rotate(0)
					}
					100%{
						-webkit-transform:rotate(360deg);
						-moz-transform:rotate(360deg);
						-ms-transform:rotate(360deg);
						-o-transform:rotate(360deg);
						transform:rotate(360deg)
					}
				}
				.modalite-modal{
					display:-webkit-box;
					display:-moz-box;
					display:box;
					display:-webkit-flex;
					display:-moz-flex;
					display:-ms-flexbox;
					display:flex;
					-webkit-box-align:center;
					-moz-box-align:center;
					box-align:center;
					-webkit-align-items:center;
					-moz-align-items:center;
					-ms-align-items:center;
					-o-align-items:center;
					align-items:center;
					-ms-flex-align:center;
					-webkit-box-pack:center;
					-moz-box-pack:center;
					box-pack:center;
					-webkit-justify-content:center;
					-moz-justify-content:center;
					-ms-justify-content:center;
					-o-justify-content:center;
					justify-content:center;
					-ms-flex-pack:center;
					width:100%;
					height:100%;
					padding:15px; /* 3rem */
					box-sizing:border-box;
					position:fixed;
					top:0;
					left:0;
					z-index:9999;
					background-color:rgba(0,0,0,0.8);
					pointer-events:none;
					visibility:hidden;
					opacity:0;
					-webkit-transition:visibility 0.3s linear,opacity 0.3s ease-out;
					-moz-transition:visibility 0.3s linear,opacity 0.3s ease-out;
					transition:visibility 0.3s linear,opacity 0.3s ease-out
				}
				.modalite-modal.is-visible{
					pointer-events:auto;
					visibility:visible;
					opacity:1
				}
				.modalite-iframe .modalite-content{
					padding:0;
					overflow:hidden
				}
				.modalite-iframe iframe{
					display:block;
					width:100%;
					height:100%;
					border:none
				}
				.modalite-remote .modalite-container:before{
					content:"";
					display:none;
					pointer-events:none;
					width:100%;
					height:100%;
					background-color:#eee;
					position:absolute;
					left:0;
					top:0;
					border-radius:5px;
					visibility:visible;
					opacity:0.9;
					-webkit-transition:all 0.8s ease-out;
					-moz-transition:all 0.8s ease-out;
					transition:all 0.8s ease-out
				}
				.modalite-remote.is-visible .modalite-container:before{
					display:block
				}
				.modalite-remote.is-loaded .modalite-container:before{
					visibility:hidden;opacity:0
				}
				.modalite-remote .modalite-content:after{
					content:"";
					pointer-events:none;
					width:1.6em;
					height:1.6em;
					margin-top:-0.8em;
					margin-left:-0.8em;
					position:absolute;
					top:50%;
					left:50%;
					background-size:contain;
					background-repeat:no-repeat;
					background-image:url("../assets/Resourse/modalite/spinner.png");
					visibility:hidden;
					opacity:0;
					-webkit-animation:modalite-spinner-animation 0.8s linear infinite;
					-moz-animation:modalite-spinner-animation 0.8s linear infinite;
					animation:modalite-spinner-animation 0.8s linear infinite;
					-webkit-transition:all 0.3s ease-out;
					-moz-transition:all 0.3s ease-out;
					transition:all 0.3s ease-out
				}
				.modalite-remote.is-loading .modalite-content:after{
					visibility:visible;
					opacity:1
				}
				.modalite-container{
					position:relative;
					box-shadow:0 10px 60px 0 rgba(0,0,0,0.0);
					background-color:rgba(0,0,0,0.0);
					border-radius:5px;
					width:100%;
					height:100%;
					-webkit-transform:scale(0.9);
					-moz-transform:scale(0.9);
					-ms-transform:scale(0.9);
					-o-transform:scale(0.9);
					transform:scale(0.9);
					-webkit-transition:-webkit-transform .3s ease-out;
					-moz-transition:-moz-transform .3s ease-out;
					transition:transform .3s ease-out
				}
				.modalite-container.small{
					max-width:650px;
					max-width:40em;
					max-height:500px;
					max-height:30em;
				}
				.modalite-modal.is-visible .modalite-container{
					-webkit-transform:scale(1);
					-moz-transform:scale(1);
					-ms-transform:scale(1);
					-o-transform:scale(1);
					transform:scale(1)
				}
				.modalite-close{
					background-color:#d12626;
					background-image:url("../assets/Resourse/modalite/close.png");
					background-repeat:no-repeat;
					background-position:center center;
					display:inline-block;
					width:48px;
					height:48px;
					position:absolute;
					top:-16px;
					right:-16px;
					box-shadow:0 2px 8px 0 rgba(0,0,0,0.3);
					border-radius:32px;
					cursor:pointer;
					-webkit-transition:all 0.3s ease-out;
					-moz-transition:all 0.3s ease-out;
					transition:all 0.3s ease-out
				}
				.modalite-close:hover{
					background-color:#ea3c3c
				}
				.modalite-content{
					width:100%;
					height:100%;
					padding-left:1.5em;
					padding-right:1.5em;
					box-sizing:border-box;
					box-shadow:inset 0 0px 10px 0 rgba(0,0,0,0.2);
					border-radius:5px;
					overflow:auto
				}
				@media (max-width: 480px){
					.modalite-modal{
						display:block;
						padding:1em
					}
					.modalite-container{
						max-width:none;
						max-height:none
					}
					.modalite-close{
						-webkit-transform:scale(0.85);
						-moz-transform:scale(0.85);
						-ms-transform:scale(0.85);
						-o-transform:scale(0.85);
						transform:scale(0.85)
					}
				}