@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

#chat-wrapper::after,
#chat-wrapper::before,
#chat-wrapper *, 
#chat-wrapper *::before, 
#chat-wrapper *::after {
    box-sizing: border-box;
}

#chat-wrapper {
	height: 85vh;
	/* min-height: 616px; */
	width: 100%;
	position: relative;
	margin-left: calc(-1 * (100vw - 100%) / 2);
	margin-right: calc(-1 * (100vw - 100%) / 2);
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	position: relative;
	display: flex;
    padding: 0 10px;
}

#chat-wrapper::before,
#chat-wrapper::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background-color: transparent;
}

#chat-wrapper::before {
	top: 0;
	box-shadow: 0px 2px 10px #9f9f9f;
}

#chat-wrapper::after {
	bottom: 0;
}

.chatHead {
	display: flex;
	width: 80%;
	gap: 2rem;
	margin-top: 2rem;
}


@media (max-width: 768px) {
	#chat-wrapper {
		height: inherit;
		min-height: inherit;
		flex-direction: column;

	}

	.chatHead {
		width: 90%;
	}

	.ssai_dropzone h2 {
		font-size: 20px;
		line-height: 26px;
	}

	.ssai_dropzone h6 {
		font-size: 16px;
		line-height: 6px;
	}

	.ssai_dropzone .ssai_sub_para {
		font-size: 13px;
		line-height: 19px;
	}

}

.chatHead h3 {
	width: 80%;
	z-index: 9999;
}

#chat-form {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: .8rem;
}

@media (max-width: 768px) {
	#chat-form {
		position: relative;
		width: 100%;
		padding: 0 !important;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		padding-left: 0;
		padding-right: 0;
		gap: .5rem;
		justify-content: flex-start;
	}
}

#search-bar {
	width: 80%;
	height: 20px;
	display: flex;
	gap: 1rem;
	align-items: end;
	align-self: center;
	vertical-align: baseline;
}

#sendButtons {
	display: flex;
}

@media (max-width: 768px) {
	#search-bar {
		gap: .5rem;
		width: 90%;
	}
}

#recordButtons {
	display: flex;
	gap: 5rem;
	width: 100%;
	position: relative;

}

#recordbtn {
	display: flex;
	gap: 1rem;
}

#voice-button {
	background: red;
	padding: 5px;
	cursor: pointer;
	border-radius: 5px;
	color: #fff;
}

#voice-clear {
	background: red;
	padding: 5px;
	cursor: pointer;
	border-radius: 5px;
	color: #fff;
}

.smartsite-loader:before {
	content: "\e916";
}

#user-input {
	width: 90%;
	padding: .6rem;
	border: none;
	border-radius: 5px;
	margin-right: 10px;
	outline: #000;
	border: 2px solid #000;
}

.chatbot-response {
	display: flex;
	width: 100vw;
	justify-content: center;
	text-align: center;
	align-items: center;
}

#chat-form {
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: center 30%;
 }

.chatbot-response p {
	background-color: #f5f5f5;
	border-radius: 5px;
	margin: 10px 0;
	padding: 10px;
	font-size: 16px;
	line-height: 1.5;
	width: 700px;
	display: flex;

}

.chatbot-response p:first-of-type {
	margin-top: 0;
}

.chatbot-response p:last-of-type {
	margin-bottom: 0;

}

#chat-history {
	margin: 0;
	width: 100%;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
}

@media (max-width: 600px) {
	#chat-history {

		height: 70vh;

	}
}

.dark {
	color: #fff;
}

.light {
	background-color: #fff;
	color: #000;
}

.gray {
	background-color: #353740 !important;
	color: rgb(255, 255, 255);
}

.toggle-btn {

	padding: 5px;
	top: 10px;
	background: white;
	outline: none;
	cursor: pointer;

}

.theme-button:hover {
	background: rgb(176, 176, 176);

}

.question {
	background-color: #575757;
	padding: 5px;
	padding-left: 4rem;
	padding-right: 4rem;
	color: white;
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

#chat-history li:has(:empty)::marker {
	content: '' !important; 
}

#chat-history li:has(strong:empty) {
	display: none;
}

#chat-history p:empty,
#chat-history li:empty {
	display: none;
}

.answer {
	padding: 5px;
	padding-bottom: 1rem;
	padding-left: 4rem;
	padding-right: 4rem;
}

@media only screen and (max-width: 768px) {
	.question {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.answer {
		padding-left: 10px;
		padding-right: 10px;
	}
}

#gpt-header {
	margin: 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1.2;
}

.blink {
	animation: blink 1.5s infinite;
	border-radius: 50%;
}

.blink svg path:first-child {
	stroke: #cc0000;
}

.blink svg path:last-child {
	fill: #cc0000;
}

@keyframes blink {
	0% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.3;
	}
}


#chat-section {
	position: relative;
	display: flex;
	padding-left: 2rem;
	padding-top: 1rem;
	padding-right: 1rem;
	border: none;
	border-right: none;
}

#chat-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background-color: transparent;
}

#chat-section::before {
	top: 0;
	box-shadow: 0px 2px 10px #9f9f9f;
}

#chat-section::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 2px;
	margin: auto;
	background-color: rgb(92, 88, 88);
	transform: scaleY(0.9);
	transform-origin: top;
}


