#ai_chat_form .ai_question{
    display: flex;
	justify-content: flex-end;
	gap: 10px;
	flex-direction: row;
}

#ai_chat_form .ai_request{
    display: flex;
    justify-content: flex-start;
	gap: 10px;
}

#ai_chat_form .dialog{
	
}

#ai_chat_form button:disabled,#ai_chat_form button[disabled]{
  background-color: #cccccc;
  border: 1px solid #cccccc;
  color: #666666;
  cursor: no-drop;
}

#ai_chat_form .ai_example{
    border: 1px solid #00b0ab;
	background: #d9f3f2;
    padding: 8px 10px 7px;
    line-height: 1.27777778;
    border-radius: 5px;
    cursor: pointer;
    -moz-user-select: none;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    white-space: break-spaces;
    margin-bottom: 5px;
}

#ai_chat_form .ai_example:focus,#ai_chat_form .ai_example:hover{
	color: #fff;
    background: #00b0ab;
}

ul.ai_questions{
	list-style: disc;
}

#ai_chat_form textarea{
    border: 0;
    resize: none;
	font-size: 16px;
	border-radius: 10px;
	padding: 15px;
	border: 1px solid #e5e5e5;
	height: 55px;
	max-height: 200px;
}

#ai_chat_form .input_block{
    display: flex;
    gap: 10px;
    margin-top: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

#ai_chat_form .button_block button{
    border-radius: 50px;
    height: 55px;
    width: 55px;
}

#ai_chat_form .ai_request.ai_request_pre span{
	white-space: normal;
}

#ai_chat_form span{
	white-space: pre-wrap;
    font-size: 1em;
    margin: 0;
    border-radius: 10px;
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

#ai_chat_form .ai_error{
    display: flex;
    justify-content: flex-start;
	gap: 10px;
}

#ai_chat_form .ai_error span{
	background: #ffd1d6;
    border: 1px solid #ffd1d6;
}

#ai_chat_form .ai_question span{
    background: #fff;
	border: 1px solid #e5e5e5;
}

#ai_chat_form .ai_request span{
    background: #d9f3f2;
	border: 1px solid #d0edec;
}

#ai_chat_form img{
	width: 45px;
    height: 100%;
    border-radius: 50%;
	position: sticky;
    top: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#ai_chat_form .aitext{
	border-radius: 15px;word-break: break-word;    max-width: 80%;
}



.ai-shadow{
	box-shadow: 0 0 15px rgba(0, 0, 0, .07), 0 0 15px rgba(0, 0, 0, .025);
}
.consultant_response{
	margin-bottom: 50px;
}

.consultant_response ul{
    padding: 0 0 0 20px;
    list-style: disc;
}

.ai_request ol{margin-top: 10px;}

.ai_request ol li::marker {
    content: "✓ ";
    font-weight: bold;
}



@media screen and (max-width: 767px) {
	#ai_chat_form .aitext{
		max-width: 100%;
	}
	#ai_chat_form img{
		top: 100px;
	}
}

#ai_chat_form .pre_ai_loader{
    display: block;
    position: relative;
    height: 35px;
	width: 100px;
}

#ai_chat_form .ai_loader{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: calc(50% - 6px);
	top: calc(50% - 2px);
    z-index: 2;
    color: #00b0ab;
    box-sizing: border-box;
    animation: aianimloader 1s linear infinite alternate;}

@keyframes aianimloader {0% {box-shadow:-38px -12px,-14px 0,14px 0,38px 0}33%{box-shadow:-38px 0px,-14px -12px,14px 0,38px 0}66%{box-shadow:-38px 0px,-14px 0,14px -12px,38px 0}100%{box-shadow:-38px 0,-14px 0,14px 0,38px -12px}}
