.mine_block{
	width: 100%;
	height: 85px;
	position: relative;
}
.img_mine_block{
	z-index: 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.block{
	max-width: 400px;
	border-radius: 15px;
	background: rgba(20, 35, 74, 0.3);
	padding: 15px;
	position: relative;
	margin-bottom: 15px;

}
.win_mine_block{
	top:0;
	left: 0;
	height: 100%;
	width:100%;
	border-radius: 15px;
	z-index: 1;
	background: rgba(10, 16, 32, 0.84);
	position: absolute;
	background-image: url(../../img/mine_win.png?v=1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.winText{
	margin-top: 35px;
	width: 159px;
	padding: 13px 0px;
	background: #060B17;
	border-radius: 37px;
	text-align: center;
	vertical-align: middle;

	font-family: Montserrat;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #E3E3EC;

}

.btnw {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 25px;
  height: 50px;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  background: radial-gradient(50% 50% at 50% 50%, #699AF8 0%, #7D7AFF 0.01%, #5E5BE5 100%), #C4C4C4;
  color: #fff;
  border: #fbf5f5;
}

.sumWinText{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);

	font-family: Montserrat;
	font-style: normal;
	font-weight: bold;
	font-size: 32px;
	line-height: 39px;
	color: #FAFBFF;

}
.wrapper12 {
	display: grid;
	grid-gap: 5px;

	grid-template-columns: repeat(5, 1fr);
	max-width: 400px;
}



.wrapper12 .mine {
	z-index: 1;
        background: rgba(15, 15, 64, 0.1);
        box-shadow: inset 0px -1px 12px rgba(24, 90, 189, 0.17);
	border-radius: 8px;
	padding-bottom: 100%;
	height: 0;
	border-radius: 8px;
	color: white;
	position: relative;
	cursor: pointer;
	transition: .5s;
}

.mine .mine_img{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}

.mine.animate{
	transform: rotate(360deg);
	animation: mines_block_scale .4s;
}

.hide{
	transform: translate(-50%, -50%) scale(0)!important;
}

.mine_img.animate{
	animation: mines_scale .4s;
} 

.mine_img.show{
	transform: translate(-50%, -50%) scale(1);
}

@keyframes mines_block_scale {
	0% {
		transform: scale(0.5) rotate(360deg);
	}

	60% {
		transform: scale(0.72);
	}

	85% {
		transform: scale(0.54);
	}

	to {
		transform: scale(1);
	}
}

@keyframes mines_scale {
	0% {
		transform: translate(-50%, -50%) scale(0);
	}

	60% {
		transform: translate(-50%, -50%) scale(0.72);
	}

	85% {
		transform: translate(-50%, -50%) scale(0.54);
	}

	to {
		transform: translate(-50%, -50%) scale(1);
	}
}


.mine_win{
	background-image: url(../img/mine_bg_success.png)!important;
	background-size: cover!important;
	background-position: center!important;
	background-repeat: no-repeat!important;

}

.mine_lose{
	background-image: url(../img/mine_bg_error.png)!important;
	background-size: cover!important;
	background-position: center!important;
	background-repeat: no-repeat!important;

}



.mines_block{
	display: grid;
	grid-template-columns: 281px minmax(auto, 400px);
	align-items: center;
	margin-top: 25px;
	gap: 30px;
	justify-content: space-between;
}

.mines_block_input{
	display: grid;
	grid-template-columns: 159px 1fr;
	justify-content: space-between;
	gap: 8px;
}

.mines_block_input_2{
	display: grid;
	grid-template-columns: 67px 1fr;
	justify-content: space-between;
	gap: 8px;
}


.btn_bets{
	display: flex;
	gap: 8px;
	width: 100%;
	justify-content: space-between;
}

.mines_block .secodary_input {
	width: -webkit-fill-available;
}

.mines_block_input_2 .secodary_input{
	padding-right: 5px;
}

.mines_block_input_2 .btn_bet{
	width: 45px;
}

.btn_bets_level .btn_bet{
       height: 45px;
       width: 100%;
       border: blue;
       background: radial-gradient(50% 50% at 50% 50%, #699AF8 0%, #7D7AFF 0.01%, #5E5BE5 100%), #C4C4C4;
       border-radius: 5px;
       color: #ddd;
}

@media(max-width:920px){
	.mines_block{
		grid-template-columns: 1fr;
	}

	.mines_block_input_2 .btn_bet, .mines_block_input .btn_bet {
		width: 100%;
	}

	.btn_bets{
		width: 100%;
	}
}

.btn_mine_bomb.active, .btn_mine_level.active{
	background: radial-gradient(50% 50% at 50% 50%, #699AF8 0%, #7D7AFF 0.01%, #5E5BE5 100%), #C4C4C4;
    color: white!important;
    border: 2px solid #5E5BE5;
}

.blockMinesX{
		cursor:pointer;
		position: absolute;
		width: 100%;
		height: 100px;
		top:0;
		left:0;
		overflow-x: auto;
		overflow-y: hidden;
		display: -webkit-box;
	}

	.blockMinesXTen{
		cursor:pointer;
		position: relative;
		width: 100%;
		height: 77px;
		display: -webkit-box;
	}

	.blockMinesXTen:after{
		position: absolute;
		width: 200px;
		height: 87px;
		right: 0;
		top: 0;
		content: '';
		background: linear-gradient(270deg, #F1F1F1 0%, rgba(241, 241, 241, 0) 100%);
	}

	.MinesX{
		width: 140px;
		height: 75px;
		border-radius: 9px;
		margin-right: 20px;
		background-color: #fff;
		border:1px solid #fff;
		box-shadow: 0px 5px 31px rgba(0, 0, 0, 0.04);
	}

	.MinesX.active{
		background: rgb(118,115,249, 0.15);
		border:1px solid #6360e9;
	}

	.blockTextsX{
		padding: 15px;
	}
	.textX_1{
		display: inline-block;
		float: left;
		font-family: Montserrat;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 15px;
		/* identical to box height */


		color: #677087;

	}
	.textX_2{
		display: inline-block;
		float: right;
		font-family: Montserrat;
		font-style: normal;
		font-weight: 600;
		font-size: 12px;
		line-height: 15px;
		/* identical to box height */


		color: #95A5BE;
	}

	.textX_3{
		margin-top: 20px;
		font-family: Montserrat;
		font-style: normal;
		font-weight: bold;
		font-size: 18px;
		line-height: 22px;
		/* identical to box height */
		color: #000000;
	}

	.blockButtonsMines.hide{
		display: none;
	}

	.blockButtonsMines{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.blockButtonsMines .btn{
		width: 100%;
	}


	.mine_img.win{
		width: 19px;
	}

	.mine_img.lose{
		width: 25px;
	}

input#BetMines {
    width: 100%;
    display: block;
    border: solid 1px rgb(57 49 91 / 40%);
    background: #0a1020;
    font-size: 16px;
    line-height: 45px;
    padding: 0 12px;
    color: #ffffff;
    outline: none;
    padding-left: 40px;
    border-radius: 4px;
}

input#BombMines {
    width: 100%;
    display: block;
    border: solid 1px rgb(57 49 91 / 40%);
    background: #0a1020;
    font-size: 16px;
    line-height: 45px;
    padding: 0 12px;
    color: #ffffff;
    outline: none;
    border-radius: 4px;
    width: -webkit-fill-available;
    padding-left: 40px;
}

.mines_block_input_2 {
    display: grid;
    grid-template-columns: 125px 1fr;
    justify-content: space-between;
    gap: 8px;
}

.dop_input {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    height: 13px;
    width: 13px;
}

.dop_input svg {
    width: 13px;
    height: 13px;
    fill: #95A5BE;
}

button.btn_bet.btn_mine_bomb {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Rubik", Arial, sans-serif;
    padding: 10px 20px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    outline: none !important;
    background: linear-gradient(161deg, #0f63e1, #6d33ca);
    align-items: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}