.hasProjects .controls {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 35px;
	background-color: rgba(44,44,44,.85);
	z-index: 86;
}



.hasProjects .controls .control {
	position: absolute;
	right: 0;
	cursor: pointer;
	height: 30px;
	width: 100%;
	background-image: url(../../../../images/icon_checkbox.svg);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	font-style: normal;
}

.hasProjects .controls .control.plus,
.hasProjects .controls .control.minus {
	display: none;
}


.hasProjects .controls .control.filter {
	top: calc((100% - 180px) / 2);
	margin-top: -15px;
}

@media screen and (min-width: 850px) {
	.hasProjects .controls .control::after {
		display: none;
		position: absolute;
		top: 50%;
		right: 50px;
		background-color: rgba(255,255,255,.8);
		white-space: nowrap;
		line-height: 28px;
		margin-top: -14px;
		padding: 0 10px;
		font-size: 10px;
		font-weight: bold;
	}

	.hasProjects .controls .control.filter::after {
		content: 'FILTER RESULTS';
	}

	.hasProjects .controls .control.zoomout::after {
		content: 'ZOOM OUT';
	}

	.hasProjects .controls .control.zoomin::after {
		content: 'ZOOM IN';
	}



	.hasProjects .controls .control:hover::after {
		display: block;
	}

	.hasProjects .controls {
		width: 50px;
	}


	.hasProjects .controls .control.plus,
	.hasProjects .controls .control.minus {
		display: block;
		background-size: 13px 13px;
	}


	.hasProjects .controls .control.plus {
		background-image: url(../../../../images/icon_plus.svg);
		bottom: 234px;
	}

	.hasProjects .controls .control.minus {
		background-image: url(../../../../images/icon_minus.svg);
		bottom: 200px;
	}
}