﻿/* GENERAL PAGE RULES START */

.text-revert {
	text-transform: revert !important;
}

.ai-chat-fixed-position {
	position: fixed;
	right: 30px;
	bottom: 30px;
}

.ai-chat-initiate-chat-icon-wrapper {
	width: 55px;
	height: 55px;
	background-color: #ffd100;
	border-radius: 50%;
	z-index: 1031;
}

	.ai-chat-initiate-chat-icon-wrapper .ai-chat-initiate-chat-icon {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 45px;
		height: 45px;
		line-height: 45px;
		background-color: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		text-align: center;
		font-size: 25px;
		font-weight: bold;
		color: #fff;
	}

	.ai-chat-initiate-chat-icon-wrapper:hover {
		border: 2px solid #000;
	}

.ai-chat-initiate-chat-icon:hover:before {
	-webkit-animation: ai-chat-animate-pulse 1.5s ease-out infinite;
	animation: ai-chat-animate-pulse 1.5s ease-out infinite;
}

.ai-chat-initiate-chat-icon:hover:after {
	-webkit-animation: ai-chat-animate-pulse 1.5s ease-out 0.4s infinite;
	animation: ai-chat-animate-pulse 1.5s ease-out 0.4s infinite;
}

.ai-chat-initiate-chat-icon:before,
.ai-chat-initiate-chat-icon:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #ffd100;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.25s ease-in-out;
}

	.ai-chat-initiate-chat-icon a img {
		-webkit-transform: scaleX(-1);
		transform: scaleX(-1);
		margin-top:-5px;
	}



.ai-chat-notify {
	-webkit-animation: ai-chat-animate-slide-in .5s ease-in-out forwards 1, ai-chat-animate-spin 1.8s ease-in-out forwards 1, ai-chat-animate-fade 2s ease forwards 1;
	animation: ai-chat-animate-slide-in .5s ease-in-out forwards 1, ai-chat-animate-spin 1.8s ease-in-out forwards 1, ai-chat-animate-fade 2s ease forwards 1;
}

@-webkit-keyframes ai-chat-animate-spin {
	0% {
		transform: perspective(120px) rotateY(181deg) rotateX(0deg);
	}

	50% {
		transform: perspective(120px) rotateY(0deg) rotateX(0deg);
	}

	100% {
		transform: perspective(120px) rotateY(181deg);
	}
}

@keyframes ai-chat-animate-spin {
	0% {
		transform: perspective(120px) rotateY(181deg) rotateX(0deg);
	}

	50% {
		transform: perspective(120px) rotateY(0deg) rotateX(0deg);
	}

	100% {
		transform: perspective(120px) rotateY(181deg);
	}
}

@-webkit-keyframes ai-chat-animate-fade {
	0% {
		opacity: 0.1;
	}

	100% {
		opacity: 1;
	}
}

@keyframes ai-chat-animate-fade {
	0% {
		opacity: 0.1;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes ai-chat-animate-slide-in {
	0% {
		bottom: -60px;
	}

	100% {
		bottom: 30px;
	}
}

@keyframes ai-chat-animate-slide-in {
	0% {
		bottom: -60px;
	}

	100% {
		bottom: 30px;
	}
}

@-webkit-keyframes ai-chat-animate-pulse {
	0% {
		opacity: 0.8;
		transform: scale(1);
	}

	70% {
		opacity: 0;
		transform: scale(2);
	}

	100% {
		opacity: 0;
	}
}

@keyframes ai-chat-animate-pulse {
	0% {
		opacity: 0.8;
		transform: scale(1);
	}

	70% {
		opacity: 0;
		transform: scale(2);
	}

	100% {
		opacity: 0;
	}
}

/* GENERAL PAGE RULES END */

/* COL START */
.opening-prompt {
	display: none;
}

.modal.modal-fullscreen, #ai-chat-modal {
	z-index: 90000;
}

#ai-chat-modal {
	margin: auto !important;
	max-height: calc(100% - 0px) !important;
	background: rgba(0, 0, 0, 0.8) !important;
	/*##############*/
	position: absolute !important;
	box-shadow: revert !important;
	color: revert !important;
	display: none;
	font-weight: revert !important;
	margin: revert !important;
	padding: revert !important;
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.title-wrapper img {
	height: 50px;
}

#ai-chat-modal .modal-content {
	height: 100%
}