#chat-section button {
	padding: 10px;
	background: transparent;
	border-radius: 5px;
	cursor: pointer;
	border: solid rgb(116, 116, 141);
}

#chat-section #select-section {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.setDisplay {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	#chat-section {
		border-right: none;
		padding-left: .5rem;
		border-right: 0;
	}

	#chat-section button {
		margin-top: 2rem;
	}
}

#right-section {
	width: 100%;
	position: relative;
	margin-left: 20px;
	display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
	#chat-section {
		display: none;
	}

	#chat-section {
		border-right: 0;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 9998;
		transition: left 0.5s ease-out;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

}


#chat-section.animate-out {
	left: -100%;
}

#chat-section.animate-in {
	left: -100%;
}

#chat-section.open {
	animation: fade-in 0.5s forwards;
}

#chat-section::-webkit-scrollbar {
	display: none;
}

#chat-wrapper::-webkit-scrollbar {
	display: none;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

#getChat:hover {
	color: #5bfffa;
	animation-duration: 300ms;
}


#chat-wrapper::before {
	box-shadow: unset !important;
}

.chat-container {
	max-width: 100% !important;
}

.header-banner-wrapper {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 80px 0 120px;
}

.header-banner-wrapper h1.header-title {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	margin: 0;
	text-transform: capitalize;
}

#chat-wrapper h3,
#chat-wrapper {
	font-family: 'Inter', sans-serif !important;
	background-color: transparent;
}

.header-banner-wrapper+#chat-wrapper {
	margin-top: -70px;
}

div#right-section .logo-sec {
    display: none;
}

#chat-wrapper .ast-container {
	background-color: #1a1b1e;
	padding: 20px 15px;
	border-radius: 10px;
	width: 100%;
	max-width: 1066px;
	margin: 0 auto 20px auto;
	overflow: auto;
	box-sizing: border-box;
}

.chat-container.light #chat-wrapper .ast-container {
	background-color: #fff;
	border: 2px solid #dddddd;
}

.chat-container.light .topicActive {
    background-color: #ffffff !important;
    color: #000;
    box-shadow: inset 0px 0px 9px 0px #0000003d;
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div .question:before {
    background-color: white;
    outline: 0;
    box-shadow: inset 0px 0px 9px 0px #0000003d;
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div .question:after {
    filter: brightness(0) saturate(100%) invert(17%) sepia(4%) saturate(744%) hue-rotate(177deg) brightness(96%) contrast(93%);
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div .answer:before {
    background-color: white;
    outline: 0;
    box-shadow: inset 0px 0px 9px 0px #0000003d;
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div .answer:after {
    filter: brightness(0) saturate(100%) invert(17%) sepia(4%) saturate(744%) hue-rotate(177deg) brightness(96%) contrast(93%);
}


#chat-wrapper #chat-section {
	margin-top: 2px;
	background-color: transparent;
	padding: 0;
	width: 100%;
    max-width: 350px;
}

#chat-wrapper #chat-section::before {
	content: unset;
}

#chat-wrapper #chat-section #select-section {
	width: 100%;
	max-width: 106px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: #2E3033;
	border-radius: 8px;
	padding: 15px 10px;
	margin-bottom: 0;
}

.chat-container.light #chat-wrapper #chat-section #select-section {
	background-color: #f5f5f5;
}

#chat-wrapper #chat-section #chat-sidebar {
	background-color: #2E3033;
	border-radius: 8px;
	margin-left: 20px;
	padding: 15px 10px !important;
	width: 100%;
    max-width: 230px;
}

#chat-wrapper #chat-section #chat-sidebar::-webkit-scrollbar {
	display: none;
}

.chat-container.light #chat-wrapper #chat-section #chat-sidebar {
	background-color: #f5f5f5;
}

#chat-wrapper #chat-section #select-section button {
	border: 0;
	padding: 13px 7px !important;
	color: #b8b8b8 !important;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease-in-out;
	font-size: 12px;
	outline: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-weight: 400;
    font-family: 'Inter';
}

.category-btn p {
	line-height: 15px;
	margin: 0;
}

.chat-container.light #chat-wrapper #chat-section #select-section button {
	color: #757575 !important;
	outline: 0;
}

#chat-wrapper #chat-section #select-section button i {
	margin-bottom: 10px;
	margin-right: 0;
	width: 100%;
	font-size: 2rem;
}

.chat-container.dark #chat-wrapper #right-section form#chat-form #chat-history > div:nth-child(2n) {
    background-color: #2E3033;
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div:nth-child(2n) {
    background-color: whitesmoke;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div:nth-child(2n) {
    background-color: #fff;
}

#chat-wrapper #right-section form#chat-form #chat-history > div {
	display: flex;
	/* flex-flow: wrap; */
	position: relative;
	justify-content: space-between;
}
#chat-wrapper #right-section form#chat-form #chat-history > div:last-child{
	margin-bottom:0;
}

#chat-wrapper #right-section form#chat-form #chat-history > div:last-child::after {
	content: unset;
}

#chat-wrapper #right-section form#chat-form #chat-history > div .question:after {
	width: 22px;
	height: 22px;
	content: "";
	background-image: url('../images/icons-users.svg');
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 7px;
	top: -1px;
}

#chat-wrapper #right-section form#chat-form #chat-history > div .question:before {
	content: "";
	background-color: #09090b;
	outline: 1.5px solid #27272a;
	position: absolute;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	top: -8px;
}

