
#myShopSidebarWeb {
	display: none;
}
#myshop-leftside {
	display: none;
}
.myshop-left {
	background-color: #353232;
	display: flex;
	flex-direction: column;
	height: 81vh;
}
#myshop-left-ForMobile {
	background-color: #353232;
	display: flex;
	flex-direction: column;
	height: 81vh;
}
.myshop-heads:hover {
	background-color: #ada9a9;
	color: #161d1a;
}
.myshop-list {
	display: flex;
	flex-direction: column;
	text-transform: capitalize;
	text-align: left;
}
.myshopCard {
	width: 15rem;
	height: 16rem;
	text-align: center;
	background: #161d1a;
	overflow: hidden;
}
.chart-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
.scrollableBox {
	height: 81vh;
	overflow-y: scroll;
}
.scrollableBox::-webkit-scrollbar {
  display: none;
}

.card-image {
	height: 200px;
	object-fit: cover;
}
/* .product-image {
	width: 100%;
	height: 100%; 
	object-fit: fill;
	padding: 2px;
} */

  #productImageContainer img {
  width: 100%; 
  height: auto; /* Ensure the image keeps its aspect ratio */
}

.modal-body {
  max-height: 80vh; /* Make the modal body responsive */
  overflow: auto;   /* Allow scrolling if content overflows */
}

#productImageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px; /* Fixed height for cropping area */
  width: 100%;
}
.card-body{
	padding: 0;
}


@media (max-width: 576px) {
	/* .offcanvas {
		width: 30%;
	} */
	#myShopSidebarWeb {
		display: none;
	}
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	/* .offcanvas {
		width: 30%;
	} */
	#myShopSidebarWeb {
		display: none;
	}
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	#myShopSidebarForMobile {
		display: none;
	}
	#myshop-leftside {
		display: block;
	}
	#myshop-leftside > a {
		width: 100%;
	}
	#myshop-leftside > button {
		width: 100%;
	}
}

/* For product card */
@media (min-width: 992px) {
	.col-lg-4 {
		flex: 0 0 auto;
		width: 23%;
	}
	.ms-auto {
		margin-left: 0 !important;
	}
}
