ul.artwork-container {
  --row-n: 4;
  --column-gap: 1.5rem;
  --row-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--row-n), minmax(0, 1fr));
  gap: var(--row-gap) var(--column-gap);
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  ul.artwork-container {
    --row-n: 2;
    --column-gap: 0.2rem;
  }
}
@media screen and (max-width: 500px) {
  ul.artwork-container {
    --row-n: 1;
    --column-gap: 0.2rem;
	grid-template-columns: none;
	justify-content: center;
  }
}
.top-title h1, .title-area{
	text-align:center;
}
.artist-image-area{
	background-color: rgba(229,229,229,1);
	aspect-ratio: 1/1.0;
	border-radius: 50%;
	overflow: hidden;
	& a{
		text-decoration: none;
		color: black;
		& img{
			width: 100% !important;
			height: 100% !important;
			object-fit: cover !important;
			max-width: 100% !important;
			max-height: 100% !important;
			vertical-align: middle;
			border: none;
		}
	}
}
.artist-title-area{
	text-align:center;
	font-weight:600;
	display: flex;          
	align-items: center;  
	gap: 0.5rem;
	& a{
		text-decoration: none;
		color: black;
	}
}
.title-area{
	font-size:1.3rem;
	font-weight:600;
}
ul.events-container { 
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.4rem 0;
  justify-content: center;
}
div.PageCarouselEvents{
	padding: 1em 0;	
}
i.bi-heart {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143q.09.083.176.171a3 3 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15'/%3E%3C/svg%3E");
  cursor: pointer;
  &::before{
	content:none;  
  }
}
.like-top-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: 3rem;
	& div{
		& .title-label{
			font-size: 2rem;
			font-weight: 600;
		}
		& .count-label{
			font-size: 1.1rem;
			font-weight: 600;
			text-align: left;
		}
	}
}
.empty-cart-container{
	& .empty-cart-logo{
		height: 379px;
		padding-top: 86px;
		padding-bottom: 40px;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		& img{
			width: 23.6875rem;
			height: 23.6875rem;
			max-width: 100% !important;
			max-height: 100% !important;
			border:none;
		}
	}
	& .text1{
		& span{
			font-size: 2rem;
			font-weight: 700;
			text-align: center;
		}
	}
	& .text2{
		& span{
			font-size: 1.125rem;
			font-weight: 700;
			text-align: center;
		}
	}
	& .cart_empty_buttons{
		margin-top: 47px;
		& .button-left{
			max-width: 400px;
			height: 41px;
			margin: 0px 15px;
			font-weight: 500;
			text-decoration: none;
			@media (max-width: 768px) {
				width: 100%;         
				max-width: 300px; 
				margin: 5px 0;
			  }
		}
		& .button-right{
			max-width: 400px;
			height: 41px;
			margin: 0px 15px;
			font-weight: 500;
			text-decoration: none;
			@media (max-width: 768px) {
				width: 100%;       
				max-width: 300px;   
				margin: 5px 0;
			  }
		}
		@media (max-width: 768px) {
			flex-direction: column; 
			gap: 10px;
		}
	}
	& .responsive-row-empty-cart{
		height: clamp(50px, 10vw, 84px);
		width: 100%;
	}
}
.rounded-button {
  width: 100%;
  height: 45px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 25px;
  text-align: center;
  line-height: 42px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid black;
  font-size: 18px;
}
@media (max-width: 768px) {
  .rounded-button {
    font-size: 14px;
  }
}
.rounded-button:hover {
  background-color: white;
  border: 1px solid black;
  color: black;
}
.cart_empty_row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.like-empty{
	display:none;
}
a.buttonFlipper.button-left, a.buttonFlipper.button-right{
	text-align: center;
	max-width: 370px !important;
    width: 100%;
	--element-height: 42px;
    --button-bg-color: #000;  
    --button-hover-bg-color: #fff;
    --border-inner-hover: 1px solid #000;
	--button-hover-text-color:#000;
	font-weight:600;
	& span{
		text-align: center;
	}
}
#paintingListStage {
  & li {
    list-style: none;
  }
}
ul.artwork-container {
  & li {
    min-width: 0;
    display: flex;
    gap: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1.7;
  }
}
#paintingListArtistStage{
	& ul.artwork-container {
	  & li {
		min-width: 0;
		display: flex;
		gap: 0;
		overflow: hidden;
		aspect-ratio: 1 / 1;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		max-width: 300px;
		justify-content: center;
	  }
	}
}
div.PageCarouselEvents {
  & ul {
    & li {
      padding: 0.4em 0.15em 1em 0.3em;
    }
  }
}

