.sidebarContactResult {
	display: flex;
	padding: 10px 15px;
	cursor: pointer;
}

.sidebarContactResult.activeChat {
	background-color: var(--gray-lighter);
}

.sidebarContactResult:hover {
	background-color: var(--gray-lighter);
}

.sidebarContactResult__info > h2 {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 3px;
}

.sidebarContactResult__info__status {
	color: var(--lighter-text-color);
	margin-bottom: 0;
	font-size: 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 100%;
	width: 220px;
}

.sidebarContactResult__info {
	margin-left: 15px;
}

.fileInput {
	display: none;
}

.chat {
	flex: 0.7;
	display: flex;
	flex-direction: column;
	position: relative;
	background-color: var(--chat-bg);
	background-image: var(--chat-bg-image);
	background-repeat: repeat;
	/* Single source for the chat body frame; the loading skeleton overlay
	(ChatBodySkeleton) mirrors the body with these same variables */
	--chat-body-padding: 10px 20px 0 20px;
	--chat-body-border-left: 1px solid rgba(0, 0, 45, 0.05);
}

.chat.chatFullWidth {
	flex: 1;
}

/* The chat view fades in when a chat is opened and fades out when it is
closed ("Close view"); switching between chats does not replay it since
.chatOpen persists. The exit pairs with useUnmountTransition in
ChatView, which keeps the last chat rendered until animationend. */
@keyframes chatViewFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes chatViewFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.chat.chatOpen {
	animation: chatViewFadeIn 0.15s ease-out;
}

.chat.chatExiting {
	animation: chatViewFadeOut 0.15s ease-in forwards;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.chat.chatOpen,
	.chat.chatExiting {
		animation: none;
	}
}

.chat__message__failed__info {
	font-size: 12px;
	color: red;
	text-align: right;
	margin-top: -25px;
	margin-bottom: 25px;
}

.blink .chat__message {
	opacity: 0.3;
}