#chat-wrapper #right-section form#chat-form #chat-history>div .question,
#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
	max-width: 95% !important;
	background-color: transparent !important;
	border: 0 !important;
	padding: 0 0 0 46px;
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 0px;
	border-bottom: 1px solid #27272a;
}

#chat-wrapper #right-section form#chat-form #chat-history > div .answer:before {
	content: "";
	background-color: #09090b;
	outline: 1.5px solid #27272a;
	position: absolute;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	top: -8px;
}

#chat-wrapper #right-section form#chat-form #chat-history > div .answer:after {
	width: 30px;
	height: 30px;
	content: "";
	background-image: url('../images/designe-icon.svg');
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 4px;
	top: -7px;
}

.chat-container.light #chat-wrapper #chat-section #select-section button:hover,
.chat-container.light #chat-wrapper #chat-section #select-section button.activeCategory,
#chat-wrapper #chat-section #select-section button:hover,
#chat-wrapper #chat-section #select-section button.activeCategory {
	background-color: #fff !important;
	color: #2e3033 !important;
	border-radius: 16px;
}

.clear-container {
	text-align: right;
}


#chat-wrapper #chat-section button#startNewSession {
	border: 0;
	font-size: 12px;
	line-height: 21px;
	color: #fff;
	background: #6d6e6f;
	padding: 2px 10px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	outline: 0;
}

.chat-container.light #chat-wrapper #chat-section button#startNewSession {
	background: #fff;
	color: #000;
}

#chat-wrapper #chatsDiv button#startNewSession i {
	padding-right: 5px !important;
	color: #fff;
	background-color: transparent;
}

.chat-container.light #chat-wrapper #chatsDiv button#startNewSession i {
	color: #000;
	transition: all 0.3s ease;
}

#chat-wrapper #chatsDiv div#all-topics p#getChat {
	color: #fff;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 13px;
	line-height: 8px !important;
	margin-bottom: 10px;
	position: relative;
	text-wrap: wrap !important;
	line-height: 12px;
	overflow: scroll;
}

#chat-wrapper #chatsDiv div#all-topicsOne p#getChat {
	color: #fff;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 13px;
	line-height: 8px !important;
	margin-bottom: 10px;
	position: relative;
	text-wrap: wrap !important;
	line-height: 12px;
	overflow: scroll;
}

#chat-wrapper #chatsDiv div#all-topics p#getChat:last-child {
	margin-bottom: 0;
}

#chat-wrapper #chatsDiv div#all-topicsOne p#getChat:last-child {
	margin-bottom: 0;
}

#chat-wrapper #right-section form#chat-form .chatHead {
	margin: 0;
	padding: 0;
	width: 100%;
	justify-content: flex-start;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

#chat-wrapper #right-section form#chat-form .chatHead h3#gpt-header {
	width: 100%;
	text-align: center !important;
	font-size: 32px;
	color: #b1b1b1;
	text-transform: capitalize;
	opacity: 0.4;
}

#chat-wrapper #right-section form#chat-form #chat-history {
	/* padding: 15px; */
	padding: 5px 0px 10px 0px;
	z-index: 1;
	overflow: auto;
}

#chat-wrapper #chat-section ::-webkit-scrollbar,
#chat-wrapper #right-section ::-webkit-scrollbar {
	width: 8px;
}

#chat-wrapper #chat-section ::-webkit-scrollbar-track,
#chat-wrapper #right-section ::-webkit-scrollbar-track {
	background: #e2e2e2;
	border-radius: 10px;

}

#chat-wrapper #chat-section ::-webkit-scrollbar-thumb,
#chat-wrapper #right-section ::-webkit-scrollbar-thumb {
	background: darkgrey;
	border-radius: 10px;
}

.chat-container.dark #chat-wrapper ::-webkit-scrollbar-track,
.chat-container.dark #chat-wrapper #right-section ::-webkit-scrollbar-track {
	background: #3f3f46;
}

.chat-container.dark #chat-wrapper ::-webkit-scrollbar-thumb,
.chat-container.dark #chat-wrapper #right-section ::-webkit-scrollbar-thumb {
	background: #27272a;
}

#chat-wrapper #right-section form#chat-form #chat-history>div .question,
#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
	width: 100%;
	color: #f3f3f3 !important;;
	border-radius: 6px;
	padding: 0 0 0 45px;
	font-size: 13.5px;
	line-height: 22px;
	font-weight: 400;
	margin-bottom: 0px;
	border-top-right-radius: 0px;
	letter-spacing: 0.4px;
	border: 1px solid #444445;
}

#chat-wrapper #search-bar {
	width: 100%;
	height: auto;
	padding-top: 15px;
	align-items: center;
}

#chat-wrapper #search-bar .loading-spinner {
	border-top: 4px solid #552dfb;
}

#chat-wrapper #search-bar div#recordbtn {
	display: flex;
	align-items: center;
}

#chat-wrapper #search-bar div#recordbtn i {
	font-size: 30px !important;
	line-height: 40px !important;
}

#chat-wrapper #search-bar input#user-input {
	background-color: #f9f9f9;
	border: 1px solid #f9f9f9;
	width: 100%;
	max-width: 100%;
	color: #2c3338;
	font-size: 12px;
	font-family: 'Inter';
	line-height: 2;
	min-height: 30px;
	margin: 0;
	padding: 6px 16px;
	border-radius: 8px;
	font-size: 15px;
	padding-right: 132px;
}

