:root {
	--body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	--msger-bg: #fff;
	--border: 2px solid #ddd;
	--left-msg-bg: #d5d5d5;
	--right-msg-bg: #1CBBFF;
}

* {
	box-sizing: border-box;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

body {

	font-family: 'Roboto', sans-serif;
}

.chatbot-toggler {
	position: fixed;
	bottom: 30px;
	right: 35px;
	outline: none;
	border: none;
	height: 50px;
	width: 50px;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #125B87;
	transition: all 0.2s ease;
	z-index: 99;
}

body.show-chatbot .chatbot-toggler {
	transform: rotate(90deg);
}

.chatbot-toggler span {
	color: #fff;
	position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
	opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
	opacity: 1;
}


/* Add styles to the form container */
.form-container {
	max-width: 500px;
	padding: 10px;
	background-color: white;
	border-radius: 16px;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
	background-color: #ddd;
	outline: none;
}

.dot {
	opacity: 0;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}

@keyframes showHideDots {

	0%,
	12.49% {
		opacity: 0;
	}

	12.5%,
	87.49% {
		opacity: 1;
	}

	87.5%,
	100% {
		opacity: 0;
	}
}

@keyframes dot2Animation {

	0%,
	37.49% {
		opacity: 0;
	}

	37.5%,
	87.49% {
		opacity: 1;
	}

	87.5%,
	100% {
		opacity: 0;
	}
}

@keyframes dot3Animation {

	0%,
	62.49% {
		opacity: 0;
	}

	62.5%,
	87.49% {
		opacity: 1;
	}

	87.5%,
	100% {
		opacity: 0;
	}
}

.msg-text .dot:nth-child(1) {
	animation-name: showHideDots;
}

.msg-text .dot:nth-child(2) {
	animation-name: dot2Animation;
}

.msg-text .dot:nth-child(3) {
	animation-name: dot3Animation;
}

/* Set a style for the submit/login button */
.form-container .btn {
	background-color: #04AA6D;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	opacity: 0.8;
}

.tts-token-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.ttsswitch {
	display: flex;
	align-items: center;
	margin-right: auto;
}

/* Additional styling for slider, if needed */
.slidertts {
	margin-left: 5px;
	z-index: 249;
}

/* Add some hover effects to buttons */
.form-container .btn:hover {
	opacity: 1;
}


.msger {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 35px;
	z-index: 100;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 8px;
	height: 85vh;
	width: 35vw;
	min-width: 360px;
	min-height: 630px;
	max-width: 40%;
	max-height: 80%;
	box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.15), 25px 0px 20px -20px rgba(0, 0, 0, 0.15), 0px 25px 20px -20px rgba(0, 0, 0, 0.15), -25px 0px 20px -20px rgba(0, 0, 0, 0.15);
}

.msger-header-title .termsConditionsDropdown {
	cursor: pointer;
	padding: 5px 10px;
	font-size: 0.9em;
	margin-right: 10px;
	white-space: nowrap;
}

.msger-header-title .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.msger-header-title h2 {
	margin: 0;
}

.msger-header-title .termsConditionsDropdown {
	cursor: pointer;
	padding: 5px 10px;
	font-size: 0.9em;
	white-space: nowrap;
	margin: 0;
}

.msger-header-title .material-symbols-rounded {
	cursor: pointer;
	padding: 5px;
	flex-shrink: 0;
}

.msger-header {
	/* display: flex; */
	background: #125B87;
	font-size: medium;
	justify-content: space-between;
	padding: 16px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: left;
	border-radius: 10px;
	box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
	;
	margin-bottom: 5px;
}

.msger-header-title .material-symbols-rounded {
	position: absolute;
	display: flex;
	align-items: center;
	right: 10px;
	top: 5px;
	cursor: pointer;
}


.msger-chat {
	flex: 1;
	overflow-y: auto;
	padding: 8px;
	height: 60%;
	min-width: 98.8%;
	position: absolute;
}

.msger-chat::-webkit-scrollbar {
	width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
	background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
	background: #bdbdbd;
}

.msg {
	display: flex;
	align-items: flex-end;
	margin-bottom: 10px;
	max-width: 1000px;
	padding: 15px;
	border-radius: 15px;
	border-top-left-radius: 0;
	background: var(--left-msg-bg);
	box-shadow: -5px -5px 2px 1px rgba(0, 0, 0, 0.25);
}

.setup {
	display: flex;
	align-items: flex-end;
	margin-bottom: 5px;
}

.msg-img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	background: #ddd;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 50%;
	margin-bottom: 10px;
	margin-top: 10px;
}

