.event-container {
	display: none;
	position: absolute;
	right: 0px;
	top: 172px;
	bottom: 163px;
	width: 60%;
	overflow: hidden;
	z-index: 4;
}

.event-background {
	position: absolute;
	left: -5%;
	top: -5%;
	width: 110%;
	height: 110%;
	background-size: cover;
	filter: blur(5px);
}

.event-kecleon-container, .event-delibird-container, .event-smeargle-container, 
.event-voltorb-container, .event-ditto-container, .event-chansey-container {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	
	background-size: cover;
	background-position: bottom;
}

.event-kecleon-sprite {
	position: absolute;
	right: -80px;
	top: 5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/kecleon.png');
}

.event-kecleon-item-container {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translate(0, -50%);
	width: 320px;
	height: 180px;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 20px;
}

.event-kecleon-item {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 5px 5px 0 0;
	border: 2px solid black;
	overflow: hidden; 
}

.event-kecleon-item::before {
	content: "";
	position: absolute;
	inset: 0; 
	z-index: 0;
}

.event-kecleon-item-sprite {
	position: absolute;
	top: 0px;
	bottom: 18px;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1; 
}

.event-kecleon-item-price {
	position: absolute;
	bottom: 0px;
	height: 18px;
	width: 100%;
	color: var(--white);
	font-size: 10px;
	text-align: center;
	line-height: 22px;
	background: rgba(0, 0, 0, 0.7);
	border-top: 2px solid black;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.event-kecleon-item-price:hover {
	filter: brightness(1.2);
	background: rgba(0, 0, 0, 0.85);
}

/* DELIBIRD */

.event-delibird-item-container {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translate(0, -50%);
	width: 300px;
	height: 180px;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 20px;
}

.event-delibird-sprite {
	position: absolute;
	right: -80px;
	top: 5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/delibird.png');
}

.event-delibird-item {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: rgb(0, 0, 0, 0.8);
	border-radius: 5px 5px 0 0;
	border: 2px solid black;
	overflow: hidden;
}

.event-delibird-item::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.event-delibird-item-sprite {
	position: absolute;
	top: 0px;
	bottom: 18px;
	width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: ;
}

.event-delibird-item-pick {
	position: absolute;
	bottom: 0px;
	height: 18px;
	width: 100%;
	color: var(--white);
	font-size: 9px;
	text-align: center;
	line-height: 21px;
	background: rgba(0, 0, 0, 0.7);
	border-top: 2px solid black;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.event-delibird-item-pick:hover {
	filter: brightness(1.2);
	background: rgba(0, 0, 0, 0.85);
}

/* SMEARGLE */
.event-smeargle-sprite {
	position: absolute;
	right: -80px;
	top: 5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/smeargle.png');
}

.event-smeargle-move-container {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	width: 350px;
	height: 220px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: space-evenly;
}

.event-smeargle-move {
	position: relative;
	width: 45%;
	height: 42%;
	background-color: #292b35;
	border-radius: 5px;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

.event-smeargle-move:hover {
	background-color: var(--red);
}

.event-smeargle-move-name {
	text-align: center;
	line-height: 95px;
	color: var(--white);
	font-size: 10px;
	pointer-events: none;
}

.event-smeargle-move-picked {
	position: relative;
	width: 45%;
	height: 42%;
	background-color: #292b35;
	border-radius: 5px;
	pointer-events: none;
	filter: brightness(0.6);

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

/* DITTO */
.event-ditto-sprite {
	position: absolute;
	right: -80px;
	top: 5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/ditto.png');
}

.event-ditto-move-container {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	width: 350px;
	height: 220px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: space-evenly;
}

.event-ditto-move {
	position: relative;
	width: 90%;
	height: 42%;
	background-color: #292b35;
	border-radius: 5px;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

.event-ditto-move:hover {
	background-color: var(--red);
}

.event-ditto-move-name {
	text-align: center;
	line-height: 95px;
	color: var(--white);
	font-size: 10px;
	pointer-events: none;
}

.event-ditto-move-picked {
	position: relative;
	width: 90%;
	height: 42%;
	background-color: #292b35;
	border-radius: 5px;
	border: 2px solid black;
	pointer-events: none;
	filter: brightness(0.6);

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

/* CHANSEY */
.event-chansey-sprite {
	position: absolute;
	right: -70px;
	top: 5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/chansey.png');
}

.event-chansey-option-container {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(0, -50%);
	width: 350px;
	height: 220px;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: space-evenly;
}

.event-chansey-option {
	position: relative;
	width: 45%;
	height: 42%;
	background: var(--black);
	border-radius: 5px;
	text-align: center;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

.event-chansey-option:hover {
	background-color: var(--red);
}

.event-chansey-option-selected {
	position: relative;
	width: 45%;
	height: 42%;
	background-color: #292b35;
	border-radius: 5px;
	text-align: center;
	color: var(--white);
	pointer-events: none;
	filter: brightness(0.6);

	border: 4px solid var(--white);
	background-image: url('../assets/images/textures/texture3.png');
	box-shadow: inset 0 0 2px black, 0 0 3px black;
}

.event-chansey-option-name {
	position: absolute;
	top: 20px;
	width: 100%;
	font-size: 12px;
	pointer-events: none;
}

.event-chansey-option-description {
	position: absolute;
	top: 45px;
	left: 5px;
	right: 5px;
	font-size: 8px;
	line-height: 12px;
	pointer-events: none;
}

/* VOLTORB */
.event-voltorb-sprite {
	position: absolute;
	right: -80px;
	top: -5px;
	height: 256px;
	width: 256px;
	background-image: url('../assets/images/pokemon/event/voltorb.png');
}
