* {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
	font-weight: 100;
}

/* body {
	background: rgb(39, 119, 180);
} */

/* .chatbox {
    
    width: 500px;
    min-width: 390px;
    height: 600px;
    background: white;
    padding: 25px;
    margin: 0px auto 0px auto;
    box-shadow: 0 3px #ccc;

} */
.chatlogs {
	padding: 5px;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
}

Styling the scroll bar
.chatlogs::-webkit-scrollbar {
	width: 10px;
}

.chatlogs::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: rgba(0, 0, 0, .1);
}

.chat {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin-bottom: 10px;
}

.user-photo img {
	/* background-color: rgb(39, 119, 180); */
	padding: 8px;
	width: 100%;
	width: 50px;
}

.chat .chat-message {
	padding: 10px;
	margin: 15px 0px 0px -15px;
	font-size: 13px;
	/* word-wrap:normal; */
	overflow-wrap: break-word;
}

.chat .chat-message:hover {
	transform:scale(1.009);
}
.chat .relatedchat-message {
	padding: 10px;
	margin: 15px 0px 0px -15px;
	font-size: 13px;
	/* word-wrap:normal; */
	overflow-wrap: anywhere;
}

.user-photo {
	width: 70px;
	height: 70px;
	/* background: #f2f2f2; */
	border-radius: 50%;
	overflow: hidden;
}

.friend .chat-message {
	color: black;
	width: auto;
	max-width: 80%;
	background: #9ec3ea6e;/* #CCE5FF; */
	border-radius: 0px 20px 20px 20px;
	
}
.friend .relatedchat-message {
	color:black;
	width: auto;
	max-width: 80%;
	background: #cce6ff;/* #CCE5FF; */
	border-radius: 0px 20px 20px 20px;
	
}


.self .chat-message {
	color: black;
	max-width: 80%;
	width: auto;
	margin: 5px 0 5px auto;
	border-radius: 20px 20px 0px 20px;
	background: #E0E0E0/*#3882CB/*#f8e896/* rgb(128, 128, 128) */;
	overflow-wrap: break-word;
}

.headerBar {
	font-size: 20px;
	color: white;
	padding: 0px;
	width: 350px;
	min-width: 350px;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	margin: -60px auto 0px auto;
	background: #0e74dcc7/*#3882CB/*#045FB4/* rgb(226, 118, 30) */;
	border-radius: 10px 10px 0px 0px;
}

.headerBar .title {
	margin: 18px 0px 0px 0px;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
}

.headerBar .sub-title {
	margin: -28px 0px 0px 80px;
	font-size: 14px;
	color:rgb(247, 247, 247);
}

.headerBar .user-photo {
	margin: 0px 0px 0px 10px;
}

.headerBar .user-photo img {
	width: 100%;
}

.headerBar .minimize-ico {
	margin: -45px 0px 0px 300px
	
}

.headerBar .minimize-ico img {
	width: 30px;
	height: 30px;
}

.headerBar .cancle-ico {
	margin: -65px 0px 0px 303px
	
}

.headerBar .cancle-ico img {
	width: 23px;
	height: 23px;
}

.chat-form {
	margin: 0px auto 0px auto;
	display: flex;
	/* width: 500px; */
	width: 350px;
	min-width: 350px;
	align-items: flex-start;
	overflow: auto;
	background: rgb(244, 243, 244);
	border-radius: 0 0 10px 10px;
	border-top: 5px solid rgb(212, 212, 212);
}

#inputDiv {
	width: 75%;
	margin-right: 15px;
}

/* .chat-form textarea {
	padding: 5px 5px 5px 15px;
	background: #fbfbfb;
	width: 100%;
	min-height: 5px;
	border: 2px solid lightblue;
	border-radius: 20px;
	resize: none;
	font-size: 18px;
	color: #000;
	margin: 15px 0px 15px 10px;
	display: block;
	overflow: hidden;
	box-shadow: none;
	outline: none;
} */

#textbox {
	padding: 0px 5px 0px 15px;
	background: #fbfbfb;
	width: 95%;
	min-height: 5px;
	border: 2px solid lightblue;
	border-radius: 20px;
	resize: none;
	font-size: 15px;
	color: #000;
	margin: 5px 0px 0px 10px;
	display: block;
	overflow: hidden;
	box-shadow: none;
	outline: none;
}

