/* @-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.ssbp-spinner:before {
	font-family: 'ssbp';
	content: "\e614"
}

.ssbp-spinner {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block
} */

#sharing-area {
	position: relative;
}

#share-btn {
	outline: none;
	box-shadow: none;
}

.ssbp-btn:before {
	display: inline-block;
	font-family: 'ssbp';
	speak: none;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none
}

.ssbp-wrap *,
.ssbp-wrap *:before,
.ssbp-wrap *:after {
	box-sizing: border-box
}

.ssbp-wrap {
	color: #272727;
	font-size: 0;
	padding: 0;
	position: absolute;
	left: calc(100% + 20px);
	top: 50%;
	transform: translateY(-50%);
	width: fit-content
}
@media (max-width: 767px) {
	.ssbp-wrap {
		display: none !important;
	}
}

.ssbp-wrap .ssbp-container {
	width: fit-content;
	font-size: 16px;
	display: flex;
}

#share-close {
	position: absolute;
	right: -15px;
	top: -15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	padding: 0;
	line-height: 27px;
	border: 0;
}

#share-close:hover {
	background-color: var(--rexd-primary);
}

.ssbp-btn {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-family: sans-serif;
	border-radius: 50%;
	position: relative;
	transition: all .3s;
}

.ssbp-btn svg,
.ssbp-btn img {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ssbp-btn .color-icon svg {
	display: none;
}

.ssbp-btn:hover span:not(.color-icon) svg {
	display: none;
}

.ssbp-btn:hover .color-icon svg {
	display: block;
}

.ssba img {
	border: 0;
	box-shadow: none !important;
	display: inline !important;
	vertical-align: middle;
	box-sizing: unset;
}

.ssba-share-text {
	font-size: 12px;
	font-weight: normal;
	font-family: inherit;
}

#ssba-bar {
	display: none;
	list-style: none;
	padding: 0;
}

#ssba-bar .ssbp-bar-list {
	text-align: left;
	min-width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-flex;
	gap: 15px;
}
@media (max-width: 767px) {
	#ssba-bar .ssbp-bar-list {
		gap: 5px;
	}
}


#ssba-bar .ssbp-bar-list li {
	margin-left: 0;
	margin-right: 0;
	display: inline-block;
	margin: 10px;
	opacity: 0;
	transition: all 300ms ease;
}


#ssba-bar .ssbp-bar-list li a {
	height: 38px !important;
	width: 38px !important;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
}

#ssba-bar ul li a {
	max-width: 84px;
	display: block
}


#ssba-bar .ssbp-bar-list li a:hover {
	background-color: transparent !important;
}

#ssba-bar .ssbp-bar-list li a svg,
#ssba-bar .ssbp-bar-list li a svg path {
	line-height: 48px !important;
	font-size: 18px;
	fill: currentColor;
}

#ssba-bar .ssbp-bar-list li {
	margin: 0px 0 !important;
}

@media only screen and (max-width: 750px) {
	#ssba-bar {
		display: block;
	}
}

/* Define the bounce animation */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}

/* Bounce animation class */
.bounce-animation {
	animation: bounce 0.8s ease;
}