#chat-wrapper #search-bar input#user-input::placeholder {
	color: #2c3338;
}

#chat-wrapper #search-bar input#user-input:focus {
	background-color: #f1f1f2;
	border-color: #f1f1f2;
	color: #4b5675;
	transition: color 0.2s ease;
}

#chat-wrapper #search-bar div#recordbtn {
	order: 2;
}

#chat-wrapper #right-section #chat-form #chat-history>div {
	color: #fff;
	font-size: 13px;
	padding: 20px 15px 20px 15px;
	margin: 0 20px 0 5px;
}

#chat-wrapper #right-section form#chat-form #chat-history > div:first-child {
    padding-top: 10px;
}

#chat-wrapper #chatsDiv {
	margin-bottom: 20px;
	overflow-y: auto;
	height: 100%;
	padding-right: 5px;
}

#chat-wrapper #chatsDiv::-webkit-scrollbar {
	width: 5px;
}

#chat-wrapper #chatsDiv::-webkit-scrollbar-track {
	background: #e2e2e2;
	border-radius: 10px;

}

#chat-wrapper #chatsDiv::-webkit-scrollbar-thumb {
	background: darkgrey;
	border-radius: 10px;
}

.chat-container.dark #chat-wrapper #chatsDiv::-webkit-scrollbar-track {
	background: #3f3f46;
}

.chat-container.dark #chat-wrapper #chatsDiv::-webkit-scrollbar-thumb {
	background: #27272a;
}

#chat-wrapper #chat-section #select-section {
	overflow-y: auto;
}

#chat-wrapper #chat-section #chat-sidebar #chatsDiv>div:last-child .answer {
	margin-bottom: 0;
}

#chat-wrapper #chatsDiv div#all-topics .chatdata {
	display: flex;
	align-items: center !important;
	padding: 12px 14px;
	border-radius: 16px;
	margin-bottom: 10px;
}

#chat-wrapper #chatsDiv div#all-topicsOne .chatdata {
	display: flex;
	align-items: center !important;
	padding: 12px 14px;
	border-radius: 16px;
	margin-bottom: 10px;
}

#chat-wrapper #chatsDiv div#all-topics .chatdata:last-child {
	margin-bottom: 0;
}

#chat-wrapper #chatsDiv div#all-topics .chatdata i {
	color: #d1d5db;
	margin-right: 8px;
	font-size: 14px;
}

#chat-wrapper #chatsDiv div#all-topics .chatdata:hover {
	background-color: #3c3d40;
}

#chat-wrapper #chatsDiv div#all-topics .chatdata p#getChat {
	margin-top: 0;
	width: 100%;
}

/*Theme White*/
.chat-container.light #chat-wrapper #chatsDiv div#all-topics .chatdata {
	background-color: #fff;
}

.chat-container.light #chat-wrapper #chatsDiv div#all-topics .chatdata p#getChat {
	color: #6d6e6f;
}

.chat-container.light #chat-wrapper #chatsDiv div#all-topics .chatdata:hover {
	background-color: whitesmoke;
	cursor: pointer;
	box-shadow: inset 0px 0px 12px 4px #d6d6d6;
}

/*`*/
#chat-wrapper #chatsDiv div#all-topicsOne .chatdata:last-child {
	margin-bottom: 0;
}

#chat-wrapper #chatsDiv div#all-topicsOne .chatdata i {
	color: #d1d5db;
	margin-right: 8px;
	font-size: 14px;
}

#chat-wrapper #chatsDiv div#all-topicsOne .chatdata:hover {
	background-color: #3c3d40;
}

#chat-wrapper #chatsDiv div#all-topicsOne .chatdata p#getChat {
	margin-top: 0;
	width: 100%;
}

.chat-select-box {
    display: none;
}

.chat-container.light #chat-wrapper #chatsDiv div#all-topicsOne .chatdata {
	background-color: #fff;
}

.chat-container.light #chat-wrapper #chatsDiv div#all-topicsOne .chatdata p#getChat {
	color: #6d6e6f;
}

.chat-container.light #chat-wrapper #chatsDiv div#all-topicsOne .chatdata:hover {
	background-color: whitesmoke;
	cursor: pointer;
	box-shadow: inset 0px 0px 12px 4px #d6d6d6;
}

.chat-container.light #chat-wrapper #chat-section button#startNewSession:hover {
	background-color: #e4e4e4;
}

.chat-container.light #chat-wrapper #chat-section button#startNewSession:hover i {
	color: #fff;
}

