
.ConversationButton {
	position: fixed;
	bottom: 18px;
	right: 90px;
	width: 56px;
	height: 56px;
	outline: 0;
	border: none;
	border-radius: 50%;
	box-shadow: 2px 2px 5px 0 rgba(45, 45, 45, 0.5);
	text-align: center;
	overflow: hidden;
	pointer-events: all;
	cursor: pointer;
	display: flex;
	line-height: normal;
	padding: 0;
	margin: 0;
	font-size: var(--eswIconFontSize, 16px);
	box-sizing: border-box;
	background: #988642;
	align-items: center;
	justify-content: center;
}

.ConversationButton:hover {
	opacity: 0.6;
	outline: 0;
	transition-timing-function: ease-in-out;
	transition: all 0.2s;
}

.ConversationButton img {
	width: 100%;
	height: 100%;
	max-height: 32px;
	max-width: 32px;
	fill: var(--eswIconFillColor);
	transform: scale(1) translate(0px, 1.5px);
	overflow: visible;
}

.ConversationButton .img-container {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	max-height: 100%;
}