.plu-chat-minimized {
	position: fixed;
	bottom: 20px;
	right: 20px;
}

.plu-chat-minimized .plu-chat-open-btn {
	background: #000;
	color: #fff;
	font-family: 'Aleo', serif;
	font-weight: bold;
	font-size: 15px;
	margin: 0;
	padding: 14px;
	border: 0;
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	display: flex;
}

.plu-chat-minimized .plu-chat-open-btn:hover {
	box-shadow: 0 0 20px -5px rgba(0,0,0,0.5);
}

.plu-chat-minimized .plu-chat-open-btn .chat-text-wrapper {
	display: none;
}

.plu-chat-minimized .plu-chat-open-btn .chat-text-wrapper .chat-text {
	font-size: 14px;
}

.plu-chat-minimized .plu-chat-open-btn .chat-text-wrapper .chat-epass-text {
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	margin-top: 3px;
}

.plu-chat-minimized .plu-chat-open-btn .chat-icon {
	transition: color 0.3s ease-in-out;
	font-size: 17px;
}

.plu-chat-minimized .plu-chat-open-btn:hover .chat-icon {
	color: #fbba37;
	cursor: pointer;
}

/* responsive styling */

@media only screen and (min-width: 48em) {
	
	.plu-chat-minimized .plu-chat-open-btn .chat-text-wrapper {
		display: flex;
		flex-direction: column;
		margin-right: 10px;
		text-align: right;
	}
	
	.plu-chat-minimized .plu-chat-open-btn .chat-icon {
		font-size: 22px;
	}	
	
}