.chat-container.grey .topicActive {
    background-color: #f5f5f5 !important;
    color: #000;
    box-shadow: inset 0px 0px 4px 0px #00000026;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history>div .question,
.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history>div .question {
	background-color: #f8f5ff;
	border-color: #f8f5ff;
	color: #071437 !important;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div .question:before {
    background-color: #f5f5f5;
    outline: 0;
        box-shadow: inset 0px 0px 4px 0px #00000026;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div .question:after {
    filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(78%) hue-rotate(168deg) brightness(103%) contrast(90%);
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div .answer:before {
    background-color: #f5f5f5;
    outline: 0;
        box-shadow: inset 0px 0px 4px 0px #00000026;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div .answer:after {
    filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(78%) hue-rotate(168deg) brightness(103%) contrast(90%);
}

.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history>div .answer {
	background-color: #f1faff;
	border-color: #f1faff;
	color: #071437 !important;
}


.chat-container.grey #chat-wrapper #chat-section #chat-sidebar {
	background: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topics .chatdata {
	background-color: #f5f5f5;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topics .chatdata p {
	color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topicsOne .chatdata {
	background-color: #f5f5f5;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topicsOne .chatdata p {
	color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section #select-section {
	background-color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #select-section button:hover,
.chat-container.grey #chat-wrapper #chat-section #select-section button.activeCategory {
	background-color: whitesmoke !important;
}

.chat-container.grey #chat-wrapper .ast-container {
	background-color: whitesmoke;
}

.chat-container.grey #chat-wrapper #chat-section button#startNewSession {
	background-color: whitesmoke;
	color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section button#startNewSession i {
	color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section button#startNewSession:hover {
	background-color: #e4e4e4;
}

.chat-container.grey #chat-wrapper #chat-section button#startNewSession:hover i {
	color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topics .chatdata:hover {
	background-color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topics .chatdata:hover p#getChat {
	color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topics .chatdata:hover i {
	color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topicsOne .chatdata:hover {
	background-color: #6d6e6f;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topicsOne .chatdata:hover p#getChat {
	color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section #chat-sidebar div#all-topicsOne .chatdata:hover i {
	color: #fff;
}

.chat-container.grey #chat-wrapper #chat-section  #select-section button {
    color: #6d6e6f !important;
}

.chat-container.grey #chat-wrapper #chat-section #select-section button.activeCategory,
.chat-container.grey #chat-wrapper #chat-section #select-section button:hover {
	background-color: #f5f5f5 !important;
    color: #6d6e6f !important
}

.chat-container.grey #chat-wrapper #search-bar input#user-input {
	background-color: #fff;
}

.chat-container.grey #chat-wrapper #search-bar input#user-input:focus {
	background-color: #fff;
}

.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history>div .question,
.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history>div .answer {
	background-color: #fff;
	border: #fff;
	color: #000 !important;
}

.chat-branding-logo {
	width: 60px;
}

.chat-select-box select {
	border: 0;
	outline: none;
    font-size: 0.85rem;
    background: url('../images/select-arrow.svg') 96% 49%/26px 60px no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
	padding: 8px 12px;
    line-height: 1.42857;
}

@media (max-width: 1140px) {

	#chat-wrapper .ast-container {
		max-width: 100%;
	}

	#chat-wrapper #chatsDiv div#all-topics p#getChat {
		font-size: 12px;
	}

	#chat-wrapper #chatsDiv div#all-topics .chatdata {
		padding: 8px;
	}

	#chat-wrapper #chatsDiv div#all-topicsOne p#getChat {
		font-size: 12px;
	}

	#chat-wrapper #chatsDiv div#all-topicsOne .chatdata {
		padding: 8px;
	}

	#chat-wrapper #right-section form#chat-form #chat-history>div .question,
	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		margin-bottom: 20px;
	}

	#chat-wrapper #chat-section #select-section button i {
		margin-bottom: 5px;
	}
}

@media (max-width: 992px) {

	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		max-width: 450px !important;
	}
	
	#chat-wrapper #chat-section #chat-sidebar {
		max-width: 205px;
	}

	#chat-wrapper #chat-section #select-section {
	    max-width: 95px;
	}
	#chat-wrapper #chat-section #select-section button {
		padding: 10px 7px !important;
	}
}

@media (max-width: 922px) {
	#chat-wrapper .ast-container {
		display: flex;
		flex-direction: row;
	}

	#chat-wrapper #right-section {
		width: 80%;
	}

	#chat-wrapper #chat-section {
		width: 40%;
	}

	#chat-wrapper #chat-section #chat-sidebar,
	#chat-wrapper #right-section {
		margin-left: 15px;
	}

	#chat-wrapper #right-section form#chat-form .chatHead h3#gpt-header {
		font-size: 24px;
	}

	#chat-wrapper #chat-section #select-section button {
		padding: 8px 5px!important;
	}

	#chat-wrapper #right-section form#chat-form #chat-history>div .question,
	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		max-width: 100% !important;
	}
}



