.shoplist{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
}

.shop{
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
    box-sizing: border-box;
	width: 320px;
	padding: 4px 4px;
	border: solid #ccc 10px;
	border-image-source: url(../img/border_dot.svg); 
	border-image-slice: 2 fill;
	border-image-width: 1;
	border-image-outset: 0;
	/*
	background-image: url(./img/plate_back.png);
	background-size: cover;
	background-repeat: no-repeat;
	*/
	image-rendering: pixelated;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

.titleimg.allbutton{
	cursor: pointer;
}

.itemicon{
	width: 72px;
	height: 72px;
	padding: 4px;
	box-sizing: border-box;
	background-image: url(./backbox.png);
	background-size: cover;
	cursor: pointer;
}

.shop .item{
	position: relative;
}
.shop .item .stock{
	position: absolute;
	bottom: 1px;
	right: 1px;
	font-family: 'minecraft';
	color: white;
	font-size: 24px;
	text-shadow: 3px 3px black;
	pointer-events: none;
}

.shop .info{
	margin-top: -4px;
	margin-left: 8px;
}
.shop .name{
	position: relative;
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
    box-sizing: border-box;
	border: solid #ccc 10px;
	border-image-source: url(../img/border_dot_small.svg); 
	border-image-slice: 2 fill;
	border-image-width: 1;
	border-image-outset: 0;
	image-rendering: pixelated;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;

	font-family: 'BestTen';
	color: white;
	font-size: 20px;
	padding-bottom: 6px;
	line-height: 12px;
	max-width: 100%;

	cursor: pointer;
}
.shop .top{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 4px;
}


.bottom{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.shop .price, .shop .location, .shop .owner{
	position: relative;
	font-family: 'minecraft';
	font-size: 24px;
	/*padding-left: 36px;*/
}
.shop .price{
	color: #db7500;
}
.shop .price.sell{
	color: #0058db;
}
.shop .location{
	font-size: 16px;
	color: #555555;
}
.shop .owner{
	font-size: 16px;
	height: 24px;

	cursor: pointer;
}
.shop .owner img{
	height: 100%;
}

/*
.shop .price::before{
	position: absolute;
	content: '';
	background-image: url(../img/coin_50.png);
	background-size: cover;
	width: 32px;
	height: 32px;
	left: 0;
}
.shop .location::before{
	position: absolute;
	content: '';
	background-image: url(./items_1.21/minecraft_compass.png);
	background-size: cover;
	width: 32px;
	height: 32px;
	left: 0;
}
*/