.chat-form textarea:focus {
	background: #fff;
}

#chat-form-buttons {
	margin: auto;
}

/* Old Orange button for speaking, now we have an icon of a microphone
.chat-form button {
    height: 65px;
    background: rgba(255, 153, 0, .7);;
    padding: 5px 15px;
    font-size: 30px;
    color: white;
    border: none;
    margin: 0 10px;
    border-radius: 3px;
    box-shadow: 0 3px 0 rgba(255, 153, 0, .7);;
    cursor: pointer;
} */
.chat-form button:hover {
	background: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
}

.gif img {
	margin: 10px;
	border-radius: 20px;
}

.buttonResponse {
	color: white;
	max-width: 80%;
	width: fit-content;
	margin: 5px 0 5px auto;
	border-radius: 20px 20px 0px 20px;
	background: rgb(64, 172, 246);
	overflow-wrap: break-word;
	font-size: 18px;
	padding: 10px;
	margin: 20px 5px;
	float: left;
}

.buttonResponse:hover {
	background: rgb(100, 200, 255);
}

#switchInputType {
	max-width: 40px;
	max-height: 40px;
	visibility: hidden;
}

#buttonDiv {
	margin: 0 auto;
	width: inherit;
}

.chatbox {
	background: white;
	background-repeat: no-repeat;
	background-size: 180px 180px;
	background-position: center;
	padding: 0;
	box-sizing: border-box;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	position: relative;
	/* height: 605px;
	width: 500px; */
	
	height: 400px;
	width: 350px;
	
	/* display: flex; */
	flex-direction: column;
	box-shadow: 0 3px #ccc;
	background-position-x: center
}

/* ul {
	padding: 0;
	border: .5px solid #ddd;
	bottom: 14px;
	max-height: 150px;
	font-size: 15px;
	overflow-y: scroll;
	overflow-x: hidden;
	background-color: #fefcda;
	width: 8%;
	box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, .06);
	position: absolute;
	left: 64%;
	top: 72%;
	bottom: -34%;
	border-radius: 15px 15px 0 0
}

li {
	cursor: pointer;
	padding: 0;
	position: relative;
	display: block;
	padding: 5px 15px;
	margin-bottom: -1px;
	background-color: #fff;
	border: .5px solid #ddd
} */

span.ui-helper-hidden-accessible {
	visibility: hidden;
}
;
#chOption {
	padding: 0;
}

.chat-option .option {
    position: relative;
    left: 15%;
    top: 12%;
    display: inline-block;
    height: 15%;
    background: rgb(252, 251, 250);
    border-color: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
    border-radius: 40px;
    border-style: solid;
    text-align: center;
    color: #111213/*#3882CB/*#045FB4/* rgb(255, 153, 0) */;
    padding: 5px;
    margin: 5px;
    /* max-width: 50%; */
    /* margin-right: 50px; */
    width: 92px;
    font-size: 11px;
    margin-right: 40px;
    margin-left: 18px;
}

.chat-option .option:hover {
	background: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
	border-color: rgb(252, 251, 250);
	color: rgb(252, 251, 250);
}


.bool-res {
	padding: 0;
}

.bool-res .booloption {
	position: relative;
	left: 25%;
	top: 2%;
	display: inline-block;
	height: 15%;
	background: rgb(252, 251, 250);
	border-color: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
    border-radius: 40px;
	border-style: solid;
	text-align: center;
	color: #111213/*#3882CB/*#045FB4/* rgb(255, 153, 0) */;
	padding: 10px;
	margin: 5px;
	max-width: 50%;
	margin-right: 16px;
	font-size: 11px;
}

.bool-res .booloption:hover {
	background: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
	border-color: rgb(252, 251, 250);
	color: rgb(252, 251, 250);
}


#hindiText {
	padding: 0px 5px 0px 15px;
	background: #fbfbfb;
	width: 95%;
	min-height: 5px;
	border: 2px solid lightblue;
	border-radius: 20px;
	resize: none;
	font-size: 16px;
	color: #000;
	position: relative;
	overflow: hidden;
	box-shadow: none;
	outline: none;

}

