.ket-favorite-share-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	padding: 24px 22px;
	padding-bottom: 0;
	padding-left: 0
;
	background: transparent;
}

.ket-favorite-share-bar__group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.ket-favorite-share-bar__group--share {
	margin-left: auto;
}

.ket-favorite-share-bar__row {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 18px;
}

.ket-favorite-share-bar__label {
	display: inline-flex;
	align-items: center;
	color: #101010;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.ket-favorite-share-bar__favorite {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ff8389;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.18s ease,
		opacity 0.18s ease;
	margin-top: 25px;
}

.ket-favorite-share-bar__favorite:hover,
.ket-favorite-share-bar__favorite:focus-visible {
	transform: translateY(-1px);
	opacity: 0.86;
}

.ket-favorite-share-bar__favorite:focus-visible,
.ket-favorite-share-bar__share-link:focus-visible {
	outline: 2px solid rgba(16, 16, 16, 0.35);
	outline-offset: 2px;
}

.ket-favorite-share-bar__favorite svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.95px;
}

.ket-favorite-share-bar__favorite.is-active svg,
.ket-favorite-share-bar__favorite--guest svg {
	fill: currentColor;
	stroke: currentColor;
}

.ket-favorite-share-bar__share-list {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.ket-favorite-share-bar__share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #ffffff;
	text-decoration: none;
	transition:
		transform 0.18s ease,
		opacity 0.18s ease;
}

.ket-favorite-share-bar__share-link:hover,
.ket-favorite-share-bar__share-link:focus-visible {
	transform: translateY(-1px);
	opacity: 0.92;
}

.ket-favorite-share-bar__share-link svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.ket-favorite-share-bar__share-link--facebook {
	background: #4f6daa;
}

.ket-favorite-share-bar__share-link--linkedin {
	background: #0b7dbb;
}

.ket-favorite-share-bar__share-link--xing {
	background: #0a6b67;
}

.ket-favorite-share-bar__share-link--reddit {
	background: #f5560d;
}

.ket-favorite-share-bar__share-link--email {
	background: #df7056;
}

.ket-favorite-share-bar.is-busy .ket-favorite-share-bar__favorite {
	pointer-events: none;
	opacity: 0.6;
}

@media (max-width: 767px) {
	.ket-favorite-share-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		padding: 18px;
	}

	.ket-favorite-share-bar__group {
		width: 100%;
	}

	.ket-favorite-share-bar__group--share {
		margin-left: 0;
	}

	.ket-favorite-share-bar__row {
		flex-wrap: wrap;
	}

	.ket-favorite-share-bar__share-list {
		gap: 10px;
	}

	.ket-favorite-share-bar__share-link {
		width: 44px;
		height: 40px;
	}

}
