/* Item */
#wrapper .store-category-item
{
	height: 100%;
	padding: 10px;
	background-color: #ebebeb;
	border: 1px solid var(--theme-color);
	border-radius: 0;
}

/* Image */
.store-category-item-image
{
	width: calc(95vw - 22px);
	max-width: 100%;
	height: calc(95vw - 22px);
	margin: 0 0 15px 0;
	overflow: hidden;
}

/* Name */
.store-category-item-name
{
	font-size: 1.3em;
	font-weight: 700;
	text-align: center;
	color: var(--theme-color);
}

@media (min-width: 35.5em)
{
	#wrapper .store-category-item-image
	{
		width: 245px;
		height: 245px;
	}
}

@media (min-width: 48em)
{
	#wrapper .store-category-item { padding: 15px; }

	#wrapper .store-category-item-image
	{
		width: 202px;
		height: 202px;
	}
}

@media (min-width: 64em)
{
	#wrapper .store-category-item-image
	{
		width: 184px;
		height: 184px;
	}
}

@media (min-width: 80em)
{
	#wrapper .store-category-item-image
	{
		width: 261px;
		height: 261px;
	}

	#wrapper .store-category-item { padding: 20px; }
}