.ecoteers-chatbot {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	min-width: 280px;
}

.ecoteers-chatbot .chatbot-trigger {
	position: relative;
	cursor: pointer;
}

.ecoteers-chatbot .chatbot-trigger figure,
.ecoteers-chatbot .chatbot-trigger figure img {
	width: 60px;
	height: 60px;
	border-radius: 50px;
}

.ecoteers-chatbot .chatbot-trigger figure {
	margin-left: auto;
}

.ecoteers-chatbot .chatbot-trigger figure img {
	object-fit: cover;
}

.ecoteers-chatbot .chatbot-trigger span {
	position: absolute;
	top: 50%;
	right: 0;
	background: #fff;
	transform: translateY(-50%);
	padding: 18px 75px 18px 15px;
	border-radius: 50px;
	z-index: -1;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
}	

.ecoteers-chatbot .chatbot-options {
	opacity: 0;
	position: relative;
	top: 20px;
	transition: all .3s ease-in-out;
	z-index: -1;
	max-width: 420px;
}

.ecoteers-chatbot .chatbot-options .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	flex-flow: wrap-reverse;
}

.ecoteers-chatbot .chatbot-options a {
	padding: 0 10px;
	height: 40px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	transition: all .3s ease-in-out;
	position: relative;
	visibility: hidden;
	margin-bottom: 15px;
	text-decoration: none;
	font-size: 14px;
	color: #fff;
}

.ecoteers-chatbot .chatbot-options a svg {
	width: 15px;
	margin-right: 5px;
}

.ecoteers-chatbot .chatbot-options a svg path {
	fill: #fff;
}

.ecoteers-chatbot .chatbot-options a:hover {
	transform: scale(1.1);
}

.ecoteers-chatbot.open .chatbot-options {
	opacity: 1;
	top: 0px;
}

.ecoteers-chatbot.open .chatbot-options a {
	visibility: visible;
}