#chat-history-wrapper {
	display: none;
	top: 57px;
	height: calc(100% - 59px);
	border-top: 1.75px solid #595959;
}

#ai-chat-modal, #ai-chat-modal .modal-dialog {
	margin: 0;
	padding: 0;
}

	#ai-chat-modal .modal-dialog {
		width: 100vw;
		height: 100%;
	}

	#ai-chat-modal .modal-header, #ai-chat-modal .modal-body, #ai-chat-history-title {
		border-radius: 0;
	}

		#ai-chat-history-title .row {
			position: relative;
			z-index: 10;
			background: #363636;
		}



#ai-chat-history-title {
	display: none;
	position: relative;
	z-index: 5;
	border-bottom-left-radius: 15px;
	height: 56px;
}

#chat-history-list {
	height: calc(100% - 139px);
}

#ai-chat-btn-reset-mobile {
	z-index: 100;
	cursor: pointer;
	display: none;
}

#ai-chat-area {
	height: calc(100% - 58px);
}

#chat-history-container {
	height: 350px;
	width: 100%;
	z-index: 15;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom: 1.75px solid #535353;
	background-image: linear-gradient(rgb(0, 0, 0), rgb(72, 72, 72));
}

	#ai-chat-history-title, #chat-history-container ul > li:first-child {
		border-top: 1.75px solid #535353;
		border-bottom: 1.75px solid #535353;
	}

.history-arrow-up {
	left: revert !important;
	display: block;
	height: 20px;
	width: 20px;
	border: inherit;
	position: absolute;
	right: 60px;
	border: 1.75px solid #535353 !important;
	background: #000 !important;
	top: -10px;
	clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
	transform: rotate(135deg);
	border-radius: 0 0 0 0.25em;
}

#ai-chat-disclaimer-wizard-child-1 {
	display: flex;
}

	#ai-chat-disclaimer-wizard-child-1 h2 {
		font-weight: 200;
		font-family: revert
	}

#ai-chat-modal .modal-dialog {
	height: 90vh;
	max-width: 100% !important;
	max-height: calc(100% - 0px);
	margin: auto;
}

#ai-chat-modal .modal-title {
	text-transform: revert;
	font-family: revert !important;
}

#ai-chat-modal .modal-header {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border: 0;
}

	#ai-chat-modal .modal-header .fa-times {
		font-size: 1.75em;
	}

#ai-chat-modal .modal.modal-fullscreen .modal-content {
	height: auto;
	height: 100%;
	border-radius: 0;
	border: none;
}

#ai-chat-modal .modal.modal-fullscreen .modal-body {
	overflow-y: auto;
}

#ai-chat-modal .modal-body {
	margin: auto;
}

#ai-chat-modal .modal-body, #ai-chat-modal .modal-header, #ai-chat-modal .modal-footer {
	background-color: #202123;
	color: #fff;
	border-radius: 0px;
}

	#ai-chat-modal .modal-header a {
		color: #EF3A43;
	}

	#ai-chat-modal .modal-header h5 {
		color: #fff;
	}

#ai-chat-modal .modal-title {
	background: transparent;
}

#ai-chat-modal .ai-chat-close-modal {
	height: 35px;
	width: 35px;
	background-color: #595959;
	border-radius: 3px;
}

	#ai-chat-modal .ai-chat-close-modal:hover {
		text-decoration: none !important;
	}

/*START: custom scrollbar */
#ai-chat-modal ::-webkit-scrollbar {
	width: 20px;
}

#ai-chat-modal ::-webkit-scrollbar-track {
	background-color: transparent;
}

#ai-chat-modal ::-webkit-scrollbar-thumb {
	background-color: #dee2e6;
	border-radius: 20px;
	border: 6px solid transparent;
	background-clip: content-box;
}

/*END: custom scrollbar */




#chat-history-container-gutter {
	max-width: 60px;
}

#ai-chat-area-messages img {
	max-width: 75px;
}

#ai-chat-history-title .row span {
	transform: revert;
	white-space: nowrap;
	-webkit-writing-mode: revert;
	writing-mode: revert;
	min-width: 60px;
}

