.listing-share {
	position: relative;
	display: inline-flex;
}

.listing-share__toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	gap: 5px;
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #646970;
	box-shadow: none !important;
	cursor: pointer;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	transition: color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.listing-share__toggle:hover,
.listing-share__toggle:focus-visible,
.listing-share.is-open .listing-share__toggle {
	transform: translateY(-1px);
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #09090b;
	opacity: 1;
	box-shadow: none !important;
	outline: none;
}

.listing-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
}

.listing-share__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.listing-share__label {
	display: block;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.listing-share__menu {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	z-index: 40;
	display: flex;
	flex-direction: column;
	min-width: 160px;
	max-width: min(220px, calc(100vw - 24px));
	padding: 8px;
	border: 1px solid #d0d5dd;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
	box-sizing: border-box;
	transform: translateX(-50%);
}

.listing-share__menu[hidden] {
	display: none;
}

.listing-share__item {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-radius: 10px;
	background: #ffffff;
	color: #18181b;
	text-align: left;
	text-decoration: none;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	cursor: pointer;
	transition: background-color 0.16s ease, color 0.16s ease;
}

.listing-share__item--button {
	font-family: inherit;
	border: 0;
}

.listing-share__item:hover,
.listing-share__item:focus-visible {
	background: #f3f4f6;
	color: #1d2327;
	outline: none;
}

.listing-share__feedback {
	display: none;
	padding: 6px 12px 2px;
	color: #52525b;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
}

.listing-share__feedback.is-visible {
	display: block;
}

@media (max-width: 767px) {
	.listing-share__menu {
		left: 0;
		right: auto;
		transform: none;
	}
}
