.gifts {
	padding: 0;
	flex-direction: row;
	grid-gap: 10px;
	background-color: transparent;
}
.gift .product {
	padding: 0 0 100px 0;
}
.gifts .product .product_price_wrapper {
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.gifts .product .product_price {
	text-align: center;
}

.gifts .product_name {
	text-align: center;
	text-wrap: balance;
}

.gifts .product_name:hover {
	font-weight: normal;
}

.gifts .product_top .product_img {
    max-height: 200px;
}

@media only screen and (max-width: 1100px) {
.gifts .product .product_btn {
    margin: 0 auto;
  }

  .gifts .product .product_btn .__btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }

  .gifts .product .product_bottom {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 1030px) {
  .gifts .product .products_list {
		display: flex;
		overflow-x: scroll;
		margin-bottom: -40px;
		padding: 1px var(--bone_size) calc(40px + 1px - var(--scroll));
	}
}

@media only screen and (max-width: 899px) {
  .gifts .product_top .product_img {
    max-height: 200px;
  }

  .gifts .product_name {
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {
  .gifts .product {
    padding: 0.75rem 0.6rem;
  }

  .gifts .product_name {
	  text-align: center;
    font-size: 12px;
  }
}

#gifts-wrapper {
    display: block;
}

.gift-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	overflow: hidden;
	width: auto;
	border-radius: 6px;
	margin-bottom: 10px;
}

.gift-logo picture,
.gift-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

.gifts .product {
	overflow: hidden;
	border-radius: 6px;
	transition: all 0.2s ease;
}

:root {
	--gift-select-accent: #f4af00d4;
}

.gift-select {
	scale: 99%;
	border: 1px solid var(--accent);
}

.gifts .__btn[disabled] {
  --color: var(--white) !important;
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}