#ai-chat-disclaimer-wizard-child-3 h2, #ai-chat-prompt-examples h2 {
	text-transform: revert !important;
	font-family: revert !important;
	font-weight: 300;
}

#ai-chat-disclaimer-wizard-child-3 {
	display: none;
}

#ai-chat-preferred-name:focus {
	outline: none;
}

#ai-chat-preferred-name {
	outline: none;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}

#ai-chat-preferred-name-form button {
	background: white;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

#ai-chat-preferred-name-error {
	display: none;
}

#ai-chat-input {
	display: none;
}

	#ai-chat-input .ai-toast-container {
	}

		#ai-chat-input .ai-toast-container .toast {
			background-color: white;
			margin: 0 0 26px auto;
			position: relative;
			transform: translateX(100vw);
			transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
		}

			#ai-chat-input .ai-toast-container .toast.show {
				display: block;
				transform: translateX(0);
			}

			#ai-chat-input .ai-toast-container .toast .loader {
				height: 4px;
				background-color: #fff;
				width: 100%;
				animation: progressAnimationStrike 8s;
			}

			#ai-chat-input .ai-toast-container .toast .toast-body {
				margin-right: 2.5rem;
				display: flex;
				flex-direction: row;
				font-size: 1rem;
			}

				#ai-chat-input .ai-toast-container .toast .toast-body .toast-icon {
					font-size: 1.5rem;
				}

				#ai-chat-input .ai-toast-container .toast .toast-body .toast-icon {
					font-size: 1.5rem;
				}

			#ai-chat-input .ai-toast-container .toast button {
				background: none;
				color: #fff;
				border: 0;
				font-size: 1.5rem;
			}

				#ai-chat-input .ai-toast-container .toast button:hover {
					opacity: 1;
				}

			#ai-chat-input .ai-toast-container .toast.error {
				background-color: #e4002b;
			}



@keyframes progressAnimationStrike {
	from {
		width: 0
	}

	to {
		width: 100%
	}
}

	#ai-chat-input form {
		display: flex;
		flex-direction: row;
		padding: 1px;
		height: 50px !important;
		z-index: 2;
	}

	#ai-chat-input input {
		flex-grow: 2;
		border: none;
		border-top-left-radius: 8px;
		border-bottom-left-radius: 8px;
	}

		#ai-chat-input input:focus {
			outline: none;
		}

	#ai-chat-input button {
		border: none;
		background: white;
		border-top-right-radius: 8px;
		border-bottom-right-radius: 8px;
	}

		#ai-chat-input button:disabled {
			opacity: .2;
			pointer-events: none;
		}

#ai-chat-modal .clear-history-modal {
	background: rgba(0,0,0,.7) !important;
	position: fixed !important;
	box-shadow: revert !important;
	color: revert !important;
	display: none;
	font-weight: revert !important;
	margin: revert !important;
	padding: revert !important;
	background-color: rgba(0, 0, 0, 0.7) !important;
}

	#ai-chat-modal .clear-history-modal .modal-dialog {
		display: flex;
		justify-content: center;
	}

		#ai-chat-modal .clear-history-modal .modal-dialog .modal-content {
			height: auto !important;
			margin: auto;
			background: transparent;
		}

			#ai-chat-modal .clear-history-modal .modal-dialog .modal-content .modal-body {
				display: flex;
				flex-direction: column;
				border-radius: 15px;
				border: 1.5px #000 solid;
			}

				#ai-chat-modal .clear-history-modal .modal-dialog .modal-content .modal-body #clear-history {
					border-top-left-radius: .5rem !important;
					border-bottom-left-radius: .5rem !important;
				}

				#ai-chat-modal .clear-history-modal .modal-dialog .modal-content .modal-body #close-history-modal {
					border-top-right-radius: .5rem !important;
					border-bottom-right-radius: .5rem !important;
				}

#disclaimer-title {
	display: none;
}

#ai-chat-disclaimer-wizard-child-2 {
	display: none;
}

#ai-chat-disclaimer-carousel .carousel-indicators {
	position: revert !important;
}

#ai-chat-disclaimer-carousel .text-underlined {
	text-decoration: underline !important;
}

#ai-chat-disclaimer-carousel ol li, #mobileChatResultsCarousel ol li {
	width: 10px;
	height: 10px;
	border-radius: 100%;
}