@media (max-width: 769px) {
	#chat-wrapper #chat-section {
		position: unset !important;
		display: flex !important;
		z-index: 0 !important;
	}

	.chat-select-box {
	    display: grid;
	    grid-template-columns: 1fr;
	    width: 100%;
	    margin-bottom: 20px;
	}

	.chat-container.grey .chat-select-box select,
	.chat-container.light .chat-select-box select {
	    color: #000;
	}

	.chat-container.grey .chat-select-box select option,
	.chat-container.grey .chat-select-box select {
		background-color: #fff;
		color: #000;
	}

	.chat-container.light .chat-select-box select option,
	.chat-container.light .chat-select-box select {
		background-color: #f5f5f5;
		color: #000;
	}

	.chat-container.dark .chat-select-box select option {
	    background-color: #2E3033;
	    color: #fff;
	}

	.chat-container.dark .chat-select-box select {
		color: #fff;
	    background: url('../images/select-arrow-dark.svg') 96% 49%/26px 60px no-repeat;
		background-color: #2E3033;
	}

	div#right-section .logo-sec {
	    display: block;
	    margin-bottom: 10px;
	}
	div#right-section .logo-sec {
	    width: 100%;
	    max-width: 80px;
	}
	.chat-select-box select option {
	    background-color: #2e3033;
	}
	
	.chat-container.light #chat-wrapper #right-section form#chat-form #chat-history > div:after {
		background-color: #dddddd;
	}
	
	.chat-container.grey #chat-wrapper #right-section form#chat-form #chat-history > div:after {
		background-color: #e6e6e6;
	}

	#chat-wrapper #right-section form#chat-form .chatHead div#showChatBar {
		display: none !important;
	}

	#chat-section button {
		margin-top: 0 !important;
	}

	#chat-wrapper #search-bar {
		padding-right: 0px;
	}
	#chat-wrapper .ast-container {
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between !important;
		height: calc(100vh - 100px);
		border-radius: 0;
	}

	#chat-wrapper #chat-section {
	    flex-direction: column;
	    width: 100%;
	    max-width: 100%;
	}

	#chat-wrapper #chat-section #select-section {
	    width: 100%;
	    max-width: 100%;
	    display: flex;
	    flex-direction: row;
	    justify-content: center;
	}

	#chat-wrapper #chat-section #select-section img.chat-logo {
	    width: 100%;
	    max-width: 90px;
	}

	#chat-wrapper #chat-section #chat-sidebar {
	    width: 100%;
	    max-width: 100%;
	    margin: 15px 0 0;
	}

	#chat-wrapper #right-section form#chat-form #chat-history {
	    height: auto;
	    padding-left: 0;
	    padding-top: 0px;
	}

	div#right-section .logo-sec {
	    width: 100%;
	    max-width: 60px;
	    margin: 0 auto 10px auto;
	    background-color: #2e3033;
	    border-radius: 10px;
	    padding: 5px 7px;
	}

	#chat-wrapper #right-section {
	    margin-left: 0;
	    width: 100%;
	    height: 100%;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    overflow: hidden;
	}

	#chat-form {
		height: 85vh;
	    justify-content: space-between !important;
	    overflow: unset;
	}

	#chat-wrapper #chat-section #select-section button {
		width: 100px;
	    min-height: 84px;
	    display: flex;
	    justify-content: center;
	}
	
	#chat-wrapper #chat-section #select-section {
		display: none;
	}

	#chat-wrapper #chat-section #chat-sidebar {
		display: none;
	}
	#chat-wrapper {
		padding: 0;
		position: relative;
		height: 100%;
		width: 100vw;
	}
	#chat-wrapper #right-section form#chat-form #chat-history > div:first-child {
		padding: 0;
	}

	#chat-wrapper #right-section form#chat-form #chat-history > div:nth-child(2n) {
		background-color: transparent !important;
	}

	#chat-wrapper #right-section form#chat-form #chat-history > div {
		padding: 0px;
		margin-bottom: 20px;
	}
	#chat-wrapper #right-section form#chat-form #chat-history>div .question, 
	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		max-width: 100% !important;
		margin-bottom:25px;
	}
	#chat-wrapper #right-section form#chat-form #chat-history > div:after {
		content: "";
		position: absolute;
		right: 5px;
		background-color: #27272a;
		width: 92%;
		height: 1px;
		bottom: 0;
	}

	#chat-wrapper #right-section {
	    justify-content: start;
	}
	
}

@media (max-width: 600px) {
	#chat-wrapper #search-bar button[type="submit"] {
		padding: 6px 13px !important;
		font-size: 12px;
	}

	#chat-wrapper .ast-container {
		flex-direction: column;
		overflow-y: hidden;
	}

	#chat-wrapper #chat-section {
		width: 100%;
		flex-flow: wrap;
		height: auto !important;
	}

	#chat-wrapper #chatsDiv {
	    margin-bottom: 0;
	}

	#chat-wrapper #chat-section #chat-sidebar {
		margin-left: 0;
		width: 100%;
	}

	#chat-wrapper #chat-section #select-section button {
		margin-top: 0;
	}

	#chat-wrapper #right-section form#chat-form #chat-history {
		margin-top: 0px;
		padding: 0;
		padding-right: 10px;
	}

	#chat-wrapper #right-section {
		width: 100%;
		margin-left: 0;
	}

	#chat-wrapper #right-section form#chat-form #chat-history>div .question,
	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		max-width: 100% !important;
		margin-bottom: 25px;
	}
	#chat-wrapper #right-section form#chat-form #chat-history > div{
		margin-bottom: 20px;
	}

	#chat-wrapper #right-section form#chat-form .chatHead h3#gpt-header {
		padding-left: 0;
	}

	#chat-wrapper #chatsDiv {
	    margin-bottom: 0;
	}

	#chat-wrapper #chat-section #select-section {
	    flex-flow: wrap;
	}

	#chat-wrapper #chat-section #select-section button {
		width: 37%;
	}

	#chat-wrapper #right-section form#chat-form .chatHead {
	    top: 40%;
	}
	#chat-wrapper #right-section {
		overflow: unset;
	}
	#chat-wrapper #chat-section #select-section img.chat-logo {
    	max-width: 100%;
	    width: 100%;
	    height: 90px;
	    object-fit: contain;
	}
	#chat-wrapper #chat-section #select-section button {
	    width: 28%;
	    max-width: 100px;
	}
	#chat-wrapper #right-section form#chat-form #chat-history > div:after {
		width: 100%;
	}
	#chat-wrapper #right-section form#chat-form #chat-history > div:last-child .answer {
		margin-bottom: 0;
	}
}
@media (max-width: 576px) {
	
	#chat-wrapper #right-section form#chat-form #chat-history > div {
		padding: 0 0 10px 0;
		margin-bottom: 10px;
	}
	.chat-select-box {
		gap: 0px;
    	grid-template-columns: 1fr;
	}

	.chat-select-box select {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.chat-select-box select:last-child{
		margin-bottom: 0;
	}
	#chat-wrapper #right-section form#chat-form #chat-history>div .question, 
	#chat-wrapper #right-section form#chat-form #chat-history>div .answer {
		font-size: 12px;
		margin-bottom: 15px;
	}
}

