.zoom-buttons-bloc {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 1.563rem 0.625rem;

	.zoom-button {
		@extend .clickable;
		@extend .unselectable;
		border: solid 0.0625rem $color-device-grey;
		background-color: white;
		height: 2.125rem;
		width: 2.125rem;
		text-align: center;
		font-size: 1.4rem;
		font-weight: bold;

		&:hover {
			background-color: $color-list-grey-bg;
		}
	}

	#zoom-in {
		@extend .zoom-button;
		border-bottom: 0px;
		border-top-left-radius: 50%;
		border-top-right-radius: 50%;
	}
	#zoom-out {
		@extend .zoom-button;
		border-top: 0px;
		border-bottom-left-radius: 50%;
		border-bottom-right-radius: 50%;
	}
}