#ai-chat-disclaimer-carousel .carousel-inner {
	border: 1.5px solid #595959;
	border-radius: 10px;
	min-height: 187px;
}

#ai-chat-disclaimer-carousel .carousel-controls:first-child {
	background-color: #272727;
}

	#ai-chat-disclaimer-carousel .carousel-controls:first-child:hover {
		background-color: #4a4a4a;
	}

	#ai-chat-disclaimer-carousel .carousel-controls:first-child:focus {
		box-shadow: revert !important;
	}

#ai-chat-disclaimer-carousel .carousel-controls:last-child, #ai-chat-disclaimer-wizard-child-1 .btn, #ai-chat-prompt-examples div button {
	background-color: #4a4a4a;
}

	#ai-chat-disclaimer-carousel .carousel-controls:last-child:hover, #ai-chat-disclaimer-wizard-child-1 .btn:hover, #ai-chat-prompt-examples div button:hover {
		background-color: #272727;
	}

	#ai-chat-disclaimer-carousel .carousel-controls:last-child:focus, #ai-chat-disclaimer-wizard-child-1 .btn:focus, #ai-chat-prompt-examples div button:focus {
		box-shadow: revert !important;
	}

#ai-chat-disclaimer-carousel .carousel-controls, #ai-chat-disclaimer-wizard-child-1 .btn {
	top: 150px;
	border: 1.5px solid #595959;
	border-radius: 10px !important;
	font-family: revert;
	padding-top: 8px;
	padding-bottom: 8px;
}

#ai-chat-prompt-examples {
	display: none;
}

.chat-window {
	display: none;
}

.ai-message-container {
	min-width: 210px;
}

#ai-chat-input {
	bottom: 0;
}

	#ai-chat-input p {
		color: #a6a6a6;
		display: none;
	}

#ai-chat-prompt-examples div button {
	border: 1.5px solid #595959;
	border-radius: 10px !important;
	font-family: revert;
}

#btn-ai-stop-generating {
	top: 150px;
	background-color: #202123;
	border: 1.5px solid #595959;
	border-radius: 10px !important;
	font-family: revert;
	padding-top: 8px;
	padding-bottom: 8px;
	display: none;
}

.user-message-bubble-wrapper, .ai-message-bubble-wrapper {
	align-self: flex-end;
}

.chat-message {
	max-width: 650px;
	word-wrap: break-word;
	margin-bottom: 12px;
	line-height: 24px;
	position: relative;
	padding: 10px 20px;
	border-radius: 25px;
}

	.chat-message:after, .chat-message:before {
		content: "";
		position: absolute;
		bottom: 0;
		height: 25px;
	}

.user-message-bubble {
	color: white;
	background: #4a4a4a;
	align-self: flex-end;
	border-bottom-right-radius: 0px;
}

	.user-message-bubble:before {
		right: -26px;
		width: 26px;
		background-color: #202123;
		border-bottom-left-radius: 50px;
		z-index: 2
	}

	.user-message-bubble:after {
		right: -26px;
		width: 50px;
		background-color: #4a4a4a;
		border-bottom-left-radius: 16px 14px;
	}

.ai-message-bubble-wrapper {
	min-width: 300px;
}

.ai-message-bubble {
	color: white;
	background: #335d7f;
	align-self: flex-start;
	border-bottom-left-radius: 0px;
	min-width: 210px;
}

	.ai-message-bubble a {
		color: white;
		text-decoration: underline;
	}

	.ai-message-bubble:before {
		left: -26px;
		width: 50px;
		background-color: #335d7f;
		border-bottom-right-radius: 16px 14px;
	}

	.ai-message-bubble:after {
		left: -26px;
		width: 26px;
		background-color: #202123;
		border-bottom-right-radius: 50px;
	}

	.ai-message-bubble ol {
		display: block;
		list-style-type: decimal;
		list-style-position: outside;
		padding-left: 40px;
	}

		.ai-message-bubble ol li {
			display: list-item;
			list-style-type: decimal !important;
			padding-bottom: 10px;
		}

	.ai-message-bubble ul {
		display: block;
		list-style-type: disc;
		list-style-position: outside;
		padding-left: 40px;
	}

		.ai-message-bubble ul li {
			display: list-item;
			list-style-type: disc !important;
			padding-bottom: 10px;
		}