.single-topic {
	display: none;
	cursor: pointer;
	margin-bottom: 10px;
	border-radius: 4px;
	padding: 7px 10px;
}

.topicActive {
	background-color: #3c3d40;
}

.single-topic * {
	margin: 0 !important;
}

.allsubjects {
	display: inline;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}

.single-topic svg {
	min-width: 20px;
	max-width: 20px;
}

.single-topic[style="display: block;"] {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.user-input-container {
	position: relative;
	width: 100%;
}

.input-btns {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
}

.rst-btn {
	background: inherit;
	padding: 10px !important;
	background-color: inherit !important;
	border: 0;
	cursor: pointer;
    line-height: 0 !important;
    border: 0 !important;
}

button.record-icon-btn {
	padding: 2px !important;
}

button.chat-loading {
	padding: 0 !important;
	display: none;
	margin-top: 4px;
	margin-right: 35px;
	pointer-events: none;
}

.loading-chat .chat-loading {
	display: block !important;
}

button.chat-stop {
	margin: 8px;
    margin-right: 16px;
    cursor: pointer;
    pointer-events: all;
}

.loading-chat .image-upload,
.loading-chat .record-icon-btn,
.loading-chat .user-input-submit-btn
{
	display: none;
}

.loading-chat input {
	pointer-events: none;
}


.chat-logo {
    padding: 5px;
	width: 100%;
    height: auto;
}

.chat-loading span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	display: block;
	margin: 15px auto;
	position: relative;
	background: #FFF;
	box-shadow: -12px 0 #FFF, 12px 0 #FFF;
	box-sizing: border-box;
	animation: shadowPulse 1s linear infinite;
}

.disabled-btn,
.disabled-topic,
.disabled-chat {
	opacity: 0.5;
	pointer-events: none;
}

@keyframes shadowPulse {
	33% {
		background: #FFF;
		box-shadow: -12px 0 #5C25FB, 12px 0 #FFF;
	}

	66% {
		background: #5C25FB;
		box-shadow: -12px 0 #FFF, 12px 0 #FFF;
	}

	100% {
		background: #FFF;
		box-shadow: -12px 0 #FFF, 12px 0 #5C25FB;
	}
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 15px;
	height: 15px;
}

.lds-ripple div {
	position: absolute;
	border: 2px solid #000;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.chat-container.dark .lds-ripple div {
	border-color: #fff;
}

.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 10px;
		left: 10px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	4.9% {
		top: 10px;
		left: 10px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	5% {
		top: 10px;
		left: 10px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 20px;
		height: 20px;
		opacity: 0;
	}
}

.new_chat {
	top: -1px;
	position: relative;
}

.ssai_footer {
	margin-top: 10px;	
}

.answer .sub {
	min-height: 20px;
}

.tts_listen {
	cursor: pointer;
	height: 22px;
	transition: transform 0.5s ease-in-out;
}
.tts_listen.vshidden {
	visibility: hidden;
}
.tts_listen.playing {
	transform: scale(1.4);
	animation: pulse 1s infinite;
}
/* Define a pulsating animation */
@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.4); }
	100% { transform: scale(1); }
}

@media (min-width: 922px) {
	.ast-container {
		max-width:1240px;
		display:flex;
		flex-direction: row;
	}
}

#chat-wrapper #chat-section #select-section {
    display: none;
}

#search-bar {
	display: none;
}

.ssai_dropzone {
    background-color: #2e3033;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	position: absolute;
    top: 20%;
	max-width: 700px;
	width: 100%;
}

.ssai_dropzone h2 { 
	color: #fff;
	margin-bottom: 10px;
	font-weight: bold;
}

.ssai_dropzone .ssai_sub_title { 
	font-size: 18px;
	color: #fff;
}

.ssai_dropzone .ssai_sub_para {
	opacity: 0.6;
}

.ssai_dropzone_upload_area {
	border: 3px dashed #abacad;
    width: 100%;
	padding: 20px;
	cursor: pointer;
	max-height: 208px;
    overflow-y: auto;
}

.ssai_dropzone_upload_area img.upload-image {
	width: 40px;
	filter: invert();
	margin-bottom: 10px;
}

.ssai_dropzone_upload_area .dz-message {
	margin-top: 0;
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.ssai_dropzone_upload_area.dz-drag-hover { 
	opacity: 0.4;
}

#chat-wrapper #right-section form#chat-form .chatHead {
	top: 12%;
}

#chat-wrapper #chat-section #chat-sidebar {
	margin-left: 0;
}

#chat-wrapper .ast-container {
	padding: 15px;
}

#chat-wrapper #chat-section #chat-sidebar {
	max-width: 100%;
	overflow: hidden;
}

