.probance-chatbot-btn {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9999;
	width: 70px;
	height: 70px;
	
	background: #23969D;
	background: linear-gradient(90deg,rgba(35, 150, 157, 1) 0%, rgba(35, 127, 157, 1) 100%);
	color: #fff;
	border: none;
	border-radius: 16px 16px 0px 16px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px;
	
	cursor: pointer;
    transition:
        transform 0.25s cubic-bezier(.4,0,.2,1),
        box-shadow 0.25s cubic-bezier(.4,0,.2,1),
        background-position 0.4s ease;
}

.probance-chatbot-button--inline {
    display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;

    padding : 6px 24px;
	background: #23969D;
	background: linear-gradient(90deg,rgba(35, 150, 157, 1) 0%, rgba(35, 127, 157, 1) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    transition: background-position 0.4s ease;
	color: #fff;
	border: none;
	border-radius: 16px 16px 0px 16px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 5px;

	cursor: pointer;
    transition:
        transform 0.25s cubic-bezier(.4,0,.2,1),
        box-shadow 0.25s cubic-bezier(.4,0,.2,1),
        background-position 0.4s ease;
}


.probance-chatbot-btn:hover,
.probance-chatbot-button--inline:hover {
    transform: translateY(-3px);
}

.probance-chatbot-button--inline:hover {
    background-position: 100% 50%;
}

.probance-chatbot-btn img {
    width: 40px;
	height: 40px;
}

.probance-chatbot-button--inline img {
    width: 40px;
	height: 40px;
}