
.flex-shop-item {
  width: 20rem;
  text-align: left;
  padding: 1.5rem 0 1.5rem 0;
  text-align: center;
}

.shop-img-container{
	width: 15rem; 
	height: 15rem; 
	position: relative; 
	margin:auto; 
	display: inline-block;
	transition: transform .3s ease; 
}

@media only screen and (max-width: 576px) {
  .flex-shop-item{
	width: 10rem;
	padding: 1rem 0 1rem 0;
  }
  .shop-img-container{
  	width: 8rem;
    height: 8rem;
  }
}

.flex-shop-item p{
	color: black;
}

.card-img{
	object-fit: cover;
}

.shop-img-container:hover {
	transform: scale(1.05);
}

.shop-img{
	max-width: 100%; 
	max-height: 100%; 
	position: absolute; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	margin: auto;
}
.shop-icon-new{
	position: absolute;
	bottom: 5%;
	right: 5%;
	background-color: var(--col-red-1);
	box-shadow: 0px 0px 5px var(--col-red-1);
	border-radius: 0.2rem;
	height: 1.8rem;
	width: 3rem;
}

.shop-icon-new p{
	font-size: 1rem;
	color: white;
	text-align: center;
	margin-right: 0.2rem;
}

@media only screen and (max-width: 576px) {

	.shop-icon-new{
		bottom: 0;
		height: 1.4rem;
		width: 2.4rem;
	}

	.shop-icon-new p{
		font-size: 0.8rem;
	}
}

.shop-icon-pick-wrap{
	position: absolute;
	bottom: 19%;
	right: 5%;
	filter: drop-shadow(0px 0px 5px var(--col-green-1));
}

.shop-icon-pick{
	
	background-color: var(--col-green-1);
	box-shadow: 0px 0px 5px var(--col-green-1);
	border-radius: 0.2rem;
	height: 1.8rem;
	width: 5rem;
	clip-path: 
		polygon(
		  0% 50%,     /* top left */
		  10% 0%,     /* top left */
		  100% 0%,    /* top right */
		  100% 0%,   /* top right */
		  100% 100%,  /* bottom right */
		  100% 100%,  /* bottom right */
		  10% 100%,   /* bottom left */
		  0 50%      /* bottom left */
		);
}

.shop-icon-pick p{
	font-size: 1rem;
	color: white;
	text-align: right;
	margin-right: 0.35rem;
	padding-top: 0.1rem;
}

@media only screen and (max-width: 576px) {

	.shop-icon-pick-wrap{
		bottom: 24%;
	}

	.shop-icon-pick{
		height: 1.4rem;
		width: 4.4rem;
	}

	.shop-icon-pick p{
		font-size: 0.8rem;
	}
}


h3.shop-title{
	/* font-size: 1.3rem; */
	font-size: 1.2rem;
	font-family: var(--font-1);
	padding-top: 1.2rem;
}