.msg-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.msg-info-name {
	margin-right: 10px;
	font-weight: bold;
}

.msg-info-time {
	font-size: 0.85em;
}

.left-msg .msg-bubble {
	border-bottom-left-radius: 0;
}

.right-msg {
	flex-direction: row-reverse;
	max-width: 350px;
	background: var(--right-msg-bg);
	color: #fff;
	border-top-left-radius: 15px;
	border-bottom-right-radius: 0;
	float: right;
	margin-bottom: 10px;
	box-shadow: 5px 5px 2px 1px rgba(0, 0, 0, 0.25);
}

.right-msg .msg-img {
	margin: 0 0 0 10px;
}

.msger-inputarea {
	display: flex;
	position: absolute;
	padding: 15px 10px;
	border-top: var(--border);
	border-bottom: var(--border);
	bottom: 16%;
	height: 70px;
	width: 97%;
	background: #f5f5f5;
	align-items: center;
	justify-content: center;
}

.msger-inputarea * {
	padding: 10px;
	border: none;
	border-radius: 4px;
	font-family: 'Roboto', sans-serif;
	/* line-height: 50%; */
}

.msger-input {
	flex: 1;
	background: #ddd;
	font-family: 'Roboto', sans-serif;
	height: 130%;
	/* line-height: 70%; */
	box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
	;
	margin-top: -8px;
}