.ai-profile-picture-user-wrapper {
	/*PLACEHOLDER UNTIL WE PULL PROFILE PICTURES IN*/
	height: 50px;
	width: 50px;
	min-width: 50px;
	border-radius: 50%;
	z-index: 2;
	background-color: #363636;
	border: 1.75px solid #595959;
	align-self: flex-end
}

	.ai-profile-picture-user-wrapper span {
		font-size: 1.75em;
	}

.ai-profile-picture-wrapper {
	/*PLACEHOLDER UNTIL WE PULL PROFILE PICTURES IN*/
	z-index: 2;
	background-image: url("/content/images/ai-chatbot/koa-logo.png");
	align-self: flex-end;
	background-position: center;
	background-size: cover;
	height: 50px;
	width: 50px;
	min-width: 50px;
	position: relative;
	top: -12px;
}

.intro-info-wrapper {
	display: flex;
}

#ai-chat-area-messages {
	display: flex;
}

#ai-chat-bubble-wrapper {
	overflow: auto;
	display: none;
	height: calc(100% - 95px) !important;
	top: 0;
	position: absolute;
}

#ai-chat-bubbles {
	max-height: calc(85vh - 155px);
	top: 10px;
}

#ai-chat-history-trigger {
	right: 0;
	z-index: 10;
	cursor: pointer;
}

#chat-history-container li.position-absolute {
	line-height: 0;
	font-size: 2em;
}


	#chat-history-container li.position-absolute i {
		color: #222222;
	}

#chat-history-container .h4 {
	font-size: 1.25rem !important;
}

#chat-history-container ul > li:nth-child(odd) {
	background: #535353;
}

	#chat-history-container ul > li:nth-child(odd) .fade-out-gradient {
		background: linear-gradient(to left, #535353, hsla(240,7%,97%,0));
		width: 75px;
		top: 0;
		right: 0;
	}

#chat-history-container ul > li:nth-child(even) .fade-out-gradient {
	background: linear-gradient(to left, #222222, hsla(240,7%,97%,0));
	width: 75px;
	top: 0;
	right: 0;
}

.history-arrow {
	left: revert !important;
	display: block;
	height: 20px;
	width: 20px;
	border: inherit;
	position: absolute;
	left: -10px !important;
	background: #222 !important;
	top: 47px;
	clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
	transform: rotate(45deg);
	border-radius: 0 0 0 0.25em;
}

#chat-history-container ul > li {
	cursor: pointer;
}

	#chat-history-container ul > li:last-child {
		margin-bottom: 1em;
	}

.blinking-cursor {
	margin-left: 5px;
	background-color: #fff;
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}

	50.1%, 100% {
		opacity: 0;
	}
}

#ai-chat-btn-reset {
	width: 50px;
	height: 50px;
	border-radius: 9px;
	background: #595959 !important;
	color: white !important;
	transition: .5s ease;
	display: none;
}

	#ai-chat-btn-reset:hover {
		width: 150px;
		transition: .5s ease;
	}

	#ai-chat-btn-reset:before {
		left: 2px;
		position: relative;
	}

	#ai-chat-btn-reset span:last-child {
		font-family: 'Gibson Regular';
		font-weight: 300;
		opacity: 0;
		transition: .5s ease;
	}

	#ai-chat-btn-reset span:first-child {
		transform: rotate(-180deg);
		transition: 1s ease;
	}

	#ai-chat-btn-reset:hover {
		width: 150px;
		transition: .5s ease;
	}

		#ai-chat-btn-reset:hover span:last-child {
			opacity: 1;
			transition: .5s ease;
		}

		#ai-chat-btn-reset:hover span:first-child {
			transform: rotate(180deg);
			transition: 1s ease;
		}

.ai-rating-container {
	min-width: 200px;
	max-width: 200px;
	z-index: 4;
	display: none;
	bottom: -27px;
	right: 15px;
}

.ai-rating-frown {
	font-size: 1em;
	background: #595959;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	transition: .25s ease;
}

.ai-rating-smile {
	background: #595959;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border: 1px solid black;
	text-decoration: none;
	transition: .25s ease;
}

