#chat-widget-button {
	position: fixed;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	border: 0px !important;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999999999;
	transition: 0.2s ease-in-out;
	overflow: hidden;
	padding: 1px;
	bottom: 20px;
	right: 20px;
}

@media screen and (max-width:768px) {

	#chat-widget-button {
		width: 90px;
		height: 90px;
	}

	.floating-buttons {		
		bottom: 110px;
		right: 20px;
	}

}

#chat-widget-button img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	border-radius: 50%;
}

.gradient-border {
	--border-width: 1px;
}

.gradient-border::after {
	position: absolute;
	content: "";
	top: calc(-1 * var(--border-width));
	left: calc(-1 * var(--border-width));
	z-index: -1;
	width: calc(100% + var(--border-width) * 2);
	height: calc(100% + var(--border-width) * 2);
	background: linear-gradient(60deg, #5f86f2, #a65ff2, #f25fd0, #f25f61, #f2cb5f, #abf25f, #5ff281, #5ff2f0);
	background-size: 300% 300%;
	background-position: 0 50%;
	border-radius: 10px;
	animation: moveGradient 4s alternate infinite;
}

@keyframes moveGradient {
	50% {
		background-position: 100% 50%;
	}
}