.msger-send-btn {
	margin-left: 10px;

	color: #fff;
	font-weight: bold;
	height: 45px;
	cursor: pointer;
	font-size: 0;
	text-align: center;
	border-radius: 50%;

	transition-property: display, transform;
	transition-duration: .3s;
	transition-timing-function: ease;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
	;
	margin-top: -8px;
	background: url(/MemberPortal//Chatbot/static/ico/sendbutton.png) center/150% 150% no-repeat;
	background-color: #125B87;
	width: 45px;

}

.msger-send-btn:not([disabled]):hover {
	background: url(/MemberPortal//Chatbot/static/ico/sendbutton.png) center/150% 150% no-repeat;
	transform: scale(1.2);
	transform: rotate(-90deg);
}

.msger-send-btn:disabled {
	margin-left: 10px;
	background: #565d61b2;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.23s;

	background: url(/MemberPortal//Chatbot/static/ico/sendbuttongrey.png) center/150% 150% no-repeat;
	background-color: #565d61b2;
	/* Semi-transparent black color */
	z-index: 1;
	/* Ensure the overlay is above the background image */
	width: 45px;
	height: 45px;
}

.stop-gen-btn {
	margin-left: 10px;
	text-align: center;
	background: #741515;
	color: #fff;
	/* font-weight: bold; */
	font-size: 0;

	cursor: pointer;
	background: url(/MemberPortal//Chatbot/static/ico/stop.png) center/150% 150% no-repeat;

	transition-property: display, transform;
	transition-duration: .3s;
	transition-timing-function: ease;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
	margin-top: -8px;
	border-radius: 50%;
	width: 45px;
	height: 45px;
}

.stop-gen-btn:disabled {
	z-index: 1;
	background: url(/MemberPortal//Chatbot/static/ico/stopgrey.png)
}

.stop-gen-btn:not([disabled]):hover {
	background: url(/MemberPortal//Chatbot/static/ico/stop.png) center/150% 150% no-repeat;
	transform: scale(1.2);

}

.sum {
	display: flex;
	background: #EB5757;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	transition: background 0.23s;
	justify-content: center;
	align-items: center;
	border: none;
	width: 95%;
	left: 3%;
	margin: 10px;
	height: 40px;
	border-radius: 8px;
	margin: 10px auto;
	bottom: 1%;
	box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
	;
}

.msger-chat {
	background-color: #fcfcfe;
}

/* The switch - the box around the slider */
.ttsswitch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
	z-index: 250;
}

/* Hide default HTML checkbox */
.ttsswitch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slidertts {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 250;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slidertts:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	z-index: 251;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slidertts {
	background-color: #00446B;
}

input:focus+.slidertts {
	box-shadow: 0 0 1px #00446B;
}

input:checked+.slidertts:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}

/* Rounded sliders */
.slidertts.round {
	border-radius: 34px;
}

.slidertts.round:before {
	border-radius: 50%;
}

.tts-token-container {
	position: absolute;
	bottom: 11%;
	width: 97%;
	margin-top: 10px;
}

@media (max-width:767px) {
	.msger {
		display: none;
		position: fixed;
		top: auto;
		bottom: 15px;
		left: auto;
		right: 15px;
		z-index: 100;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-radius: 8px;
		padding: 8px;
		width: 100%;
		min-width: calc(100% - 30px);
		margin: 0;
		height: auto;
	}

	.end {
		width: 358px;
	}

}


/* Chatbot Font Size Selector */
.chatbot-font-size-selector-container {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: inline-block;
	z-index: 1000;
  }
  
  .chatbot-font-size-selector-button {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px 8px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  .chatbot-font-size-selector-button:hover {
	background: #f5f5f5;
  }
  
  .chatbot-font-size-selector-icon {
	display: inline-block;
	vertical-align: middle;
  }
  
  .chatbot-font-size-selector-triangle {
	display: inline-block;
	vertical-align: middle;
  }
  
  .chatbot-font-size-selector-dropdown {
	display: none;
	position: fixed; /* Changed from absolute to fixed */
	margin-top: 4px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	z-index: 1000; /* Increased z-index */
	min-width: 100px;
  }
  
  /* Calculate dropdown position using JavaScript */
  .chatbot-font-size-selector-container.active .chatbot-font-size-selector-dropdown {
	display: block;
  }
  
  .chatbot-font-size-selector-option {
	display: block;
	width: 100%;
	padding: 8px 16px;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
  }
  
  .chatbot-font-size-selector-option[data-size="calc(8px + 0.25vw)"] {
	font-size: calc(8px + 0.25vw) !important;
  }
  
  .chatbot-font-size-selector-option[data-size="calc(10px + 0.25vw)"] {
	font-size: calc(10px + 0.25vw) !important;
  }
  
  .chatbot-font-size-selector-option[data-size="calc(12px + 0.25vw)"] {
	font-size: calc(12px + 0.25vw) !important;
  }
  
  .chatbot-font-size-selector-option:hover {
	background: #f5f5f5;
  }
  
  .msger-chat {
	font-size: calc(20px + 0.25vw);
	transition: font-size 0.2s ease;
  }

  .loader-bar {
	background-color: rgba(128, 128, 128, 0.692);
}

.loader-container {
	width: 100%;
	height: 0px;
	background-color: #bddfffde;
	display: flex;
	justify-content: center;
	align-items: center;
	font-style: italic;
	/* border-bottom: 1px solid #000000; */
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease,
		transform 0.5s ease,
		height 0.5s ease;
}



.loader {
	width: 20px;
	height: 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 10px;
}

.loader-text {
	color: #000000;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loader-container.showLoader {
	opacity: 1;
	height: 40px;
	visibility: visible;
	transform: translateY(0);
}

.loader-container.showLoader+.msger-chat {
	transform: translateY(40px);
}

.termsConditionsDropdown {
	cursor: pointer;
	align-self: right;
	padding: 1px;
	color: rgb(255, 174, 0);
	border: 0.5px solid rgb(255, 255, 255);
	border: 1px solid #dee2e6;
	/* border-radius: 0.5px; */
	/* font-size: 8px; */
}


.termsConditionsOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.terms-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	z-index: 1001;
}

.terms-close-button {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	padding: 5px 10px;
	background-color: #f8f9fa;
	border: none;
	border-radius: 4px;
}

/* .init-loader{
width: 50px;
height: 50px;
border: 3px solid #f3f3f3;
border-top: 3px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-right: 10px;
} */


/* .init-loader-container {
width: 100%;
height: 0px;
background-color: #bddfffde;
display: flex;
justify-content: center;
align-items: center;
font-style: italic; */
/* border-bottom: 1px solid #000000; */
/* border-radius: 5px;
opacity: 0;
visibility: hidden;
} */
/* .init-loader-container.showDataLoader {
opacity: 1;
height: 40px;
visibility: visible;
} */



.init-loader-container {
	position: fixed;
	opacity: 0;
	width: 100%;
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-style: italic;
	border-radius: 5px;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.init-loader-container.showDataLoader {
	opacity: 1;
	visibility: visible;
}

.init-loader {
	width: 96px;
	height: 96px;
	border: 6px solid #f3f3f3a9;
	border-top: 6px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 16px;
}

.init-loader-text {
	font-size: 1.125rem;
	color: #4a5568;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}








/* .loader-text{
font-size: 0.9em;
font-weight: 400;
} */

.chat-container {
	position: relative;
}

.msger-chat {
	transform: translateY(0);
}

/* <div class="chat-container">
<div class="loader-container">
	<div class="loader"></div>
	<span class="loader-text">Processing...</span>
	</div>
</div>
<main class="msger-chat">
	
	
	
</main>
</div> */
/* const loaderContainer = document.querySelector('.loader-container');
const loaderText = document.querySelector('.loader-text');
const msgerChat_box = document.querySelector('.msger-chat'); */
/* socket.addEventListener('message', function (event) {
			try {
				const data = JSON.parse(event.data);
				if (data.hasOwnProperty('busy')) {
					if (data.busy === true) {
						// if (backend_ready){
						//     backend_busy_lock_buttons()
						//     backend_ready = false;
						// }
						
						// Update loading message if provided
						if (data.loadMsg) {
							loaderText.textContent = data.loadMsg;
						} else {
							loaderText.textContent = 'Processing...';
						}
						loaderContainer.classList.add('show');
						// loaderContainer.classList.remove('hide');
						// msgerChat_box.classList.add('lower_chat');
						
					} else {
						// if (!backend_ready){
						//     // backend_ready_unlock_buttons()
						//     backend_ready = true;
						// }
						loaderContainer.classList.remove('show');
						// loaderContainer.classList.add('hide');
						// msgerChat_box.classList.remove('lower_chat');
						// msgerChat_box.classList.add('raise_chat');
					}
				}
			} catch (e) {
				console.error('Error parsing WebSocket message:', e);
			}
		}); */
.init-spinner-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
	/* Fixed height for spinner area */
	width: 100%;
	background-color: white;
	position: sticky;
	top: 0;
	z-index: 10;
	padding-top: 20px;
}

.init-text-container {
	flex-grow: 1;
	width: 100%;
	overflow-y: auto;
	padding: 16px;
	box-sizing: border-box;
	text-align: center;
}

.msger-mic-btn {
	background: #125B87;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	margin-left: 10px;
	margin-top: -8px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.3);
}

.msger-mic-btn:hover {
	transform: scale(1.1);
}

.msger-mic-btn .mic-icon {
	color: white;
	stroke: white;
	stroke-width: 2;
	fill: none;
	z-index: 10;
	position: absolute;
	width: 35px;
	height: 35px;
}

.msger-mic-btn .mic-icon path,
.msger-mic-btn .mic-icon line {
	stroke: white;
	stroke-width: 3;
	fill: none;
}

.msger-mic-btn svg {
	width: 20px;
	height: 20px;
}

.msger-mic-btn.active {
	background: #FF4444;
	color: #ffffff;
}



.msger-mic-btn.active .mic-icon {
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(0.95);
	}
}

.mic-status {
	font-size: 12px;
	color: #666;
	text-align: center;
	position: absolute;
	bottom: 5px;
	width: 100%;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}

.mic-status.visible {
	opacity: 1;
}

.msger-input {
	resize: none;
	font-size: large;
	max-height: 100px;
}

/* Add these styles to your existing CSS */

/* Glowing red outline for textarea when mic is active */
.msger-input.mic-active {
	border: 2px solid #FF4444;
	box-shadow: 0 0 8px #FF4444;
	transition: all 0.3s ease;
}

/* Hide the mic status text completely */
.mic-status {
	display: none;
}


/* CSS for the Microphone Introduction Popup #*/
.mic-intro-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.mic-intro-content {
	background-color: #fff;
	border-radius: 8px;
	width: 90%;
	max-width: 480px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateY(50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.mic-intro-header {
	background-color: #125B87;
	color: white;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mic-intro-header h3 {
	margin: 0;
	font-size: 18px;
}

.mic-intro-close {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.mic-intro-body {
	padding: 20px;
}

.mic-intro-body p {
	margin: 8px 0;
	font-size: 15px;
}

.mic-intro-instructions {
	margin-top: 16px;
}

.mic-intro-instruction {
	display: flex;
	align-items: center;
	margin: 12px 0;
}

.instruction-icon {
	background-color: #125B87;
	color: white;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 12px;
	font-weight: bold;
	flex-shrink: 0;
}

.mic-intro-footer {
	display: flex;
	justify-content: flex-end;
	padding: 16px;
	border-top: 1px solid #eee;
}

.mic-intro-button {
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
}

.mic-intro-cancel {
	background-color: transparent;
	border: 1px solid #ccc;
	color: #333;
	margin-right: 12px;
}

.mic-intro-cancel:hover {
	background-color: #f5f5f5;
}

.mic-intro-continue {
	background-color: #125B87;
	color: white;
	border: none;
}

.mic-intro-continue:hover {
	background-color: #0a4569;
}

@media (max-width: 576px) {
	.mic-intro-content {
		width: 95%;
	}

	.mic-intro-instruction {
		flex-direction: column;
		align-items: flex-start;
	}

	.instruction-icon {
		margin-bottom: 8px;
	}
}