/* Oly Share Post */
.oly-share-post {
	position: relative;
	display: inline-block;
}

.oly-share-post-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid #3b3b54;
	border-radius: 8px;
	background-color: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.oly-share-post-toggle:hover,
.oly-share-post[data-open="true"] .oly-share-post-toggle {
	background-color: #3b3b54;
}

.oly-share-post-icon {
	width: 18px;
	height: 18px;
	display: block;
}

.oly-share-post-icon-active {
	display: none;
}

.oly-share-post-toggle:hover .oly-share-post-icon-default,
.oly-share-post[data-open="true"] .oly-share-post-icon-default {
	display: none;
}

.oly-share-post-toggle:hover .oly-share-post-icon-active,
.oly-share-post[data-open="true"] .oly-share-post-icon-active {
	display: block;
}

.oly-share-post-panel {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 220px;
	padding: 8px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(9, 21, 47, 0.18);
	display: none;
	flex-direction: column;
	gap: 2px;
	z-index: 20;
}

.oly-share-post[data-open="true"] .oly-share-post-panel {
	display: flex;
}

.oly-share-post-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: none;
	background: transparent;
	border-radius: 6px;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #101011;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
}

span.oly-share-post-item-label {
	color: #101011;
}

.oly-share-post-item:hover {
	background-color: #f4f4fa;
}

.oly-share-post-item-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.oly-share-post-copy.is-copied {
	color: #1aa663;
}

.oly-share-post-copy.is-copied .oly-share-post-item-icon {
	filter: invert(45%) sepia(78%) saturate(412%) hue-rotate(99deg)
		brightness(95%) contrast(89%);
}
