@keyframes boobleAnim {
	0% {
		transform: scale(0);
		transform-origin: 0 0;
	}
	70% {
		transform: scale(1);
		transform-origin: 0 0;
	}
	100% {
		transform: scale(.9);
		transform-origin: 0 0;
	}
}

body::-webkit-scrollbar{
	width:10px;
}
body::-webkit-scrollbar-track{
	background:#f1f1f1;
}
body::-webkit-scrollbar-thumb{
	background:#888;
}
body::-webkit-scrollbar:hover{
	background:#555;
}

#chatbot{
	background-color: unset;
	text-align: center;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
#chatbot:before{
	content: '';
	display: block;
	background: linear-gradient(to bottom, #371951, rgba(71,37,95,0));
	top: 0;
	left: 0;
	width: 100vw;
	height: 70px;
	position: absolute;
	z-index: 9;
}
#chatbot img{
	margin: auto;
}
#chatbot small{
	display: block;
	font-size: 9px;
}
#chatbot .botContainer{
	display: none;
	background: unset;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0;
	position: relative;
}
@media only screen and (min-width: 760px) and (orientation: portrait) {
	#chatbot .botContainer{
		padding: 0 10%;
	}
}
@media only screen and (min-width: 1280px) {
	#chatbot .botContainer{
		padding: 0 10%;
	}
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot .botContainer{
		padding: 0 15%;
	}
}
#chatbot .botHeader{
	background: unset;
	padding: 0;
	position: absolute;
	display: block;
	width: 100px;
	height: auto;
	right: 2%;
	top: 5%;
}
#chatbot #botBody{
	margin: 0;
	padding: 0;
	height: 100vh;
}
#chatbot #botBody>:first-child{
	background: unset;
}
#chatbot #botBody .chatLog{
	display: block;
	height: 60vh;
}

#chatbot #botBody .webchat__stackedLayout__avatar{
	margin: 0;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__stackedLayout__avatar{
		margin: 0 30px;
	}
}
#chatbot #botBody .webchat__stackedLayout__avatar .webchat__defaultAvatar, #chatbot #botBody .webchat__stackedLayout__avatar .webchat__defaultAvatar .webchat__imageAvatar{
	width: 35px;
	height: 35px;
}
@media only screen and (min-width: 1024px) {
	#chatbot #botBody .webchat__stackedLayout__avatar .webchat__defaultAvatar, #chatbot #botBody .webchat__stackedLayout__avatar .webchat__defaultAvatar .webchat__imageAvatar{
		width: 80px;
		height: 80px;
	}
}
#chatbot #botBody .webchat__stacked-layout__message{
	max-width: 100%;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__stacked-layout__message{
		max-width: 80%;
	}
}
#chatbot #botBody .webchat__bubble__content{
	border: unset;
	border-radius: 0px 20px 20px 20px;
	background-color: #FFF;
	color: #848484;
	width: fit-content !important;
	font-size: 16px;
	text-align: left;
	line-height: 20px;
	padding: 10px;
	margin: 10px 0 0 10px;
	animation: boobleAnim .7s ease-in-out forwards;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__bubble__content{
		font-size: 20px;
		line-height: 24px;
		margin: 10px 0 0;
	}
}
#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard{
	background: unset !important;
}
#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard img{
	width: 250px !important;
}
#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard img.ac-imge{
	width: fit-content !important;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard img.ac-imge{
		width: 400px !important;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
	#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard img.ac-imge{
		width: 250px !important;
	}
}
#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard .ac-textBlock{
	color: #848484 !important;
	font-size: 16px !important;
	text-align: left !important;
	line-height: 20px !important;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__bubble__content .ac-container.ac-adaptiveCard .ac-textBlock{
		font-size: 20px !important;
		line-height: 24px !important;
	}
}
#chatbot #botBody .webchat__typingIndicator{
	background-color: #FFF;
	background-image: url("./images/chat_3dots.gif");
	background-repeat: no-repeat;
	background-size: 100px 50px;
	border-radius: 0px 20px 20px 20px;
	width: 100px;
	height: 50px;
	margin: 0 40px;
	padding: 20px;
	box-sizing: border-box;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__typingIndicator{
		margin: 0 140px;
	}
}
#chatbot #botBody .webchat__bubble--from-user .webchat__bubble__content{
	border-radius: 20px 0 20px 20px;
	background-color: #00B487;
	border: unset;
	color: #FFF;
}
.webchat__initialsAvatar.webchat__initialsAvatar--fromUser{
	background-color: rgba(200, 200, 200, 0.5) !important;
}
#chatbot #botBody ul{
	justify-content: center;
	flex-flow: column;
}

