.form-checkbox {
	cursor: pointer;
	padding-bottom: 10px;
}
.chk-area {
	display:none;
}

.content-umap .form-checkbox {
    margin-top: 16px;
    margin-bottom: 8px;
}

.form__pseudocheck.form label {
    display:none;
}

.content-umap .content-umap__hint{
	display:none;
}

.form-checkbox__label {
	font-weight: normal;
	line-height: 16px;
	display: inline-block !important;
	vertical-align: top;
	width: calc(100% - 28px) !important;
	margin-left: -4px !important;
	margin-bottom:8px !important;
	margin-top:-1px !important;
	float: none !important;
}

.contacts-form .form-checkbox__label {
	color: #969696;
}

.content-umap .form-checkbox__label{
	font-size: 12px;
	line-height: 14px;
}

.form-checkbox__label a{
	color:inherit;
	border-bottom:1px solid;
	text-decoration: none;
	transition: .5s border;
	-webkit-transition: .5s border;
}

.form-checkbox__label a:hover{
	border-color:transparent;
}

.form__truecheck {
	position: absolute;
	left: -10000px;
	top: -10000px;
	visibility: hidden;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
	border: 0;
}

.form__pseudocheck {
	width: 14px;
	height: 14px;
	background-color: white;
	border:1px solid #c3c3c3;
	border-radius: 1px;
	display: inline-block;
	vertical-align: top;
	margin-right: 12px;
	position: relative;
	transition: .5s border;
	-webkit-transition: .5s border;
	margin-bottom:8px;
	margin-top:-1px;
	
}

.form__pseudocheck.warning{
	border-color: red;
}

.form__pseudocheck:after {
	content: "";
	width: 7px;
	height: 5px;
	background: transparent;
	border-left: 2px solid black;
	border-bottom: 2px solid black;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
	left: 2px;
	top: 1px;
	opacity: 0;
	transition: .5s opacity;
	-webkit-transition: .5s opacity;
}

.form__pseudocheck.checked:after {
	opacity: 1;
}