#daily-reward-modal > .app-modal {
	max-width: 960px;
	padding: 16px;
}

#daily-reward-modal > .app-modal > h1 {
	margin: 0;
	margin-bottom: 32px;
}

.daily-reward-items {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.daily-reward-items .completed > .daily-reward-item-content {
	filter: grayscale(1);
	opacity: .5;
}

.daily-reward-items .completed > .daily-reward-checked-icon {
	display: flex;
}

.daily-reward-items .loading {
	filter: grayscale(1);
	opacity: .2;
	overflow: hidden;
}

.loading > .daily-reward-item-content > div > video {
	opacity: 0!important;
}

.daily-reward-loading {
	display: flex;
	width: 40px;
	height: 150%;
	background: #fff;
	position: absolute;
	z-index: 10;
	transform: rotate(26deg);
	top: -25%;
	animation: rewardPlaceholderAnimate .6s ease-out 0s infinite;
}

@keyframes rewardPlaceholderAnimate {
	0% {
		left: -50%;
	}
	100% {
		left: 150%;
	}
}

.daily-reward-checked-icon {
	display: none;
	position: absolute!important;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	width: 100%;
	height: 100%;
	z-index: 9;
}

.daily-reward-checked-icon > div {
	background: #649c1f;
	background: linear-gradient(180deg, rgba(100, 156, 31, 1) 36%, rgba(75, 130, 8, 1) 100%);
	border: solid 6px;
	border-color: #76c91e;
	border-radius: 50%;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 8px;
	box-shadow: 0 0 0 3px #2f5206, 0 8px 0 0 #2f5206;
	scale: .8;
	margin-top: -12px;
}

.daily-reward-checked-icon > div:before {
	content: "";
	position: absolute;
	width: calc(100% - 12px);
	height: 60%;
	left: 0;
	top: 0;
	margin: 6px;
	border-radius: 12px;
	border-top-left-radius: 85% 100%;
	border-top-right-radius: 85% 100%;
	z-index: 0;
	background: linear-gradient(180deg, rgba(180, 220, 120, 1) 0%, rgba(88, 152, 12, 1) 74%);
	opacity: 1;
}

.daily-reward-items .current {
	border-radius: 16px;
  scale: 1.3;
  z-index: 9999999999;
  animation: pulseShadow 1.5s infinite alternate;
}

.daily-reward-item {
	flex: 1;
	position: relative;
}

.daily-reward-item > .daily-reward-item-content {
	background: #351943;
  border: 2px solid #351943;
  border-radius: 16px;
	position: relative;
	text-align: center;
}

.daily-reward-item > .daily-reward-item-content:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 2) 100%);
	left: 0;
	z-index: 9;
	opacity: .2;
	border-radius: 16px;
}

.daily-reward-item > .daily-reward-item-content:after {
	position: absolute;
	content: '';
	width: calc(100% - 16px);
	left: 8px;
	height: 33%;
	background: #ffffff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.33) 100%);
	top: 6px;
	border-radius: 16px;
	z-index: 1;
	opacity: .2;
}

.daily-reward-item > .daily-reward-item-content > div {
	position: relative;
	border-radius: 8px;
}

.daily-reward-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 32px;
	color: #ccc;
	opacity: .5;
	font-weight: bold;
}

.claim-button-container {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.claim-button-container > button {
	width: 280px;
}

.daily-reward-item > span {
	font-size: 16px;
}

.daily-reward-item > .daily-reward-item-content > div > video {
	border-radius: 16px;
	width: 100%;
	height: 100%;
}

.daily-reward-item > .daily-reward-item-content > div > span {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 24px;
	left: 0;
}

@media only screen and (max-width: 599px) {
	.daily-reward-items {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		justify-items: stretch;
	}

	.daily-reward-items > .daily-reward-item:last-child .daily-reward-item-content > div > video {
		height: 124px;
		background: #1b012b;
		border-radius: 16px;
	}

	.daily-reward-items > .daily-reward-item:last-child .daily-reward-item-content > span {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 4px;
		font-size: 24px;
	}

	.daily-reward-items > .daily-reward-item:last-child {
		width: calc(100vw - 32px);
	}

	.daily-reward-info {
		margin: 0;
    text-align: center;
		font-size: 12px;
	}

	.daily-reward-items .current {
		scale: 1.15;
	}
}
