* {
	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: 101%;
	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;
}

.user-photo {
	width: 70px;
	height: 70px;
	/* background: #f2f2f2; */
	border-radius: 50%;
	overflow: hidden;
}

.friend .chat-message {
	color: black;
	width: auto;
	max-width: 80%;
	/* background: #fadbd2; */
	background: #e8f4d6;
	border-radius: 0px 20px 20px 20px;
	word-wrap: break-word;
}

.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: #53aa59; */
	background: #53aa59;
	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;
	margin-left: -20px;
}

.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 #c87a64; */
	border: 2px solid #53aa59;
	border-radius: 20px;
	resize: none;
	font-size: 16px;
	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: #c87a64#045FB4/* rgb(255, 153, 0); */
	background: #e8f4d6;
}

.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: 10%;
	top: 12%;
	display: inline-block;
	height: 15%;
	background: rgb(252, 251, 250);
	/* border-color: #c87a64; */
	border-color: #e8f4d6;
    border-radius: 8px;
	border-style: solid;
	text-align: center;
	color: #111213/*#3882CB/*#045FB4/* rgb(255, 153, 0) */;
	padding: 5px;
	margin: 5px;
	max-width: 50%;
	margin-right: 8px;
	font-size: 11px;
}

.chat-option .option:hover {
	/* background: #c87a64; */
	background: #53aa59;
	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);
}


#languagetranslator {
	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;

}
#languagetranslatorM {
	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;
} */

#languagetranslator{
	position: relative;
	left: 3%;
	/* bottom: 50px; */
	bottom: 28px;
}
#languagetranslatorM{
	position: absolute;
	left: 3%;
	/* bottom: 50px; */
	bottom: 57px;
}

#engTextBox {
	position: static;
	/* left: 10px; */
}

#lang {
	/* height: 30px;
	width: 40px; */
	height: 15px;
	width: 25px;
}

#langBtn {
	position: relative;
    left: 85px; /*40 */
    top: -20px;
    border-style: solid;
}

#send {
	/* height: 30px;
	width: 30px; */
	height: 15px;
	width: 15px;
}

#sendBtn {
	position : relative;
	left: 32px; /* 30 */
	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: 19px;
	width: 19px;
	z-index: -1;
}

#homeBtn {
	position: relative;
    left: 12px; /*50 */
    top: -20px;
    border-style: solid; 
}



#home2 {
	/* height: 30px;
	width: 30px; */
	height: 16px;
	width: 16px;
}

#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: 5px;
	left: 80px;
	font-size: 11px;
	color: rgb(255, 153, 0);
}

.poweredbylabel:hover {
	color: blue;
}

.queslink {
	border: none;
  	padding: 0;
  	background: none;
  	/* color: #53aa59; */
  	color: #53aa59;
  	font-size: 13px;
  	text-align: left;
}

.queslink:hover {
	text-decoration: underline;
	transform: scale(1.05);
}

#clickMe {
	/* position:fixed;
    right:10px;
    bottom: 10px; */
    height: 150px;
	width: 150px;
}

/* #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-stamp {
	/* float:right; */
	font-size: 11px;
	color: #ef4c9f;
}

.glyphicon {
	float:right;
	padding-bottom: 0;
	padding-top: 0;
	padding-right: 0;
	padding-left: 1em;
	font-size: 16px;
}

.glyphicon-thumbs-down:hover {
	color:red;
}

.glyphicon-thumbs-up:hover {
	color:green;
}

.show {display: block;}

/* .dropdown-content {
  display: none;
  position: absolute;
  background-color: #684ef5;
  min-width: 60px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
} */

#langDropdown {
  position: absolute;
  display: inline-block;
  margin-top: -128px;
  margin-left: 52px;
  
}

.languagebtn {
	display: block;
    width: 60px;
    height: 25px;
    /* background: #C87a64 ;  #0e74dc #4E9CAF */
    background: #e8f4d6;
    padding: 0px;
    text-align: center;
    border-radius: 0px;
    color: white;
    font-weight: bold;
    line-height: 25px;
}

.languagebtn:hover{
	color:#53aa59;
}

.headerBar .close-ico {
	margin: -75px 0px 0px 325px
	
}

.headerBar .close-ico img {
	width: 23px;
	height: 23px;
	margin-top: 34px;
	margin-left:-12px;
}

#overallfeedback{
    /* position: absolute; */
    display: inline-block;
    /* margin-top: -480px;
    margin-left: 30px; */
}

#overallMsg{
	font-size: 15px;
    font-family: inherit;
    color: #565555;
    font-weight: bold;
}



/* .rating {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.rating > span {
  display: inline-block;
  position: relative;
  width: 1.1em;
  font-size: xxx-large;
  margin-right: 10px;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
   content: "\2605";
   position: absolute;
} */


