input[type=checkbox].checkbox-format{
height: 20px !important;
    max-width: 20px !important;
    min-width: 20px !important;
    background-color: #fff;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    outline: 0;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -o-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    position: relative;top:5px;border: 1px solid var(--hw-gray-seven) !important;}
input[type=checkbox].checkbox-format:checked::after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 10px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 7px);
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
}
input[type=checkbox].checkbox-format:checked{background-color: #56a87f !important;}
.checkbox-label-format{margin-right: 20px !important;}