@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody ul{
		flex-flow: row;
	}
}
#chatbot #botBody ul li button{
	background-color: #00B487;
	border: none;
	border-radius: 50px;
	color: white;
	font-size: 24px;
	font-family: sans-serif;
	height: auto;
	margin: 0 20px;
	padding: 16px 30px 14px;
	text-transform: uppercase;
}
#chatbot #botBody ul li:nth-child(2) button{
	border: 2px solid white;
	background-color: transparent;
}
#chatbot #botBody .webchat__carousel_indented_content .webchat__carouselFilmStrip__avatar .webchat__defaultAvatar, .webchat__initialsAvatar, .webchat__imageAvatar{
	width: 35px;
	height: 35px;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botBody .webchat__carousel_indented_content .webchat__carouselFilmStrip__avatar .webchat__defaultAvatar, .webchat__initialsAvatar, .webchat__imageAvatar{
		width: 80px;
		height: 80px;
	}
}
#chatbot #botBody .webchat__carousel_indented_content .content ul{
	flex-flow: row;
}
#chatbot #botBody .webchat__carousel_indented_content .content ul li button{
	background-color: #00B487;
	border: none;
	border-radius: 50px;
	color: white;
	font-size: 24px;
	font-family: sans-serif;
	height: auto;
	margin: 0 20px;
	padding: 16px 30px 14px;
	text-transform: uppercase;
}
#chatbot #botBody .webchat__carousel_indented_content .content ul li button:nth-child(2){
	border: 2px solid white;
	background-color: transparent;
}
#chatbot #botBody .webchat__carousel_indented_content~ button{
	padding: 20px;
	margin: 0 10px;
	width: 40px;
	top: 50%;
	transform: translateY(-100%);
}
#chatbot #botBody .webchat__send-box__main{
	background: unset;
	border: none;
	color: white;
	display: block;
	max-width: 100px;
	max-height: 100px;
	margin: auto;
}
#chatbot #botBody .webchat__send-box__main form{
	display: none;
}
#chatbot #botBody .webchat__send-box__main input{
	background: unset;
	color: white;
}
#chatbot #botBody .webchat__send-box__main input::placeholder {
	color: rgba(255,255,255, 0.7);
}
#chatbot #botContainer #botBody .webchat__send-box__main div[aria-controls="webchatSendBoxMicrophoneButton"]{
	display: block;
	max-width: 100px;
	max-height: 100px;
}
#chatbot #botContainer #botBody .webchat__send-box__main div[aria-controls="webchatSendBoxMicrophoneButton"] button{
	background: url('./images/microphone_speaker.svg') no-repeat;
	background-size: contain;
	height: 80px;
	width: 80px;
	box-shadow: none;
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
	#chatbot #botContainer #botBody .webchat__send-box__main div[aria-controls="webchatSendBoxMicrophoneButton"] button{
		height: 100px;
		width: 100px;
	}
}
#chatbot #botContainer #botBody .webchat__send-box__main div[aria-controls="webchatSendBoxMicrophoneButton"] button svg{
	display: none;
}
#chatbot #botContainer #botBody .webchat__send-box__main div[aria-controls="webchatSendBoxMicrophoneButton"] button .webchat__icon-button__shade{
	display: none;
}
#chatbot #botBody ul li button[aria-label="Esquerdo"], #chatbot #botBody ul li button[aria-label="Direito"] {
	padding: 30px;
	margin: 10% 0 0;
}
#chatbot #botBody .webchat__send-box__main .dictating{
	display: none;
}

#chatbot #botBody .webchat__basic-transcript{
	justify-content: flex-end;
}

#chatbot #botBody .webchat__basic-transcript .webchat__basic-transcript__scrollable{
	display: block;
	height: auto;
}