.comment-form input[type="checkbox"],
.sf_form input[type="checkbox"] {
    display: none;
}

.comment-form input[type="checkbox"] + span,
.sf_form input[type="checkbox"] + span {
    position: relative;
    padding-left: 44px;
    display: block;
    line-height: 1.2em;
    cursor: pointer;
    font-size: 13px;
    max-width: 300px;
}

.comment-form input[type="checkbox"] + span:hover:before,
.sf_form input[type="checkbox"] + span:hover:before {
    border-color: #333;
}

.comment-form input[type="checkbox"] + span:before, 
.sf_form input[type="checkbox"] + span:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 0;
    top: 0;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ccc;
    display: block;
}

.comment-form input[type="checkbox"]:checked + span:after,
.sf_form input[type="checkbox"]:checked + span:after {
    content: '';
    width: 5px;
    height: 12px;
    position: absolute;
    top: 5px;
    left: 11px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sf_cursor_progress {
    cursor: progress !important;
}

.sf_form .sf_label {
    padding-bottom: 5px;
    font-weight: bold;
}

.item_top .sf_form {
    padding: 20px;
    background: #f0f0f0;
    margin-top: 20px;
    border-radius: 5px;
}

.item_top .sf_form .q-form__input {
    line-height: 60px;
    height: 60px
}

.item_top .sf_form .sf_item {
    width: calc(33.33% - 14px);
}

.item_top .sf_form .sf_item input {
    width: 100%;
}

.item_top .sf_form > .df {
    flex-wrap: wrap;
    justify-content: space-between;
}

.item_top .sf_form .sf_item.sf_item_wide {
    margin-top: 20px;
}

@media screen and (max-width: 1100px) {
    .item_top .sf_form .sf_item input {
        line-height: 40px;
        height: 40px;
    }
    .item_top .sf_form .sf_item.sf_item_wide {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .item_top .sf_form > .df {
        display: block;
    }
    .item_top .sf_form .sf_item {
        width: 100%;
    }
    .item_top .sf_form .sf_item + .sf_item {
        margin-top: 15px;
    }
}