.ai-rating-container a:hover {
	text-decoration: none !important;
	cursor: pointer;
	background: #ffd100;
	color: black !important;
	transition: .25s ease;
}

.chat-history-previous-mobile .carousel-item ul > li:nth-child(odd) {
	background: #535353;
}

#mobileChatResultsCarousel ol {
	bottom: 9px;
}

.ai-chat-toggler a[aria-expanded=true] .fa-comment {
	display: none;
}

.ai-chat-toggler a[aria-expanded=false] .fa-chevron-down {
	display: none;
}

.ai-chat-toggler .fa-comment {
	margin-left: 3px;
	margin-top: 2px;
}

.ai-chat-toggler .fa-chevron-down {
	margin-left: 5px;
}

/*START: Loading Animation*/

.dot-flashing {
	position: relative;
	margin: auto;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
	color: #fff;
	animation: dot-flashing 1s infinite linear alternate;
	animation-delay: 0.5s;
}

	.dot-flashing::before, .dot-flashing::after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 0;
	}

	.dot-flashing::before {
		left: -15px;
		width: 10px;
		height: 10px;
		border-radius: 5px;
		background-color: #fff;
		color: #fff;
		animation: dot-flashing 1s infinite alternate;
		animation-delay: 0s;
	}

	.dot-flashing::after {
		left: 15px;
		width: 10px;
		height: 10px;
		border-radius: 5px;
		background-color: #fff;
		color: #fff;
		animation: dot-flashing 1s infinite alternate;
		animation-delay: 1s;
	}

#ai-chat-ai-profile-picture-wrapper .dot-flashing, #ai-chat-ai-profile-picture-wrapper .dot-flashing::before, #ai-chat-ai-profile-picture-wrapper .dot-flashing::after {
	width: 6px !important;
	height: 6px !important;
}

	#ai-chat-ai-profile-picture-wrapper .dot-flashing::before {
		left: -16px !important;
	}

	#ai-chat-ai-profile-picture-wrapper .dot-flashing::after {
		left: 16px !important;
	}

	@keyframes dot-flashing {
		0% {
		background-color: #fff;
	}

	50%, 100% {
		background-color: rgba(255, 255, 255, 0.2);
	}
}

/*END: Loading Animation*/



/* STANDLONE PAGE FOR BS3 START */
#ai-chat-standalone-page-container {
	background: #939393;
	height: 100%;
}

	#ai-chat-standalone-page-container #ai-chat-modal {
		position: revert !important;
	}

	#ai-chat-standalone-page-container .modal-title {
		font-size: 1.75rem;
	}


#ai-chat-standalone-page-container .modal-dialog {
	position: relative;
	top: 80px;
	max-height: calc(100% - 80px);
}

#ai-chat-ai-profile-picture-wrapper p.dot-flashing {
	position: relative;
	top: -7px;
	z-index: 5;
	display: none;
}

@media (max-width: 767px) {
	#ai-chat-standalone-page-container {
		height: 124vh;
	}

		#ai-chat-standalone-page-container .title-wrapper h3 {
			font-size: 1.25em;
		}

		#ai-chat-standalone-page-container .modal-dialog {
			top: 79px;
			max-height: calc(100% - 71.33px);
		}

		#ai-chat-standalone-page-container #ai-chat-prompt-examples h2 {
			font-size: 1.5rem;
		}

		#ai-chat-standalone-page-container #ai-chat-area {
			height: calc(100% - 68px);
		}
}

/* STANDLONE PAGE FOR BS3 END */

/* COL END */

/* COL-SM START */
@media (min-width: 576px) {
	#ai-chat-disclaimer-carousel .carousel-inner {
		min-height: 139px;
	}

	#ai-chat-disclaimer-wizard-child-2, #ai-chat-disclaimer-wizard-child-1 {
		min-height: 272px;
	}

	#ai-chat-standalone-page-container .modal-dialog {
		position: revert !important;
		top: 0px !important;
		padding-top: 80px !important;
	}

	#ai-chat-standalone-page-container .modal-content {
		padding-top: 1em !important;
		padding-bottom: 1em !important;
	}

	#ai-chat-area-messages img {
		max-width: 100px;
	}
}

/* COL-SM END */

/* COL-MD START */

