/*checkboxes*/

.checks {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
}

.checks span {
    color: #000;
    line-height: 1.5;
    text-decoration: none;
}

.checkbox-block {
    width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #fcfcfc;
	box-shadow: 0 0 3px rgb(0 0 0 / 12%);
	border-radius: 5px;
	padding: 20px;
	margin-top: 25px;
    margin-bottom: 11px;
}

.checkbox-block:first-child {
	margin-top: 0;
}

.checkbox-block p {
	font-family: Helveticaneuecyr-Bold;
	margin-right: 30px;
}

/*checkbox*/

.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-family: Helveticaneuecyr-Light;
    font-size: 16px;
    font-weight: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: capitalize;
    margin-right: 15px;
}

.checks-col .check-container {
    width: 100%;
    margin-top: 22px;
}

.checks-col .check-container:first-child {
    margin-top: 15px;
}

.check-container:last-child {
	margin-right: 0;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    box-shadow: 0 0 3px rgb(0 0 0 / 18%);
    border-radius: 50%;
}

.check-container:hover input ~ .checkmark {
    background-color: #fff;
}

.check-container input:checked ~ .checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark:after, .checkmark.check:after  {
    display: block;
}

.check-container .checkmark:after {
 	top: 8px;
    left: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f59b33;
}


@media (max-width: 768px) {
    .checkbox-block p {
        width: 100%;
        padding-bottom: 10px;
    }
}