/* ============ BATTLE BONUS BY GAMBLING PROJECT ================ */
 .battleBigBlock
	{
		position:relative;
		overflow: hidden;
		width: 100%;
		height: 390px;
		background: radial-gradient(at 50% 90%, rgba(80, 86, 113, 0.25), rgba(52, 65, 101, 0.12));
		border-radius: 10px;
		box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
		z-index: 1000;

	}
 .battleHistoryBlock
	{
		position: absolute;
		top: 107px;
		left: 20px;
		display: block;
		overflow: hidden;
		height: 288px;
		opacity: 0.7;
	}
 .battleHistoryBlockSector
	{
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 100%;
		margin-top: 3px;
	}
 .battleHistoryBlockSector.red
	{
		background: linear-gradient(180deg, #dc5058, #ad3a40);
	}	
 .battleHistoryBlockSector.blue
	{
		background: linear-gradient(180deg, #018abf, #036990);
	}

 .battleHistoryBlockSector.green
	{
		background: linear-gradient(180deg, #35d02e, #3d7334);
	}
	

 .battleGameTimer
	{
		position: absolute;
		right: 10px;
	}
 .battleGamePrice
	{
		position: absolute;
		left: 10px;
	}
	
 .battleKolesoContainer
	{
		position:relative;
		display:grid;
		justify-content:center;
		width:100%;
		margin:0 auto;

	}
 .battleKolesoContainer .selector
	{
		width: 0;
		height: 0;
		border: 20px solid transparent;
		border-top-color: rgb(23 31 47 / 69%);
		border-bottom: 0;
		left: 50%;
		transform: translate(-50%,0%);
		position: absolute;
		z-index: 2;
		margin-top: 59px;
	}
	
 .battleKoleso
	{
		background-image: url(/img/battleWheelMini.png);
		background-position: center;
		background-size: cover;
		width: 650px;
		height: 650px;
		margin-top: 21px;
		opacity: 0.8;
	}





 .battleCreateBetBlock
	{
		display: flex;
		position: absolute;
		width: 100%;
		background: #1a202df7;
		border-top: 1px solid rgba(0, 0, 0, 0.17);
		align-content: center;
		padding: 5px;
		bottom: 0;
	}

 .battleCreateBetBlockButton
	{
    background: rgba(130, 128, 165, 0.11);
    border: 1px solid #1c222d;
    margin: 2px;
    padding: 6px;
    width: 100px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
	text-decoration: none;
    font-weight: 500;
    line-height: 25px;
    color: #d5d6e8;
    flex: 1 1 auto;
    transition: all 1s cubic-bezier(0, 1.15, 0.36, 1) 0s;
	}
 .battleCreateBetBlockButton:nth-child(2)
	{
		flex: 0 1 300px;
		outline: none;
	}
 .battleCreateBetBlockButton:nth-child(1)
	{
		background: linear-gradient(-10deg, #6d1b20, #e6555d);
		outline: none;
		cursor:pointer;
		font-weight: 900;
		font-family: 'Roboto', sans-serif;	
	}
 .battleCreateBetBlockButton:nth-child(3)
	{
		background: linear-gradient(-10deg, #05465d, #0090c8);
		outline: none;
		cursor:pointer;
		font-weight: 900;
		font-family: 'Roboto', sans-serif;
	}	
 .battleCreateBetBlockButton:nth-child(1):hover
	{
		box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.41);
		background: linear-gradient(-10deg, #9e151d, #dc464d);
		color: #fff;
	}
 .battleCreateBetBlockButton:nth-child(3):hover
	{
		box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.41);
		background: linear-gradient(-10deg, #00374a, #0cabe8);
		color: #fff;
	}	
 .battleCreateBetBlockButton:hover
	{
		background: rgb(51, 58, 84);
		border: 1px solid #211f25;
		color: #fff;
	}

 .battleAllBetsContainer
	{
		display: flex;
		position: relative;
		border-radius: 10px;
		align-content: center;
		margin-top: 5px;
		min-height: 40px;
	}
 .battleAllBetsBlock
	{
		background: rgba(87, 85, 117, 0.11);
		border: 1px solid rgba(0, 0, 0, 0.27);
		margin: 1px;
		padding: 1px;
		width: 300px;
		border-radius: 10px 10px 0px 0px;
		font-size: 14px;
		text-align: center;
		color: #b7b8d4;
		flex: 1 1 auto;
	}
 .battleAllBetsBlock .header
	{
		position: relative;
		background: rgba(87, 85, 117, 0.11);
		width: 100%;
		border-radius: 10px 10px 0 0;
		height: 60px;
		color: #b7b8d4;
	}
 .battleAllBetsBlock .percentProgress 
	{
		display: flex;
		justify-content: flex-start;
		width: 100%;
		height: 2px;
		padding: 0px;
		position: absolute;
		bottom: 0;		
		box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.11);
	}
 .battleAllBetsBlock .percentProgress.red 
	{
		    justify-content: flex-end;
	}
 .battleAllBetsBlock .percentProgress.blue 
	{
		    justify-content: flex-start;
	}	
 .battleAllBetsBlock .percentProgress .bar
	{
		width: 100%;
		background-color: #272f40;
		transition: 1000ms linear;
		transition-property: width, background-color;
	}
 .battleAllBetsBlock .percentProgress .bar.red
	{
		border-radius: 100px 0px 0px 100px;
		background: linear-gradient(-10deg, #6d1b20, #e6555d);
	}
 .battleAllBetsBlock .percentProgress .bar.blue
	{
		border-radius: 0px 100px 100px 0px;
		background: linear-gradient(180deg, #05465d, #0090c8);
	}
 .battleAllBetsBlock .percent
	{
		position: absolute;
		left: 10px;
		top: 37px;
		font-family: 'Roboto', sans-serif;
		font-size: 13px;
		color: #74748a;
	}
 .battleAllBetsBlock .betsSumm
	{
		position: absolute;
		left: 10px;
		top: 10px;
		font-family: 'Roboto', sans-serif;
		font-size: 20px;
		font-weight: bold;
	}
 .battleAllBetsBlock .iks
	{
		position: absolute;
		right: 10px;
		top: 10px;
		font-family: 'Roboto', sans-serif;
		font-size: 35px;
		font-weight: bold;
		color: #3b3e50;
	}
 .battleAllBetsBlock .userBet
	{
		display: block;
		width: 100%;
		height: 35px;
		text-align: left;
		padding-left: 5px;		
		color: #b7b8d4;
	}
 .battleAllBetsBlock .userBet:nth-child(even) 
	{
		background: rgb(138 160 187 / 5%);
		box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 16%);
	}
 .battleAllBetsBlock .userBet .nickname
	{
		position: absolute;
		transform: translate(28px, -29px);
	}
 .battleAllBetsBlock .userBet .betSumm
	{
		transform: translate(-6px, 9px);
		float: right;
		color: #949aa7;
	}	


 .battleAllBetsFooterContainer
	{
		display: flex;
		position: relative;
		border-radius: 10px;
		align-content: center;
		margin-top: -3px;
		min-height: 40px;
	}
 .battleAllBetsFooterBlock
	{
		position: relative;
		background: rgba(87, 85, 117, 0.11);
		border: 1px solid rgba(0, 0, 0, 0.27);
		margin: 1px;
		padding: 1px;
		width: 300px;
		border-radius: 0px 0px 10px 10px;
		font-size: 14px;
		text-align: center;
		color: #b7b8d4;
		flex: 1 1 auto;
	}
 .battleAllBetsFooterBlock .tickets
	{
		position: absolute;
		left: 10px;
		top: 11px;
		font-family: 'Roboto', sans-serif;
		font-size: 13px;
		color: #74748a;
	}	
 .battleAllBetsFooterBlock .users
	{
		position: absolute;
		right: 10px;
		top: 11px;
		font-family: 'Roboto', sans-serif;
		font-size: 13px;
		color: #74748a;
	}

 .battleLedTextEffects
	{

	}
 .battleLedTextEffects.center
	{
		text-align:center;
	}
 .battleLedTextEffects.bgRed
	{
		background: #d4545e;
	}
 .battleLedTextEffects.bgBlue
	{
		background: #0282b3;
	}
 .battleLedTextEffects.bgGreen
	{
		background: #6caf2c;
	}		
 .battleLedTextEffects.colorWhite
	{
		color:#fff;
	}	
 .battleLedTextEffects.colorGreen
	{
		color:#7dca30;
	}