.projects-menu{
	margin-bottom: 20px;
}
.projects-menu__button{
	width: 249px;
	color: #fff;
	font-size: 18px;
	line-height: 45px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	background: #737373;
	cursor: pointer;
}
.projects-menu__frame{
	display: none;
	padding: 10px 0;
	font-size: 14px;
	border: 1px solid #d6d6d6;
	overflow: hidden;
}
.projects-menu__list{
	float: left;
	width: 25%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.projects-menu__checkbox{
	position: absolute;
	display: block;
	opacity: 0;
	z-index: -1;
}
.projects-menu__checkbox + label{
	position: relative;
	display: block;
	padding: 0 15px 0 35px;
	color: #7a7a7a;
	line-height: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	cursor: pointer;
}
.projects-menu__checkbox + label:hover{
	color: #fff;
	background: #ff1820;
}
.projects-menu__checkbox + label:before{
	content: "";
	position: absolute;
	top: 10px;
	left: 15px;
	display: block;
	width: 7px;
	height: 7px;
	border: 1px solid #757575;
	border-radius: 50%;
	background: #fff;
}
.projects-menu__checkbox:checked + label:before{
	box-shadow: inset 0 0 0 1px #fff, inset 0 0 0 5px #ff1820;
}
.projects-menu__submit{
	clear: both;
	margin: 0 15px 5px;
}


@media screen and (max-width: 850px) {
	.projects-menu__list{
		width: 50%;
	}
}

@media screen and (max-width: 450px) {
	.projects-menu__list{
		float: none;
		width: auto;
	}
}