.chat {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	width: 100%;
	max-width: 350px;
}
#chat_logo {
	width: 250px;
	display: flex;
	background: #00b05a;
	justify-content: space-around;
	padding: 5px 15px;
	border-radius: 50px;
	cursor: pointer;
	margin-bottom: 10px;
	align-items: center;
	height: 60px;
}
#chat_logo h5{
	color:#fff;
}
#chat_content {
	border-radius: 10px;
	display: flex;
	flex-flow: column wrap;
	justify-content: start;
	padding: 10px;
	border: 1px solid #ccc;
	box-shadow: 0px 2px 10px #3333;
	align-content: center;
	text-align: left;
	background: #fff;
}
#chat_row{
	justify-content: space-evenly;
	display: flex;
	align-items: center;
	align-content: center;
	flex-flow: row wrap;
	border-radius: 50px;
	padding: 10px 0px;
}
.chat_label{
	margin-bottom: 0px !important;
}
#chat_enviar {
    background: #00b05a;
    border-radius: 50px;
    padding: 15px 20px;
    border: none;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}
#chat_content input[type='text'] {
    margin-bottom: 10px;
    margin-top: 5px;
    text-align: center;
    border-radius: 50px;
    padding: 10px;
    height: auto;
}
.bg-danger {
	background: #ff000033 !important;
}