/* =========================================================
   MTM AI EMPLOYEE CHATBOT
========================================================= */

.mtm-chatbot {
	position: fixed;
	right: calc(24px + env(safe-area-inset-right, 0px));
	bottom: calc(24px + env(safe-area-inset-bottom, 0px));
	z-index: 99990;
	max-width: calc(100vw - 32px);
	font-family: "Inter", sans-serif;
}


/* =========================================================
   CHATBOT LAUNCHER
========================================================= */

.mtm-chatbot-launcher {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 6px 16px 6px 6px;
	cursor: pointer;
	color: #ffffff;
	background: #07150f;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.24),
		0 0 0 5px rgba(47, 125, 70, 0.08);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		opacity 0.2s ease;
}

.mtm-chatbot-launcher:hover {
	background: #10271d;
	transform: translateY(-3px);
	box-shadow:
		0 20px 46px rgba(0, 0, 0, 0.28),
		0 0 0 7px rgba(47, 125, 70, 0.1);
}

.mtm-chatbot-launcher:focus-visible {
	outline: 3px solid #d71920;
	outline-offset: 4px;
}

.mtm-chatbot-launcher-image {
	display: block;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.88);
	border-radius: 50%;
	background: #ffffff;
}

.mtm-chatbot-launcher-text {
	white-space: nowrap;
}


/* =========================================================
   CHATBOT PANEL
========================================================= */

.mtm-chatbot-panel {
	box-sizing: border-box;
	position: absolute;
	right: 0;
	bottom: 78px;
	display: flex;
	flex-direction: column;
	width: min(390px, calc(100vw - 32px));
	max-height: min(680px, calc(100dvh - 120px));
	overflow: hidden;
	color: #07150f;
	background: #ffffff;
	border: 1px solid rgba(7, 21, 15, 0.12);
	border-radius: 22px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px) scale(0.97);
	transform-origin: bottom right;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease;
}

.mtm-chatbot[data-chatbot-state="open"] .mtm-chatbot-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.mtm-chatbot[data-chatbot-state="open"] .mtm-chatbot-launcher {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.mtm-chatbot-panel.is-showing-form {
	max-height: min(720px, calc(100dvh - 100px));
	overflow-y: auto;
}


/* Hide the separate floating WhatsApp button while chatbot is open. */

body:has(.mtm-chatbot[data-chatbot-state="open"]) .mtm-whatsapp-button {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px) scale(0.9);
}


/* =========================================================
   CHATBOT HEADER
========================================================= */

.mtm-chatbot-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex: 0 0 auto;
	padding: 16px 18px;
	color: #ffffff;
	background: linear-gradient(135deg, #07150f 0%, #103525 100%);
}

.mtm-chatbot-identity {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.mtm-chatbot-avatar-image {
	display: block;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	background: #ffffff;
}

.mtm-chatbot-identity strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.97rem;
	line-height: 1.2;
}

.mtm-chatbot-status {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.75rem;
	font-weight: 600;
}

.mtm-chatbot-status i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.14);
}

.mtm-chatbot-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.mtm-chatbot-language-switcher {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 3px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
}

.mtm-chatbot-language {
	display: grid;
	place-items: center;
	min-width: 32px;
	height: 30px;
	padding: 0 7px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.78);
	background: transparent;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 800;
}

.mtm-chatbot-language.is-active {
	color: #07150f;
	background: #ffffff;
}

.mtm-chatbot-language:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.mtm-chatbot-close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	padding: 0;
	cursor: pointer;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	font-size: 1.55rem;
	line-height: 1;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.mtm-chatbot-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(6deg);
}

.mtm-chatbot-close:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}


/* =========================================================
   CHAT MESSAGES
========================================================= */

.mtm-chatbot-messages {
	min-height: 180px;
	padding: 20px 18px 14px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(180deg, #f6faf7 0%, #ffffff 100%);
}

.mtm-chat-message {
	max-width: 88%;
	margin-bottom: 12px;
	padding: 13px 15px;
	overflow-wrap: anywhere;
	word-break: normal;
	border-radius: 16px;
	font-size: 0.88rem;
	line-height: 1.55;
}

.mtm-chat-message p {
	margin: 0;
}

.mtm-chat-message p + p {
	margin-top: 9px;
}

.mtm-chat-message-bot {
	margin-right: auto;
	color: #22322a;
	background: #ffffff;
	border: 1px solid rgba(7, 21, 15, 0.09);
	border-bottom-left-radius: 5px;
	box-shadow: 0 8px 22px rgba(7, 21, 15, 0.06);
}

.mtm-chat-message-user {
	margin-left: auto;
	color: #ffffff;
	background: #2f7d46;
	border-bottom-right-radius: 5px;
}

.mtm-chatbot.is-rtl .mtm-chat-message-bot {
	margin-right: 0;
	margin-left: auto;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 5px;
}

.mtm-chatbot.is-rtl .mtm-chat-message-user {
	margin-right: auto;
	margin-left: 0;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 5px;
}


/* =========================================================
   STARTER PROMPTS
========================================================= */

.mtm-chatbot-starter-prompts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 18px 12px;
	background: #ffffff;
}

