/* Wine-woo.css. */

.wine-product-winery {
	margin-top: 2px;
	font-size: var(--wine-fons-size-sm);
	font-weight: 500;
}

.wine-product-grape,
.wine-product-type,
.wine-product-alcohol {
	margin-top: var(--wine-inner-xxs);
	font-size: var(--wine-fons-size-sm);
	color: var(--wine-color-gray-text);
}

.wine-product-country {
	display: flex;
	align-items: center;
	grid-gap: var(--wine-inner-xxs);

	margin-top: var(--wine-inner-xxs);
	font-size: var(--wine-fons-size-sm);
}

.wine-product-country:before {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 1/1;
	margin-top: -.25em;
	background-color: currentColor;
	mask-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.194 18.2878L11.7696 18.7686L11.194 18.2878ZM8.80732 18.2878L8.23167 18.7686L8.80732 18.2878ZM16.6673 8.73047H15.9173C15.9173 9.24254 15.7403 9.91701 15.3934 10.72C15.0514 11.5113 14.5693 12.3712 14.0173 13.2375C12.9137 14.9698 11.5685 16.6694 10.6183 17.807L11.194 18.2878L11.7696 18.7686C12.7374 17.6098 14.1289 15.8541 15.2824 14.0435C15.859 13.1384 16.3857 12.205 16.7703 11.315C17.1499 10.4366 17.4173 9.5418 17.4173 8.73047H16.6673ZM8.80732 18.2878L9.38296 17.807C8.43285 16.6694 7.08763 14.9698 5.98396 13.2375C5.43201 12.3712 4.9499 11.5113 4.60795 10.72C4.26096 9.91701 4.08398 9.24254 4.08398 8.73047H3.33398H2.58398C2.58398 9.5418 2.85144 10.4366 3.23102 11.315C3.61565 12.205 4.14226 13.1384 4.7189 14.0435C5.87242 15.8541 7.26387 17.6098 8.23167 18.7686L8.80732 18.2878ZM3.33398 8.73047H4.08398C4.08398 5.5314 6.72179 2.91797 10.0007 2.91797V2.16797V1.41797C5.91572 1.41797 2.58398 4.68079 2.58398 8.73047H3.33398ZM10.0007 2.16797V2.91797C13.2795 2.91797 15.9173 5.5314 15.9173 8.73047H16.6673H17.4173C17.4173 4.68079 14.0856 1.41797 10.0007 1.41797V2.16797ZM11.194 18.2878L10.6183 17.807C10.2892 18.2012 9.71213 18.2012 9.38296 17.807L8.80732 18.2878L8.23167 18.7686C9.16046 19.8807 10.8408 19.8807 11.7696 18.7686L11.194 18.2878ZM12.5007 8.83464H11.7507C11.7507 9.80113 10.9671 10.5846 10.0007 10.5846V11.3346V12.0846C11.7956 12.0846 13.2507 10.6296 13.2507 8.83464H12.5007ZM10.0007 11.3346V10.5846C9.03415 10.5846 8.25065 9.80113 8.25065 8.83464H7.50065H6.75065C6.75065 10.6296 8.20573 12.0846 10.0007 12.0846V11.3346ZM7.50065 8.83464H8.25065C8.25065 7.86814 9.03415 7.08464 10.0007 7.08464V6.33464V5.58464C8.20573 5.58464 6.75065 7.03971 6.75065 8.83464H7.50065ZM10.0007 6.33464V7.08464C10.9671 7.08464 11.7507 7.86814 11.7507 8.83464H12.5007H13.2507C13.2507 7.03971 11.7956 5.58464 10.0007 5.58464V6.33464Z' fill='black'/%3E%3C/svg%3E%0A");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.wine-item-label {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 5%;
	left: 8%;

	width: 48px;
	aspect-ratio: 1/1;
	background-color: var(--wine-color-white);
	border: 1px solid var(--wine-color-border);
	border-radius: 8px;
	cursor: pointer;
	z-index: 2;
}

.wine-item-label img {
	width: 83%;
	aspect-ratio: 1/1;
}

.wine-item-label .wine-diary-icon__info {
	position: absolute;
	top: -20%;
	right: -16%;

	color: rgba(119, 76, 45, 1);
	background-color: var(--wine-color-white);
	border-radius: 50%;
}

.wine-item-label__name {
	pointer-events: none;
	position: absolute;
	left: 58%;
	bottom: 100%;

	padding: var(--wine-inner-sm);
	margin-bottom: 22px;
	font-size: var(--wine-fons-size-md);
	white-space: nowrap;
	background-color: var(--wine-color-white);
	border: 1px solid var(--wine-color-border);
	border-radius: var(--wine-bdrs-sm);
}

.wine-item-label:not(:hover) .wine-item-label__name {
	opacity: 0;
	transition: opacity var(--wine-transition-duration);
}

.wine-item-image .wine-item-label {
	--wine-icon-size: var(--wine-icon-size-md);
	width: 56px;
}

/* Wine-woo.css. */