body {
    justify-content: center;
    font-family: "Open Sans", sans-serif;
	padding: 0px;
	margin: 0px;
	background-color:#fff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d; 
}

.chatcontainer a {
		color: #FF8200;
}

.chatcontainer a:hover {
	color: #FFB324 !important;
}

.chatcontainer {
	z-index: 99999999;
	position: relative;
}

/* ----------- CHATBOT STYLE--------- */
.chat-circle_robot {
    display: block;
    margin-left: -18px;
    height: 50px;
	max-width: fit-content;
}

#chat-circle {
    background-color: #FFC431;
    position: fixed;
    bottom: 30px;
    right: 2%;
	width: 65px;
	height: 65px;
    border-radius: 50%;
    color: white;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(246, 72, 72, 0.5), 0 3px 1px -2px rgba(246, 72, 72, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    align-items: center;
    justify-content: center;
}

.chat-box {
    display: none;
    background: #FFF;
    position: fixed;
    right: 30px;
    bottom: 50px;
    width: 480px;
	height: 85%;
    max-width: 85vw;
    max-height: 100vh;
    border-radius: 3px;
    box-shadow: 0px 5px 35px 9px #ccc;
	border-radius: 10px;
}

.chat-box-toggle {
    float: right;
    right: 20px;
	top: 20px;
    cursor: pointer;
	width: 14px;
	height: 14px;
	display: flex;
	position: absolute;

}
.chat {
	text-align:right;
	margin-bottom: 0.5rem;
    padding: 1rem;
	border: 2px;
	border-radius: 8px;
	min-width:1em;
	max-width:70%;
	line-height: 1.3;
	overflow:auto;
	display:inline-block;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.175);
}

.chatbot-img {
	width: 50px;
	width: 75px;
	margin-left: -24px;
	margin-top: -13px;
}

.bot {
	background-color:#FFF;
	color: #333;
	text-align:left;
	/*float:left;*/
	clear:both;	
}

.user {
	background-color:#FFB324;
	color: #FFF;
	text-align: left;
	float:right;
	clear:both;
	margin-bottom: 1rem;
}

.mycontainer {
	background-color:#FFFEF5;
	float: center;
	width: 100%;
	max-width:40em;
    margin: 0;
	border-radius: 10px;
	position: absolute;
}

.history {
	background-color:#FFF;
	overflow-y:auto;
	height: 50%;
	padding: 1.6rem;
	font-size: 15px;
}

#choices {
	flex: 0 0 auto;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    line-height: 1.3;
    transition: all 0.1s;
    transform-origin: center center;
	margin: 0 1.6rem 1.6rem 1.6rem;
	height: 25%;
	overflow-y: auto;
	position: absolute;
    bottom: 0;
	right: 0;
    left: 0;
}

.button {
    background-color: #FFF9D8;
    border: none;
    -webkit-transition-duration: 0.3s; /* Safari */
    transition-duration: 0.3s;
    background-image: none;
    box-shadow: none;
	padding: 0.7rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: none;
	text-align: left;
	margin: 2% 0% 0 0%;
	border-radius: 10px;
	width: 100%;
}

.button:hover { 
    background-color: #FFB324;
    background-image: none;
    box-shadow: none;
}

#choices button:last-child {
	margin-bottom: 2%;
}

.headerChat {
	font-size: 120%;
	background-color: #FF8200;
	color:#ffffff;
	text-align: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
    align-items: center;
	flex-wrap: wrap;
	padding-top: 30px;
	justify-content: center;
}

.chatimg {
	float: left;
	width: 70px;
}

.chattitle {
	float: left;
	font-weight: 700;
	margin-left: 8px;
	font-size: large;
}

#answer {
	width: 90%;
    min-height: 2em;
    font-size: 120%;
    padding: 1em;
    text-align: center;
    float: center;
    position: relative;
    left: 0.8em;
    bottom: 0.5em;
    border: none;
    border-radius: 1em;
    margin-top: 1em;
    max-width: 95%;
    margin-right: 0%;
    margin-bottom: 0px;
}

.aoxbot {
	display: flex;
	float: left;
	clear: both;
	margin-bottom: 1rem;
}

.avatar {
	width: 2.5rem;
	height: 2.5rem;
	float: left;
	border-radius: 50%;
	margin-right: 0.75rem;
	background-image: url("/assets/img/avatarrobot.webp");
	background-size: contain;
}