.mtm-chat-starter-prompt {
	width: auto;
	min-height: 36px;
	padding: 7px 11px;
	cursor: pointer;
	color: #1d5f35;
	background: #f2f8f4;
	border: 1px solid rgba(47, 125, 70, 0.18);
	border-radius: 999px;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.25;
	text-align: left;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.mtm-chat-starter-prompt:hover {
	color: #ffffff;
	background: #2f7d46;
	border-color: #2f7d46;
	transform: translateY(-1px);
}

.mtm-chat-starter-prompt:focus-visible {
	outline: 3px solid rgba(215, 25, 32, 0.25);
	outline-offset: 2px;
}


/* =========================================================
   CHATGPT-STYLE COMPOSER
========================================================= */

.mtm-chatbot-composer {
	box-sizing: border-box;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px;
	align-items: end;
	gap: 8px;
	flex: 0 0 auto;
	padding: 12px 18px 8px;
	background: #ffffff;
	border-top: 1px solid rgba(7, 21, 15, 0.08);
}

.mtm-chatbot-input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 46px;
	max-height: 120px;
	padding: 12px 14px;
	resize: none;
	overflow-y: auto;
	color: #07150f;
	background: #f7faf8;
	border: 1px solid rgba(7, 21, 15, 0.14);
	border-radius: 14px;
	font: inherit;
	font-size: 0.84rem;
	line-height: 1.45;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.mtm-chatbot-input::placeholder {
	color: #7a8780;
}

.mtm-chatbot-input:focus {
	outline: none;
	background: #ffffff;
	border-color: #2f7d46;
	box-shadow: 0 0 0 3px rgba(47, 125, 70, 0.12);
}

.mtm-chatbot-send {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	cursor: pointer;
	color: #ffffff;
	background: #2f7d46;
	border: 0;
	border-radius: 12px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.mtm-chatbot-send:hover {
	background: #276b3c;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(47, 125, 70, 0.22);
}

.mtm-chatbot-send:focus-visible {
	outline: 3px solid rgba(215, 25, 32, 0.25);
	outline-offset: 2px;
}

.mtm-chatbot-send svg {
	width: 20px;
	height: 20px;
}

.mtm-chatbot-composer-note {
	grid-column: 1 / -1;
	margin: 0;
	color: #79857e;
	font-size: 0.66rem;
	line-height: 1.35;
}


/* =========================================================
   TYPING INDICATOR
========================================================= */

.mtm-chat-typing {
	display: flex;
	align-items: center;
	gap: 5px;
	width: max-content;
	min-height: 42px;
}

.mtm-chat-typing span {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2f7d46;
	animation: mtm-chat-typing 1s infinite ease-in-out;
}

.mtm-chat-typing span:nth-child(2) {
	animation-delay: 0.15s;
}

.mtm-chat-typing span:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes mtm-chat-typing {
	0%,
	60%,
	100% {
		transform: translateY(0);
		opacity: 0.45;
	}

	30% {
		transform: translateY(-4px);
		opacity: 1;
	}
}


/* =========================================================
   AUDIT FORM
========================================================= */

.mtm-chatbot-audit-form-wrap {
	display: block;
	padding: 18px;
	overflow-y: auto;
	background: #ffffff;
}

.mtm-chatbot-audit-form-wrap[hidden] {
	display: none !important;
}

.mtm-chatbot-form-heading {
	margin-bottom: 16px;
}

.mtm-chatbot-form-heading strong {
	display: block;
	margin-bottom: 6px;
	color: #07150f;
	font-size: 1rem;
	line-height: 1.3;
}

.mtm-chatbot-form-heading p {
	margin: 0;
	color: #59665f;
	font-size: 0.78rem;
	line-height: 1.5;
}

.mtm-chatbot-audit-form {
	display: grid;
	gap: 9px;
}

.mtm-chatbot-audit-form label {
	color: #183126;
	font-size: 0.76rem;
	font-weight: 800;
}

.mtm-chatbot-audit-form input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	color: #07150f;
	background: #ffffff;
	border: 1px solid rgba(7, 21, 15, 0.16);
	border-radius: 10px;
	font: inherit;
	font-size: 0.86rem;
}

.mtm-chatbot-audit-form input:focus {
	outline: 3px solid rgba(47, 125, 70, 0.18);
	border-color: #2f7d46;
}

.mtm-chatbot-form-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 8px;
}

