.sbl-share-buttons {
	--sbl-button-size: 50px;
	--sbl-border-radius: 10px;
	--sbl-border-color: #777777;
	--sbl-border-hover-color: #000000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 2rem 0;
	max-width: 100%;
	overflow: visible !important;
	-webkit-overflow-scrolling: auto;
}
.sbl-share-buttons .sbl-share-button,
.sbl-share-buttons .sbl-share-button:visited {
	width: var(--sbl-button-size);
	height: var(--sbl-button-size);
	min-width: var(--sbl-button-size);
	min-height: var(--sbl-button-size);
	flex: 0 0 var(--sbl-button-size);
	box-sizing: border-box;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: 2px solid var(--sbl-border-color) !important;
	border-radius: var(--sbl-border-radius);
	background: transparent !important;
	color: #000000;
	font: inherit;
	line-height: 0;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	opacity: 1;
	transform: none;
	transition: all 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none !important;
	outline: none;
	overflow: visible;
}
.sbl-share-buttons button.sbl-share-button {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	background: transparent !important;
	-webkit-tap-highlight-color: transparent;
}
.sbl-share-buttons button.sbl-share-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.sbl-share-buttons .sbl-share-button:hover,
.sbl-share-buttons .sbl-share-button:focus,
.sbl-share-buttons .sbl-share-button:focus-visible,
.sbl-share-buttons .sbl-share-button:active {
	border-color: var(--sbl-border-hover-color) !important;
	background: transparent !important;
	color: #000000;
	text-decoration: none !important;
	opacity: 1;
	transform: none;
	outline: none;
	box-shadow: none !important;
}
.sbl-share-buttons .sbl-share-button .sbl-svg {
	width: 100%;
	height: 100%;
	display: block;
	flex: 0 0 auto;
	pointer-events: none;
}
.sbl-share-buttons .sbl-share-button .sbl-icon {
	fill: currentColor;
}
.sbl-fallback-icon {
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}
.sbl-heading {
	margin: 2rem 0 1rem 0;
	color: #000000 !important;
}
.sbl-copy-feedback {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	z-index: 10;
	display: block;
	padding: 6px 8px;
	border-radius: 4px;
	background: #000000;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sbl-copy-feedback::after {
	content: " ";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 0;
	height: 0;
	border-width: 5px 5px 0 5px;
	border-style: solid;
	border-color: #000000 transparent transparent transparent;
	transform: translateX(-50%);
}
.sbl-share-button-copied .sbl-copy-feedback {
	opacity: 1;
	visibility: visible;
}
.sbl-copy-status {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
@media (max-width: 520px) {
	.sbl-share-buttons {
		--sbl-button-size: 35px;
		--sbl-border-radius: 7px;
		gap: 5px;
	}
}
