.live-chat-button {
	cursor: pointer;
	border: 0;
	border-radius: 0;
	outline: 0;
	padding: 0;
	-webkit-appearance: none;
	background: 0 0;
	display: flex;
	align-items: center;
	color: #fff;
	background-color: #fe710d;
	border-radius: 30px 30px 0 0;
	transform: rotate(-90deg);
	transform-origin: bottom right;
	box-shadow: 0 0 12px 1px rgba(0, 0, 0, .25);
	position: fixed;
	right: 0;
	bottom: 32vh;
	padding: 11px 22px 7px;
	z-index: 1000;
	transition: .2s;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: .09em;
	text-transform: uppercase
}

.live-chat-button:focus {
	outline: 0
}

@media (max-width:991px) {
	.live-chat-button {
		bottom: 45vh
	}
}

.live-chat-button::after {
	content: '';
	transform: rotate(90deg);
	display: block;
	width: 21px;
	height: 23px;
	background-image: url(../../../images/live-chat.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 7px
}

.live-chat-button.chat-opened {
	opacity: 0;
	pointer-events: none
}

.live-chat-button.chat-loading {
	opacity: .3;
	pointer-events: none
}