.bm-share-like {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	margin: 32px 0;
}

.bm-share-like__networks {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.bm-share-like__heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #6b6b6b;
	margin-right: 4px;
}

.bm-share-like__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #efefef;
	border: none;
	cursor: pointer;
	color: #374151;
	transition: transform .15s ease, opacity .15s ease;
	text-decoration: none;
	flex: none;
}

.bm-share-like__btn:hover {
	transform: translateY(-2px);
	opacity: .9;
}

.bm-share-like__btn--copy_link {
	position: relative;
}

.bm-share-like__btn--copy_link.is-copied::after {
	content: 'Link kopeeritud';
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	background: #111;
	color: #fff;
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 6px;
	white-space: nowrap;
}

.bm-share-like__like-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.bm-share-like__like-prompt {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}

.bm-share-like__like {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid #e0e0e0;
	border-radius: 999px;
	padding: 8px 16px;
	cursor: pointer;
	color: #6b6b6b;
	transition: border-color .15s ease, background-color .15s ease;
}

.bm-share-like__like:hover {
	border-color: #e0245e;
}

.bm-share-like__like:disabled {
	cursor: default;
}

.bm-share-like__like .bm-share-like__heart svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #999;
	stroke-width: 1.6;
	transition: fill .15s ease, stroke .15s ease, transform .2s ease;
}

.bm-share-like__like.is-liked .bm-share-like__heart svg {
	fill: #e0245e;
	stroke: #e0245e;
}

.bm-share-like__like.bm-like-pop .bm-share-like__heart svg {
	transform: scale(1.3);
}

.bm-share-like__count {
	font-size: 14px;
	font-weight: 600;
	min-width: 1em;
	text-align: left;
}

.bm-share-like__like-label {
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 480px) {
	.bm-share-like {
		justify-content: flex-start;
	}

	.bm-share-like__like-wrap {
		align-items: flex-start;
	}
}
