.vetero-to-top {
	position: fixed;
	z-index: 99999;
	right: 28px;
	bottom: 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 56px;
	height: 56px;
	margin: 0;
	padding: 0;

	color: #fff;
	background: #2f4f85;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 10px 28px rgba(20, 38, 70, 0.28);

	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.vetero-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vetero-to-top:hover,
.vetero-to-top:focus-visible {
	color: #fff;
	background: #a92442;
	outline: none;
	box-shadow: 0 12px 30px rgba(169, 36, 66, 0.3);
}

.vetero-to-top i {
	display: block;
	margin: 0;
	color: inherit;
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
}

@media (max-width: 700px) {
	.vetero-to-top {
		right: 17px;
		bottom: 17px;
		width: 50px;
		height: 50px;
	}
}
