.menu-bag-filter-container {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 40px;
	border-bottom: 2px solid black;
	background-color: var(--red);
	color: var(--white);
	font-size: 16px;
	line-height: 45px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
}

.menu-bag-filter-arrow {
	position: relative;
	height: 100%;
	width: 15%;
	transition: .2s;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
}

.menu-bag-filter-arrow:hover {
	filter: brightness(1.2) drop-shadow(0 0 1px black);
}

.menu-bag-filter-label {
	position: relative;
	height: 100%;
	width: 70%;
}

.menu-bag-item-container {
	position: absolute;
	top: 42px;
	bottom: -4px;
	width: 100%;
	background-color: #d6d6d6;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: flex-start;
	overflow-y: scroll;
}

.menu-bag-item-container::-webkit-scrollbar { width: 16px; }
.menu-bag-item-container::-webkit-scrollbar-track {
 	background: #2a2b2b; 
 	border-left: 1px solid black;
}
.menu-bag-item-container::-webkit-scrollbar-thumb { 
    background: var(--red); 
    border-left: 1px solid black;
    border-radius: 0px;
}

.menu-bag-item {
	position: relative;
	width: 100%;
	height: 28px;
	outline: 1px solid black;
	color: #1b1b19;
	background-color: #e8e9e9;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	line-height: 32px;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
}

.menu-bag-item * {
	cursor: inherit;
}

.menu-bag-item:nth-child(2n) {
	background-color: #d6d6d6;
}

.menu-bag-item:hover {
	filter: brightness(1.2);
}

.menu-bag-item-icon {
	position: relative;
	width: 10%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

.menu-bag-item-name {
	position: relative;
	width: 70%;
	height: 100%;
}

.menu-bag-item-amount {
	position: relative;	
	width: 18%;
	height: 100%;
	text-align: right;
}

.menu-bag-info-item-name {
	position: absolute;
	top: 45px;
	left: 20px;
	color: #1b1b19;
	font-size: 18px;
}

.menu-bag-info-item-description {
	position: absolute;
	top: 70px;
	left: 20px;
	right: 20px;
	color: #222425;
	font-size: 12px;
	line-height: 18px;
}

.menu-bag-info-item-use-container {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 220px;
	border-top: 2px solid black;
	background-color: #d6d6d6;
	background-image: url("../assets/images/textures/texture8.png");
	text-align: center;
	align-content: center;
	color: var(--white);
	color: #222425;
}

.menu-bag-info-item-consume-text {
	position: absolute;
	top: 68px;
	left: 20px;
	right: 20px;
	font-size: 12px;
}

.menu-bag-info-item-use-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 140px;
	height: 34px;

	text-align: center;
	line-height: 36px;
	font-size: 12px;

  	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;
	background-color: var(--green);
}

.menu-bag-info-item-use-button:hover  {filter: brightness(1.2);}


.menu-bag-info-item-use-red-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	width: 120px;
	height: 120px;
	outline: 2px solid black;
	border-radius: 50%;
	line-height: 124px;
	background-color: #d83820;
	border-bottom: 5px solid black;
	font-size: 20px;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
}

.menu-bag-info-item-use-red-button:hover  {
	border-bottom: 0px solid black;
	filter: brightness(1.2);
}

.menu-bag-item-pokemon-type {
	position: absolute;
	bottom: -4px;
	left: -25%;
	width: 150%;
	display: flex;
	gap: 0px;
	align-content: center;
	justify-content: center;
}
