#container {
	display: flex;
	flex-wrap: wrap;
}

#photo {
	width: 100%;
}

#photo img {
	width: 100%;
	max-height: 100%;
	object-fit:	contain;
	border-radius: var(--border-radius);
}

#info {
	width: 100%;
}

#info #name {
	font-size: 2em;
	text-align: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}

#info #body_text {
	margin: 20px 0 20px 0;
}

.amount {
	margin: 5px 0 5px 0;
}

.amount img {
	position: relative;
	top: 2px;
	width: 17px;
	margin: 0 3px 0 3px;
}

#variants {
	border-radius: var(--border-radius);
	box-shadow: var(--border-shadow);
}

#variants .variant {
	background-color: var(--color-level3);
	padding: 16px;
	margin-bottom: 1px;
}

#variants .variant:first-child {
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

#variants .variant:last-child {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	margin-bottom: 0;
}

#variants .variant .name {
	font-weight: 600;
	font-size: 1.5em;
}

#variants .variant .price {
	color: green;
	font-weight: 600;
	font-size: 1.3em;
}

#variants .variant .alternative_prices .alternative_price {
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  color: black;
  font-weight: 600;
  margin: 10px 0 10px 0;
	background: #FDE08D;
	background: -webkit-linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
	background: linear-gradient(top, #8f6B29, #FDE08D, #DF9F28);
	border: #8F6B28 1px solid;
	font-size: 0.85em;
	filter: saturate(0.8);
}

#variants .variant .alternative_prices .alternative_price img {
	width: 25px;
	margin-right: 8px;
  position: relative;
  top: 2px;
}

#variants .variant .toolbar {
	align-items: center;
	margin: 0;
}

#variants .variant .toolbar input[type="number"] {
	width: 75px;
	margin-right: 10px;
}

#variants .variant .toolbar .btnBuy {
	width: 100%;
	display: block;
	margin-top: 10px;
}

.btnPlus, .btnMinus {
	font-size: 1.8em;
	margin-right: 5px;
	position: relative;
	top: 3px;
	width: 75px;
}

#tags {
	margin-bottom: 15px;
}

#tags .tag {
	display: inline-block;
	border: 1px solid rgb(199 149 8);
	background-color: rgb(223, 186, 80);;
	padding: 1px 9px 4px 9px;
	border-radius: 7px;
	margin: 0 0 5px 3px;
	display: inline-block;
	color: black;
	box-shadow: var(--border-shadow);
}

.golden {
  animation: golden-pulse 10s infinite normal;
  animation-delay: 3s;
}

@keyframes golden-pulse {
  0%, 20%{
  	box-shadow: none;
  	filter: saturate(0.8);
  }
  10% {
  	box-shadow:0px 0px 20px 5px #DAA520;
  	filter: saturate(1.3);
  }
}

.swiper {
	border-radius: 20px;
}

.demo-slider {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 10;
  min-height: 0;
}

.swiper-material {
  height: 300px;
  width: calc(100% - 32px);
  max-width: 800px;
}

.demo-material-image {
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--swiper-material-slide-border-radius);
}

.demo-material-label {
  position: absolute;
  font-size: 24px;
  color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 50%);
}