.f_relatedButtons_left {
	left: calc( var(--maxSlider_center_offset) - 36px );
	top: calc( var(--f_related_all_height) / 2 );
}
.f_relatedButtons_right {
	left: calc( var(--maxSlider_center_offset) + var(--f_related_big_width) - 36px );
	top: calc( var(--f_related_all_height) / 2 );
}

.f_relatedButtons_left,
.f_relatedButtons_right {
	position: absolute;
	cursor: pointer;
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	transition: 0.3s;
	user-select: none;
	opacity: 0;
}

.f_relatedButtons_left svg,
.f_relatedButtons_right svg {
	width: 20px;
	height: 20px;
}

.f_relatedButtons_left:hover,
.f_relatedButtons_right:hover {
	background: #eaad05;
}

.f_relatedButtons_left:hover svg,
.f_relatedButtons_right:hover svg {
	fill: #fff;
}