@media(max-width: 767px) {
	/* CUSTOM STYLE OVERRIDE FOR RESET-BTN */
	#ai-chat-btn-reset {
		display: none !important;
	}

	#ai-chat-history-title {
		max-width: 100% !important;
	}
}

@media (min-width: 768px) {
	#ai-chat-btn-reset-mobile {
		display: none !important;
	}

	#ai-chat-modal .modal-body {
		border-bottom-left-radius: 15px !important;
		border-bottom-right-radius: 15px !important;
		border-left: 1.5px solid #595959;
		border-right: 1.5px solid #595959;
		border-bottom: 1.5px solid #595959;
	}

	#ai-chat-modal .modal-header {
		border-top-left-radius: 15px !important;
		border-top-right-radius: 15px !important;
		border: 1.5px solid #595959 !important;
	}

	#ai-chat-modal .modal-content {
		background: transparent;
		height: 90vh !important;
	}

	#chat-history-wrapper {
		top: 0;
		height: 100%;
		border-top: none;
	}

	#chat-history-list {
		height: calc(100% - 130px);
	}

		#chat-history-list .chat-history-error {
			display: none;
			background-color: #e4002b;
			margin-bottom: auto;
			padding: 0.5rem;
		}

		#ai-chat-history-title {
			height: 100% !important;
		}

		#ai-chat-history-title .row span {
			transform: rotate(180deg);
			-webkit-writing-mode: vertical-rl;
			writing-mode: vertical-rl;
		}

	#chat-history-container {
		border-right: 1.75px solid #535353;
		height: 100% !important;
		z-index: 50;
		background-color: #222222 !important;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom: none;
		background-image: none;
	}

		#chat-history-container .dropdown-toggle:focus {
			box-shadow: revert !important;
			background: #363636 !important;
		}

		#chat-history-container .dropdown-menu {
			background-image: linear-gradient(rgb(0, 0, 0), rgb(72, 72, 72));
			transform: translate3d(0px, 59px, 0px) !important;
			border-radius: 0;
			color: white;
		}

		#chat-history-container .dropdown-toggle::after {
			display: none !important;
		}

		#chat-history-container .dropdown-toggle {
			background: #363636 !important;
			border-left: 0;
			border-right: 0;
			border-top: 1.5px solid #595959;
			border-bottom: 1.5px solid #595959;
		}

			#chat-history-container .dropdown-toggle:hover {
				border-left: 0;
				border-right: 0;
			}

	.ai-standalone-container #ai-chat-history-title {
		height: revert !important;
	}

	#ai-chat-history-title .row {
		border-bottom-left-radius: 15px;
	}

	#ai-chat-history-title, #chat-history-container ul > li:first-child {
		border-top: none;
		border-bottom: none;
	}

	#ai-chat-disclaimer-carousel .carousel-inner {
		min-height: 139px;
	}

	#ai-chat-area-messages img {
		max-width: 150px;
	}

	#ai-chat-bubbles {
		max-height: calc(85vh - 220px);
	}

	#ai-chat-disclaimer-wizard-child-2, #ai-chat-disclaimer-wizard-child-1 {
		min-height: 264px;
	}

	#ai-chat-area {
		height: 100%;
		position: relative;
		top: 0px;
	}

	#ai-chat-btn-reset-mobile {
		display: none !important;
	}

	#ai-chat-history-title .row i.fa-chevron-up {
		transform: rotate(90deg);
		padding-bottom: 0 !important;
		padding-right: 1em !important;
	}

	#ai-chat-standalone-page-container .modal-content {
		height: 85vh !important;
	}

	.ai-chat-history-title-border {
		border-right: 1.75px solid #595959;
	}
}
/* COL-MD END */

/* COL-LG-START */

@media(min-width: 991px) {

	#ai-chat-history-title {
		max-width: 60px;
	}

	#ai-chat-area {
		margin-left: 15px;
	}

	#ai-chat-disclaimer-carousel .carousel-inner {
		min-height: 139px;
	}
}

/* COL-LG-END */

/* COL-XL START */

@media(min-width: 1200px) {
	#chat-history-list {
		height: calc(100% - 109px);
	}
}

/* COL-XL END */


.modal-backdrop {
	z-index: -1;
}
