html,body{
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 12px;
}
body{
    color: #3e3a39 !important;
}
p{
    margin: 0;
}
.form-control:focus{
    box-shadow: none !important;
    border: none !important;
    background: #e7e7e7 !important;
}

input[type="checkbox"] {
    margin-right: 10px !important;
    width: 13px;
    height: 13px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 11px;
    position: relative;
    border-radius: 2px;
}
input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9;
}
input[type="checkbox"]:checked::before {
    content: "\2713";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid #cf3339;
    color: #cf3339;
    font-size: 16px;
    font-weight: bold;
}