
.dojo-background-pokemon {
	position: absolute;
	width: 400px;
	height: 400px;
	background-size: cover;
	opacity: 0.4;
	filter: blur(2px);
}

.dojo-background-pokemon-actual {
	left: -150px;
	top: 20px;
	transform: scaleX(-1);
}

.dojo-background-pokemon-evolution {
	right: -150px;
	top: 0px;
}

.dojo-pokemon-container {
	position: absolute;
	top: 20px;
	width: 97%;
	height: 28px;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 32px;
	justify-content: center;
	gap: 5px;
}

.dojo-pokemon-icon {
	position: relative;
	width: 10%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.dojo-pokemon-name {
	color: #1b1b19;
	position: relative;
	height: 100%;
}

.dojo-evolution-container {
	position: absolute;
	top: 60px;
	bottom: 85px;
	left: 55px;
	right: 55px;
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: 4px;
	outline: 1px solid black;
	box-shadow:  0 0 5px black;
	justify-content: center;
}

.dojo-evolution-name {
	position: absolute;
	top: 20px;
	width: 100%;
	font-size: 11px;
	text-align: center;
	color: var(--white);
}

.dojo-evolution-condition-container {
	position: absolute;
	top: 40px;
	bottom: 0px;
	left: 12px;
	right: 12px;
	color: var(--white);
	font-size: 10px;
	line-height: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: flex-start;
}

.dojo-evolution-condition {
	position: relative;
	width: 100%;
	height: 20px;
	display: flex;
	flex-wrap: wrap;
}

.dojo-evolution-condition-label {
	position: relative;
	width: 50%;
}

.dojo-evolution-condition-value {
	position: relative;
	text-align: right;
	width: 50%;
}

.dojo-evolution-arrow  {
	display: none;
	position: absolute;
	top: 110px;
	font-size: 24px;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.dojo-evolution-arrow  {
	display: none;
	position: absolute;
	top: 110px;
	font-size: 24px;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}


.dojo-evolution-prev { left: 15px }
.dojo-evolution-next { right: 15px }
.dojo-evolution-arrow:hover { color: #C03B3B; }

.dojo-button {
	position: absolute;
	bottom: 15px;
	width: 140px;
	height: 24px;
	outline: 1px solid black;
	border-radius: 3px;
	text-align: center;
	line-height: 26px;
	font-size: 12px;
	color: var(--white);
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.dojo-button:hover {
	filter: brightness(1.2);
}

.dojo-button-cancel {
	left: 35px;
	background-color: var(--red);
}
.dojo-button-buy {
	right: 35px;
	background-color: var(--green);
}

.move-deleter-container {
	position: absolute;
	top: 60px;
	left: 45px;
	right: 45px;
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: 4px;
	outline: 1px solid black;
	box-shadow:  0 0 5px black;
	justify-content: center;

	height: 110px;
	text-align: center;
	color: var(--white);
}

.move-deleter-name {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 15px;
	font-size: 12px;
}

.move-deleter-description {
	position: absolute;
	left: 8px;
	right: 8px;
	text-align: center;
	font-size: 9px;
	top: 40px;
}

.move-deleter-cost {
	position: absolute;
	bottom: 72px;
	left: 50%;
	transform: translate(-50%);
	width: 310px;
	text-align: center;
	font-size: 10px;
	line-height: 14px;
	color: #222425;
}

.move-deleter-prompt {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
	color: #C03B3B;
}