.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
	font-size: 32px;
	padding-top: 12px;
	padding-left: 2px;
}

.contactActions {
	position: fixed;
	bottom: 35px;
	right: 35px;
}

.contactButton {
	height: 60px;
	width: 60px;
	background-color: #ffae34;
	border-radius: 50%;
	display: block;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 1;
}

.contactButton i {
	font-size: 22px;
}

.contactButtons {
	position: absolute;
	width: 100%;
	bottom: 120%;
	text-align: center;
}

.contactButtons a {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	text-decoration: none;
	margin: 10px auto 0;
	line-height: 1.15;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	position: relative;
	box-shadow: 0 0 5px 1px rgba(51, 51, 51, 0.3);
}

.contactButtons a:hover {
	transform: scale(1.05);
}

.contactButtons a:nth-child(1) {
	background-color: #ff5722;
	transition: opacity 0.2s ease-in-out 0.3s, transform 0.15s ease-in-out;
}
.contactButtons a:nth-child(2) {
	background-color: #03a9f4;
	transition: opacity 0.2s ease-in-out 0.25s, transform 0.15s ease-in-out;
}
.contactButtons a:nth-child(3) {
	background-color: #4caf50;
	transition: opacity 0.2s ease-in-out 0.2s, transform 0.15s ease-in-out;
}
.contactButtons a:nth-child(4) {
	background-color: #f44336;
	transition: opacity 0.2s ease-in-out 0.15s, transform 0.15s ease-in-out;
}

.contactActions a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.contactToggle {
	-webkit-appearance: none;
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
	z-index: 2;
	transition: box-shadow 0.2s ease-in-out;
	box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

.contactToggle:hover {
	box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
}

.contactToggle:checked ~ .contactButtons a {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px) {
	.contactActions {
		position: fixed;
		bottom: 15px;
		right: 15px;
	}

	body.archive .contactActions {
		bottom: 55px !important;
	}

}
