
  .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .form-group label {
    position: relative;
    cursor: pointer;
    color: #4F5F6D;
    font-family: 'Poppins', sans-serif;
  }
  
  .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #D1DAE0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 3px;
  }
  
  .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 8px;
    width: 6px;
    height: 14px;
    border: solid #1f369f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .form-group input:checked  .form-group label:before{
    border: 1px solid #1f369f !important;
  }
  label{
    font-size:13px;
  }