.anchormenu {
	position: fixed;
	left: 0;
	top: calc(50% - 100px);
	transform: translateY(-50%);
	background-color: #EFEFEF;
	padding: 45px 0;
	width: 110px;
	max-width: max-content;
	z-index: 10;
	transition: width 500ms ease-in-out 0ms, opacity 500ms linear 0ms;
}

.anchormenu li {
	margin-top: 45px;
	overflow: hidden;
	margin-left: 0;
}

.anchormenu li:first-of-type {
	margin-top: 0;
}

.anchormenu li a {
	display: inline-block;
	white-space: nowrap;
	color: #888888;
}

.anchormenu li a:hover {
	color: #C40005;
}

.anchormenu .anchorIcon {
	margin: 0 46px;
}

.anchormenu .anchorIcon i {
	min-width: 18px;
	font-size: 20px;
}

.anchormenu .showOnHover {
	margin-right: 46px;
}

.anchormenu:hover {
	width: 100%;
	max-width: max-content;
}

@media screen and (max-width: 991px) {
	.anchormenu {
		display: none;
		left: 0;
		top: initial;
		transform: none;
		bottom: 0;
		width: 100%;
		background-color: #E4E4E4;
		padding: 15px 0;
		max-width: 100%;
		z-index: 10;
	}

	.anchormenu ul {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
	}

	.anchormenu li {
		margin-top: 0;
		overflow: hidden;
		margin-left: 0;
	}

	.anchormenu li:first-of-type {
		margin-top: 0;
	}

	.anchormenu li a {
		display: inline-block;
		white-space: nowrap;
	}

	.anchormenu .anchorIcon {
		margin: 0 35px;
	}

	.anchormenu .anchorIcon i {
		min-width: initial;
	}

	.anchormenu .showOnHover {
		margin-right: 0;
		display: none;
	}

	.anchormenu:hover {
		width: 100%;
		max-width: 100%;
	}

	body #totop {
		bottom: 68px;
	}
}