
	
        @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
        * {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
			font-family: "Open Sans", sans-serif;
			font-size:15px;
			line-height:20px;
        }
        body {
			background: rgba(227, 242, 253, 0)!important;
			color: #71717A;
        }
        .chatbot-toggler {
			position: fixed;
			bottom: 30px;
			left: 35px;
			outline: none;
			border: none;
			height: 50px;
			width: 50px;
			display: flex;
			cursor: pointer;
			align-items: center;
			justify-content: center;
			border-radius: 50%;
			background: var(--custom-background-color) !important;
			transition: all 0.2s ease;
        }
        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 this CSS to style your popup */
        #chatPopup {
            position: fixed;
            border-radius: 8px;
            margin-top: 20px;
            width: calc(100% - 36px);
            background-color: #f3f4f6;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            z-index: 1;
            bottom: 100px;
            left: 15px;
        }

        .chatpopup-content {
            text-align: center;
        }

        .chatpopup-content button {
            padding: 8px 20px;
            border: none;
            background: #ed4a69;
            color: #fff;
            border-radius: 30px;
            margin: 0 auto;
        }
        .chatpopup-content button:hover {
            cursor: pointer;
        }
        .chatbot {
			position: fixed;
      top: 0;
			left: 0px;
			bottom: 0;
			width: 100%;
			background: #fff;
			border-radius: 15px;
			overflow: hidden;
			opacity: 0;
			pointer-events: none;
			transform: scale(0.5);
			transform-origin: bottom right;
			box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
						0 32px 64px -48px rgba(0,0,0,0.5);
			transition: all 0.1s ease;
        }
        body.show-chatbot .chatbot {
			opacity: 1;
			pointer-events: auto;
			transform: scale(1);
        }
        .chatbot header {
			padding: 12px 15px;
			position: relative;
			text-align: center;
			color: #fff;
			background: var(--custom-background-color) !important;
			box-shadow: 0 0 0px 2px rgba(0,0,0,0.24);
			justify-content:space-between;
        }
        .chatbot header span {
			position: absolute;
			right: 15px;
			top: 50%;
			display: none;
			cursor: pointer;
			transform: translateY(-50%);
        }
		.btn-close {
			padding:10px 20px; 
		}
        header h2 {
			font-size: 17px;
			line-height:22px;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			width:100%;
			text-align:left;
        }
        .chatbot .chatbox {
			overflow-y: auto;
			height: 510px;
			padding: 30px 20px 100px;
			scroll-behavior: smooth;
        }
        .chatbot :where(.chatbox, input)::-webkit-scrollbar {
			width: 6px;
        }
        .chatbot :where(.chatbox, input)::-webkit-scrollbar-track {
			background: #fff;
			border-radius: 25px;
        }
        .chatbot :where(.chatbox, input)::-webkit-scrollbar-thumb {
			background: #ccc;
			border-radius: 25px;
        }
        .chatbox .chat {
			display: flex;
			list-style: none;
			margin: 0 0 20px;
        }
        .chatbox .outgoing { 
			justify-content: flex-end;
        }
        .chatbox .incoming span {
			padding: 1px;
			width: 32px;
			height: 32px;
			border-radius: 50%;
			border: 1px solid #E4E4E7;
			background: #E4E4E7;
			display:flex;
			align-items:center;
			justify-content:center;
			margin-right: 10px;
			box-shadow:none;
        }
        .chatbox .chat > div{
			padding: 8px;
			border-radius: 10px 10px 0 10px;
			max-width: 75%; 
			font-size: 15px;
			line-height:20px;
			border: 1px solid #E4E4E7;
			border-radius: 20px 8px 20px 20px;
			background-color: #fff;
			color: #27272A;
			box-shadow: 0px 1px 2px 0px #0000000D;
        }
        .chatbox .incoming > div {
			border-radius: 8px 20px 20px 20px;
        }
        .chatbox .chat > div.error {
			color: #721c24;
			background: #f8d7da;
        }
        .chatbox .incoming > div {
			background: #E4E4E7;
        }
        .chatbox .chat > div p {
          margin:0 0 8px;
          }
          .chatbox .chat > div p:last-child {
          margin:0;
          }
          .chatbox .chat > div ul, .chatbox .chat > div ol { 
          padding:0 0 0 20px;
          }
          .chatbox .chat > div ul li, .chatbox .chat > div ol li { 
          padding:0 0 8px; 
          }
          /* Image sizing in chat messages */
          .chatbox .chat > div img {
              max-width: 100%;
              height: auto;
              border-radius: 8px;
              margin: 8px 0;
              display: block;
          }
          .chatbox .chat > div img[src*="http"] {
              max-width: min(100%, 400px);
              max-height: 300px;
              object-fit: contain;
          }
          
        .chatbot .chat-input {
			display: flex !important; 
			position: absolute !important;
			bottom: 26px !important;
			width: calc(100% - 20px) !important;
			background: #fff !important;
			padding: 5px 0 !important; 
			margin:0 10px;
			border-radius:6px;
			border: 1px solid #ddd !important; 
			align-items:flex-start;
		}
		.chat-input textarea {
			min-height: 34px;
			max-height:200px;
			width: calc(100% - 55px);
			border: none;
			outline: none;
			resize: none; 
			font-size:14px; 
			padding:5px 5px 5px 15px;
			line-height:17px;
			height:34px;
        }
        .chat-input .chat-btn { 
			width: 32px;
			height: 32px;
			border-radius: 50%;
			border: none;
			background: var(--custom-background-color);
			display: flex;
			align-items: center;
			justify-content: center;
			position: absolute;
			right: 10px; 
        }
		.chat-input .chat-btn svg { 
			max-width: 18px;
			border: none;
			width: initial;
			height: auto;
			object-fit: initial;
			border-radius: initial;
        }
        .chat-input input:valid ~ span {
			visibility: visible;
        }
        footer {
			background-color: #FAFAFA;
			padding: 3px;
			position: absolute;
			text-align: center;
			border-bottom-left-radius: 10px;
			border-bottom-right-radius: 10px;
			bottom: 0px;
			width: 100%;
			display:flex;
			align-items:center;
			justify-content:center;
			font-size:13px;
		}
		footer a {  
			display:flex;	
			align-items:center;
			color:#ed4a69;
			text-decoration:none;
		}
		footer a:hover {  
			text-decoration:underline;
		}
		footer img { 
			max-width:20px;
			margin:0 5px;
			height:auto;
			display:block;			
		}
		.chatbot header span.close-btn {
			right:25px;
			font-size:24px;
		}
		header {
			display: flex !important;
			align-items: center !important;
		}
		.user-box {
			display:flex;
			align-items:center;
			width:100%;
			padding-right:44px; 
		}
		header .user-icon {
			width:32px;
			height:32px;
			border-radius: 50%;
			margin-right: 10px; 
			display:flex;
			align-items:center;
			justify-content:center;
			background:#fff;
		}
		.user-pic {
			max-width:32px;
			border-radius:50%;
			height: 32px;
			padding:1px;
			width:32px;
			box-shadow: 0px 0px 0px 2px #0000001A; 
		}
		.chat-loading {
			display:flex;
			align-items:center;
			justify-content:center;
			width:60px;
			height:26px;
		}
		.dot-loading::before, .dot-loading::after {
			content: "";
			display: inline-block;
			position: absolute;
			top: 0;
		}
		.dot-loading {
			position: relative;
			width: 10px;
			height: 10px;
			border-radius: 5px;
			background-color: var(--custom-background-color);
			color: var(--custom-background-color);
			animation: dot-loading 1s infinite linear;
			font-style:normal;
			display:block;
		}
		.dot-loading::before {
			left: -15px;
			width: 10px;
			height: 10px;
			border-radius: 5px;
			background-color: var(--custom-background-color);
			color: var(--custom-background-color);
			animation: dot-loading-before 1s infinite linear;
		}
		.dot-loading::after {
			left: 15px;
			width: 10px;
			height: 10px;
			border-radius: 5px;
			background-color: var(--custom-background-color);
			color: var(--custom-background-color);
			animation: dot-loading-after 1s infinite linear;
		}
		#current {
			position: absolute;
			right: 17px;
			bottom: 10px;
			font-size: 14px;
			font-weight: 600;
			display:none;
		}
		#textarea-error-msg {
			position: absolute;
			left: 0;
			bottom: 0;
			font-size: 12px;
			font-weight: 400;
			width: 100%;
			background: #fff;
			height: 100%; 
			justify-content: center;
			align-items: center;
			display:none;
			color:#F04438;
		}
    /*** Start ***/
		#loginModal {
			padding: 10px 20px;
			border-radius: 8px;
			box-shadow: 1px 1px 10px rgba(0,0,0,.2);
			margin-top: 20px;
			background:#f3f4f6;
			position:relative;
		}
		#loginModal h2 {
			font-size: calc(16.5px + (100vw - 640px) / 960 / 2);
			margin-bottom:10px;
		}
		#loginModal .close {
			float:right;
			font-size: 22px;
			cursor: pointer;
			position:absolute;
			top:6px;
			right:10px;
		}
		#loginModal input[type="text"], #loginModal input[type="email"] {
			width: 100%;
			border: 1px solid #ced4da;
			padding: 8px 10px;
			height: inherit;
			border-radius: 8px;
			line-height: 20px;
			margin-bottom:10px;
			outline:none;
		}
		#loginModal button {
			padding: 8px 20px;
			border: none;
			background: #ed4a69;
			color: #fff;
			border-radius: 30px;
			margin: 0 auto;
			cursor:pointer;
		}
		#loginForm {
			text-align:center;
		}
		/*** End ***/
		@keyframes dot-loading-before {
		  0% {
			transform: scale(1, 1);
		  }
		  25% {
			transform: scale(1, 1.5);
		  }
		  50% {
			transform: scale(1, 0.67);
		  }
		  75% {
			transform: scale(1, 1);
		  }
		  100% {
			transform: scale(1, 1);
		  }
		}
		@keyframes dot-loading {
		  0% {
			transform: scale(1, 1);
		  }
		  25% {
			transform: scale(1, 1);
		  }
		  50% {
			transform: scale(1, 1.5);
		  }
		  75% {
			transform: scale(1, 1);
		  }
		  100% {
			transform: scale(1, 1);
		  }
		}
		@keyframes dot-loading-after {
		  0% {
			transform: scale(1, 1);
		  }
		  25% {
			transform: scale(1, 1);
		  }
		  50% {
			transform: scale(1, 0.67);
		  }
		  75% {
			transform: scale(1, 1.5);
		  }
		  100% {
			transform: scale(1, 1);
		  }
		}
        @media (max-width: 490px) {
			.chat-input input {
				font-size:16px;
			}
			.chatbot-toggler {
				right: 20px;
				bottom: 20px;
			}
			.chatbot {
				right: 0;
				bottom: 0;
				height: 100%;
				border-radius: 0;
				width: 100%;
			}
			.chatbot .chatbox {
				height: 90%;
				padding: 25px 15px 150px;
			} 
			.chatbot header span {
				display: block;
			}
			.scroll-to-bottom-btn {
				position: fixed;
				right: 20px; /* Adjust the position as needed */
				bottom: 20px; /* Adjust the position as needed */
				background: #724ae8;
				color: #fff;
				border: none;
				border-radius: 50%;
				width: 40px;
				height: 40px;
				font-size: 1.5rem;
				cursor: pointer;
				transition: background-color 0.2s ease, opacity 0.2s ease;
				opacity: 0; /* Initially hidden */
			}
			  
			.scroll-to-bottom-btn:hover {
				background-color: #5924b7;
			}
		}
