#event-modal > .app-modal {
	padding: 0;
	background: transparent;
	border-radius: 32px;
}

#event-modal-image {
	width: 480px;
	height: 587px;
	border-radius: 24px;
}

#event-modal > .app-modal > .close-modal > .mobile-button {
	margin: -16px;
}

.mobile-button-orange {
	margin: 0;

	background: #fe8630;
	border-color: #ffb066;

	box-shadow:
		0 0 0 3px #7a3600,
		0 8px 0 0 #7a3600;
}

.mobile-button-orange:active {
	transform: translateY(6px);
	box-shadow:
		0 0 0 3px #7a3600,
		inset 0 6px 10px #7a3600;
}

.mobile-button-orange:focus-visible {
	outline: 3px solid #7a3600;
	outline-offset: 3px;
}

.mobile-button-orange::before {
	background: linear-gradient(
		180deg,
		rgba(255, 200, 120, 1) 0%,
		rgb(255 220 180 / 32%) 80%
	);
}

.event-modal-content {
	margin: 0!important;
}

#confirm-event-modal {
	margin: 0 16px;
	margin-bottom: 24px;
	width: calc(100% - 32px);
	position: absolute;
	bottom: 0;
}

#halloween-event-button {
	display: none;
}

.event-modal-content > div {
	margin-bottom: -4px;
}

@media only screen and (max-width: 599px) {
	#event-modal > .app-modal {
		padding: 0;
		background: transparent;
		border-radius: 32px;
	}

	.event-modal-content {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}

	.event-modal-content > div {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#confirm-event-modal {
		width: calc(100% - 48px);
		margin-bottom: 16px;
	}

	#event-modal-image {
		width: calc(100% - 32px);
		height: auto;
	}
}

