.external-website-btn {
	background: #64d3ff;
	margin-top: 20px;
	padding: 15px 40px;
	text-align: center;
}
.external.elementor-kit-9 a {
	color: #fff !important;
}

.external-website-btn:hover {
	background: #1d3245;
	padding: 15px 40px;
}


/* Styles for message bubble */
        .message-bubble {
          display: flex;
          align-items: center;
          margin: 10px 0;
        }

        .bot-icon {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          margin-right: 10px;
        }

        .message-content {
          background: #e3e7ee;
          font-size: small;
          color: black;
          padding: 10px;
          border-radius: 10px;
          max-width: 70%;
          word-wrap: break-word;
        }

        .chat-bot-message {
          display: flex;
          justify-content: flex-start;
        }

        .widget {
        display: none;
        width: 375px; /* Increased width */
        height: 675px; /* Increased height */
        right: 15px;
        bottom: 5%;
        position: fixed;
        background: #fff;
        border-radius: 10px 10px 10px 10px;
        box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 5px 0 #00000096;
        }

        .content {
        transition: 0.2s;
        display: none;
        width: 375px; /* Adjusted width to match the new widget width */
        height: 675px; /* Adjusted height to match the new widget height */
        right: 15px;
        bottom: 5%;
        position: fixed;
        background: white;
        border-radius: 10px 10px 10px 10px;
        box-shadow: 0px 2px 10px 1px #b5b5b5;
        }        

        .chats {
        /* display: none; */
        height: 567px;
        padding: 2px;
        border-radius: 1px;
        overflow-y: scroll;
        margin-top: 1px;
        transition: 0.2s;
        }

        .usrInput {
          box-shadow: none;
          resize: none;
          outline: none;
          overflow: hidden;
          font-family: Lato;
          width: calc(100% - 50px);
          padding: 10px;
          margin: 10px;
          border-radius: 5px;
          border: 1px solid #ddd;
        }

        .keypad {
          background: white;
          height: 50px;
          position: absolute;
          bottom: 0px;
          width: 100%;
          padding: 5px;
          border-radius: 0px 0px 10px 10px;
          border-top: 1px solid #e3e7ee;
          display: flex;
          align-items: center;
        }
        
        .chat_header_title {
            color: white;
            float: left;
            margin-top: 3%;
            margin-left: 42%;
        }
        
        #sendButton {
          height: 40px;
          width: 10px;
          border-radius: 50%;
          display: inline-block;
          text-align: center;
          padding: 5px;
          font-size: 20px;
          cursor: pointer;
          color: #060dcfc7;
        }

        /* .chats {
          height: 385px;
          padding: 2px;
          border-radius: 1px;
          overflow-y: scroll;
          margin-top: 1px;
          transition: 0.2s;
        } */

        div.chats::-webkit-scrollbar {
          width: 0px; /* remove scrollbar space */
          background: transparent; /* optional: just make scrollbar invisible */
        }