.widget {
	display: none;
	width: 335px;
	right: 15px;
	height: 420px;
	bottom: 5%;
	position: fixed;
	background: #f6f6f6;
	border-radius: 15px 15px 15px 15px;
	box-shadow: 0px 2px 10px 1px #b5b5b5;
}

.chat_header {
	height: 12%;
	background: #fd5602;
	/* #6072e6 */
	border-radius: 15px 15px 0px 0px;
	padding-top: 15px;
	font-size: 16px;
}

.blink {
    animation: blink 1s step-start 0s infinite;
}
@keyframes blink {
    80% {
        visibility: hidden;
    }
}
.chats {
	height: 300px;
	padding: 5px;
	border-radius: 1px;
	overflow-y: scroll;
	transition: 0.2s;
	scroll-behavior: smooth;
}

div.chats::-webkit-scrollbar {
	width: 0px;
	/* remove scrollbar space /
    background: transparent;
    / optional: just make scrollbar invisible */
}


/* Track */

div.chats::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}


/* Handle */

div.chats::-webkit-scrollbar-thumb {
	background: #647aed;
}


/* Handle on hover */

div.chats::-webkit-scrollbar-thumb:hover {
	background: #b30000;
}

#close {
	
	cursor: pointer;
	margin-right: 10px;
}

.clearfix {
	margin-top:1.5rem;
}

.message {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 0;
	margin-left: 0;
}

.botAvatar {
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	float: left;
	margin-top:1rem;
	margin-left: 5px;
}

.botMsg {
	text-align: justify;
	float: left;
	background: #ffffff;
	box-shadow: 2px 5px 5px 1px #efeef5;
	border: 1px solid #ffffff;
	margin-left: 0.5em;
	padding: 0.6em 1em;
	border-radius: 1.5em;
	max-width: 75%;
	min-width: 25%;
	font-size: 13px;
	font-weight: 500;
}

.userMsg {
	animation: animateElement linear 0.2s;
	animation-iteration-count: 1;
	word-wrap: break-word;
	padding: 0.6em 1em;
	float: right;
	margin-right: 0.5em;
	background: rgb(82, 82, 82);
	color: white;
	border-radius: 1.5em;
	margin-bottom: 0.15em;
	font-size: 13px;
	font-weight: 500;
	max-width: 55%;
	min-width: 25%;
	line-height: 1.5em;
}
.userNameTime {
    justify-content: space-between;
}

.userName {
	text-align: right;
	color: gray;
    font-size: 10px;
	float: right;
	margin-right: 2.2rem;
	margin-top: 0.5rem;
}

.botName {
    color: gray;
	text-align: left;
    font-size: 10px;
	margin-left: 2.5rem;
}



.userAvatar {
	animation: animateElement linear 0.3s;
	animation-iteration-count: 1;
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	float: right;
	margin-top:0.5rem;
	margin-right: 5px;
	
}

.singleCard {
	/* height: 200px; */
	/* padding-left: 10%; */
	/* padding-right: 10px; */
	text-align: center;
}

.suggestions {
	padding: 5px;
	/* width: 80%; */
	border-radius: 10px;
	background: transparent;
}

.cardsImage {
	width: 100%;
	height: 80%;
	border-radius: 10px 10px 0px 0px;
}

.keypad {
	display: flex;
	align-items: center;
	height: 45px;
	position: absolute;
	bottom: 5px;
	width: 320px;
}

.usrInput {
	background: #fff;
	padding: 0.5em;
	width: 90%;
	color: #fd5602;
	margin-left: 4%;
	border-radius: 20px;
	border: 0;
	padding-left: 15px;
	height: 40px;
}

input:focus {
	outline: none;
}

video:focus {
	outline: none;
}

.menuTitle {
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.menu {
	padding: 5px;
}

.menuChips {
	margin-left: 1.5rem;
	display: block;
	background:transparent;
	border: 1px solid black;
	color: black;
	text-align: center;
	padding: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	border-radius: 15px;
	font-size: 12px;
	max-width: 65%;
	min-width: 25%;
}
.menuChips:hover{
	background-color: #fd5602;
	border: 1px solid #fd5602;
	color: white;
	font-size: 12px;
}

.imgcard {
	object-fit: cover;
	width: 80%;
	height: 90%;
	border-radius: 10px 10px 10px 10px;
	text-align: center;
}

.chip {
	background-color: #6072e6;
	color: #fff;
	font-weight: normal;
	font-weight: 0;
	text-align: center;
}

@keyframes animateElement {
	0% {
		opacity: 0;
		transform: translate(0px, 10px);
	}
	100% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
}

#imgProfile {
	padding: 10px;
	border-radius: 30px;
	text-decoration: none;
    transform: scale(1) perspective(0px);
	background: #fd5602;
	color: #fff;
	font-size: 1.6em;
	font-weight: 600;
	text-transform: uppercase;
	box-shadow: 0 0 0 0 #fd5602;
	animation: glow 3s ease-out infinite;
}
@keyframes glow {
	0% {
	  box-shadow: 0 0 0 0 #fd5602;
	}
	
	50% {
	  box-shadow: 0 0 30px 0 #fd5602;
	}
  }
  

.profile_div {
	/* display: none; */
	bottom: 100px;
    right:30px;
    position: fixed;
    z-index: 99;
}

.profileIcon {
	height: 15%;
	align-items: center;
	float: left;
	margin-right: 10px;
}

.intro-message {
    animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.message {
    animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.name {
    animation: fadein 3s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.send-icon {
	font-size: 26px;
	padding-right:1rem;
	color: #fd5602; /* Green */
	cursor: pointer;
	margin-left: 10px;
	transition: all 0.3s ease-in-out;
 }
 .send-icon:hover {
    transform: scale(1.2);
}
 .warning {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}

#getStarted {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#userName {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
}
