/* Live Chat Box */
.live-chat-box {

	@media only screen and ( min-width:$large-screen ) {
		display: block;
	}

	display: none;

	$modal-left-position: 1rem;
	$modal-bottom-position: 0;

	position: fixed;
	bottom: $modal-bottom-position;
	right: $modal-left-position;
	z-index: 9998;	// One beneath modal contact form

	transition: all .15s;
	font-size: 1.2em;
	max-width: 30%;
	box-shadow: -5px -5px 5px rgba(0,0,0,.2);

	// Title Bar
	.title-bar {
		cursor: pointer;

		background: white;
		color: $base-accent-color;
		line-height: 1;
		margin-bottom: 0;
		padding: 2rem;
		border-top: 3px solid $base-accent-color;
		border-bottom: 1px solid rgba(81, 135, 74,.2);

		i {
			float: right;
			margin-left: 2rem;

			&.fa-minus-circle {
				display: none;
			}
		}
	}

	// Live Chat Content
	.live-chat-content {
		display: none;
		padding: 1rem;
		background: white;
		font-size: .9em;
	}
}
