
.app-messaging {
    position: fixed;
    left: 0;
    right: 0;
	bottom: 0;
	width: 100%;
	/** sidebar background color */
	background-color: #FAFAFA;
	/** sidebar border color */
	border-top: 1px solid #E1E1E1;
	/** sidebar box shadow */
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.10);
	/** 92px = 10px + sidebar width */
	padding: 10px 10px 10px 92px;
	/** 1001 = 1 - the z-index of the sidebar */
	z-index: 1001;
}

.app-messaging__messages {
	text-align: center;
	font-size: 16px;
	/** sidebar font color */
    color: #8192A0;
}

.app-messaging__actions {
	text-align: center;
}

@media (max-width: 991px) {
	.app-messaging {
		padding: 10px 10px 10px 10px;
	}
}
