.gym-prompt {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	top: 0;
	width: 100%;
	height: auto;
	padding: 10px 5px;
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: 5px;
	outline: 2px solid var(--white);
	font-size: 12px;
	box-shadow: 0 4px 1px black;
	text-align: center;
	line-height: 20px;
	color: var(--white);
}

.gym-button-ready {
	position: absolute;
	left: 50%;
	bottom: 95px;
	width: 140px;
	height: 34px;

	transform: translate(-50%);
	text-align: center;
	line-height: 38px;
	font-size: 14px;

	background-color: #6ea82b;
  	border: 2px solid #000000;     
  	box-shadow: 4px 4px 0 #222222; 
  	text-transform: uppercase;
  	color: var(--white);
  	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;

}

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

.gym-selected-pokemon-container {
	position: absolute;
	bottom: 125px;
	width: 100%;
	height: 75px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 30px;
}

.gym-leader-pokemon-container {
	position: absolute;
	top: 90px;
	width: 100%;
	height: 75px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 30px;
}

.popup-gym-badge {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 37%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-gym-prompt-bottom {
	position: absolute;
	bottom: 75px;
	left: 20px;
	right: 20px;
	color: #222425;
	line-height: 13px;
	font-size: 9px;

	text-align: center;
}

.record-ui {
	display: none;
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 160px;
	height: 24px;
	font-size: 13px;
	line-height: 30px;
	color: var(--white);
	text-align: right;
	border-top-left-radius: 5px;
	padding-right: 15px;
	background-color: var(--green);
	outline: 2px solid black;

	z-index: 100;
}