@media(max-width: 768px){
	a.chat-btn span {
		display: none;
	}
	
	a.chat-btn svg {
		height: 2em !important;
		width: 2em !important;
	}
	
	a.chat-btn {
		border-radius: 50% !important;
		padding: .75em !important;
		bottom: 3% !important;
		right: 5% !important;
	}

	.mobile-only {
		display: block;
	}

	.desktop-only {
		display: none !important;
	}
}

.mobile-only {
	display: none !important;
}

.desktop-only {
	display: block;
}

.scrolled {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	background: white !important;
	padding-bottom: .5em !important;
	padding-top: .5em !important;
	transition: .3s;
}

a.chat-btn {
	border-radius: .5em;
	display: none;
	background-color: white;
	text-decoration: none;
	color: var(--my-blue);
	padding: .75em 1em;
	z-index: 9991;
	position: fixed;
	bottom: 4%;
	right: 2%;
}

.chat-btn:hover {
	background: var(--my-blue);
	color: white;
}

.chat-btn svg {
	height: 1.5em;
	width: 1.5em;
}