.brx-wa-chat-button {
	align-items: center;
	background-color: #25d366;
	border-radius: 200px;
	bottom: 20px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-weight: bold;
	gap: 10px;
	justify-content: center;
	line-height: 1.15;
	padding: 10px 20px;
	position: fixed;
	right: 20px;
	z-index: 10;
}
.brx-wa-chat-button .icon,
.brx-wa-chat-box-content .button .icon {
	font-size: 24px;
}
.brx-wa-chat-button .icon.svg {
	width: 24px;
	height: 24px;
}
.brx-wa-chat-button[data-balloon] {
	--bricks-tooltip-bg: #f5f5f5;
}
.brx-wa-chat-button[data-balloon][data-balloon-visible]:before,
.brx-wa-chat-button[data-balloon][data-balloon-visible]:after {
	opacity: 1;
	pointer-events: auto;
}
.brx-wa-chat-button[data-balloon]:before,
.brx-wa-chat-button[data-balloon]:after {
	transition: all 0.3s ease;
}
.brx-wa-chat-button[data-balloon-pos=right]:after, 
.brx-wa-chat-button[data-balloon-pos=right]:before {
	transform: translate(10px, -50%);
}
.brx-wa-chat-button[data-balloon]:after {
	color: #111b21;
	font-size: 12px;
	padding: 10px 20px;
}
.brx-wa-chat-button.active[data-balloon]:after,
.brx-wa-chat-button.active[data-balloon]:before {
	opacity: 0;
	pointer-events: none;
}
.brx-wa-chat-box {
	color: #111b21;
    border-radius: 16px;
	bottom: 78px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
	opacity: 0;
    overflow: hidden;
    position: fixed;
    right: 20px;
	transition: all .3s ease;
	visibility: hidden;
    width: 360px;
    z-index: 10;
}
.brx-wa-chat-box.open {
	opacity: 1;
	visibility: visible;
	transform: none!important;
}
.brx-wa-chat-box-header {
	align-items: center;
	background-color: #00a884;
	color: #ffffff;
	display: flex;
	flex-direction: row;
	gap: 20px;
	padding: 20px;
}
.brx-wa-chat-box-header-image,
.brx-wa-chat-box-content .account .image {
	flex: 1 0 auto;
	position: relative;
}
.brx-wa-chat-box-header-image img {
	border-radius: 200px;
	width: 56px;
}
.brx-wa-chat-box-header-content,
.brx-wa-chat-box-accounts .info {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.brx-wa-chat-box-header .title {
	font-weight: bold;
}
.brx-wa-chat-box-header .description {
	color: color-mix(in srgb, currentcolor ,transparent 20%);
	font-size: 13px;
}
.brx-wa-chat-box-content {
	background-color: #ffffff;
	padding: 20px;
}
.brx-wa-chat-box-content .message {
	background-color: color-mix(in srgb, #000000, transparent 95%);
	border-radius: 0 16px 16px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0px 0px;
	max-width: calc(100% - 60px);
	padding: 10px 20px;
	position: relative;
}
.brx-wa-chat-box-content .button-container {
	display: flex;
    flex-direction: row;
	width: 100%;
}
.brx-wa-chat-box-content .button {
	align-items: center;
	background-color: #25d366;
	border-radius: 200px;
	color: #ffffff;
	display: inline-flex;
	font-weight: bold;
	gap: 10px;
	justify-content: center;
	line-height: 1.15;
	margin-top: 20px;
	padding: 10px 20px;
}
.brx-wa-chat-box-accounts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.brx-wa-chat-box-accounts .account {
	background-color: #f0f2f5;
	width: 100%;
}
.brx-wa-chat-box-accounts .account.is-offline {
	pointer-events: none;
}
.brx-wa-chat-box-accounts .account.no-link,
.brx-wa-chat-box-accounts .account.has-link a {
	align-items: center;
	border-left: solid 2px #00a884;
	border-radius: 4px;
	display: flex;
	gap: 20px;
	padding: 10px 20px;
}
.brx-wa-chat-box-accounts .image img {
	width: 56px;
	border-radius: 200px;
}
.brx-wa-chat-box-header-image.online-indicator:before,
.brx-wa-chat-box-accounts .account.is-online .image:before {
	background-color: #25d366;
	bottom: 0px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	content: '';
    display: block;
	height: 12px;
    position: absolute;
	right: 0px;
	width: 12px;
    z-index: 2;
}
.brx-wa-chat-box-accounts .name {
	font-size: 14px;
	font-weight: bold;
}
.brx-wa-chat-box-accounts .title {
	color: color-mix(in srgb, currentcolor ,transparent 20%);
	font-size: 12px;
}
.brx-wa-chat-box-accounts .offline-text {
	color: color-mix(in srgb, currentcolor ,transparent 40%);
	font-size: 10px;
}