.TryBattleContainer{
	width: 100vw;
	height: 100vw;
	max-width: 150px;
	max-height: 150px;

	z-index: 999;
	position: fixed;
	
	right: 25px;
	bottom: 0;
	
	/*Если нужно кнопку поставить по центру экрана, разблокируйте нижний блок*/

	/*top: 50%;
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);*/
}

.btn_TryBattle{
	width: 100%;
	height: 100%;
	background: url('../i/try/btn_tryBattle.png') no-repeat bottom center;
	background-size: contain;
	transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration:  0.3s;
    cursor: pointer;	
}

.btn_TryBattle:hover{
	-webkit-filter: brightness(130%) drop-shadow(0 0 5px #ffe4b3);
  	filter: brightness(130%) drop-shadow(0 0 5px #ffe4b3);
  	margin-top: -10px;
}

.btn_TryBattleClose{
	width: 100%;
	height: 100%;
	max-width: 20px;
	max-height: 20px;
	position: absolute;
	top: 0;
	right: 0;
	background: url('../i/try/btn_tryBattleClose.png') no-repeat center center;
	background-size: contain;
	cursor: pointer;
}

.wheel_free_pointsFlare, .wheel_free_pointsFlare:after {
	border-radius: 50%;
	width: 90px;
	height: 90px;
}

.wheel_free_pointsFlare {
	position: relative;
	top: 25%;
	left: 3%;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: wheel_free_pointsFlare 12s infinite linear;
	animation: wheel_free_pointsFlare 12s infinite linear;
	background:url('../i/try/flare.png') center center no-repeat;
	background-size: contain;
}

@-webkit-keyframes wheel_free_pointsFlare {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes wheel_free_pointsFlare {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}