.mtm-chatbot-submit,
.mtm-chatbot-form-cancel {
	min-height: 44px;
	padding: 10px 12px;
	cursor: pointer;
	border: 0;
	border-radius: 10px;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
}

.mtm-chatbot-submit {
	color: #ffffff;
	background: #2f7d46;
}

.mtm-chatbot-submit:hover {
	background: #276b3c;
}

.mtm-chatbot-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.mtm-chatbot-form-cancel {
	color: #ffffff;
	background: #07150f;
}

.mtm-chatbot-form-cancel:hover {
	background: #153326;
}

.mtm-chatbot-form-status {
	margin: 5px 0 0;
	font-size: 0.76rem;
	line-height: 1.45;
}

.mtm-chatbot-form-status.is-error {
	color: #b42318;
}

.mtm-chatbot-form-status.is-loading {
	color: #2f7d46;
}

.mtm-chatbot-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}


/* =========================================================
   SUCCESS SCREEN
========================================================= */

.mtm-chatbot-success {
	padding: 22px 18px;
	overflow-y: auto;
	background: #ffffff;
	text-align: center;
}

.mtm-chatbot-success[hidden] {
	display: none !important;
}

.mtm-chatbot-success-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	color: #ffffff;
	background: #2f7d46;
	border-radius: 50%;
	font-size: 1.6rem;
	font-weight: 800;
}

.mtm-chatbot-success h3 {
	margin: 0 0 12px;
	color: #07150f;
	font-size: 1.25rem;
}

.mtm-chatbot-success p {
	margin: 0 0 13px;
	color: #526058;
	font-size: 0.82rem;
	line-height: 1.55;
}

.mtm-chatbot-success-actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.mtm-chatbot-success-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.mtm-chatbot-success-zoom {
	color: #ffffff;
	background: #07150f;
}

.mtm-chatbot-success-whatsapp {
	color: #ffffff;
	background: #25d366;
}


/* =========================================================
   CHATBOT FOOTER
========================================================= */

.mtm-chatbot-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	flex: 0 0 auto;
	padding: 12px 18px 18px;
	background: #ffffff;
	border-top: 1px solid rgba(7, 21, 15, 0.08);
}

.mtm-chatbot-footer a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 10px;
	border-radius: 10px;
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
}

.mtm-chatbot-whatsapp {
	color: #ffffff;
	background: #25d366;
}

.mtm-chatbot-whatsapp:hover {
	color: #ffffff;
	background: #1fbd5a;
	transform: translateY(-2px);
}

.mtm-chatbot-zoom {
	color: #ffffff;
	background: #07150f;
}

.mtm-chatbot-zoom:hover {
	color: #ffffff;
	background: #153326;
	transform: translateY(-2px);
}


/* =========================================================
   RTL
========================================================= */

.mtm-chatbot.is-rtl .mtm-chatbot-panel {
	text-align: right;
}

.mtm-chatbot.is-rtl .mtm-chatbot-identity {
	flex-direction: row-reverse;
}

.mtm-chatbot.is-rtl .mtm-chatbot-header-actions {
	flex-direction: row-reverse;
}

.mtm-chatbot.is-rtl .mtm-chatbot-audit-form input,
.mtm-chatbot.is-rtl .mtm-chatbot-input {
	text-align: right;
}

.mtm-chatbot.is-rtl .mtm-chatbot-starter-prompts {
	justify-content: flex-start;
}

.mtm-chatbot.is-rtl .mtm-chat-starter-prompt {
	text-align: right;
}


/* =========================================================
   ATTENTION EFFECT
========================================================= */

.mtm-chatbot-launcher.is-attention {
	animation: mtm-chatbot-attention 0.9s ease-in-out 2;
}