.rating {
    float:inherit;
    width:260px;
}
.rating span { float:right; position:relative; }
.rating span input {
    position:absolute;
    top:0px;
    left:0px;
    opacity:0;
}
.rating span label {
	/* unicode-bidi: bidi-override;
    display:inline-block;
    width:30px;
    height:30px;
    text-align:center;
    color:#FFF;
    background:#ccc;
    font-size:30px;
    margin-right:2px;
    line-height:30px;
    border-radius:50%;
    -webkit-border-radius:50%; */
    
    unicode-bidi: bidi-override;
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #FFF;
    background: #ccc;
    font-size: 20px;
    margin-right: 2px;
    line-height: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.rating span:hover ~ span label,
.rating span:hover label,
.rating span.checked label,
.rating span.checked ~ span label {
    background:#F90;
    color:#FFF;
}


#overallsubmit{
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  cursor: pointer;
  border-radius: 12px;
}

#dislikesubmit{
  background-color: #4CAF50;
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    cursor: pointer;
    border-radius: 7px;
    position: relative;
    margin-left: 50px;
}

#dislikeRes{
  position: absolute;
  display: inline-block;
  margin-top: -485px;
  margin-left: 150px;
  background-color: #f5e577;
}

#dislikelabel{
	display: inline-block;
	font-size: 13px;
	font-family: sans-serif;
}

/*#myIframes{
	width: 34%;
    height: 386px;
    border: none;
    position: relative;
    margin-left: 700px;
    margin-bottom: 0px;
    margin-top: 295px;
}*/

/*#liveChat{
	position: absolute;
    margin-top: -400px;
    margin-left: 90px;
    background-color: blanchedalmond;
    padding: 20px;
}*/

#liveChatsubmit{
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  border-radius: 12px;
  margin-left: 50px;
  margin-top: 5px;
}

.user-photo-live {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	margin-left: -10px;
	margin-left: -50px;
    margin-top: 10px;
}

.user-photo-live img {
	padding: 8px;
	width: 100%;
	width: 50px;
}

.chat .chat-message-live  {
	padding: 10px;
	margin: 15px -5px 0px -15px;
	font-size: 13px;
	overflow-wrap:anywhere;
}

.friend .chat-message-live {
	color: black;
	width: auto;
	max-width: 80%;
	background: #9ec3ea6e;
	border-radius: 0px 20px 20px 20px;
}

#exitLiveChat {
	position: relative;
    left: 75px;
    top: -20px;
    border: blue;
    color: blue;
	padding: 1px;
    border-radius: 5px;
}

#exitLiveChat:hover{
    color: black;
}

.visitHome{
	font-size:12px;
	text-align: right;
	height:33px
}

.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: #53aa59;
}

#loginsubmit{
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  border-radius: 12px;
  margin-left: 20px;
  margin-top: 5px;
}

#loginClose{
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  border-radius: 12px;
  margin-left: 10px;
  margin-top: 8px;
}
.chat-option .loginoption {
	position: relative;
	left: 10%;
	top: 12%;
	display: inline-block;
	height: 15%;
	background: rgb(252, 251, 250);
	border-color: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
    border-radius: 8px;
	border-style: solid;
	text-align: center;
	color: #111213/*#3882CB/*#045FB4/* rgb(255, 153, 0) */;
	padding: 5px;
	margin: 5px;
	max-width: 50%;
	margin-right: 8px;
	font-size: 11px;
}

.chat-option .loginoption:hover {
	background: #3882CB/*#045FB4/* rgb(255, 153, 0) */;
	border-color: rgb(252, 251, 250);
	color: rgb(252, 251, 250);
}

#logoutBtn {
  /* Set initial background color */
  background-color: rgba(0, 102, 204, 0.7);
  /* Set initial text color */
  color: white;
  /* Set transition for background color */
  transition: background-color 0.3s;
  /* Set initial display to none */
  display: none;
  /* Set button position */
  position: absolute;
  top: -30px;
  right: 19px;
}

#logoutBtn:hover {
  /* Set hover background color */
  background-color: rgba(0, 102, 204, 1);
  /* Set hover text color */
  color: white;
  /* Set blinking animation */
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

#highlighted {
   background-color:rgba(102, 178, 204, 0.5); /* rgba(0, 0, 255, 0.5);*/
}
.dropdown-content {
    position: relative;
    top: 135px;
    right: 48px;
    display: none;
    min-width: 160px;
    z-index: 1;
}

.record_btn:hover {
    transition: 0.15s linear;
    transform: scale( 3 );
}
.error-message
{
	color:red;
}
.mandatory
{
	color:red;
}
#exitLiveChat{
	    background-color: grey; /* Light grey color */
    border: none; /* Remove button border */
    padding: 4px 2px; /* Add padding for better appearance */
    color: #fff; /* Set text color to white */
    font-weight: bold; /* Add bold text for better visibility */
    cursor: pointer; 
}