#chat-wrapper #chat-section {
	max-width: 260px;
}

.dropzone .dz-preview .dz-error-message {
	top: 150px;
}

.ssai_directly_para {
	margin-top: 10px;
	margin-bottom: 0px;
}

.ssai_start_chatting {
	margin-top: 10px;
}

.loader {
	width: 75px;
	aspect-ratio: 1;
	display: grid;
}
.loader::before,
.loader::after {
	content:"";
	grid-area: 1/1;
	--c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
	background: 
		var(--c) 50%  0, 
		var(--c) 50%  100%, 
		var(--c) 100% 50%, 
		var(--c) 0    50%;
	background-size: 16px 16px;
	animation: l12 1s infinite;
}
.loader::before {
	margin: 4px;
	filter: hue-rotate(45deg);
	background-size: 12px 12px;
	animation-timing-function: linear
}

@keyframes l12 { 
100%{transform: rotate(.5turn)}
}

.ssai_loader {
	display: none;
	width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: #1a1b1ee0;
	position: absolute;
}

.ssai_loader.showL {
	display: grid;
}

.right-section-container {
	max-width: 820px;
	width: 100%;
}

.delete_chat:hover {
	opacity: 0.5;
}


select.select-topic option {
	white-space: pre-wrap; /* Allow text to wrap */
	word-wrap: break-word; /* Break words that are too long */
	overflow-wrap: break-word; /* Modern version of word-wrap */
	word-break: break-all; /* Force breaking words */
  }

@media (max-width: 450px) {
	#chat-wrapper #right-section form#chat-form .chatHead {
		top: 6%;
	}

	#ssai_pdf_uploader {
		top: 13%;
	}
}

#question-suggestion { 
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    margin-top: 10px;
    display: none;
    position: absolute;
    bottom: 60px;
	max-height: 70vh;
    overflow: auto;
    padding: 0 16px;
}

#question-suggestion.visibleQ {
	display: flex;
}

div#question-suggestion > span {
    border: 1px solid #434446;
    padding: 10px;
    border-radius: 10px;
    background: #2e3033;
	cursor: pointer;
	margin: 0px 4px;
}

div#question-suggestion > span:hover {
	background: #434446;
}	


.question a {
    display: block;
	color: #74dacd;
	text-transform: initial;
}

.vision-image {
	width: 80px;
    margin-bottom: 10px;
}

#chat-wrapper #right-section form#chat-form #chat-history>div li p {
	margin-bottom: 0;
}

#chat-wrapper #right-section form#chat-form #chat-history>div a[href*="chat-topic"] {
	display: inline;
}

.chat-container.grey .ssai_dropzone {
	background-color: #fff;
	border: 0;
}


.chat-container.light .ssai_dropzone {
	background-color: #f5f5f5;
	border: 0;
}

.chat-container.grey .ssai_dropzone h2,
.chat-container.grey .ssai_dropzone .ssai_sub_title {
	color: #000;
}


.chat-container.light .ssai_dropzone h2,
.chat-container.light .ssai_dropzone .ssai_sub_title {
	color: #071437;
}

.chat-container.grey .ssai_dropzone_upload_area img.upload-image,
.chat-container.light .ssai_dropzone_upload_area img.upload-image {
	filter: inherit;
}


.chat-container.grey .ssai_loader {
	background: #f5f5f5c2;
} 

.chat-container.light .ssai_loader {
	background: #ffffffcc;
}


.chat-container.light div#question-suggestion > span {
	background-color: #f5f5f5;
}

.chat-container.light div#question-suggestion > span:hover {
	background-color: #ffffff;
}

.chat-container.grey div#question-suggestion > span {
	background-color: #ffffff;
}

.chat-container.grey div#question-suggestion > span:hover {
	background-color: #f5f5f5;
}

.green-btn {
	background: #0ab8b1;
    color: #fff;
    border: 0;
    padding: 5px 20px;
    border-radius: 19px;
}

#chat-wrapper #chat-section button#startNewSession {
	background-color: #f8a072 !important;
	color: #ffffff !important;
}

.ssai_start_chatting {
	margin-right: 5px;
}

.ql-container {
	height: inherit !important;
}

.ssai_chatting_btns_top button {
    border-radius: 4px;
    padding: 5px 15px;
    text-transform: uppercase;
    background: none;
    font-weight: bold;
    color: #fff;
	border: 1px solid transparent;
	box-shadow: var(--mui-shadows-2, 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12));
}

.ssai_chatting_btns_top button:hover {
	box-shadow: var(--mui-shadows-8, 0px 5px 5px -3px rgba(31, 27, 27, 0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12));
}

button.asst-btn {
	background: #000;
}

button.gene-btn {
	background: #f8a072;
}

button.docu-btn {
	background-color: #0ab8b1;
}

button.inst-btn {
	border-color:#0ab8b1;
	color: #0ab8b1;
}

.ssai_chatting_btns_top {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 10px;
}

.ssai_title {
	display: block;
	width: 100%;
}

.ssai_title span {
	float: right;
    margin-right: 5px;
    font-size: 15px;
    font-weight: normal;
	cursor: pointer;
}

.ssai_file_uploader {
	display: none;
}

.ssai_uploader_not_visible {
	top: 35%;
}

.ssai_chatting_btns_top h2 {
	grid-column: span 2;
}
