.hs-chat-icon {
    background: rgb(255, 89, 35);
    position: fixed;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 35px;
    padding: 12px 17px 12px 15px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Proxima Nova Alt Regular', sans-serif;
    right: 10px;
    z-index: 9999999;
}

.hidden {
	display: none;
}
.fade-out {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.fade-in {
	opacity: 0;
	transition: opacity 1s ease-in-out;
	animation: fadeInStart 0.5s ease-in-out forwards;
}

@keyframes fadeInStart {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
	
@media only screen and (max-width: 600px) {
	.hs-chat-icon {
		display: none !important;
	}
	#hubspot-messages-iframe-container { visibility: hidden !important; position: absolute; }
}

.hs-chat-icon div {
	position: relative;
	display: flex;
}
.hs-chat-icon div img {
    max-width: 34px;
    border-radius: 50px;
    border: 2px solid white;
}
.hs-chat-icon div:after {
	content: '';
	background: green;
	border-radius: 50px;
	width: 12px;
	display: block;
	height: 12px;
	position: absolute;
	right: 0;
	top: 28px;
	border: 2px solid white;
}