@keyframes mtm-chatbot-attention {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-5px) scale(1.03);
	}
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

	.mtm-chatbot {
		right: calc(18px + env(safe-area-inset-right, 0px));
		bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	}

	.mtm-chatbot-panel {
		width: min(390px, calc(100vw - 36px));
		max-height: min(680px, calc(100dvh - 100px));
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

	.mtm-chatbot {
		right: calc(12px + env(safe-area-inset-right, 0px));
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		max-width: calc(100vw - 24px);
	}

	.mtm-chatbot-launcher {
		width: 68px;
		height: 68px;
		min-height: 68px;
		padding: 4px;
		border-radius: 50%;
		box-shadow:
			0 12px 34px rgba(0, 0, 0, 0.3),
			0 0 0 5px rgba(47, 125, 70, 0.12);
	}

	.mtm-chatbot-launcher-image {
		width: 58px;
		height: 58px;
		flex-basis: 58px;
	}

	.mtm-chatbot-launcher-text {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
	}

	.mtm-chatbot-panel {
		position: fixed;
		right: calc(8px + env(safe-area-inset-right, 0px));
		bottom: calc(8px + env(safe-area-inset-bottom, 0px));
		left: calc(8px + env(safe-area-inset-left, 0px));
		width: auto;
		max-width: none;
		max-height:
			calc(
				100dvh
				- 16px
				- env(safe-area-inset-top, 0px)
				- env(safe-area-inset-bottom, 0px)
			);
		border-radius: 18px;
		transform-origin: bottom center;
	}

	.mtm-chatbot-panel.is-showing-form {
		max-height:
			calc(
				100dvh
				- 16px
				- env(safe-area-inset-top, 0px)
				- env(safe-area-inset-bottom, 0px)
			);
		overflow-y: auto;
	}

	.mtm-chatbot-header {
		gap: 8px;
		padding: 12px 12px;
	}

	.mtm-chatbot-identity {
		gap: 8px;
	}

	.mtm-chatbot-avatar-image {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.mtm-chatbot-identity strong {
		font-size: 0.88rem;
	}

	.mtm-chatbot-status {
		font-size: 0.68rem;
	}

	.mtm-chatbot-header-actions {
		gap: 5px;
	}

	.mtm-chatbot-language-switcher {
		gap: 2px;
		padding: 2px;
	}

	.mtm-chatbot-language {
		min-width: 29px;
		height: 29px;
		padding: 0 6px;
		font-size: 0.68rem;
	}

	.mtm-chatbot-close {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.mtm-chatbot-messages {
		min-height: 0;
		flex: 1 1 auto;
		padding: 14px 12px 10px;
	}

	.mtm-chat-message {
		max-width: 92%;
		padding: 11px 12px;
		font-size: 0.82rem;
		line-height: 1.5;
	}

	.mtm-chatbot-starter-prompts {
		flex: 0 0 auto;
		gap: 6px;
		padding-right: 12px;
		padding-bottom: 9px;
		padding-left: 12px;
		overflow-x: auto;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}

	.mtm-chatbot-starter-prompts::-webkit-scrollbar {
		display: none;
	}

	.mtm-chat-starter-prompt {
		flex: 0 0 auto;
		min-height: 34px;
		padding: 7px 10px;
		font-size: 0.69rem;
	}

	.mtm-chatbot-composer {
		grid-template-columns: minmax(0, 1fr) 42px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.mtm-chatbot-input {
		min-width: 0;
		font-size: 16px;
	}

	.mtm-chatbot-form-actions,
	.mtm-chatbot-footer {
		grid-template-columns: 1fr;
	}

	.mtm-chatbot-footer {
		gap: 7px;
		padding: 9px 12px 12px;
	}

	.mtm-chatbot-footer a {
		min-height: 40px;
	}

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

	.mtm-chatbot {
		right: calc(10px + env(safe-area-inset-right, 0px));
		bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	}

	.mtm-chatbot-launcher {
		width: 64px;
		height: 64px;
		min-height: 64px;
	}

	.mtm-chatbot-launcher-image {
		width: 54px;
		height: 54px;
		flex-basis: 54px;
	}

	.mtm-chatbot-panel {
		right: calc(5px + env(safe-area-inset-right, 0px));
		bottom: calc(5px + env(safe-area-inset-bottom, 0px));
		left: calc(5px + env(safe-area-inset-left, 0px));
		max-height:
			calc(
				100dvh
				- 10px
				- env(safe-area-inset-top, 0px)
				- env(safe-area-inset-bottom, 0px)
			);
		border-radius: 16px;
	}

	.mtm-chatbot-header {
		padding: 10px;
	}

	.mtm-chatbot-avatar-image {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.mtm-chatbot-identity strong {
		font-size: 0.82rem;
	}

	.mtm-chatbot-status {
		font-size: 0.64rem;
	}

	.mtm-chatbot-language {
		min-width: 27px;
		height: 27px;
		font-size: 0.64rem;
	}

	.mtm-chatbot-close {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.mtm-chatbot-messages {
		padding: 11px 10px 8px;
	}

	.mtm-chatbot-composer {
		padding: 9px 10px 7px;
	}

	.mtm-chatbot-footer {
		padding: 8px 10px 10px;
	}

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.mtm-chatbot-panel,
	.mtm-chatbot-launcher,
	.mtm-chatbot-close,
	.mtm-chat-starter-prompt,
	.mtm-chatbot-send,
	.mtm-chatbot-footer a {
		transition: none;
	}

	.mtm-chatbot-launcher.is-attention,
	.mtm-chat-typing span {
		animation: none;
	}

}