/* The entrance must never paint outside the row's layout box: downward
overflow (e.g. a translateY slide) briefly extends the scrollable area
of .chat__body, flashing its auto scrollbar in short chats. Scaling up
from the bottom edge stays within the box. */
@keyframes chatMessageAppear {
	from {
		opacity: 0;
		transform: scaleY(0.92);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.chat__message__outer--appear {
	animation: chatMessageAppear 0.3s ease-out;
	transform-origin: bottom;
}

@media (prefers-reduced-motion: reduce) {
	.chat__message__outer--appear {
		animation: none;
	}
}

.chat__media,
.chat__location__iframe {
	border-radius: 8px;
	display: block;
	margin: -1px -6px 4px -6px;
	height: 150px;
	width: 250px;
	/*max-width: 250px;*/
	object-fit: cover;
	cursor: pointer;
	border: none !important;
}

.chat__location {
	display: flex;
	flex-direction: column;
}

.chat__message__location__name {
	margin-top: 5px;
	font-weight: 600;
}

.chat__message__location__address {
	font-size: 12px;
	color: rgba(0, 0, 45, 0.5);
	margin-bottom: 10px;
}

.chat__message__location__url {
	font-size: 12px;
	color: var(--color-primary) !important;
	max-width: 250px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 10px;
}

.chat__message__location__url:hover {
	text-decoration: underline;
}

.chat__message__location__actions {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
}

.chat__message__location__share {
	align-self: center;
	justify-self: center;
}

.chat__message__location__share .MuiSvgIcon-root {
	color: var(--color-primary) !important;
	height: 0.8em;
	width: 0.8em;
}

.chat__message__location__open .MuiSvgIcon-root {
	/* Follow the button label color */
	color: inherit !important;
	height: 0.8em;
	width: 0.8em;
}

video.chat__media {
	background-color: #b5b5b5;
}

.chat__sticker {
	width: auto;
	object-fit: contain;
	margin-bottom: 22px;
	cursor: default !important;
}

.outgoing .chat__sticker {
	margin-left: auto;
}

.chat__videoWrapper {
	align-self: center;
	position: relative;
	cursor: pointer;
	display: table;
	width: fit-content;
}

.chat__videoWrapper > .chat__videoWrapper__iconWrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	background-color: rgba(0, 0, 45, 0.4);
	border-radius: 50px;
}

.chat__voice {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.chat__voiceWrapper {
	display: flex;
	flex-direction: column;
	margin: 0 -4px;
}

.chat__voice > .MuiAvatar-root.audioMessageAvatar .MuiSvgIcon-root {
	color: white !important;
}

.chat__voice > .MuiAvatar-root {
	margin: 0 4px 0 15px;
}

.chat__voice > .MuiIconButton-root {
	padding: 6px;
	margin-right: 5px;
}

.chat__voice__duration {
	font-size: x-small;
	margin-left: 55px;
}

.chat__voice__range {
	box-sizing: border-box;
	display: block;
	height: 21px;
	background-color: initial !important;
	border: none;
	outline: none;
	/*-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
	margin-left: 5px;
}

a.chat__document {
	color: #4a4a4a;
	border-radius: 6px;
	margin: -1px -6px 4px -6px;
	background-color: rgba(0, 0, 45, 0.05);
	padding: 10px 6px;
	display: flex;
}

a.chat__document:hover {
	background-color: rgba(0, 0, 45, 0.08);
}

.chat__document .chat__document__filename {
	margin-left: 5px;
}

.chat__template a,
.chat__template button {
	color: var(--color-light-blue);
}

.chat__templateHeader {
	display: block;
	font-size: x-small;
	color: rgba(0, 0, 45, 0.6);
	margin-bottom: 5px;
}

.chat__templateHeader .MuiSvgIcon-root {
	color: rgba(0, 0, 45, 0.4) !important;
	width: 0.6em;
	height: 0.6em;
	margin-right: 5px;
}

.chat__templateContent__buttons {
	margin-top: 10px;
}

.chat__templateContent__header {
	display: flex;
	flex-direction: column;
}

.chat__templateContent__header img {
	align-self: center;
}

.chat__templateContent__footer {
	font-size: 12px;
	color: rgba(0, 0, 45, 0.6);
}

.chat__message__info {
	float: right;
}

.chat__timestamp {
	color: rgba(0, 0, 45, 0.6);
	margin-left: 10px;
	font-size: x-small;
}

.chat__iconPending,
.chat__iconDone,
.chat__iconDoneAll,
.chat__iconError {
	height: 10px;
	width: 10px;
	margin-left: 5px;
}

/* Status changes swap one icon for another, so animate the icons in.
The pending icon is excluded: it is always the initial status, appearing
only together with the message itself, and its element remounts (and
would animate again) when the pending message is replaced by the
stored one. */
.chat__iconDone,
.chat__iconDoneAll,
.chat__iconError {
	animation: chatStatusIconAppear 0.3s ease-out;
}

@keyframes chatStatusIconAppear {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.chat__iconDone,
	.chat__iconDoneAll,
	.chat__iconError {
		animation: none;
	}
}

.chat__iconError * {
	fill: red;
}

/* Positioning context for the loading skeleton, which overlays the
chat body without participating in its layout */
.chat__body__outer {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

/* The other half of the loading cross-dissolve: while the skeleton
overlay fades out (ChatBodySkeleton, same 0.25s), the freshly rendered
messages fade in over the chat wallpaper */
@keyframes chatBodyAppear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.chat__body--appearing {
	animation: chatBodyAppear 0.25s ease-out;
}

@media (prefers-reduced-motion: reduce) {
	.chat__body--appearing {
		animation: none;
	}
}

.chat__body {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: var(--chat-body-padding);
	overflow-y: auto;
	overflow-x: hidden;
	border-left: var(--chat-body-border-left);
	min-height: 0;
	/* Reserve the classic-scrollbar gutter even before content overflows,
	so message width never jumps and the skeleton overlay (which reserves
	the same gutter) stays pixel-aligned with the messages beneath it */
	scrollbar-gutter: stable;
}

.chat__body__empty {
	content: '';
	flex: 0 0 5px;
}

.chat__body__loadingMore {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-top: 63px;
	z-index: 9;
	display: flex;
	justify-content: center;
}

.chat__body__loadingMore__wrapper {
	width: auto;
	padding: 10px 10px 4px 10px;
	border-radius: 40px;
	background-color: white;
	box-shadow: var(--shadow-md);
}

.chat__body__dateIndicator {
	position: absolute;
	left: 10px;
	right: 10px;
	top: 0;
	margin-top: 48px;
	z-index: 8;
	pointer-events: none;
}

.chat__body__dateIndicator .chat__message__dateContainer {
	margin-bottom: 0 !important;
}

.chat__body__dateIndicator .chat__message__dateContainer__indicator {
	pointer-events: auto;
	background-color: white;
	box-shadow: 0 6px 10px -6px rgb(185, 152, 136);
}

.chat__empty {
	flex: 1 1 auto;
}

.chat .templateMessagesOuter,
.savedResponsesOuter,
.interactiveMessagesOuter {
	padding: 0 10px 10px 10px;
	border-left: 1px solid lightgray;
}

.templateMessagesOuter .searchBar__search {
	background-color: rgba(0, 0, 45, 0.17);
	border-radius: 10px 10px 0 0;
}

.templateMessagesOuter__items {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.templateMessagesWrapper,
.savedResponsesWrapper,
.interactiveMessagesWrapper {
	overflow: hidden;
	background-color: #6843301f;
	/*background-color: rgba(0, 0, 0, 0.05);*/
	border-radius: 10px; /*0 0 10px 10px;*/
	/*box-shadow: 0 4px 5px -6px rgba(0, 0, 45, 0.4);*/
}

.templateMessages,
.savedResponses,
.interactiveMessages {
	flex: 1 1;
	max-height: 290px;
	overflow-y: auto;
	padding: 15px;
}

.templateMessages__emptyInfo,
.savedResponses__emptyInfo {
	font-size: 15px;
	color: var(--chat-icon);
}

.templateMessages__actions {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 45, 0.1);
	padding-bottom: 10px;
}

.templateMessages__actions a {
	line-height: 1.2rem !important;
}

.templateMessages__create a {
	color: var(--chat-icon-dark);
	font-weight: 600;
	font-size: 13px;
}

.templateMessages__refresh {
	font-size: 13px;
	padding: 3px 5px;
	color: var(--chat-icon);
}

.templateMessages__refresh > span:first-child {
	margin-right: 5px;
}

.templateMessages__refresh a {
	font-size: 13px !important;
	font-weight: 600;
	display: inline-block;
	color: var(--chat-icon-dark);
}

.templateMessages .templateMessageWrapper,
.savedResponses .savedResponseWrapper {
	margin-bottom: 10px !important;
}

.templateMessages .templateMessageWrapper:last-child,
.savedResponses .savedResponseWrapper:last-child {
	margin-bottom: 0 !important;
}

.templateMessages .templateMessageWrapper .chat__message,
.savedResponses .savedResponseWrapper .chat__message {
	margin-bottom: 0 !important;
	align-self: center;
}

.templateMessageWrapper,
.savedResponseWrapper {
	display: flex;
}

.templateMessageWrapper > button,
.savedResponseWrapper > button {
	margin-left: 15px;
}

.templateMessageWrapper > button.MuiButton-textBlack,
.savedResponseWrapper > button.MuiButton-textBlack {
	color: var(--chat-icon-dark);
}

.templateMessage__message,
.savedResponse__message {
	word-break: break-all;
}

.templateMessage__status {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 5px;
	text-align: end;
}

.rejected {
	color: #ff0015;
}

.submitted {
	color: #ffaa00;
}

.approved {
	color: #48bc00;
}

.chat__default {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background-color: var(--gray-light);
	border-left: 1px solid rgba(0, 0, 45, 0.05);
	z-index: 100;
}

.chat__default > h2 {
	font-size: 40px;
	color: var(--lighter-text-color);
}

.chat__default > p {
	font-size: 18px;
	color: var(--lighter-text-color);
	margin-bottom: 0;
}

.chat__message__dateContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 10px 30px 10px;
}

.chat__message__dateContainer__indicator {
	font-size: 12px;
	border-radius: 15px;
	padding: 6px 10px;
	box-shadow: 0 4px 5px -6px rgb(185, 152, 136);
	background-color: rgba(255, 255, 255, 0.65);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: var(--chat-icon);
	font-weight: 600;
	/*text-transform: uppercase;*/
}

.typeBox .emoji-mart-emoji {
	background-color: transparent !important;
	display: inline-block;
	vertical-align: top;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

/*.chat__message .emoji-mart-emoji {
    margin-top: -3px;
    margin-bottom: -4px !important;
}*/

.templateType {
	color: rgba(0, 0, 45, 0.6);
}

.pendingMessagesIndicator {
	position: absolute;
	top: 75px;
	left: 20px;
	z-index: 5;
	font-size: 12px;
	border-radius: 10px;
	background-color: white;
	padding: 6px 10px;
	box-shadow: var(--shadow-md);
}

@media only screen and (max-width: 750px) {
	.chat {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		--chat-body-padding: 10px 10px 0 10px;
		--chat-body-border-left: none;
	}

	.chat:not(.chatOpen) {
		display: none;
	}

	.chat__message {
		max-width: 90%;
	}

	.templateMessagesOuter {
		border-left: none;
	}

	.templateMessages {
		max-height: 200px;
	}

	.templateMessages__actions {
		flex-direction: column;
	}

	.templateMessages__refresh {
		flex-direction: column;
		text-align: center;
	}
}

input[type='range'] {
	width: 100%;
	margin: 5px 0;
	background-color: transparent;
	-webkit-appearance: none;
}

input[type='range']:focus {
	outline: none;
}

input[type='range']::-webkit-slider-runnable-track {
	background: rgba(0, 0, 45, 0.1);
	border: 0.2px solid rgba(1, 1, 1, 0);
	border-radius: 1.3px;
	width: 100%;
	height: 3px;
	cursor: pointer;
}

input[type='range']::-webkit-slider-thumb {
	margin-top: -5.2px;
	width: 13px;
	height: 13px;
	background: #30b6f6;
	border: 1.8px solid rgba(0, 0, 30, 0);
	border-radius: 7px;
	cursor: pointer;
	-webkit-appearance: none;
}

input[type='range']:focus::-webkit-slider-runnable-track {
	background: #e6e6e6;
}

input[type='range']::-moz-range-track {
	background: rgba(0, 0, 45, 0.1);
	border: 0.2px solid rgba(1, 1, 1, 0);
	border-radius: 1.3px;
	width: 100%;
	height: 3px;
	cursor: pointer;
}

input[type='range']::-moz-range-thumb {
	width: 13px;
	height: 13px;
	background: #30b6f6;
	border: 1.8px solid rgba(0, 0, 30, 0);
	border-radius: 7px;
	cursor: pointer;
}

input[type='range']::-ms-track {
	background: transparent;
	border-color: transparent;
	border-width: 5.9px 0;
	color: transparent;
	width: 100%;
	height: 3px;
	cursor: pointer;
}

input[type='range']::-ms-fill-lower {
	background: #e6e6e6;
	border: 0.2px solid rgba(1, 1, 1, 0);
	border-radius: 2.6px;
}

input[type='range']::-ms-fill-upper {
	background: rgba(0, 0, 45, 0.1);
	border: 0.2px solid rgba(1, 1, 1, 0);
	border-radius: 2.6px;
}

input[type='range']::-ms-thumb {
	width: 13px;
	height: 13px;
	background: #30b6f6;
	border: 1.8px solid rgba(0, 0, 30, 0);
	border-radius: 7px;
	cursor: pointer;
	margin-top: 0;
	/*Needed to keep the Edge thumb centred*/
}

input[type='range']:focus::-ms-fill-lower {
	background: rgba(0, 0, 45, 0.1);
}

input[type='range']:focus::-ms-fill-upper {
	background: #e6e6e6;
}

@supports (-ms-ime-align: auto) {
	input[type='range'] {
		margin: 0;
	}
}

.chat__message__context {
	display: flex;
	flex-direction: row;
	cursor: pointer;
	border-radius: 4px;
	border-left: 4px solid var(--color-primary);
	background-color: rgba(0, 0, 45, 0.06);
	margin: -1px -6px 4px -6px;
	font-size: 12px;
}

.chat__message__context__info {
	padding: 5px 10px;
	display: flex;
	flex-direction: column;
	flex: 1 1;
}

.chat__message__context__info__sender {
	color: var(--color-primary);
	font-weight: 600;
}

.chat__message__context__info__message {
	color: rgba(0, 0, 45, 0.6);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.chat__message__context__info__message .MuiSvgIcon-root {
	height: 0.8em;
	width: 0.8em;
	margin-right: 3px;
}

.chat__message__context__preview {
	margin-left: 3px;
}

.chat__message__context__preview img {
	display: block;
	min-height: 48px;
	width: 48px;
	height: 100%;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	object-fit: cover;
}

.chat__message__context .chatMessageTypeLabel {
	font-weight: 600;
}

.tf88saiUsY849Ag51tXW {
	display: flex;
	border-radius: 6px;
	margin: -1px -6px 4px -6px;
	padding: 10px 6px;
	background-color: rgba(0, 0, 45, 0.05);
	color: #4a4a4a;
}

.tf88saiUsY849Ag51tXW:hover {
		background-color: rgba(0, 0, 45, 0.08);
	}

.yOUoNHcm3ld8v_UoAB4C {
	margin-left: 5px;
}

.emoji-mart {
	display: block !important;
	width: 100% !important;
	border: none !important;
	border-radius: 0;
	background: none;
}

.emoji-mart-bar {
	border: none !important;
}

.emoji-mart-scroll {
	padding: 0 10px 10px 10px;
}

.emoji-mart-no-results-label {
	font-family: var(--font-family);
}

.emoji-mart-category-label span {
	font-size: 13px;
	padding: 15px 6px 5px 6px;
	color: rgba(0, 0, 45, 0.8);
	font-family: var(--font-family);
}

.emoji-mart-search {
	padding: 5px 10px 0;
}

.emoji-mart-search-icon {
	display: none;
}

.emoji-mart-search input {
	border-radius: 10px;
	border: none;
	background-color: var(--gray-light);
	padding: 10px 20px;
	font-family: var(--font-family);
}

.emoji-mart-anchor {
	cursor: pointer;
	color: rgba(0, 0, 45, 0.35);
}

.emoji-mart-emoji {
	vertical-align: top;
}

button.emoji-mart-emoji {
	outline: none;
	transition: all ease-out 0.2s;
}

button.emoji-mart-emoji:hover {
	transform: scale(1.2);
}

.emoji-mart-category .emoji-mart-emoji span:hover {
	cursor: pointer;
}

.emoji-mart-anchors svg,
.emoji-mart-anchors img {
	width: 20px;
	height: 20px;
}

.emoji-mart-anchor:focus {
	outline: 0;
}

.emoji-mart-anchor:hover,
.emoji-mart-anchor:focus,
.emoji-mart-anchor-selected {
	color: rgba(0, 0, 45, 0.45);
}

.emoji-mart-preview {
	display: none;
}

.emoji-mart-category .emoji-mart-emoji:hover:before {
	background-color: inherit;
}

.emoji-mart-anchor-bar {
	background-color: var(--color-primary) !important;
}

.emoji-mart-anchor.emoji-mart-anchor-selected {
	color: var(--color-primary) !important;
}

@media only screen and (max-width: 750px) {
	.emoji-mart-scroll {
		height: 190px;
	}
}

.previewSendMedia {
	position: absolute;
	top: 56px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #e6e6e6;
	z-index: 150;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.previewSendMedia__header {
	background-color: #00bfa5;
	color: white;
	box-sizing: border-box;
	display: flex;
	flex: none;
	align-items: center;
	height: 49px;
	padding: 0 25px;
	font-size: 18px;
	font-weight: 600;
}

.previewSendMedia__header .MuiSvgIcon-root {
	color: rgba(255, 255, 255, 0.7) !important;
	margin-right: 20px;
	cursor: pointer;
}

.previewSendMedia__preview {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px;
}

.previewSendMedia__preview__wrapper {
	position: absolute;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.previewSendMedia__preview__image {
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
}

.previewSendMedia__preview__video {
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
}

.previewSendMedia__preview__pdf {
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
}

.previewSendMedia__caption {
	padding: 40px 140px;
}

.previewSendMedia__footer {
	background-color: #d9d9d9;
	position: relative;
}

.previewSendMedia__footer__inner {
	padding: 25px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	overflow-x: auto;
}

.previewSendMedia__footer__sendWrapper {
	position: absolute;
	right: 50px;
	top: 0;
	margin-top: -33px;
}

.previewSendMedia__footer__send {
	padding: 20px !important;
	background-color: #09e85e !important;
	box-shadow: 0 4px 10px -6px rgba(0, 0, 45, 0.4);
}

.previewSendMedia__footer__send .MuiSvgIcon-root {
	color: white !important;
}

.previewSendMedia__footer__thumbnailOuter {
	position: relative;
}

.previewSendMedia__footer__thumbnail {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid transparent;
	margin: 0 1px;
	height: 75px;
	width: 75px;
}

.previewSendMedia__footer__thumbnail.chosenFile {
	border-color: white;
	box-shadow: 0 4px 6px -6px rgba(0, 0, 45, 0.4);
}

.previewSendMedia__footer__thumbnail__image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	background-color: white;
}

.previewSendMedia__footer__thumbnail__iconWrapper {
	height: 100%;
	width: 100%;
	background-color: var(--gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.previewSendMedia__footer__thumbnail__iconWrapper .MuiSvgIcon-root {
	height: 1.5em;
	width: 1.5em;
}

.previewSendMedia__footer__addMoreWrapper {
	margin-left: 4px !important;
}

.previewSendMedia__footer__thumbnail__delete {
	display: none !important;
	background-color: rgba(0, 0, 45, 0.2) !important;
	position: absolute !important;
	top: 8px;
	right: 8px;
	padding: 2px !important;
}

.previewSendMedia__footer__thumbnailOuter:hover
	.previewSendMedia__footer__thumbnail__delete {
	display: initial !important;
}

.previewSendMedia__footer__thumbnail__delete:hover {
	background-color: rgba(0, 0, 45, 0.4) !important;
}

.previewSendMedia__footer__thumbnail__delete .MuiSvgIcon-root {
	height: 0.6em;
	width: 0.6em;
	color: white !important;
}

.previewSendMedia__footer__addMore {
	height: 75px;
	width: 75px;
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--color-primary);
	cursor: pointer;
}

.previewSendMedia__footer__addMore .MuiSvgIcon-root {
	color: var(--color-primary) !important;
	height: 1.25em;
	width: 1.25em;
	margin-bottom: 3px;
}

.previewSendMedia__dragOverlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.75);
	z-index: 151;
	padding: 100px;
}

.previewSendMedia__dragOverlay__innerWrapper {
	height: 100%;
	width: 100%;
	/*border: 3px dashed rgba(0, 0, 45, 0.15);*/
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 1500px) {
	.previewSendMedia__caption {
		padding: 40px 30px;
	}
}

@media only screen and (max-width: 750px) {
	.previewSendMedia__caption {
		padding: 40px 20px;
	}

	.previewSendMedia__header {
		padding: 0 20px;
	}

	.previewSendMedia__footer__sendWrapper {
		right: 20px;
	}
}

.sendTemplateMessage__title {
	margin-bottom: 20px;
	word-break: break-all;
}

.sendTemplateMessage h6 {
	color: rgba(0, 0, 45, 0.5);
	margin-bottom: 5px;
}

.sendTemplateMessage__section {
	padding: 15px 20px;
	border-radius: 10px;
	background-color: rgba(0, 0, 45, 0.03);
	margin-bottom: 10px;
}

.sendTemplateMessage__section .MuiAlert-root {
	margin-bottom: 10px;
}

.sendTemplateMessage__section
	.MuiButtonBase-root:not(
		.sendTemplateMessage__section__provideFileChoices .MuiButtonBase-root
	) {
	margin-right: 10px;
}

.sendTemplateMessage__section__fileType {
	margin-bottom: 15px;
	font-size: 16px;
	display: flex;
	justify-content: center;
	color: var(--color-primary);
	font-weight: 600;
}

.sendTemplateMessage__section__provideFileChoices {
	display: flex;
	flex-direction: row;
	margin-top: 10px;
}

.sendTemplateMessage__section__provideFileChoices__choice {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 10px;
	justify-content: flex-start;
}

.sendTemplateMessage__section__provideFileChoices__choice > .MuiSvgIcon-root {
	height: 50px;
	width: 50px;
	margin-bottom: 10px;
}

.sendTemplateMessage__section__provideFileChoices__choice > span {
	font-weight: 600;
	color: var(--lighter-text-color);
	text-align: center;
}

.sendTemplateMessage__section__uploadWrapper {
	display: flex;
	justify-content: center;
}

.sendTemplateMessage__section__provideFileOtherChoice {
	margin-top: 30px;
	display: flex;
	justify-content: center;
}

.templateMessage__param {
	margin-top: 10px !important;
}

.templateMessage__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.templateMessage__buttons--button + .templateMessage__buttons--button {
	border-top: 1px solid #ebebeb;
	padding-top: 10px;
}

.templateMessagesDialogErrors .MuiAlert-root {
	margin-bottom: 5px !important;
}

.sendTemplateMessage__component__header__preview {
	max-height: 100px;
	max-width: 250px;
	object-fit: contain;
	margin-bottom: 5px;
	border-radius: 3px;
}

.sendTemplateMessage__section__headerImage__preview {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	border: 1px solid #ebebeb;
	border-radius: 8px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.sendTemplateMessage__section__headerImage__preview > img,
.sendTemplateMessage__section__headerImage__preview > video {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

.sendTemplateMessage__section__headerImage__preview__document {
	width: 140px;
	height: 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

@media only screen and (max-width: 750px) {
	.sendTemplateMessage__section {
		padding: 15px 15px;
	}
}

.chatAssignmentWrapper {
	position: relative;
}

.chatAssignmentWrapper__main_message {
	margin-bottom: 24px;
}

.chatAssignmentWrapper__message {
	margin-bottom: 5px;
}

.chatAssignmentWrapper__loading {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: white;
}

.chatAssignment .MuiFormControl-root {
	margin-bottom: 15px;
}

:root {
	--color-primary: #65cbac;
	--color-primary-transparent: rgba(0, 150, 136, 0.05);
	--color-primary-transparent-darker: rgba(0, 150, 136, 0.08);
	--color-primary-light: #86e7c9;
	--color-secondary: #e33e7f;
	--color-light-blue: #4fc3f7;
	--gray-light: #eaecf2;
	--gray-lighter: #f2f3f6;
	--default-text-color: #212329;
	--lighter-text-color: rgb(90, 92, 105);
	--shadow-light: rgba(0, 0, 45, 0.08);
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06),
		0 1px 3px rgba(16, 24, 40, 0.08);
	--shadow-md: 0 2px 4px -2px rgba(16, 24, 40, 0.06),
		0 4px 12px -2px rgba(16, 24, 40, 0.12);
	--shadow-lg: 0 2px 6px rgba(0, 0, 45, 0.06),
		0 24px 48px -12px rgba(0, 0, 45, 0.18);
	--header-height: 56px;
	--font-family: 'Inter', 'Roboto', 'Helvetica Neue', -apple-system,
		BlinkMacSystemFont, 'Arial', sans-serif;
	--wrapper-border-radius: 15px;
	--chat-bg: #e8e0dc;
	--chat-bg-image: url('/pattern.svg');
	--chat-icon: #774e3a;
	--chat-icon-dark: #5e3826;
	--red: #fa1313;
	--red-dark: #961414;
}

@media only screen and (max-width: 1500px) {
	:root {
		--wrapper-border-radius: 0;
	}
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html,
body {
	overflow: hidden;
	margin: 0;
	height: 100%;
}

body {
	margin: 0;
	font-weight: 400;
	line-height: 1.5;
	color: var(--default-text-color);
	text-align: left;
	font-size: 16px;
	font-family: var(--font-family) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input[type='text'],
textarea {
	line-height: 1.5rem;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

:focus-visible {
	outline: 2px solid rgba(101, 203, 172, 0.8);
	outline-offset: 2px;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
		monospace !important;
}

* {
	margin: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 45, 0.2) transparent;
}

/* width */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
	background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 45, 0.2);
	border-radius: 999px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 45, 0.35);
}

.app {
	display: grid;
	place-items: center;
	background: radial-gradient(
			110% 80% at 50% 0%,
			rgba(101, 203, 172, 0.12) 0%,
			rgba(101, 203, 172, 0) 60%
		),
		linear-gradient(0deg, rgb(240, 241, 246) 45%, rgb(206, 210, 226) 100%);
	height: 100vh;
}

.app__body {
	/*position: relative;*/
	z-index: 1;
	display: flex;
	background-color: var(--gray-light);
	height: calc(100vh - 40px);
	width: 90vw;
	outline: 1px solid rgba(255, 255, 255, 0.75);
	box-shadow: var(--shadow-lg);
	max-width: 1500px;
	border-radius: var(--wrapper-border-radius);
	overflow: hidden;
}

.app__body.maximized {
	height: 100vh;
	width: 100vw;
	max-width: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 600;
}

a,
div {
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	color: inherit;
}

.hidden {
	display: none !important;
}

.bold {
	font-weight: 600;
}

.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}

.cursorPointer {
	cursor: pointer;
}

.mt-3 {
	margin-top: 15px;
}

.mt-2 {
	margin-top: 10px;
}

.mt-1 {
	margin-top: 5px;
}

.mb-3 {
	margin-bottom: 15px;
}

.mb-2 {
	margin-bottom: 10px;
}

.mb-1 {
	margin-bottom: 5px;
}

.ml-3 {
	margin-left: 15px;
}

.ml-2 {
	margin-left: 10px;
}

.ml-1 {
	margin-left: 5px;
}

.mr-3 {
	margin-right: 15px;
}

.mr-2 {
	margin-right: 10px;
}

.mr-1 {
	margin-right: 5px;
}

.absoluteFullscreen {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	height: 100% !important;
	width: 100% !important;
}

.MuiSvgIcon-root:not(.MuiAlert-root .MuiSvgIcon-root):not(
		.MuiRadio-root .MuiSvgIcon-root
	):not(.MuiCheckbox-root .MuiSvgIcon-root):not(
		.MuiButton-root .MuiSvgIcon-root
	):not(.MuiStepIcon-root) {
	color: #6f7385;
}

.MuiSvgIcon-root.error:not(.MuiAlert-root .MuiSvgIcon-root):not(
		.MuiRadio-root .MuiSvgIcon-root
	):not(.MuiCheckbox-root .MuiSvgIcon-root) {
	color: red;
}

.MuiAlert-root {
	border-radius: 12px !important;
}

.MuiAlert-root .MuiButton-root {
	font-weight: 600;
}

.MuiButton-label:not(.MuiAlert-root .MuiButton-label) {
	text-transform: none;
}

.MuiAlert-action {
	padding: 2px 0 0 16px !important;
}

.MuiAlert-message a {
	font-weight: 600;
	text-decoration: underline;
}

.MuiAlert-filled a {
	color: white;
}

.MuiListItem-root {
	font-size: 14px !important;
}

.MuiButton-contained {
	box-shadow: none !important;
}

.MuiTab-root {
	text-transform: none !important;
}

.MuiTabScrollButton-root.Mui-disabled {
	opacity: 0.3 !important;
}

.MuiDivider-root {
	border-color: rgba(0, 0, 45, 0.05) !important;
}

.MuiPaper-rounded {
	border-radius: 12px !important;
}

.MuiDialogTitle-root {
	padding: 15px 20px 10px 20px !important;
}

.MuiDialogTitle-root .MuiTypography-root {
	font-size: 18px !important;
}

.MuiDialogContent-root:not(.MuiDialogContent-root.noPadding) {
	padding: 5px 20px !important;
}

.MuiDialogActions-root {
	padding: 10px !important;
}

.MuiDialogContentText-root {
	font-size: 15px !important;
}

.MuiDialogActions-root .MuiButton-label {
	font-size: 15px !important;
}

.MuiAlertTitle-root {
	font-weight: 600 !important;
}

.app__mediaPreview {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*justify-content: center;*/
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	z-index: 99;
}

.app__mediaPreview__header {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 4px 15px;
	background-color: white;
	box-shadow: var(--shadow-md);
}

.app_imagePreview__header__senderInfo {
	flex: 1 1;
	padding-left: 15px;
}

.app_imagePreview__header__senderInfo > h3 {
	font-size: 16px;
	margin-bottom: 0;
}

.app_imagePreview__header__senderInfo > span {
	font-size: 12px;
	color: rgba(0, 0, 45, 0.6);
	margin-top: 0 !important;
	display: block;
}

.app__mediaPreview__header .MuiAvatar-root {
	margin-left: 5px;
}

.app__mediaPreview__container {
	flex: 1 1;
	/*noinspection CssInvalidPropertyValue*/
	width: -webkit-fill-available;
	width: -moz-available;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	overflow: hidden;
	padding: 30px;
}

.app__mediaPreview__image {
	cursor: zoom-in;
}

.app__mediaPreview__image,
.app__mediaPreview__video {
	background-color: white;
	max-height: 100%;
	max-width: 100%;
	align-self: center;
	border-radius: 10px;
}

.app__mediaPreview__zoom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	transition: transform 300ms cubic-bezier(0.1, 0.82, 0.25, 1) 0s;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
	padding: 20px;
	transform: scale(2);
}

.app__mediaPreview__zoom > img {
	max-width: 100%;
	max-height: 100%;
}

.wordBreakAll {
	word-break: break-all;
}

.wordBreakWord {
	word-break: break-word;
}

.searchOccurrence {
	font-weight: 600;
	color: var(--color-primary);
}

.replyIcon {
	height: 0.6em !important;
	width: 0.6em !important;
	vertical-align: middle;
	margin-top: -3px;
}

.activeIconButton .MuiSvgIcon-root {
	color: var(--color-primary) !important;
}

h1 .emoji-mart-emoji,
h2 .emoji-mart-emoji,
h3 .emoji-mart-emoji {
	vertical-align: middle;
}

@media only screen and (max-width: 1500px) {
	.app__body {
		height: 100vh;
		width: 100vw;
		max-width: none;
	}
}

.mobileOnly {
	display: none;
}

@media only screen and (max-width: 750px) {
	.app__body {
		display: inherit;
		border-radius: 0;
	}

	.mobileOnly {
		display: inherit;
	}

	.desktopOnly {
		display: none !important;
	}

	.app__mediaPreview__header {
		padding: 4px 10px;
	}

	.MuiIconButton-root:not(.chatFooterGlobal .MuiIconButton-root) {
		padding: 10px !important;
	}

	.MuiDialogTitle-root .MuiTypography-root {
		font-size: 16px !important;
	}

	.MuiDialog-paper {
		margin: 16px !important;
	}

	.MuiDialog-paperScrollPaper {
		max-height: calc(100% - 32px) !important;
	}

	.MuiDialogTitle-root {
		padding: 15px 15px 10px 15px !important;
	}

	.MuiDialogContent-root:not(.MuiDialogContent-root.noPadding) {
		padding: 5px 15px !important;
	}

	.app__mediaPreview__container {
		padding: 10px;
	}
}


/*# sourceMappingURL=main.bbcbb08e.css.map*/