.displaynone {
  display: none;
}

.product-gallery-image-single {
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: auto;
}

.product-gallery-image-single3 {
  /* max-width: 300px; */
  max-height: 300px;
  /* min-width: 300px; */
  width: auto;
  height: auto;
}

.card-footer {
  display: grid;
  width: 100%;
  gap: 12px;
  grid-template-columns: 1fr;
}

.item_main {
  width: fit-content;
  max-width: 300px;
  margin: 0 auto;
}

.card-btn {
	display: none !important; 
}

.row-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-btn.card-btn_active {
  opacity: 0.5;
}
.card-btn.card-btn_active:hover {
  opacity: 0.9;
}

#main-navbar {
  position: relative;
}

.cart-widget {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  max-width: 320px;
  background: #fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display:none;
}

.cart-widget__header {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3)

}

.card-widget__heading {
  font-size: 16px;
  opacity: 0.5;
  transition: 0.3s;
  margin:0;
}

.cart-widget__header:hover .card-widget__heading {
  opacity: 1;
}

.cart-widget__body {
	width:100%;
	max-height: 0px;
	overflow: hidden;
	transition: .3s;
	display:grid;
	grid-template-columns: 1fr;
}


.cart-widget__body-item{
	width:100%;
	padding:16px;
	display:flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3)
}


.card-widget__body-item-icon {
	width:24px;
	height:24px;
	cursor:pointer;
}

.cart-widget__body-item-heading {
	margin: 0px;
	font-size: 16px;
	font-weight: 500;
}