/* #hinTextBox{
	position: relative;
	left: 3%;
	bottom: 50px;
}

#engTextBox {
	position: static;
	left: 10px;
}

#lang {
	height: 25px;
	width: 40px;
	position : relative;
	left: 8px;
	top: 14px;
}

#send {
	height: 25px;
	width: 25px;
	position : relative;
	left: 10px;
	top: 14px;
}

#rec{
	height: 30px;
	width: 30px;
	position : relative;
	left: -55px;
	top: 14px;
}

#home {
	height: 30px;
	width: 30px;
	position : relative;
	left: 80px;
	top: -20px;
} */

#hindiText{
	position: relative;
	left: 3%;
	/* bottom: 50px; */
	bottom: 28px;
}

#engTextBox {
	position: static;
	/* left: 10px; */
}

#lang {
	/* height: 30px;
	width: 40px; */
	height: 15px;
	width: 25px;
}

#langBtn {
	position : relative;
	left: 43px;
	top: -20px;
	border-style: solid;
}

#send {
	/* height: 30px;
	width: 30px; */
	height: 15px;
	width: 15px;
}

#sendBtn {
	position : relative;
	left: 30px;
	top: -20px;
	border-style: solid;
	/* visibility: hidden; */
}

#rec{
	/* height: 30px;
	width: 30px; */
	height: 15px;
	width: 20px;
}

#recordButton {
	position : relative;
	left: 65px;
	top: -20px;
	border-style: solid;
}

#home {
	/* height: 30px;
	width: 30px; */
	height: 15px;
	width: 15px;
}

#homeBtn {
	position : relative;
	left: 52px;
	top: -20px;
	border-style: solid;
}

#home2 {
	/* height: 30px;
	width: 30px; */
	height: 12px;
	width: 12px;
}

#homeBtn2 {
	position : relative;
	left: 35px;
	top: -30px;
	border-style: solid;
	
}



/* .poweredbylabel {
	position: relative;
	top: -20px;
	left: 400px;
	font-size: 12px;
	color: rgb(255, 153, 0);
} */

.poweredbylabel {
	position: relative;
	top: 0px;
	left: 150px;
	font-size: 11px;
	color: rgb(255, 153, 0);
}

.poweredbylabel:hover {
	color: blue;
}

.queslink {
	border: none;
  	padding: 0;
  	color: #000066;
  	background: none;
  	font-size: 13px;
  	text-align: left;
}

.relatedqueslink {
	border: none;
  	padding: 0;
  	background: none;
  	color: black;
  	font-size: 13px;
  	text-decoration: none;
  	text-align: left;
}



.queslink:hover {
	text-decoration: underline;
	transform:scale(1.05);
	transition-timing-function: ease-out;
}

.relatedqueslink:hover {
	text-decoration: underline;
}

#clickMe {
	/* position:fixed;
    right:10px;
    bottom: 10px; */
    height: 100px;
	width: 100px;
	animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    animation-name: bounce;
    animation-timing-function: ease;
    
}

#clickMe:hover{
    animation-play-state: paused;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* #askMaya{
	position:fixed;
    right:-25px;
    bottom: -15px;
    height: 50px;
	width: 171px;
} */

#task-buttons {
	position: relative;
	top: 0px;
	left: 76px;
}

@media screen and (max-width: 1600px) {

	#tab1 .ac_results {
		width: 100%;
	}
	
}

@media screen and (max-width: 683px) {

	#tab1 .ac_results {
		width: 50%;
	}
	
}

@media screen and (max-width: 595px) {

	#tab1 .ac_results {
		width: 75%;
	}
	
}

#slide{
	height: 500px;
	width: 300px;
}

.time{
	font-size:11px;
	text-align: right;
	
}

.time #suggestedques{
	font-size:11px;
	text-align: left;
	margin-left:50px;
}

.time #rasares{
	font-size:11px;
	text-align: left;
	margin-left:50px;
	margin-top:15px;
}

.visitHome{
	font-size:12px;
	text-align: right;
    height: 30px;
}

.visitHome #suggestedques{
	font-size:12px;
	text-align: left;
	margin-left:50px;
}

.visitHome #visit{
	font-size:12px;
	text-align: left;
	margin-left:58px;
	margin-top:12px;
	color:blue;
}







