/*.lootbox-case-window {
	max-width: 100%;
	height: max-content;
	position: relative;
	overflow: hidden;
	margin: auto;
}
.lootbox-case-window::before {
    max-width: 100%;
    height: max-content;
    position: relative;
    overflow: hidden;
    margin: auto;
    left: 0;
    z-index: 999;
    content: "";
}
*/
.lootbox-case-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 28px;
	height: 100%;
	z-index: 999;
}

.lootbox-case-line::before {
	transform: scale(1);
	top: 0
}

.lootbox-case-line::after {
	transform: scale(-1);
	bottom: 0
}

.lootbox-case-line::before,
.lootbox-case-line::after {
	width: 28px;
	height: 22px;
	background: url(../images/Mystery_Box/arrow_roulette.webp);
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	content: ""
}

.lootbox-case-line-dash {
	width: 0;
	height: 77%;
	position: absolute;
	border: 1px dashed blue;
	top: 25px;
	left: 0;
	right: 1px;
	margin: auto;
}
/*
.lootbox-case-spinnable {
	width: max-content;
	position: relative;
}
*/
.list-item {
	position: relative;
	display: inline-block
}

.lootbox-case-item {
	display: inline-block;
	padding: 8px;
	width: 182px;
	height: 127px;
	/*margin-left: -112px;
	margin-right: 125px;*/
	margin-top: 26px;
}
/*
.lootbox-case-item::before {
	width: 100%;
	height: 100%;
	/*background:linear-gradient(180deg,#0c0c18 0%,rgba(12,12,26,0.712) 100%);*/
	/*position: absolute;
	left: 0;
	content: ""
}
*/
.lootbox-content {
	height: 100%;
	position: relative;
	z-index: 9
}

.lootbox-case-item .name {
	text-transform: uppercase;
}

.lootbox-case-item .name p:nth-child(1) {
	font-size: 12px;
	color: #fcd4c0;
	text-shadow: 2px 2px 5px #000;
}

.lootbox-case-item .name p:nth-child(2) {
	font-size: 1.1;
	font-weight: 400
}

.lootbox-case-item .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}

.lootbox-case-item .image img {
	max-width: 75px;
	max-height: 75px
}

.percent_item {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #ffffffc7;
}

.boxItems {
	margin-top: 35px
}

.wonItem {
	border: 2px solid green !important;
	box-shadow: 0 0 10px rgba(14, 26, 12, .712)
}

.item-name {
	position: relative;
	z-index: 10;
	font-size: .8rem;
	text-align: center
}

.summary_user {
	width: max-content;
}

.summary_user .summary_user_content {
	padding: 0 60px;
	display: flex;
	align-items: center;
}

.summary_user .summary_user_content .user_balance {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
}

.summary_user .summary_user_content .user_balance .coin_box,
.summary_user .summary_user_content .user_balance .coin_box2 {
	max-width: 200px;
	padding: 10px;
	position: relative;
	z-index: 10;
	font-size: 1rem;
	font-weight: 500;
}

.summary_user .summary_user_content .user_balance .coin_box::before,
.summary_user .summary_user_content .user_balance .coin_box2::before {
	width: 100%;
	height: 80%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	left: 0;
	transform: skewX(-10deg);
	content: "";
}

.coin_box::before {
	background: linear-gradient(180deg, rgba(24, 22, 4, 0) 10%, rgb(196, 171, 62) 200%);
	border: 2px solid #c4ab3e;
}

@media (max-width: 800px) {
	.d-flex {
		flex-direction: column;
	}
}

.molde {
	width: 1160px;
	height: 204px;
	position: absolute;
	margin-top: -347px;
	background-image: url(../images/Mystery_Box/molde.webp);
	background-repeat: no-repeat;
	z-index: 70;
}


.scrolled {
	width: calc(100% - 22px);
	margin-left: 10px;
	border-radius: 40px 40px 40px 40px / 100px 100px 100px 100px;
	height: 204px;
	padding-top: 7px;
	position: relative;
	top: -140px;
	background: url(../images/Mystery_Box/scrolled.webp);
	background-position: center top 10px;
	background-repeat: no-repeat;
	overflow: hidden;
	white-space: nowrap !important;
	transition: 5.5s;
	z-index: 60;
}

.cases {
	position: absolute;
	left: 50%;
	width: 1160px;
	height: 100%;
	transform: translate(-50%, -50%);
	z-index: 999999 !important;
	max-height: 550px;
	margin-top: -100px;
}
.caixa{
	margin-left: calc(50% - 350px)!important;
	width: 643px;
	height: 450px;
	position: relative;
	margin: 0px auto;
	background-image: url(../images/Mystery_Box/mys-box.png);
	background-size: 85%;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transition: 0.4s;
	z-index: 150;
}
.pulse {
	animation: pulse 0.7s infinite;
	animation-direction: alternate;
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes pulse {
	0% {
		background-image: url(../images/Mystery_Box/mys-box.png);
		-webkit-filter: brightness(100%);
	}
	100% {
		background-image: url(../images/Mystery_Box/mys-box1.png);
		-webkit-filter: brightness(120%);
	}
}
@keyframes pulse {
	0% {
		background-image: url(../images/Mystery_Box/mys-box.png);
		filter: brightness(100%);
	}
	100% {
		background-image: url(../images/Mystery_Box/mys-box1.png);
		filter: brightness(120%);
	}
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 7));
		transform: translateX(calc(-250px * 7));
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(calc(-250px * 14));
		transform: translateX(calc(-250px * 14));
	}
}

.sliderm {
	height: 130px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.sliderm::before,
.sliderm::after {
	background: linear-gradient(to right, #171920 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 130px;
	position: absolute;
	width: 185px;
	z-index: 2;
}

.sliderm::after {
	right: 0;
	top: 0;
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}

.sliderm::before {
	left: 0;
	top: 0;
}

.sliderm .slide-track {
	-webkit-animation: scroll 40s linear infinite;
	animation: scroll 40s linear infinite;
	display: flex;
	width: calc(250px * 28);
}

.sliderm .slidem {
	width: 122px;
	height: 130px;
	margin-left: 5px;
	text-align: center;
}

.slidem img {}

.box-molde-ac {
	background: url(../images/Mystery_Box/moldes/box-molde-ac.webp);
	background-repeat: no-repeat;
}

.box-molde-ar {
	background: url(../images/Mystery_Box/moldes/box-molde-ar.webp);
	background-repeat: no-repeat;
}

.box-molde-ae {
	background: url(../images/Mystery_Box/moldes/box-molde-ae.webp);
	background-repeat: no-repeat;
}

.box-molde-al {
	background: url(../images/Mystery_Box/moldes/box-molde-al.webp);
	background-repeat: no-repeat;
}

.box-molde-am {
	background: url(../images/Mystery_Box/moldes/box-molde-am.webp);
	background-repeat: no-repeat;
}

.box-molde-log-ac {
	background: url(../images/Mystery_Box/moldes/log/box-molde-log-ac.webp);
}

.box-molde-log-ar {
	background: url(../images/Mystery_Box/moldes/log/box-molde-log-ar.webp);
}

.box-molde-log-ae {
	background: url(../images/Mystery_Box/moldes/log/box-molde-log-ae.webp);
}

.box-molde-log-al {
	background: url(../images/Mystery_Box/moldes/log/box-molde-log-al.webp);
}

.box-molde-log-am {
	background: url(../images/Mystery_Box/moldes/log/box-molde-log-am.webp);
}

@keyframes slideAnimation {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}