#chatbox_trigger{
	position:fixed;
	bottom:10px;
	right:1rem;
	width:60px;
	height:60px;
	z-index:1000;
	background-image: linear-gradient(-225deg,#ffc371 20%,#ff5f6d);
	cursor: pointer;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
} 
#chatbox_trigger:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: transparent;
	background-image: url("//desarrollo.geekvibes.mx/isaac/chatbot/chatbot_open.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px;
} 
#chatbox_trigger.opened:after{
	background-image: url("//desarrollo.geekvibes.mx/isaac/chatbot/chatbot_close.svg");
}

#chatbox_container{
	position:fixed;
	bottom:80px;
	right:10px;
	width:370px;
	height:400px;
	z-index:10000;
	right:1rem;
} 
#chatbox_container iframe{
	width:100%; 
	height:100%; 
	border:none;
}