#floating_contact_box {
	background-color: var(--color-white);
	position: fixed;
	z-index: 5;
	right: 0;
	top: 200px;
	top: calc(var(--header-height) + 40px);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.06);
	display: flex;
	justify-content: space-between;
}

#floating_contact_box .button {
	display: none;
	flex-grow: 99;

}

#floating_contact_box #fcb_icons {
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
}

#floating_contact_box .fcb_single_icon {
	width: 50px;
	height: 50px;
	display: block;
	background-color: var(--color-white);
	position: relative;
	transform: translateX(0);
	transition: all 300ms ease;
}

#floating_contact_box .fcb_single_icon:not(:last-of-type)::after {
	content: '';
	position: absolute;
	display: block;
	bottom: 0;
	width: 80%;
	right: 10%;
	height: 0;
	z-index: 1;
	border-top: 1px solid var(--color-table-grey);
}

#floating_contact_box .fcb_single_icon img {
	width: 60%;
	height: 60%;
	display: block;
	object-fit: contain;
	position: absolute;
	top: 20%;
	left: 20%;
	transform: scale(1);
	transition: all 600ms ease;
}

#floating_contact_box .fcb_single_icon:hover img {
	transform: scale(1.15);
}

@media (max-width: 700px) {
	#floating_contact_box {
		width: 100%;
		right: 0;
		top: auto;
		bottom: 0;
	}

	#floating_contact_box .button {
		display: flex;
	}

	#floating_contact_box #fcb_icons {
		flex-direction: row;
	}

	#floating_contact_box .fcb_single_icon {
		width: clamp(55px,20vw,85px);
	}

	#floating_contact_box .fcb_single_icon:not(:last-of-type)::after {
		bottom: 0;
		width: 0;
		height: 100%;
		right: 0;
		border-top: 0;
		border-left: 1px solid var(--color-table-grey);
	}

	#footer {
		margin-bottom: var(--floating_contact_box-height);
	}


}
